@microsoft/msgraph-beta-sdk-security
Version:
Security fluent API for Microsoft Graph
30 lines • 2.05 kB
TypeScript
import { type DeploymentAccessKeyType } from '@microsoft/msgraph-beta-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 associated with a Microsoft Defender for Identity, needed 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
* @see {@link https://learn.microsoft.com/graph/api/security-sensor-getdeploymentaccesskey?view=graph-rest-beta|Find more info here}
*/
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<DeploymentAccessKeyType | undefined>;
/**
* Get the deployment access key associated with a Microsoft Defender for Identity, needed 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