UNPKG

@microsoft/msgraph-sdk-security

Version:
29 lines 1.89 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 regenerateDeploymentAccessKey method. */ export interface MicrosoftGraphSecurityRegenerateDeploymentAccessKeyRequestBuilder extends BaseRequestBuilder<MicrosoftGraphSecurityRegenerateDeploymentAccessKeyRequestBuilder> { /** * Generate a new deployment access key that can be used to install a sensor 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 */ post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<DeploymentAccessKeyType | undefined>; /** * Generate a new deployment access key that can be used to install a sensor associated with the workspace. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toPostRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; } /** * Uri template for the request builder. */ export declare const MicrosoftGraphSecurityRegenerateDeploymentAccessKeyRequestBuilderUriTemplate = "{+baseurl}/security/identities/sensors/microsoft.graph.security.regenerateDeploymentAccessKey"; /** * Metadata for all the requests in the request builder. */ export declare const MicrosoftGraphSecurityRegenerateDeploymentAccessKeyRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map