Skip to main content

private_endpoint_connections

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

Overview

Nameprivate_endpoint_connections
TypeResource
Idazure_extras.video_analyzer.private_endpoint_connections

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
namestringThe name of the resource.
privateEndpointobjectThe Private Endpoint resource. Variables are only populated by the server, and will be ignored when sending a request.
privateLinkServiceConnectionStateobjectA collection of information about the state of the connection between service consumer and provider.
provisioningStatestringThe provisioning state of the private endpoint connection resource. Possible values include: "Succeeded", "Creating", "Deleting", "Failed".
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectname, account_name, resource_group_name, subscription_idGet private endpoint connection. Get private endpoint connection under video analyzer account.
listselectaccount_name, resource_group_name, subscription_idGet all private endpoint connections. Get all private endpoint connections under video analyzer account.
create_or_updateinsertname, account_name, resource_group_name, subscription_idUpdate private endpoint connection. Update private endpoint connection state under video analyzer account.
create_or_updatereplacename, account_name, resource_group_name, subscription_idUpdate private endpoint connection. Update private endpoint connection state under video analyzer account.
deletedeletename, account_name, resource_group_name, subscription_idDelete private endpoint connection. Delete private endpoint connection under video analyzer account.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
account_namestringThe Video Analyzer account name.
namestringPrivate endpoint connection name.
resource_group_namestringThe name of the resource group. The name is case insensitive.
subscription_idstring

SELECT examples

Get private endpoint connection. Get private endpoint connection under video analyzer account.

SELECT
id,
name,
privateEndpoint,
privateLinkServiceConnectionState,
provisioningState,
systemData,
type
FROM azure_extras.video_analyzer.private_endpoint_connections
WHERE name = '{{ name }}' -- required
AND account_name = '{{ account_name }}' -- required
AND resource_group_name = '{{ resource_group_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;

INSERT examples

Update private endpoint connection. Update private endpoint connection state under video analyzer account.

INSERT INTO azure_extras.video_analyzer.private_endpoint_connections (
properties,
name,
account_name,
resource_group_name,
subscription_id
)
SELECT
'{{ properties }}',
'{{ name }}',
'{{ account_name }}',
'{{ resource_group_name }}',
'{{ subscription_id }}'
RETURNING
id,
name,
properties,
systemData,
type
;

REPLACE examples

Update private endpoint connection. Update private endpoint connection state under video analyzer account.

REPLACE azure_extras.video_analyzer.private_endpoint_connections
SET
properties = '{{ properties }}'
WHERE
name = '{{ name }}' --required
AND account_name = '{{ account_name }}' --required
AND resource_group_name = '{{ resource_group_name }}' --required
AND subscription_id = '{{ subscription_id }}' --required
RETURNING
id,
name,
properties,
systemData,
type;

DELETE examples

Delete private endpoint connection. Delete private endpoint connection under video analyzer account.

DELETE FROM azure_extras.video_analyzer.private_endpoint_connections
WHERE name = '{{ name }}' --required
AND account_name = '{{ account_name }}' --required
AND resource_group_name = '{{ resource_group_name }}' --required
AND subscription_id = '{{ subscription_id }}' --required
;