Skip to main content

private_links

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

Overview

Nameprivate_links
TypeResource
Idazure.iot_central.private_links

Fields

NameDatatypeDescription
idtextFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
nametextThe name of the resource
groupIdtextfield from the properties object
group_idtextfield from the properties object
required_memberstextfield from the properties object
required_zone_namestextfield from the properties object
resourceGroupNametextfield from the properties object
resourceNametextfield from the properties object
subscriptionIdtextfield from the properties object
system_datatextfield from the properties object
typetextThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

NameAccessible byRequired ParamsDescription
getSELECTgroupId, resourceGroupName, resourceName, subscriptionIdGet a private link resource of a IoT Central Application.
listSELECTresourceGroupName, resourceName, subscriptionIdGet all private link resources of a IoT Central Application.

SELECT examples

Get all private link resources of a IoT Central Application.

SELECT
id,
name,
groupId,
group_id,
required_members,
required_zone_names,
resourceGroupName,
resourceName,
subscriptionId,
system_data,
type
FROM azure.iot_central.vw_private_links
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';