UNPKG

@microsoft/msgraph-beta-sdk-privacy

Version:
44 lines 2.52 kB
import { type User } from '@microsoft/msgraph-beta-sdk/models/index.js'; import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Provides operations to manage the approvers property of the microsoft.graph.subjectRightsRequest entity. */ export interface ApproversWithUserPrincipalNameRequestBuilder extends BaseRequestBuilder<ApproversWithUserPrincipalNameRequestBuilder> { /** * Get approvers from privacy * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<User>} * @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 */ get(requestConfiguration?: RequestConfiguration<ApproversWithUserPrincipalNameRequestBuilderGetQueryParameters> | undefined): Promise<User | undefined>; /** * Get approvers from privacy * @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<ApproversWithUserPrincipalNameRequestBuilderGetQueryParameters> | undefined): RequestInformation; } /** * Get approvers from privacy */ export interface ApproversWithUserPrincipalNameRequestBuilderGetQueryParameters { /** * Expand related entities */ expand?: string[]; /** * Select properties to be returned */ select?: string[]; } /** * Uri template for the request builder. */ export declare const ApproversWithUserPrincipalNameRequestBuilderUriTemplate = "{+baseurl}/privacy/subjectRightsRequests/{subjectRightsRequest%2Did}/approvers(userPrincipalName='{userPrincipalName}'){?%24expand,%24select}"; /** * Metadata for all the requests in the request builder. */ export declare const ApproversWithUserPrincipalNameRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map