import type { AzureQuotaExtensionAPIContext as Client } from "../index.js"; import type { GroupQuotasEntity, _GroupQuotaList } from "../../models/models.js"; import type { PagedAsyncIterableIterator } from "../../static-helpers/pagingHelpers.js"; import type { GroupQuotasListOptionalParams, GroupQuotasDeleteOptionalParams, GroupQuotasUpdateOptionalParams, GroupQuotasCreateOrUpdateOptionalParams, GroupQuotasGetOptionalParams } from "./options.js"; import type { StreamableMethod, PathUncheckedResponse } from "@azure-rest/core-client"; import type { PollerLike, OperationState } from "@azure/core-lro"; export declare function _listSend(context: Client, managementGroupId: string, options?: GroupQuotasListOptionalParams): StreamableMethod; export declare function _listDeserialize(result: PathUncheckedResponse): Promise<_GroupQuotaList>; /** Lists GroupQuotas for the scope passed. It will return the GroupQuotas QuotaEntity properties only.The details on group quota can be access from the group quota APIs. */ export declare function list(context: Client, managementGroupId: string, options?: GroupQuotasListOptionalParams): PagedAsyncIterableIterator; export declare function _$deleteSend(context: Client, managementGroupId: string, groupQuotaName: string, options?: GroupQuotasDeleteOptionalParams): StreamableMethod; export declare function _$deleteDeserialize(result: PathUncheckedResponse): Promise; /** Deletes the GroupQuotas for the name passed. All the remaining shareQuota in the GroupQuotas will be lost. */ /** * @fixme delete is a reserved word that cannot be used as an operation name. * Please add @clientName("clientName") or @clientName("", "javascript") * to the operation to override the generated name. */ export declare function $delete(context: Client, managementGroupId: string, groupQuotaName: string, options?: GroupQuotasDeleteOptionalParams): PollerLike, void>; export declare function _updateSend(context: Client, managementGroupId: string, groupQuotaName: string, options?: GroupQuotasUpdateOptionalParams): StreamableMethod; export declare function _updateDeserialize(result: PathUncheckedResponse): Promise; /** * Updates the GroupQuotas for the name passed. A GroupQuotas RequestId will be returned by the Service. The status can be polled periodically. The status Async polling is using standards defined at - https://github.com/Azure/azure-resource-manager-rpc/blob/master/v1.0/async-api-reference.md#asynchronous-operations. Use the OperationsStatus URI provided in Azure-AsyncOperation header, the duration will be specified in retry-after header. Once the operation gets to terminal state - Succeeded | Failed, then the URI will change to Get URI and full details can be checked. * Any change in the filters will be applicable to the future quota assignments, existing quota allocated to subscriptions from the GroupQuotas remains unchanged. */ export declare function update(context: Client, managementGroupId: string, groupQuotaName: string, options?: GroupQuotasUpdateOptionalParams): PollerLike, GroupQuotasEntity>; export declare function _createOrUpdateSend(context: Client, managementGroupId: string, groupQuotaName: string, options?: GroupQuotasCreateOrUpdateOptionalParams): StreamableMethod; export declare function _createOrUpdateDeserialize(result: PathUncheckedResponse): Promise; /** Creates a new GroupQuota for the name passed. A RequestId will be returned by the Service. The status can be polled periodically. The status Async polling is using standards defined at - https://github.com/Azure/azure-resource-manager-rpc/blob/master/v1.0/async-api-reference.md#asynchronous-operations. Use the OperationsStatus URI provided in Azure-AsyncOperation header, the duration will be specified in retry-after header. Once the operation gets to terminal state - Succeeded | Failed, then the URI will change to Get URI and full details can be checked. */ export declare function createOrUpdate(context: Client, managementGroupId: string, groupQuotaName: string, options?: GroupQuotasCreateOrUpdateOptionalParams): PollerLike, GroupQuotasEntity>; export declare function _getSend(context: Client, managementGroupId: string, groupQuotaName: string, options?: GroupQuotasGetOptionalParams): StreamableMethod; export declare function _getDeserialize(result: PathUncheckedResponse): Promise; /** Gets the GroupQuotas for the name passed. It will return the GroupQuotas properties only. The details on group quota can be access from the group quota APIs. */ export declare function get(context: Client, managementGroupId: string, groupQuotaName: string, options?: GroupQuotasGetOptionalParams): Promise; //# sourceMappingURL=operations.d.ts.map