Skip to main content

iot_dps_resource_private_link_resources

Creates, updates, deletes, gets or lists an iot_dps_resource_private_link_resources resource.

Overview

Nameiot_dps_resource_private_link_resources
TypeResource
Idazure.iot_hub_device_provisioning.iot_dps_resource_private_link_resources

Fields

The following fields are returned by SELECT queries:

The body contains the specified of private link resource

NameDatatypeDescription
idstringThe resource identifier.
namestringThe resource name. (pattern: ^(?![0-9]+$)(?!-)[a-zA-Z0-9-]{2,49}[a-zA-Z0-9]$)
propertiesobjectThe properties for a group information object
typestringThe resource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, resourceName, groupIdapi-versionGet the specified private link resource for the given provisioning service
listselectsubscriptionId, resourceGroupName, resourceNameapi-versionList private link resources for the given provisioning service

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
groupIdstringThe name of the private link resource
resourceGroupNamestringThe name of the resource group that contains the provisioning service.
resourceNamestringThe name of the provisioning service.
subscriptionIdstringThe subscription identifier.
api-versionstringThe version of the API.

SELECT examples

Get the specified private link resource for the given provisioning service

SELECT
id,
name,
properties,
type
FROM azure.iot_hub_device_provisioning.iot_dps_resource_private_link_resources
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND resourceName = '{{ resourceName }}' -- required
AND groupId = '{{ groupId }}' -- required
AND api-version = '{{ api-version }}'
;