UNPKG

@microsoft/msgraph-sdk-security

Version:
29 lines 1.91 kB
import { type SensorDeploymentPackage } from '@microsoft/msgraph-sdk/models/security/index.js'; import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Provides operations to call the getDeploymentPackageUri method. */ export interface MicrosoftGraphSecurityGetDeploymentPackageUriRequestBuilder extends BaseRequestBuilder<MicrosoftGraphSecurityGetDeploymentPackageUriRequestBuilder> { /** * Get the sensor deployment package URL and version. You can use this URL to download the installer to install the sensor on a server. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<SensorDeploymentPackage>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<SensorDeploymentPackage | undefined>; /** * Get the sensor deployment package URL and version. You can use this URL to download the installer to install the sensor on a server. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; } /** * Uri template for the request builder. */ export declare const MicrosoftGraphSecurityGetDeploymentPackageUriRequestBuilderUriTemplate = "{+baseurl}/security/identities/sensors/microsoft.graph.security.getDeploymentPackageUri()"; /** * Metadata for all the requests in the request builder. */ export declare const MicrosoftGraphSecurityGetDeploymentPackageUriRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map