UNPKG

@microsoft/msgraph-beta-sdk-security

Version:
28 lines 2.23 kB
import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Provides operations to call the executeResponseAction method. */ export interface MicrosoftGraphSecurityExecuteResponseActionRequestBuilder extends BaseRequestBuilder<MicrosoftGraphSecurityExecuteResponseActionRequestBuilder> { /** * Execute a remediation action on a Microsoft Defender XDR incident task. Only the following actionType values are supported for automated execution: collectInvestigationPackage, isolateDevice, unRestrictAppExecution, unIsolateDevice, restrictAppExecution, runAntiVirusScan, stopAndQuarantineFile, submitIocRule. * @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 * @see {@link https://learn.microsoft.com/graph/api/security-incidenttask-executeresponseaction?view=graph-rest-beta|Find more info here} */ post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>; /** * Execute a remediation action on a Microsoft Defender XDR incident task. Only the following actionType values are supported for automated execution: collectInvestigationPackage, isolateDevice, unRestrictAppExecution, unIsolateDevice, restrictAppExecution, runAntiVirusScan, stopAndQuarantineFile, submitIocRule. * @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 MicrosoftGraphSecurityExecuteResponseActionRequestBuilderUriTemplate = "{+baseurl}/security/incidentTasks/{incidentTask%2Did}/microsoft.graph.security.executeResponseAction"; /** * Metadata for all the requests in the request builder. */ export declare const MicrosoftGraphSecurityExecuteResponseActionRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map