UNPKG

@microsoft/msgraph-sdk-security

Version:
29 lines 1.85 kB
import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Provides operations to call the getFinalReport method. */ export interface GetFinalReportRequestBuilder extends BaseRequestBuilder<GetFinalReportRequestBuilder> { /** * Get the final report for a subject rights request. The report is a text file that contains information about 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-getfinalreport?view=graph-rest-1.0|Find more info here} */ get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ArrayBuffer | undefined>; /** * Get the final report for a subject rights request. The report is a text file that contains information about 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 GetFinalReportRequestBuilderUriTemplate = "{+baseurl}/security/subjectRightsRequests/{subjectRightsRequest%2Did}/getFinalReport()"; /** * Metadata for all the requests in the request builder. */ export declare const GetFinalReportRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map