import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { ClientGroups } from "../operationsInterfaces/index.js"; import { EventGridManagementClient } from "../eventGridManagementClient.js"; import { SimplePollerLike, OperationState } from "@azure/core-lro"; import { ClientGroup, ClientGroupsListByNamespaceOptionalParams, ClientGroupsGetOptionalParams, ClientGroupsGetResponse, ClientGroupsCreateOrUpdateOptionalParams, ClientGroupsCreateOrUpdateResponse, ClientGroupsDeleteOptionalParams } from "../models/index.js"; /** Class containing ClientGroups operations. */ export declare class ClientGroupsImpl implements ClientGroups { private readonly client; /** * Initialize a new instance of the class ClientGroups class. * @param client Reference to the service client */ constructor(client: EventGridManagementClient); /** * Get all the client groups under a namespace. * @param resourceGroupName The name of the resource group within the user's subscription. * @param namespaceName Name of the namespace. * @param options The options parameters. */ listByNamespace(resourceGroupName: string, namespaceName: string, options?: ClientGroupsListByNamespaceOptionalParams): PagedAsyncIterableIterator; private listByNamespacePagingPage; private listByNamespacePagingAll; /** * Get properties of a client group. * @param resourceGroupName The name of the resource group within the user's subscription. * @param namespaceName Name of the namespace. * @param clientGroupName Name of the client group. * @param options The options parameters. */ get(resourceGroupName: string, namespaceName: string, clientGroupName: string, options?: ClientGroupsGetOptionalParams): Promise; /** * Create or update a client group with the specified parameters. * @param resourceGroupName The name of the resource group within the user's subscription. * @param namespaceName Name of the namespace. * @param clientGroupName The client group name. * @param clientGroupInfo Client group information. * @param options The options parameters. */ beginCreateOrUpdate(resourceGroupName: string, namespaceName: string, clientGroupName: string, clientGroupInfo: ClientGroup, options?: ClientGroupsCreateOrUpdateOptionalParams): Promise, ClientGroupsCreateOrUpdateResponse>>; /** * Create or update a client group with the specified parameters. * @param resourceGroupName The name of the resource group within the user's subscription. * @param namespaceName Name of the namespace. * @param clientGroupName The client group name. * @param clientGroupInfo Client group information. * @param options The options parameters. */ beginCreateOrUpdateAndWait(resourceGroupName: string, namespaceName: string, clientGroupName: string, clientGroupInfo: ClientGroup, options?: ClientGroupsCreateOrUpdateOptionalParams): Promise; /** * Delete an existing client group. * @param resourceGroupName The name of the resource group within the user's subscription. * @param namespaceName Name of the namespace. * @param clientGroupName Name of the client group. * @param options The options parameters. */ beginDelete(resourceGroupName: string, namespaceName: string, clientGroupName: string, options?: ClientGroupsDeleteOptionalParams): Promise, void>>; /** * Delete an existing client group. * @param resourceGroupName The name of the resource group within the user's subscription. * @param namespaceName Name of the namespace. * @param clientGroupName Name of the client group. * @param options The options parameters. */ beginDeleteAndWait(resourceGroupName: string, namespaceName: string, clientGroupName: string, options?: ClientGroupsDeleteOptionalParams): Promise; /** * Get all the client groups under a namespace. * @param resourceGroupName The name of the resource group within the user's subscription. * @param namespaceName Name of the namespace. * @param options The options parameters. */ private _listByNamespace; /** * ListByNamespaceNext * @param resourceGroupName The name of the resource group within the user's subscription. * @param namespaceName Name of the namespace. * @param nextLink The nextLink from the previous successful call to the ListByNamespace method. * @param options The options parameters. */ private _listByNamespaceNext; } //# sourceMappingURL=clientGroups.d.ts.map