PrivateEndpointConnections interface

Interface representing a PrivateEndpointConnections.

Methods

delete(string, string, string, PrivateEndpointConnectionsDeleteOptionalParams)

Deletes the specified private endpoint connection associated with the storage account.

get(string, string, string, PrivateEndpointConnectionsGetOptionalParams)

Gets the specified private endpoint connection associated with the storage account.

list(string, string, PrivateEndpointConnectionsListOptionalParams)

List all the private endpoint connections associated with the storage account.

put(string, string, string, PrivateEndpointConnection, PrivateEndpointConnectionsPutOptionalParams)

Update the state of specified private endpoint connection associated with the storage account.

Method Details

delete(string, string, string, PrivateEndpointConnectionsDeleteOptionalParams)

Deletes the specified private endpoint connection associated with the storage account.

function delete(resourceGroupName: string, accountName: string, privateEndpointConnectionName: string, options?: PrivateEndpointConnectionsDeleteOptionalParams): Promise<void>

Parameters

resourceGroupName

string

The name of the resource group within the user's subscription. The name is case insensitive.

accountName

string

The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.

privateEndpointConnectionName

string

The name of the private endpoint connection associated with the Azure resource

options
PrivateEndpointConnectionsDeleteOptionalParams

The options parameters.

Returns

Promise<void>

get(string, string, string, PrivateEndpointConnectionsGetOptionalParams)

Gets the specified private endpoint connection associated with the storage account.

function get(resourceGroupName: string, accountName: string, privateEndpointConnectionName: string, options?: PrivateEndpointConnectionsGetOptionalParams): Promise<PrivateEndpointConnection>

Parameters

resourceGroupName

string

The name of the resource group within the user's subscription. The name is case insensitive.

accountName

string

The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.

privateEndpointConnectionName

string

The name of the private endpoint connection associated with the Azure resource

options
PrivateEndpointConnectionsGetOptionalParams

The options parameters.

Returns

list(string, string, PrivateEndpointConnectionsListOptionalParams)

List all the private endpoint connections associated with the storage account.

function list(resourceGroupName: string, accountName: string, options?: PrivateEndpointConnectionsListOptionalParams): PagedAsyncIterableIterator<PrivateEndpointConnection, PrivateEndpointConnection[], PageSettings>

Parameters

resourceGroupName

string

The name of the resource group within the user's subscription. The name is case insensitive.

accountName

string

The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.

options
PrivateEndpointConnectionsListOptionalParams

The options parameters.

Returns

put(string, string, string, PrivateEndpointConnection, PrivateEndpointConnectionsPutOptionalParams)

Update the state of specified private endpoint connection associated with the storage account.

function put(resourceGroupName: string, accountName: string, privateEndpointConnectionName: string, properties: PrivateEndpointConnection, options?: PrivateEndpointConnectionsPutOptionalParams): Promise<PrivateEndpointConnection>

Parameters

resourceGroupName

string

The name of the resource group within the user's subscription. The name is case insensitive.

accountName

string

The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.

privateEndpointConnectionName

string

The name of the private endpoint connection associated with the Azure resource

properties
PrivateEndpointConnection

The private endpoint connection properties.

options
PrivateEndpointConnectionsPutOptionalParams

The options parameters.

Returns