import type { PagedAsyncIterableIterator } from "@azure/core-paging"; import type { IpAllocations } from "../operationsInterfaces/index.js"; import type { NetworkManagementClient } from "../networkManagementClient.js"; import type { SimplePollerLike, OperationState } from "@azure/core-lro"; import type { IpAllocation, IpAllocationsListOptionalParams, IpAllocationsListByResourceGroupOptionalParams, IpAllocationsDeleteOptionalParams, IpAllocationsGetOptionalParams, IpAllocationsGetResponse, IpAllocationsCreateOrUpdateOptionalParams, IpAllocationsCreateOrUpdateResponse, TagsObject, IpAllocationsUpdateTagsOptionalParams, IpAllocationsUpdateTagsResponse } from "../models/index.js"; /** Class containing IpAllocations operations. */ export declare class IpAllocationsImpl implements IpAllocations { private readonly client; /** * Initialize a new instance of the class IpAllocations class. * @param client Reference to the service client */ constructor(client: NetworkManagementClient); /** * Gets all IpAllocations in a subscription. * @param options The options parameters. */ list(options?: IpAllocationsListOptionalParams): PagedAsyncIterableIterator; private listPagingPage; private listPagingAll; /** * Gets all IpAllocations in a resource group. * @param resourceGroupName The name of the resource group. * @param options The options parameters. */ listByResourceGroup(resourceGroupName: string, options?: IpAllocationsListByResourceGroupOptionalParams): PagedAsyncIterableIterator; private listByResourceGroupPagingPage; private listByResourceGroupPagingAll; /** * Deletes the specified IpAllocation. * @param resourceGroupName The name of the resource group. * @param ipAllocationName The name of the IpAllocation. * @param options The options parameters. */ beginDelete(resourceGroupName: string, ipAllocationName: string, options?: IpAllocationsDeleteOptionalParams): Promise, void>>; /** * Deletes the specified IpAllocation. * @param resourceGroupName The name of the resource group. * @param ipAllocationName The name of the IpAllocation. * @param options The options parameters. */ beginDeleteAndWait(resourceGroupName: string, ipAllocationName: string, options?: IpAllocationsDeleteOptionalParams): Promise; /** * Gets the specified IpAllocation by resource group. * @param resourceGroupName The name of the resource group. * @param ipAllocationName The name of the IpAllocation. * @param options The options parameters. */ get(resourceGroupName: string, ipAllocationName: string, options?: IpAllocationsGetOptionalParams): Promise; /** * Creates or updates an IpAllocation in the specified resource group. * @param resourceGroupName The name of the resource group. * @param ipAllocationName The name of the IpAllocation. * @param parameters Parameters supplied to the create or update virtual network operation. * @param options The options parameters. */ beginCreateOrUpdate(resourceGroupName: string, ipAllocationName: string, parameters: IpAllocation, options?: IpAllocationsCreateOrUpdateOptionalParams): Promise, IpAllocationsCreateOrUpdateResponse>>; /** * Creates or updates an IpAllocation in the specified resource group. * @param resourceGroupName The name of the resource group. * @param ipAllocationName The name of the IpAllocation. * @param parameters Parameters supplied to the create or update virtual network operation. * @param options The options parameters. */ beginCreateOrUpdateAndWait(resourceGroupName: string, ipAllocationName: string, parameters: IpAllocation, options?: IpAllocationsCreateOrUpdateOptionalParams): Promise; /** * Updates a IpAllocation tags. * @param resourceGroupName The name of the resource group. * @param ipAllocationName The name of the IpAllocation. * @param parameters Parameters supplied to update IpAllocation tags. * @param options The options parameters. */ updateTags(resourceGroupName: string, ipAllocationName: string, parameters: TagsObject, options?: IpAllocationsUpdateTagsOptionalParams): Promise; /** * Gets all IpAllocations in a subscription. * @param options The options parameters. */ private _list; /** * Gets all IpAllocations in a resource group. * @param resourceGroupName The name of the resource group. * @param options The options parameters. */ private _listByResourceGroup; /** * ListNext * @param nextLink The nextLink from the previous successful call to the List method. * @param options The options parameters. */ private _listNext; /** * ListByResourceGroupNext * @param resourceGroupName The name of the resource group. * @param nextLink The nextLink from the previous successful call to the ListByResourceGroup method. * @param options The options parameters. */ private _listByResourceGroupNext; } //# sourceMappingURL=ipAllocations.d.ts.map