Skip to main content

private_endpoint_connections

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

Overview

Nameprivate_endpoint_connections
TypeResource
Idazure.attestation.private_endpoint_connections

Fields

NameDatatypeDescription
idtextFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
nametextThe name of the resource
privateEndpointConnectionNametextfield from the properties object
private_endpointtextfield from the properties object
private_link_service_connection_statetextfield from the properties object
providerNametextfield from the properties object
provisioning_statetextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object
typetextThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

NameAccessible byRequired ParamsDescription
getSELECTprivateEndpointConnectionName, providerName, resourceGroupName, subscriptionIdGets the specified private endpoint connection associated with the attestation provider.
listSELECTproviderName, resourceGroupName, subscriptionIdList all the private endpoint connections associated with the attestation provider.
createINSERTprivateEndpointConnectionName, providerName, resourceGroupName, subscriptionIdUpdate the state of specified private endpoint connection associated with the attestation provider.
deleteDELETEprivateEndpointConnectionName, providerName, resourceGroupName, subscriptionIdDeletes the specified private endpoint connection associated with the attestation provider.

SELECT examples

List all the private endpoint connections associated with the attestation provider.

SELECT
id,
name,
privateEndpointConnectionName,
private_endpoint,
private_link_service_connection_state,
providerName,
provisioning_state,
resourceGroupName,
subscriptionId,
type
FROM azure.attestation.vw_private_endpoint_connections
WHERE providerName = '{{ providerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';

INSERT example

Use the following StackQL query and manifest file to create a new private_endpoint_connections resource.

/*+ create */
INSERT INTO azure.attestation.private_endpoint_connections (
privateEndpointConnectionName,
providerName,
resourceGroupName,
subscriptionId,
properties
)
SELECT
'{{ privateEndpointConnectionName }}',
'{{ providerName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ properties }}'
;

DELETE example

Deletes the specified private_endpoint_connections resource.

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