private_endpoint_connection_proxies
Creates, updates, deletes, gets or lists a private_endpoint_connection_proxies
resource.
Overview
Name | private_endpoint_connection_proxies |
Type | Resource |
Id | azure.device_update.private_endpoint_connection_proxies |
Fields
Name | Datatype | Description |
---|---|---|
eTag | string | ETag from NRP. |
properties | object | Private endpoint connection proxy object property bag. |
remotePrivateEndpoint | object | Remote private endpoint details. |
status | string | Operation status. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | accountName, privateEndpointConnectionProxyId, resourceGroupName, subscriptionId | (INTERNAL - DO NOT USE) Get the specified private endpoint connection proxy associated with the device update account. |
list_by_account | SELECT | accountName, resourceGroupName, subscriptionId | (INTERNAL - DO NOT USE) List all private endpoint connection proxies in a device update account. |
create_or_update | INSERT | accountName, privateEndpointConnectionProxyId, resourceGroupName, subscriptionId | (INTERNAL - DO NOT USE) Creates or updates the specified private endpoint connection proxy resource associated with the device update account. |
delete | DELETE | accountName, privateEndpointConnectionProxyId, resourceGroupName, subscriptionId | (INTERNAL - DO NOT USE) Deletes the specified private endpoint connection proxy associated with the device update account. |
validate | EXEC | accountName, privateEndpointConnectionProxyId, resourceGroupName, subscriptionId | (INTERNAL - DO NOT USE) Validates a private endpoint connection proxy object. |
SELECT
examples
(INTERNAL - DO NOT USE) List all private endpoint connection proxies in a device update account.
SELECT
eTag,
properties,
remotePrivateEndpoint,
status
FROM azure.device_update.private_endpoint_connection_proxies
WHERE accountName = '{{ accountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
INSERT
example
Use the following StackQL query and manifest file to create a new private_endpoint_connection_proxies
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure.device_update.private_endpoint_connection_proxies (
accountName,
privateEndpointConnectionProxyId,
resourceGroupName,
subscriptionId,
remotePrivateEndpoint,
status,
properties
)
SELECT
'{{ accountName }}',
'{{ privateEndpointConnectionProxyId }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ remotePrivateEndpoint }}',
'{{ status }}',
'{{ properties }}'
;
- name: your_resource_model_name
props:
- name: eTag
value: string
- name: remotePrivateEndpoint
value:
- name: id
value: string
- name: location
value: string
- name: immutableSubscriptionId
value: string
- name: immutableResourceId
value: string
- name: vnetTrafficTag
value: string
- name: manualPrivateLinkServiceConnections
value:
- - name: name
value: string
- name: groupIds
value:
- string
- name: requestMessage
value: string
- name: privateLinkServiceConnections
value:
- - name: name
value: string
- name: groupIds
value:
- string
- name: requestMessage
value: string
- name: privateLinkServiceProxies
value:
- - name: id
value: string
- name: remotePrivateLinkServiceConnectionState
value:
- name: status
value: []
- name: description
value: string
- name: actionsRequired
value: string
- name: remotePrivateEndpointConnection
value: string
- name: groupConnectivityInformation
value:
- - name: groupId
value: string
- name: memberName
value: string
- name: customerVisibleFqdns
value:
- string
- name: internalFqdn
value: string
- name: redirectMapId
value: string
- name: privateLinkServiceArmRegion
value: string
- name: connectionDetails
value:
- - name: id
value: string
- name: privateIpAddress
value: string
- name: linkIdentifier
value: string
- name: groupId
value: string
- name: memberName
value: string
- name: status
value: string
- name: properties
value:
- name: provisioningState
value: []
DELETE
example
Deletes the specified private_endpoint_connection_proxies
resource.
/*+ delete */
DELETE FROM azure.device_update.private_endpoint_connection_proxies
WHERE accountName = '{{ accountName }}'
AND privateEndpointConnectionProxyId = '{{ privateEndpointConnectionProxyId }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';