UNPKG

@microsoft/msgraph-sdk-security

Version:
29 lines 1.9 kB
import { type DeploymentAccessKeyType } 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 getDeploymentAccessKey method. */ export interface MicrosoftGraphSecurityGetDeploymentAccessKeyRequestBuilder extends BaseRequestBuilder<MicrosoftGraphSecurityGetDeploymentAccessKeyRequestBuilder> { /** * Get the deployment access key for Microsoft Defender for Identity that is required to install sensors associated with the workspace. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<DeploymentAccessKeyType>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<DeploymentAccessKeyType | undefined>; /** * Get the deployment access key for Microsoft Defender for Identity that is required to install sensors associated with the workspace. * @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 MicrosoftGraphSecurityGetDeploymentAccessKeyRequestBuilderUriTemplate = "{+baseurl}/security/identities/sensors/microsoft.graph.security.getDeploymentAccessKey()"; /** * Metadata for all the requests in the request builder. */ export declare const MicrosoftGraphSecurityGetDeploymentAccessKeyRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map