import type { PagedAsyncIterableIterator } from "@azure/core-paging"; import type { NetworkSecurityGroups } from "../operationsInterfaces/index.js"; import type { NetworkManagementClient } from "../networkManagementClient.js"; import type { SimplePollerLike, OperationState } from "@azure/core-lro"; import type { NetworkSecurityGroup, NetworkSecurityGroupsListAllOptionalParams, NetworkSecurityGroupsListOptionalParams, NetworkSecurityGroupsDeleteOptionalParams, NetworkSecurityGroupsGetOptionalParams, NetworkSecurityGroupsGetResponse, NetworkSecurityGroupsCreateOrUpdateOptionalParams, NetworkSecurityGroupsCreateOrUpdateResponse, TagsObject, NetworkSecurityGroupsUpdateTagsOptionalParams, NetworkSecurityGroupsUpdateTagsResponse } from "../models/index.js"; /** Class containing NetworkSecurityGroups operations. */ export declare class NetworkSecurityGroupsImpl implements NetworkSecurityGroups { private readonly client; /** * Initialize a new instance of the class NetworkSecurityGroups class. * @param client Reference to the service client */ constructor(client: NetworkManagementClient); /** * Gets all network security groups in a subscription. * @param options The options parameters. */ listAll(options?: NetworkSecurityGroupsListAllOptionalParams): PagedAsyncIterableIterator; private listAllPagingPage; private listAllPagingAll; /** * Gets all network security groups in a resource group. * @param resourceGroupName The name of the resource group. * @param options The options parameters. */ list(resourceGroupName: string, options?: NetworkSecurityGroupsListOptionalParams): PagedAsyncIterableIterator; private listPagingPage; private listPagingAll; /** * Deletes the specified network security group. * @param resourceGroupName The name of the resource group. * @param networkSecurityGroupName The name of the network security group. * @param options The options parameters. */ beginDelete(resourceGroupName: string, networkSecurityGroupName: string, options?: NetworkSecurityGroupsDeleteOptionalParams): Promise, void>>; /** * Deletes the specified network security group. * @param resourceGroupName The name of the resource group. * @param networkSecurityGroupName The name of the network security group. * @param options The options parameters. */ beginDeleteAndWait(resourceGroupName: string, networkSecurityGroupName: string, options?: NetworkSecurityGroupsDeleteOptionalParams): Promise; /** * Gets the specified network security group. * @param resourceGroupName The name of the resource group. * @param networkSecurityGroupName The name of the network security group. * @param options The options parameters. */ get(resourceGroupName: string, networkSecurityGroupName: string, options?: NetworkSecurityGroupsGetOptionalParams): Promise; /** * Creates or updates a network security group in the specified resource group. * @param resourceGroupName The name of the resource group. * @param networkSecurityGroupName The name of the network security group. * @param parameters Parameters supplied to the create or update network security group operation. * @param options The options parameters. */ beginCreateOrUpdate(resourceGroupName: string, networkSecurityGroupName: string, parameters: NetworkSecurityGroup, options?: NetworkSecurityGroupsCreateOrUpdateOptionalParams): Promise, NetworkSecurityGroupsCreateOrUpdateResponse>>; /** * Creates or updates a network security group in the specified resource group. * @param resourceGroupName The name of the resource group. * @param networkSecurityGroupName The name of the network security group. * @param parameters Parameters supplied to the create or update network security group operation. * @param options The options parameters. */ beginCreateOrUpdateAndWait(resourceGroupName: string, networkSecurityGroupName: string, parameters: NetworkSecurityGroup, options?: NetworkSecurityGroupsCreateOrUpdateOptionalParams): Promise; /** * Updates a network security group tags. * @param resourceGroupName The name of the resource group. * @param networkSecurityGroupName The name of the network security group. * @param parameters Parameters supplied to update network security group tags. * @param options The options parameters. */ updateTags(resourceGroupName: string, networkSecurityGroupName: string, parameters: TagsObject, options?: NetworkSecurityGroupsUpdateTagsOptionalParams): Promise; /** * Gets all network security groups in a subscription. * @param options The options parameters. */ private _listAll; /** * Gets all network security groups 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=networkSecurityGroups.d.ts.map