private_link_resources
Creates, updates, deletes, gets or lists a private_link_resources
resource.
Overview
Name | private_link_resources |
Type | Resource |
Id | azure.relay.private_link_resources |
Fields
- vw_private_link_resources
- private_link_resources
Name | Datatype | Description |
---|---|---|
id | text | Fully qualified identifier of the resource. |
name | text | Name of the resource |
group_id | text | field from the properties object |
namespaceName | text | field from the properties object |
privateLinkResourceName | 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 |
subscriptionId | text | field from the properties object |
type | text | Type of the resource |
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified identifier of the resource. |
name | string | Name of the resource |
properties | object | Properties of PrivateLinkResource |
type | string | Type of the resource |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | namespaceName, privateLinkResourceName, resourceGroupName, subscriptionId | Gets a description for the specified Private Endpoint Connection name. |
list | SELECT | namespaceName, resourceGroupName, subscriptionId | Gets lists of resources that supports Privatelinks. |
SELECT
examples
Gets lists of resources that supports Privatelinks.
- vw_private_link_resources
- private_link_resources
SELECT
id,
name,
group_id,
namespaceName,
privateLinkResourceName,
required_members,
required_zone_names,
resourceGroupName,
subscriptionId,
type
FROM azure.relay.vw_private_link_resources
WHERE namespaceName = '{{ namespaceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
properties,
type
FROM azure.relay.private_link_resources
WHERE namespaceName = '{{ namespaceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';