@microsoft/msgraph-beta-sdk-security
Version:
Security fluent API for Microsoft Graph
28 lines • 1.68 kB
TypeScript
import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
/**
* Provides operations to call the reopen method.
*/
export interface MicrosoftGraphSecurityReopenRequestBuilder extends BaseRequestBuilder<MicrosoftGraphSecurityReopenRequestBuilder> {
/**
* Reopen an eDiscovery case that was closed. For details, see Reopen a closed case.
* @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-ediscoverycase-reopen?view=graph-rest-beta|Find more info here}
*/
post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
/**
* Reopen an eDiscovery case that was closed. For details, see Reopen a closed case.
* @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 MicrosoftGraphSecurityReopenRequestBuilderUriTemplate = "{+baseurl}/security/cases/ediscoveryCases/{ediscoveryCase%2Did}/microsoft.graph.security.reopen";
/**
* Metadata for all the requests in the request builder.
*/
export declare const MicrosoftGraphSecurityReopenRequestBuilderRequestsMetadata: RequestsMetadata;
//# sourceMappingURL=index.d.ts.map