private_link_resources
Creates, updates, deletes, gets or lists a private_link_resources
resource.
Overview
Name | private_link_resources |
Type | Resource |
Id | azure.device_update.private_link_resources |
Fields
- vw_private_link_resources
- private_link_resources
Name | Datatype | Description |
---|---|---|
accountName | text | field from the properties object |
groupId | text | field from the properties object |
group_id | text | field from the properties object |
provisioning_state | text | field from the properties object |
required_members | text | field from the properties object |
required_zone_names | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | The properties for a group information object |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | accountName, groupId, resourceGroupName, subscriptionId | Get the specified private link resource associated with the device update account. |
list_by_account | SELECT | accountName, resourceGroupName, subscriptionId | List all private link resources in a device update account. |
SELECT
examples
List all private link resources in a device update account.
- vw_private_link_resources
- private_link_resources
SELECT
accountName,
groupId,
group_id,
provisioning_state,
required_members,
required_zone_names,
resourceGroupName,
subscriptionId
FROM azure.device_update.vw_private_link_resources
WHERE accountName = '{{ accountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
properties
FROM azure.device_update.private_link_resources
WHERE accountName = '{{ accountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';