import type { ContainerServiceContext } from "../../api/containerServiceContext.js"; import type { PrivateEndpointConnectionsListOptionalParams, PrivateEndpointConnectionsDeleteOptionalParams, PrivateEndpointConnectionsUpdateOptionalParams, PrivateEndpointConnectionsGetOptionalParams } from "../../api/privateEndpointConnections/options.js"; import type { PrivateEndpointConnection, PrivateEndpointConnectionListResult } from "../../models/models.js"; import type { SimplePollerLike } from "../../static-helpers/simplePollerHelpers.js"; import type { PollerLike, OperationState } from "@azure/core-lro"; /** Interface representing a PrivateEndpointConnections operations. */ export interface PrivateEndpointConnectionsOperations { /** To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters */ list: (resourceGroupName: string, resourceName: string, options?: PrivateEndpointConnectionsListOptionalParams) => Promise; /** Deletes a private endpoint connection. */ /** * @fixme delete is a reserved word that cannot be used as an operation name. * Please add @clientName("clientName") or @clientName("", "javascript") * to the operation to override the generated name. */ delete: (resourceGroupName: string, resourceName: string, privateEndpointConnectionName: string, options?: PrivateEndpointConnectionsDeleteOptionalParams) => PollerLike, void>; /** @deprecated use delete instead */ beginDelete: (resourceGroupName: string, resourceName: string, privateEndpointConnectionName: string, options?: PrivateEndpointConnectionsDeleteOptionalParams) => Promise, void>>; /** @deprecated use delete instead */ beginDeleteAndWait: (resourceGroupName: string, resourceName: string, privateEndpointConnectionName: string, options?: PrivateEndpointConnectionsDeleteOptionalParams) => Promise; /** Updates a private endpoint connection. */ update: (resourceGroupName: string, resourceName: string, privateEndpointConnectionName: string, parameters: PrivateEndpointConnection, options?: PrivateEndpointConnectionsUpdateOptionalParams) => Promise; /** To learn more about private clusters, see: https://docs.microsoft.com/azure/aks/private-clusters */ get: (resourceGroupName: string, resourceName: string, privateEndpointConnectionName: string, options?: PrivateEndpointConnectionsGetOptionalParams) => Promise; } export declare function _getPrivateEndpointConnectionsOperations(context: ContainerServiceContext): PrivateEndpointConnectionsOperations; //# sourceMappingURL=index.d.ts.map