private_link_resources
Creates, updates, deletes, gets or lists a private_link_resources resource.
Overview
| Name | private_link_resources |
| Type | Resource |
| Id | azure.app_configuration.private_link_resources |
Fields
The following fields are returned by SELECT queries:
- get
- list_by_configuration_store
The request was successful; the request was well-formed and received properly.
| Name | Datatype | Description |
|---|---|---|
id | string | The resource ID. |
name | string | The name of the resource. |
properties | object | Private link resource properties. |
type | string | The type of the resource. |
The request was successful; the request was well-formed and received properly.
| Name | Datatype | Description |
|---|---|---|
id | string | The resource ID. |
name | string | The name of the resource. |
properties | object | Private link resource properties. |
type | string | The type of the resource. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | subscriptionId, resourceGroupName, configStoreName, groupName | Gets a private link resource that need to be created for a configuration store. | |
list_by_configuration_store | select | subscriptionId, resourceGroupName, configStoreName | Gets the private link resources that need to be created for a configuration store. |
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 |
|---|---|---|
configStoreName | string | The name of the configuration store. |
groupName | string | The name of the private link resource group. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT examples
- get
- list_by_configuration_store
Gets a private link resource that need to be created for a configuration store.
SELECT
id,
name,
properties,
type
FROM azure.app_configuration.private_link_resources
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND configStoreName = '{{ configStoreName }}' -- required
AND groupName = '{{ groupName }}' -- required
;
Gets the private link resources that need to be created for a configuration store.
SELECT
id,
name,
properties,
type
FROM azure.app_configuration.private_link_resources
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND configStoreName = '{{ configStoreName }}' -- required
;