private_link_resources
Creates, updates, deletes, gets or lists a private_link_resources resource.
Overview
| Name | private_link_resources |
| Type | Resource |
| Id | azure.digital_twins.private_link_resources |
Fields
The following fields are returned by SELECT queries:
- get
- list
The body contains the specified of private link resource.
| Name | Datatype | Description |
|---|---|---|
id | string | The resource identifier. |
name | string | The resource name. (pattern: ^(?![0-9]+$)(?!-)[a-zA-Z0-9-]{2,49}[a-zA-Z0-9]$) |
properties | object | The group information properties. |
type | string | The resource type. |
The body contains the list of private link resources.
| Name | Datatype | Description |
|---|---|---|
id | string | The resource identifier. |
name | string | The resource name. (pattern: ^(?![0-9]+$)(?!-)[a-zA-Z0-9-]{2,49}[a-zA-Z0-9]$) |
properties | object | The group information properties. |
type | string | The resource type. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | subscriptionId, resourceGroupName, resourceName, resourceId | api-version | Get the specified private link resource for the given Digital Twin. |
list | select | subscriptionId, resourceGroupName, resourceName | api-version | List private link resources for given Digital Twin. |
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.
| Name | Datatype | Description |
|---|---|---|
resourceGroupName | string | The name of the resource group that contains the DigitalTwinsInstance. |
resourceId | string | The name of the private link resource. |
resourceName | string | The name of the DigitalTwinsInstance. |
subscriptionId | string | The subscription identifier. |
api-version | string | Version of the DigitalTwinsInstance Management API. |
SELECT examples
- get
- list
Get the specified private link resource for the given Digital Twin.
SELECT
id,
name,
properties,
type
FROM azure.digital_twins.private_link_resources
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND resourceName = '{{ resourceName }}' -- required
AND resourceId = '{{ resourceId }}' -- required
AND api-version = '{{ api-version }}'
;
List private link resources for given Digital Twin.
SELECT
id,
name,
properties,
type
FROM azure.digital_twins.private_link_resources
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND resourceName = '{{ resourceName }}' -- required
AND api-version = '{{ api-version }}'
;