Skip to main content

private_endpoint_connections

Creates, updates, deletes, gets or lists a private_endpoint_connections resource.

Overview

Nameprivate_endpoint_connections
TypeResource
Idazure.batch.private_endpoint_connections

Fields

NameDatatypeDescription
idtextThe ID of the resource.
nametextThe name of the resource.
accountNametextfield from the properties object
etagtextThe ETag of the resource, used for concurrency statements.
group_idstextfield from the properties object
privateEndpointConnectionNametextfield from the properties object
private_endpointtextfield from the properties object
private_link_service_connection_statetextfield from the properties object
provisioning_statetextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object
tagstextThe tags of the resource.
typetextThe type of the resource.

Methods

NameAccessible byRequired ParamsDescription
getSELECTaccountName, privateEndpointConnectionName, resourceGroupName, subscriptionIdGets information about the specified private endpoint connection.
list_by_batch_accountSELECTaccountName, resourceGroupName, subscriptionIdLists all of the private endpoint connections in the specified account.
deleteDELETEaccountName, privateEndpointConnectionName, resourceGroupName, subscriptionIdDeletes the specified private endpoint connection.
updateUPDATEaccountName, privateEndpointConnectionName, resourceGroupName, subscriptionIdUpdates the properties of an existing private endpoint connection.

SELECT examples

Lists all of the private endpoint connections in the specified account.

SELECT
id,
name,
accountName,
etag,
group_ids,
privateEndpointConnectionName,
private_endpoint,
private_link_service_connection_state,
provisioning_state,
resourceGroupName,
subscriptionId,
tags,
type
FROM azure.batch.vw_private_endpoint_connections
WHERE accountName = '{{ accountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';

UPDATE example

Updates a private_endpoint_connections resource.

/*+ update */
UPDATE azure.batch.private_endpoint_connections
SET
properties = '{{ properties }}',
tags = '{{ tags }}'
WHERE
accountName = '{{ accountName }}'
AND privateEndpointConnectionName = '{{ privateEndpointConnectionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';

DELETE example

Deletes the specified private_endpoint_connections resource.

/*+ delete */
DELETE FROM azure.batch.private_endpoint_connections
WHERE accountName = '{{ accountName }}'
AND privateEndpointConnectionName = '{{ privateEndpointConnectionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';