import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { Clients } from "../operationsInterfaces/index.js"; import { EventGridManagementClient } from "../eventGridManagementClient.js"; import { SimplePollerLike, OperationState } from "@azure/core-lro"; import { Client, ClientsListByNamespaceOptionalParams, ClientsGetOptionalParams, ClientsGetResponse, ClientsCreateOrUpdateOptionalParams, ClientsCreateOrUpdateResponse, ClientsDeleteOptionalParams } from "../models/index.js"; /** Class containing Clients operations. */ export declare class ClientsImpl implements Clients { private readonly client; /** * Initialize a new instance of the class Clients class. * @param client Reference to the service client */ constructor(client: EventGridManagementClient); /** * Get all the permission bindings 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?: ClientsListByNamespaceOptionalParams): PagedAsyncIterableIterator; private listByNamespacePagingPage; private listByNamespacePagingAll; /** * Get properties of a client. * @param resourceGroupName The name of the resource group within the user's subscription. * @param namespaceName Name of the namespace. * @param clientName Name of the client. * @param options The options parameters. */ get(resourceGroupName: string, namespaceName: string, clientName: string, options?: ClientsGetOptionalParams): Promise; /** * Create or update a client with the specified parameters. * @param resourceGroupName The name of the resource group within the user's subscription. * @param namespaceName Name of the namespace. * @param clientName The client name. * @param clientInfo Client information. * @param options The options parameters. */ beginCreateOrUpdate(resourceGroupName: string, namespaceName: string, clientName: string, clientInfo: Client, options?: ClientsCreateOrUpdateOptionalParams): Promise, ClientsCreateOrUpdateResponse>>; /** * Create or update a client with the specified parameters. * @param resourceGroupName The name of the resource group within the user's subscription. * @param namespaceName Name of the namespace. * @param clientName The client name. * @param clientInfo Client information. * @param options The options parameters. */ beginCreateOrUpdateAndWait(resourceGroupName: string, namespaceName: string, clientName: string, clientInfo: Client, options?: ClientsCreateOrUpdateOptionalParams): Promise; /** * Delete an existing client. * @param resourceGroupName The name of the resource group within the user's subscription. * @param namespaceName Name of the namespace. * @param clientName Name of the client. * @param options The options parameters. */ beginDelete(resourceGroupName: string, namespaceName: string, clientName: string, options?: ClientsDeleteOptionalParams): Promise, void>>; /** * Delete an existing client. * @param resourceGroupName The name of the resource group within the user's subscription. * @param namespaceName Name of the namespace. * @param clientName Name of the client. * @param options The options parameters. */ beginDeleteAndWait(resourceGroupName: string, namespaceName: string, clientName: string, options?: ClientsDeleteOptionalParams): Promise; /** * Get all the permission bindings 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=clients.d.ts.map