UNPKG

@microsoft/msgraph-sdk-security

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