import type { PagedAsyncIterableIterator } from "@azure/core-paging"; import type { SimplePollerLike, OperationState } from "@azure/core-lro"; import type { IpGroup, IpGroupsListByResourceGroupOptionalParams, IpGroupsListOptionalParams, IpGroupsGetOptionalParams, IpGroupsGetResponse, IpGroupsCreateOrUpdateOptionalParams, IpGroupsCreateOrUpdateResponse, TagsObject, IpGroupsUpdateGroupsOptionalParams, IpGroupsUpdateGroupsResponse, IpGroupsDeleteOptionalParams } from "../models/index.js"; /** Interface representing a IpGroups. */ export interface IpGroups { /** * Gets all IpGroups in a resource group. * @param resourceGroupName The name of the resource group. * @param options The options parameters. */ listByResourceGroup(resourceGroupName: string, options?: IpGroupsListByResourceGroupOptionalParams): PagedAsyncIterableIterator; /** * Gets all IpGroups in a subscription. * @param options The options parameters. */ list(options?: IpGroupsListOptionalParams): PagedAsyncIterableIterator; /** * Gets the specified ipGroups. * @param resourceGroupName The name of the resource group. * @param ipGroupsName The name of the ipGroups. * @param options The options parameters. */ get(resourceGroupName: string, ipGroupsName: string, options?: IpGroupsGetOptionalParams): Promise; /** * Creates or updates an ipGroups in a specified resource group. * @param resourceGroupName The name of the resource group. * @param ipGroupsName The name of the ipGroups. * @param parameters Parameters supplied to the create or update IpGroups operation. * @param options The options parameters. */ beginCreateOrUpdate(resourceGroupName: string, ipGroupsName: string, parameters: IpGroup, options?: IpGroupsCreateOrUpdateOptionalParams): Promise, IpGroupsCreateOrUpdateResponse>>; /** * Creates or updates an ipGroups in a specified resource group. * @param resourceGroupName The name of the resource group. * @param ipGroupsName The name of the ipGroups. * @param parameters Parameters supplied to the create or update IpGroups operation. * @param options The options parameters. */ beginCreateOrUpdateAndWait(resourceGroupName: string, ipGroupsName: string, parameters: IpGroup, options?: IpGroupsCreateOrUpdateOptionalParams): Promise; /** * Updates tags of an IpGroups resource. * @param resourceGroupName The name of the resource group. * @param ipGroupsName The name of the ipGroups. * @param parameters Parameters supplied to the update ipGroups operation. * @param options The options parameters. */ updateGroups(resourceGroupName: string, ipGroupsName: string, parameters: TagsObject, options?: IpGroupsUpdateGroupsOptionalParams): Promise; /** * Deletes the specified ipGroups. * @param resourceGroupName The name of the resource group. * @param ipGroupsName The name of the ipGroups. * @param options The options parameters. */ beginDelete(resourceGroupName: string, ipGroupsName: string, options?: IpGroupsDeleteOptionalParams): Promise, void>>; /** * Deletes the specified ipGroups. * @param resourceGroupName The name of the resource group. * @param ipGroupsName The name of the ipGroups. * @param options The options parameters. */ beginDeleteAndWait(resourceGroupName: string, ipGroupsName: string, options?: IpGroupsDeleteOptionalParams): Promise; } //# sourceMappingURL=ipGroups.d.ts.map