private_link_resources
Creates, updates, deletes, gets or lists a private_link_resources
resource.
Overview
Name | private_link_resources |
Type | Resource |
Id | azure.monitor.private_link_resources |
Fields
- vw_private_link_resources
- private_link_resources
Name | Datatype | Description |
---|---|---|
id | text | Azure resource Id |
name | text | Azure resource name |
groupName | text | field from the properties object |
group_id | text | field from the properties object |
location | text | Resource location |
required_members | text | field from the properties object |
required_zone_names | text | field from the properties object |
resourceGroupName | text | field from the properties object |
scopeName | text | field from the properties object |
subscriptionId | text | field from the properties object |
system_data | text | field from the properties object |
tags | text | Gets or sets a list of key value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater in length than 128 characters and a value no greater in length than 256 characters. |
type | text | Azure resource type |
Name | Datatype | Description |
---|---|---|
id | string | Azure resource Id |
name | string | Azure resource name |
location | string | Resource location |
properties | object | Properties of a private link resource. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
tags | object | Gets or sets a list of key value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater in length than 128 characters and a value no greater in length than 256 characters. |
type | string | Azure resource type |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | groupName, resourceGroupName, scopeName, subscriptionId | Gets the private link resources that need to be created for a Azure Monitor PrivateLinkScope. |
list_by_private_link_scope | SELECT | resourceGroupName, scopeName, subscriptionId | Gets the private link resources that need to be created for a Azure Monitor PrivateLinkScope. |
SELECT
examples
Gets the private link resources that need to be created for a Azure Monitor PrivateLinkScope.
- vw_private_link_resources
- private_link_resources
SELECT
id,
name,
groupName,
group_id,
location,
required_members,
required_zone_names,
resourceGroupName,
scopeName,
subscriptionId,
system_data,
tags,
type
FROM azure.monitor.vw_private_link_resources
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND scopeName = '{{ scopeName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
location,
properties,
systemData,
tags,
type
FROM azure.monitor.private_link_resources
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND scopeName = '{{ scopeName }}'
AND subscriptionId = '{{ subscriptionId }}';