Skip to main content

private_link_resources

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

Overview

Nameprivate_link_resources
TypeResource
Idazure.device_update.private_link_resources

Fields

NameDatatypeDescription
accountNametextfield from the properties object
groupIdtextfield from the properties object
group_idtextfield from the properties object
provisioning_statetextfield from the properties object
required_memberstextfield from the properties object
required_zone_namestextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTaccountName, groupId, resourceGroupName, subscriptionIdGet the specified private link resource associated with the device update account.
list_by_accountSELECTaccountName, resourceGroupName, subscriptionIdList all private link resources in a device update account.

SELECT examples

List all private link resources in a device update account.

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 }}';