private_link_resources
Creates, updates, deletes, gets or lists a private_link_resources
resource.
Overview
Name | private_link_resources |
Type | Resource |
Id | azure.device_update.private_link_resources |
Fields
The following fields are returned by SELECT
queries:
- get
- list_by_account
The request was successful; the request was well-formed and received properly.
Name | Datatype | Description |
---|---|---|
properties | object | The properties for a group information object |
The request was successful; the request was well-formed and received properly.
Name | Datatype | Description |
---|---|---|
properties | object | The properties for a group information object |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , accountName , groupId | Get the specified private link resource associated with the device update account. | |
list_by_account | select | subscriptionId , resourceGroupName , accountName | List all private link resources in a device update account. |
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 |
---|---|---|
accountName | string | Account name. |
groupId | string | The group ID of the private link resource. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string | The ID of the target subscription. |
SELECT
examples
- get
- list_by_account
Get the specified private link resource associated with the device update account.
SELECT
properties
FROM azure.device_update.private_link_resources
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND accountName = '{{ accountName }}' -- required
AND groupId = '{{ groupId }}' -- required
;
List all private link resources in a device update account.
SELECT
properties
FROM azure.device_update.private_link_resources
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND accountName = '{{ accountName }}' -- required
;