@microsoft/msgraph-beta-sdk-groups
Version:
Groups fluent API for Microsoft Graph
30 lines • 1.86 kB
TypeScript
import { type RichLongRunningOperation } from '@microsoft/msgraph-beta-sdk/models/index.js';
import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
/**
* Provides operations to call the getOperationStatus method.
*/
export interface GetOperationStatusWithOperationIdRequestBuilder extends BaseRequestBuilder<GetOperationStatusWithOperationIdRequestBuilder> {
/**
* Get the status of a SharePoint site creation operation to monitor its progress.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<RichLongRunningOperation>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
* @see {@link https://learn.microsoft.com/graph/api/site-getoperationstatus?view=graph-rest-beta|Find more info here}
*/
get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<RichLongRunningOperation | undefined>;
/**
* Get the status of a SharePoint site creation operation to monitor its progress.
* @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 GetOperationStatusWithOperationIdRequestBuilderUriTemplate = "{+baseurl}/groups/{group%2Did}/sites/getOperationStatus(operationId='{operationId}')";
/**
* Metadata for all the requests in the request builder.
*/
export declare const GetOperationStatusWithOperationIdRequestBuilderRequestsMetadata: RequestsMetadata;
//# sourceMappingURL=index.d.ts.map