import type { PagedAsyncIterableIterator } from "@azure/core-paging"; import type { CustomIPPrefixes } from "../operationsInterfaces/index.js"; import type { NetworkManagementClient } from "../networkManagementClient.js"; import type { SimplePollerLike, OperationState } from "@azure/core-lro"; import type { CustomIpPrefix, CustomIPPrefixesListAllOptionalParams, CustomIPPrefixesListOptionalParams, CustomIPPrefixesDeleteOptionalParams, CustomIPPrefixesGetOptionalParams, CustomIPPrefixesGetResponse, CustomIPPrefixesCreateOrUpdateOptionalParams, CustomIPPrefixesCreateOrUpdateResponse, TagsObject, CustomIPPrefixesUpdateTagsOptionalParams, CustomIPPrefixesUpdateTagsResponse } from "../models/index.js"; /** Class containing CustomIPPrefixes operations. */ export declare class CustomIPPrefixesImpl implements CustomIPPrefixes { private readonly client; /** * Initialize a new instance of the class CustomIPPrefixes class. * @param client Reference to the service client */ constructor(client: NetworkManagementClient); /** * Gets all the custom IP prefixes in a subscription. * @param options The options parameters. */ listAll(options?: CustomIPPrefixesListAllOptionalParams): PagedAsyncIterableIterator; private listAllPagingPage; private listAllPagingAll; /** * Gets all custom IP prefixes in a resource group. * @param resourceGroupName The name of the resource group. * @param options The options parameters. */ list(resourceGroupName: string, options?: CustomIPPrefixesListOptionalParams): PagedAsyncIterableIterator; private listPagingPage; private listPagingAll; /** * Deletes the specified custom IP prefix. * @param resourceGroupName The name of the resource group. * @param customIpPrefixName The name of the CustomIpPrefix. * @param options The options parameters. */ beginDelete(resourceGroupName: string, customIpPrefixName: string, options?: CustomIPPrefixesDeleteOptionalParams): Promise, void>>; /** * Deletes the specified custom IP prefix. * @param resourceGroupName The name of the resource group. * @param customIpPrefixName The name of the CustomIpPrefix. * @param options The options parameters. */ beginDeleteAndWait(resourceGroupName: string, customIpPrefixName: string, options?: CustomIPPrefixesDeleteOptionalParams): Promise; /** * Gets the specified custom IP prefix in a specified resource group. * @param resourceGroupName The name of the resource group. * @param customIpPrefixName The name of the custom IP prefix. * @param options The options parameters. */ get(resourceGroupName: string, customIpPrefixName: string, options?: CustomIPPrefixesGetOptionalParams): Promise; /** * Creates or updates a custom IP prefix. * @param resourceGroupName The name of the resource group. * @param customIpPrefixName The name of the custom IP prefix. * @param parameters Parameters supplied to the create or update custom IP prefix operation. * @param options The options parameters. */ beginCreateOrUpdate(resourceGroupName: string, customIpPrefixName: string, parameters: CustomIpPrefix, options?: CustomIPPrefixesCreateOrUpdateOptionalParams): Promise, CustomIPPrefixesCreateOrUpdateResponse>>; /** * Creates or updates a custom IP prefix. * @param resourceGroupName The name of the resource group. * @param customIpPrefixName The name of the custom IP prefix. * @param parameters Parameters supplied to the create or update custom IP prefix operation. * @param options The options parameters. */ beginCreateOrUpdateAndWait(resourceGroupName: string, customIpPrefixName: string, parameters: CustomIpPrefix, options?: CustomIPPrefixesCreateOrUpdateOptionalParams): Promise; /** * Updates custom IP prefix tags. * @param resourceGroupName The name of the resource group. * @param customIpPrefixName The name of the custom IP prefix. * @param parameters Parameters supplied to update custom IP prefix tags. * @param options The options parameters. */ updateTags(resourceGroupName: string, customIpPrefixName: string, parameters: TagsObject, options?: CustomIPPrefixesUpdateTagsOptionalParams): Promise; /** * Gets all the custom IP prefixes in a subscription. * @param options The options parameters. */ private _listAll; /** * Gets all custom IP prefixes in a resource group. * @param resourceGroupName The name of the resource group. * @param options The options parameters. */ private _list; /** * ListAllNext * @param nextLink The nextLink from the previous successful call to the ListAll method. * @param options The options parameters. */ private _listAllNext; /** * ListNext * @param resourceGroupName The name of the resource group. * @param nextLink The nextLink from the previous successful call to the List method. * @param options The options parameters. */ private _listNext; } //# sourceMappingURL=customIPPrefixes.d.ts.map