import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { PrivateEndpointConnections } from "../operationsInterfaces/index.js"; import { EventGridManagementClient } from "../eventGridManagementClient.js"; import { SimplePollerLike, OperationState } from "@azure/core-lro"; import { PrivateEndpointConnection, PrivateEndpointConnectionsParentType, PrivateEndpointConnectionsListByResourceOptionalParams, PrivateEndpointConnectionsGetOptionalParams, PrivateEndpointConnectionsGetResponse, PrivateEndpointConnectionsUpdateOptionalParams, PrivateEndpointConnectionsUpdateResponse, PrivateEndpointConnectionsDeleteOptionalParams, PrivateEndpointConnectionsDeleteResponse } from "../models/index.js"; /** Class containing PrivateEndpointConnections operations. */ export declare class PrivateEndpointConnectionsImpl implements PrivateEndpointConnections { private readonly client; /** * Initialize a new instance of the class PrivateEndpointConnections class. * @param client Reference to the service client */ constructor(client: EventGridManagementClient); /** * Get all private endpoint connections under a topic, domain, or partner namespace or namespace. * @param resourceGroupName The name of the resource group within the user's subscription. * @param parentType The type of the parent resource. This can be either \'topics\', \'domains\', or * \'partnerNamespaces\' or \'namespaces\'. * @param parentName The name of the parent resource (namely, either, the topic name, domain name, or * partner namespace name or namespace name). * @param options The options parameters. */ listByResource(resourceGroupName: string, parentType: PrivateEndpointConnectionsParentType, parentName: string, options?: PrivateEndpointConnectionsListByResourceOptionalParams): PagedAsyncIterableIterator; private listByResourcePagingPage; private listByResourcePagingAll; /** * Get a specific private endpoint connection under a topic, domain, or partner namespace or namespace. * @param resourceGroupName The name of the resource group within the user's subscription. * @param parentType The type of the parent resource. This can be either \'topics\', \'domains\', or * \'partnerNamespaces\' or \'namespaces\'. * @param parentName The name of the parent resource (namely, either, the topic name, domain name, or * partner namespace name or namespace name). * @param privateEndpointConnectionName The name of the private endpoint connection connection. * @param options The options parameters. */ get(resourceGroupName: string, parentType: PrivateEndpointConnectionsParentType, parentName: string, privateEndpointConnectionName: string, options?: PrivateEndpointConnectionsGetOptionalParams): Promise; /** * Update a specific private endpoint connection under a topic, domain or partner namespace. * @param resourceGroupName The name of the resource group within the user's subscription. * @param parentType The type of the parent resource. This can be either \'topics\', \'domains\', or * \'partnerNamespaces\' or \'namespaces\'. * @param parentName The name of the parent resource (namely, either, the topic name, domain name, or * partner namespace name or namespace name). * @param privateEndpointConnectionName The name of the private endpoint connection connection. * @param privateEndpointConnection The private endpoint connection object to update. * @param options The options parameters. */ beginUpdate(resourceGroupName: string, parentType: PrivateEndpointConnectionsParentType, parentName: string, privateEndpointConnectionName: string, privateEndpointConnection: PrivateEndpointConnection, options?: PrivateEndpointConnectionsUpdateOptionalParams): Promise, PrivateEndpointConnectionsUpdateResponse>>; /** * Update a specific private endpoint connection under a topic, domain or partner namespace. * @param resourceGroupName The name of the resource group within the user's subscription. * @param parentType The type of the parent resource. This can be either \'topics\', \'domains\', or * \'partnerNamespaces\' or \'namespaces\'. * @param parentName The name of the parent resource (namely, either, the topic name, domain name, or * partner namespace name or namespace name). * @param privateEndpointConnectionName The name of the private endpoint connection connection. * @param privateEndpointConnection The private endpoint connection object to update. * @param options The options parameters. */ beginUpdateAndWait(resourceGroupName: string, parentType: PrivateEndpointConnectionsParentType, parentName: string, privateEndpointConnectionName: string, privateEndpointConnection: PrivateEndpointConnection, options?: PrivateEndpointConnectionsUpdateOptionalParams): Promise; /** * Delete a specific private endpoint connection under a topic, domain, or partner namespace or * namespace. * @param resourceGroupName The name of the resource group within the user's subscription. * @param parentType The type of the parent resource. This can be either \'topics\', \'domains\', or * \'partnerNamespaces\' or \'namespaces\'. * @param parentName The name of the parent resource (namely, either, the topic name, domain name, or * partner namespace name or namespace name). * @param privateEndpointConnectionName The name of the private endpoint connection connection. * @param options The options parameters. */ beginDelete(resourceGroupName: string, parentType: PrivateEndpointConnectionsParentType, parentName: string, privateEndpointConnectionName: string, options?: PrivateEndpointConnectionsDeleteOptionalParams): Promise, PrivateEndpointConnectionsDeleteResponse>>; /** * Delete a specific private endpoint connection under a topic, domain, or partner namespace or * namespace. * @param resourceGroupName The name of the resource group within the user's subscription. * @param parentType The type of the parent resource. This can be either \'topics\', \'domains\', or * \'partnerNamespaces\' or \'namespaces\'. * @param parentName The name of the parent resource (namely, either, the topic name, domain name, or * partner namespace name or namespace name). * @param privateEndpointConnectionName The name of the private endpoint connection connection. * @param options The options parameters. */ beginDeleteAndWait(resourceGroupName: string, parentType: PrivateEndpointConnectionsParentType, parentName: string, privateEndpointConnectionName: string, options?: PrivateEndpointConnectionsDeleteOptionalParams): Promise; /** * Get all private endpoint connections under a topic, domain, or partner namespace or namespace. * @param resourceGroupName The name of the resource group within the user's subscription. * @param parentType The type of the parent resource. This can be either \'topics\', \'domains\', or * \'partnerNamespaces\' or \'namespaces\'. * @param parentName The name of the parent resource (namely, either, the topic name, domain name, or * partner namespace name or namespace name). * @param options The options parameters. */ private _listByResource; /** * ListByResourceNext * @param resourceGroupName The name of the resource group within the user's subscription. * @param parentType The type of the parent resource. This can be either \'topics\', \'domains\', or * \'partnerNamespaces\' or \'namespaces\'. * @param parentName The name of the parent resource (namely, either, the topic name, domain name, or * partner namespace name or namespace name). * @param nextLink The nextLink from the previous successful call to the ListByResource method. * @param options The options parameters. */ private _listByResourceNext; } //# sourceMappingURL=privateEndpointConnections.d.ts.map