UNPKG

@microsoft/msgraph-beta-sdk-privacy

Version:
31 lines 2.32 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 * @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20 * @see {@link https://learn.microsoft.com/graph/api/subjectrightsrequest-getfinalreport?view=graph-rest-beta|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} * @deprecated The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20 */ toGetRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; } /** * Uri template for the request builder. */ export declare const GetFinalReportRequestBuilderUriTemplate = "{+baseurl}/privacy/subjectRightsRequests/{subjectRightsRequest%2Did}/getFinalReport()"; /** * Metadata for all the requests in the request builder. */ export declare const GetFinalReportRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map