@microsoft/msgraph-sdk-security
Version:
Security fluent API for Microsoft Graph
42 lines • 1.96 kB
TypeScript
import { type Team } 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 team property of the microsoft.graph.subjectRightsRequest entity.
*/
export interface TeamRequestBuilder extends BaseRequestBuilder<TeamRequestBuilder> {
/**
* Information about the Microsoft Teams team that was created for the request.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<Team>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
*/
get(requestConfiguration?: RequestConfiguration<TeamRequestBuilderGetQueryParameters> | undefined): Promise<Team | undefined>;
/**
* Information about the Microsoft Teams team that was created for the request.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toGetRequestInformation(requestConfiguration?: RequestConfiguration<TeamRequestBuilderGetQueryParameters> | undefined): RequestInformation;
}
/**
* Information about the Microsoft Teams team that was created for the request.
*/
export interface TeamRequestBuilderGetQueryParameters {
/**
* Expand related entities
*/
expand?: string[];
/**
* Select properties to be returned
*/
select?: string[];
}
/**
* Uri template for the request builder.
*/
export declare const TeamRequestBuilderUriTemplate = "{+baseurl}/security/subjectRightsRequests/{subjectRightsRequest%2Did}/team{?%24expand,%24select}";
/**
* Metadata for all the requests in the request builder.
*/
export declare const TeamRequestBuilderRequestsMetadata: RequestsMetadata;
//# sourceMappingURL=index.d.ts.map