import type { PagedAsyncIterableIterator } from "@azure/core-paging"; import type { NetworkProfiles } from "../operationsInterfaces/index.js"; import type { NetworkManagementClient } from "../networkManagementClient.js"; import type { SimplePollerLike, OperationState } from "@azure/core-lro"; import type { NetworkProfile, NetworkProfilesListAllOptionalParams, NetworkProfilesListOptionalParams, NetworkProfilesDeleteOptionalParams, NetworkProfilesGetOptionalParams, NetworkProfilesGetResponse, NetworkProfilesCreateOrUpdateOptionalParams, NetworkProfilesCreateOrUpdateResponse, TagsObject, NetworkProfilesUpdateTagsOptionalParams, NetworkProfilesUpdateTagsResponse } from "../models/index.js"; /** Class containing NetworkProfiles operations. */ export declare class NetworkProfilesImpl implements NetworkProfiles { private readonly client; /** * Initialize a new instance of the class NetworkProfiles class. * @param client Reference to the service client */ constructor(client: NetworkManagementClient); /** * Gets all the network profiles in a subscription. * @param options The options parameters. */ listAll(options?: NetworkProfilesListAllOptionalParams): PagedAsyncIterableIterator; private listAllPagingPage; private listAllPagingAll; /** * Gets all network profiles in a resource group. * @param resourceGroupName The name of the resource group. * @param options The options parameters. */ list(resourceGroupName: string, options?: NetworkProfilesListOptionalParams): PagedAsyncIterableIterator; private listPagingPage; private listPagingAll; /** * Deletes the specified network profile. * @param resourceGroupName The name of the resource group. * @param networkProfileName The name of the NetworkProfile. * @param options The options parameters. */ beginDelete(resourceGroupName: string, networkProfileName: string, options?: NetworkProfilesDeleteOptionalParams): Promise, void>>; /** * Deletes the specified network profile. * @param resourceGroupName The name of the resource group. * @param networkProfileName The name of the NetworkProfile. * @param options The options parameters. */ beginDeleteAndWait(resourceGroupName: string, networkProfileName: string, options?: NetworkProfilesDeleteOptionalParams): Promise; /** * Gets the specified network profile in a specified resource group. * @param resourceGroupName The name of the resource group. * @param networkProfileName The name of the public IP prefix. * @param options The options parameters. */ get(resourceGroupName: string, networkProfileName: string, options?: NetworkProfilesGetOptionalParams): Promise; /** * Creates or updates a network profile. * @param resourceGroupName The name of the resource group. * @param networkProfileName The name of the network profile. * @param parameters Parameters supplied to the create or update network profile operation. * @param options The options parameters. */ createOrUpdate(resourceGroupName: string, networkProfileName: string, parameters: NetworkProfile, options?: NetworkProfilesCreateOrUpdateOptionalParams): Promise; /** * Updates network profile tags. * @param resourceGroupName The name of the resource group. * @param networkProfileName The name of the network profile. * @param parameters Parameters supplied to update network profile tags. * @param options The options parameters. */ updateTags(resourceGroupName: string, networkProfileName: string, parameters: TagsObject, options?: NetworkProfilesUpdateTagsOptionalParams): Promise; /** * Gets all the network profiles in a subscription. * @param options The options parameters. */ private _listAll; /** * Gets all network profiles 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=networkProfiles.d.ts.map