private_links
Creates, updates, deletes, gets or lists a private_links
resource.
Overview
Name | private_links |
Type | Resource |
Id | azure.iot_central.private_links |
Fields
- vw_private_links
- private_links
Name | Datatype | Description |
---|---|---|
id | text | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} |
name | text | The name of the resource |
groupId | text | field from the properties object |
group_id | 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 |
resourceName | text | field from the properties object |
subscriptionId | text | field from the properties object |
system_data | text | field from the properties object |
type | text | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} |
name | string | The name of the resource |
properties | object | Properties of a private link resource. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | groupId, resourceGroupName, resourceName, subscriptionId | Get a private link resource of a IoT Central Application. |
list | SELECT | resourceGroupName, resourceName, subscriptionId | Get all private link resources of a IoT Central Application. |
SELECT
examples
Get all private link resources of a IoT Central Application.
- vw_private_links
- private_links
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 }}';
SELECT
id,
name,
properties,
systemData,
type
FROM azure.iot_central.private_links
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';