@microsoft/msgraph-beta-sdk-security
Version:
Security fluent API for Microsoft Graph
30 lines • 1.99 kB
TypeScript
import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
/**
* Provides operations to call the cancelSecurityAction method.
*/
export interface CancelSecurityActionRequestBuilder extends BaseRequestBuilder<CancelSecurityActionRequestBuilder> {
/**
* Cancel a security operation.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
* @deprecated The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation on 2024-04-10 and will be removed 2026-04-10
* @see {@link https://learn.microsoft.com/graph/api/securityaction-cancelsecurityaction?view=graph-rest-beta|Find more info here}
*/
post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
/**
* Cancel a security operation.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
* @deprecated The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation on 2024-04-10 and will be removed 2026-04-10
*/
toPostRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
}
/**
* Uri template for the request builder.
*/
export declare const CancelSecurityActionRequestBuilderUriTemplate = "{+baseurl}/security/securityActions/{securityAction%2Did}/cancelSecurityAction";
/**
* Metadata for all the requests in the request builder.
*/
export declare const CancelSecurityActionRequestBuilderRequestsMetadata: RequestsMetadata;
//# sourceMappingURL=index.d.ts.map