vw_shared_private_link_resources
Creates, updates, deletes, gets or lists a vw_shared_private_link_resources
resource.
Overview
Name | vw_shared_private_link_resources |
Type | View |
Id | azure.search.vw_shared_private_link_resources |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
type as type,
JSON_EXTRACT(properties, '$.privateLinkResourceId') as "private_link_resource_id",
JSON_EXTRACT(properties, '$.groupId') as "group_id",
JSON_EXTRACT(properties, '$.requestMessage') as "request_message",
JSON_EXTRACT(properties, '$.resourceRegion') as "resource_region",
JSON_EXTRACT(properties, '$.status') as "status",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
searchServiceName,
sharedPrivateLinkResourceName
FROM azure.search.shared_private_link_resources
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND searchServiceName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.privateLinkResourceId') as "private_link_resource_id",
json_extract_path_text(properties, '$.groupId') as "group_id",
json_extract_path_text(properties, '$.requestMessage') as "request_message",
json_extract_path_text(properties, '$.resourceRegion') as "resource_region",
json_extract_path_text(properties, '$.status') as "status",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
searchServiceName,
sharedPrivateLinkResourceName
FROM azure.search.shared_private_link_resources
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND searchServiceName = 'replace-me';