Package version:

Interface representing a PrivateEndpoints.

interface PrivateEndpoints {
    beginDelete(resourceGroupName, clusterName, privateEndpointName, options?): Promise<SimplePollerLike<OperationState<void>, void>>;
    beginDeleteAndWait(resourceGroupName, clusterName, privateEndpointName, options?): Promise<void>;
    createOrUpdate(resourceGroupName, clusterName, privateEndpointName, privateEndpoint, options?): Promise<PrivateEndpoint>;
    get(resourceGroupName, clusterName, privateEndpointName, options?): Promise<PrivateEndpoint>;
    listByCluster(resourceGroupName, clusterName, options?): PagedAsyncIterableIterator<PrivateEndpoint>;
}

Methods

  • Delete the specified private endpoint.

    Parameters

    • resourceGroupName: string

      The name of the resource group. The name is case insensitive.

    • clusterName: string

      The name of the cluster.

    • privateEndpointName: string

      The name of the private endpoint.

    • Optional options: PrivateEndpointsDeleteOptionalParams

      The options parameters.

    Returns Promise<SimplePollerLike<OperationState<void>, void>>

  • Delete the specified private endpoint.

    Parameters

    • resourceGroupName: string

      The name of the resource group. The name is case insensitive.

    • clusterName: string

      The name of the cluster.

    • privateEndpointName: string

      The name of the private endpoint.

    • Optional options: PrivateEndpointsDeleteOptionalParams

      The options parameters.

    Returns Promise<void>

  • Creates a Stream Analytics Private Endpoint or replaces an already existing Private Endpoint.

    Parameters

    • resourceGroupName: string

      The name of the resource group. The name is case insensitive.

    • clusterName: string

      The name of the cluster.

    • privateEndpointName: string

      The name of the private endpoint.

    • privateEndpoint: PrivateEndpoint

      The definition of the private endpoint that will be used to create a new cluster or replace the existing one.

    • Optional options: PrivateEndpointsCreateOrUpdateOptionalParams

      The options parameters.

    Returns Promise<PrivateEndpoint>

Generated using TypeDoc