import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { CaCertificates } from "../operationsInterfaces/index.js"; import { EventGridManagementClient } from "../eventGridManagementClient.js"; import { SimplePollerLike, OperationState } from "@azure/core-lro"; import { CaCertificate, CaCertificatesListByNamespaceOptionalParams, CaCertificatesGetOptionalParams, CaCertificatesGetResponse, CaCertificatesCreateOrUpdateOptionalParams, CaCertificatesCreateOrUpdateResponse, CaCertificatesDeleteOptionalParams } from "../models/index.js"; /** Class containing CaCertificates operations. */ export declare class CaCertificatesImpl implements CaCertificates { private readonly client; /** * Initialize a new instance of the class CaCertificates class. * @param client Reference to the service client */ constructor(client: EventGridManagementClient); /** * Get all the CA certificates 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?: CaCertificatesListByNamespaceOptionalParams): PagedAsyncIterableIterator; private listByNamespacePagingPage; private listByNamespacePagingAll; /** * Get properties of a CA certificate. * @param resourceGroupName The name of the resource group within the user's subscription. * @param namespaceName Name of the namespace. * @param caCertificateName Name of the CA certificate. * @param options The options parameters. */ get(resourceGroupName: string, namespaceName: string, caCertificateName: string, options?: CaCertificatesGetOptionalParams): Promise; /** * Create or update a CA certificate with the specified parameters. * @param resourceGroupName The name of the resource group within the user's subscription. * @param namespaceName Name of the namespace. * @param caCertificateName The CA certificate name. * @param caCertificateInfo CA certificate information. * @param options The options parameters. */ beginCreateOrUpdate(resourceGroupName: string, namespaceName: string, caCertificateName: string, caCertificateInfo: CaCertificate, options?: CaCertificatesCreateOrUpdateOptionalParams): Promise, CaCertificatesCreateOrUpdateResponse>>; /** * Create or update a CA certificate with the specified parameters. * @param resourceGroupName The name of the resource group within the user's subscription. * @param namespaceName Name of the namespace. * @param caCertificateName The CA certificate name. * @param caCertificateInfo CA certificate information. * @param options The options parameters. */ beginCreateOrUpdateAndWait(resourceGroupName: string, namespaceName: string, caCertificateName: string, caCertificateInfo: CaCertificate, options?: CaCertificatesCreateOrUpdateOptionalParams): Promise; /** * Delete an existing CA certificate. * @param resourceGroupName The name of the resource group within the user's subscription. * @param namespaceName Name of the namespace. * @param caCertificateName Name of the CA certificate. * @param options The options parameters. */ beginDelete(resourceGroupName: string, namespaceName: string, caCertificateName: string, options?: CaCertificatesDeleteOptionalParams): Promise, void>>; /** * Delete an existing CA certificate. * @param resourceGroupName The name of the resource group within the user's subscription. * @param namespaceName Name of the namespace. * @param caCertificateName Name of the CA certificate. * @param options The options parameters. */ beginDeleteAndWait(resourceGroupName: string, namespaceName: string, caCertificateName: string, options?: CaCertificatesDeleteOptionalParams): Promise; /** * Get all the CA certificates 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=caCertificates.d.ts.map