@microsoft/msgraph-sdk-security
Version:
Security fluent API for Microsoft Graph
29 lines • 1.87 kB
TypeScript
import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
/**
* Provides operations to call the getFinalAttachment method.
*/
export interface GetFinalAttachmentRequestBuilder extends BaseRequestBuilder<GetFinalAttachmentRequestBuilder> {
/**
* Get the final attachment for a subject rights request. The attachment is a zip file that contains all the files that were included by the privacy administrator.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<ArrayBuffer>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
* @see {@link https://learn.microsoft.com/graph/api/subjectrightsrequest-getfinalattachment?view=graph-rest-1.0|Find more info here}
*/
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ArrayBuffer | undefined>;
/**
* Get the final attachment for a subject rights request. The attachment is a zip file that contains all the files that were included by the privacy administrator.
* @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 GetFinalAttachmentRequestBuilderUriTemplate = "{+baseurl}/security/subjectRightsRequests/{subjectRightsRequest%2Did}/getFinalAttachment()";
/**
* Metadata for all the requests in the request builder.
*/
export declare const GetFinalAttachmentRequestBuilderRequestsMetadata: RequestsMetadata;
//# sourceMappingURL=index.d.ts.map