Skip to main content

private_endpoint_connection_proxies

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

Overview

Nameprivate_endpoint_connection_proxies
TypeResource
Idazure.device_update.private_endpoint_connection_proxies

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.
eTagstringETag from NRP.
provisioningStatestringThe provisioning state of the private endpoint connection proxy resource. Known values are: "Succeeded", "Creating", "Deleting", and "Failed".
remotePrivateEndpointobjectRemote private endpoint details.
statusstringOperation status.
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
getselectresource_group_name, account_name, private_endpoint_connection_proxy_id, subscription_id(INTERNAL - DO NOT USE) Get the specified private endpoint connection proxy associated with the device update account.
list_by_accountselectresource_group_name, account_name, subscription_id(INTERNAL - DO NOT USE) List all private endpoint connection proxies in a device update account.
create_or_updateinsertresource_group_name, account_name, private_endpoint_connection_proxy_id, subscription_id(INTERNAL - DO NOT USE) Creates or updates the specified private endpoint connection proxy resource associated with the device update account.
create_or_updatereplaceresource_group_name, account_name, private_endpoint_connection_proxy_id, subscription_id(INTERNAL - DO NOT USE) Creates or updates the specified private endpoint connection proxy resource associated with the device update account.
deletedeleteresource_group_name, account_name, private_endpoint_connection_proxy_id, subscription_id(INTERNAL - DO NOT USE) Deletes the specified private endpoint connection proxy associated with the device update account.
validateexecresource_group_name, account_name, private_endpoint_connection_proxy_id, subscription_id(INTERNAL - DO NOT USE) Validates a private endpoint connection proxy object.
update_private_endpoint_propertiesexecresource_group_name, account_name, private_endpoint_connection_proxy_id, subscription_id(INTERNAL - DO NOT USE) Updates a private endpoint inside the private endpoint connection proxy object.

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_namestringAccount name. Required.
private_endpoint_connection_proxy_idstringThe ID of the private endpoint connection proxy object. Required.
resource_group_namestringThe resource group name. Required.
subscription_idstring

SELECT examples

(INTERNAL - DO NOT USE) Get the specified private endpoint connection proxy associated with the device update account.

SELECT
id,
name,
eTag,
provisioningState,
remotePrivateEndpoint,
status,
systemData,
type
FROM azure.device_update.private_endpoint_connection_proxies
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND account_name = '{{ account_name }}' -- required
AND private_endpoint_connection_proxy_id = '{{ private_endpoint_connection_proxy_id }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;

INSERT examples

(INTERNAL - DO NOT USE) Creates or updates the specified private endpoint connection proxy resource associated with the device update account.

INSERT INTO azure.device_update.private_endpoint_connection_proxies (
remotePrivateEndpoint,
status,
resource_group_name,
account_name,
private_endpoint_connection_proxy_id,
subscription_id
)
SELECT
'{{ remotePrivateEndpoint }}',
'{{ status }}',
'{{ resource_group_name }}',
'{{ account_name }}',
'{{ private_endpoint_connection_proxy_id }}',
'{{ subscription_id }}'
RETURNING
id,
name,
eTag,
properties,
remotePrivateEndpoint,
status,
systemData,
type
;

REPLACE examples

(INTERNAL - DO NOT USE) Creates or updates the specified private endpoint connection proxy resource associated with the device update account.

REPLACE azure.device_update.private_endpoint_connection_proxies
SET
remotePrivateEndpoint = '{{ remotePrivateEndpoint }}',
status = '{{ status }}'
WHERE
resource_group_name = '{{ resource_group_name }}' --required
AND account_name = '{{ account_name }}' --required
AND private_endpoint_connection_proxy_id = '{{ private_endpoint_connection_proxy_id }}' --required
AND subscription_id = '{{ subscription_id }}' --required
RETURNING
id,
name,
eTag,
properties,
remotePrivateEndpoint,
status,
systemData,
type;

DELETE examples

(INTERNAL - DO NOT USE) Deletes the specified private endpoint connection proxy associated with the device update account.

DELETE FROM azure.device_update.private_endpoint_connection_proxies
WHERE resource_group_name = '{{ resource_group_name }}' --required
AND account_name = '{{ account_name }}' --required
AND private_endpoint_connection_proxy_id = '{{ private_endpoint_connection_proxy_id }}' --required
AND subscription_id = '{{ subscription_id }}' --required
;

Lifecycle Methods

(INTERNAL - DO NOT USE) Validates a private endpoint connection proxy object.

EXEC azure.device_update.private_endpoint_connection_proxies.validate 
@resource_group_name='{{ resource_group_name }}' --required,
@account_name='{{ account_name }}' --required,
@private_endpoint_connection_proxy_id='{{ private_endpoint_connection_proxy_id }}' --required,
@subscription_id='{{ subscription_id }}' --required
@@json=
'{
"remotePrivateEndpoint": "{{ remotePrivateEndpoint }}",
"status": "{{ status }}"
}'
;