@microsoft/msgraph-beta-sdk-groups
Version:
Groups fluent API for Microsoft Graph
28 lines • 1.61 kB
TypeScript
import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
/**
* Provides operations to call the renew method.
*/
export interface RenewRequestBuilder extends BaseRequestBuilder<RenewRequestBuilder> {
/**
* Renews a group's expiration. When a group is renewed, the group expiration is extended by the number of days defined in the policy.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
* @see {@link https://learn.microsoft.com/graph/api/group-renew?view=graph-rest-beta|Find more info here}
*/
post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
/**
* Renews a group's expiration. When a group is renewed, the group expiration is extended by the number of days defined in the policy.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toPostRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
}
/**
* Uri template for the request builder.
*/
export declare const RenewRequestBuilderUriTemplate = "{+baseurl}/groups/{group%2Did}/renew";
/**
* Metadata for all the requests in the request builder.
*/
export declare const RenewRequestBuilderRequestsMetadata: RequestsMetadata;
//# sourceMappingURL=index.d.ts.map