vw_linked_servers
Creates, updates, deletes, gets or lists a vw_linked_servers
resource.
Overview
Name | vw_linked_servers |
Type | View |
Id | azure_isv.redis.vw_linked_servers |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.linkedRedisCacheId') as "linked_redis_cache_id",
JSON_EXTRACT(properties, '$.linkedRedisCacheLocation') as "linked_redis_cache_location",
JSON_EXTRACT(properties, '$.serverRole') as "server_role",
JSON_EXTRACT(properties, '$.geoReplicatedPrimaryHostName') as "geo_replicated_primary_host_name",
JSON_EXTRACT(properties, '$.primaryHostName') as "primary_host_name",
subscriptionId,
resourceGroupName,
name,
linkedServerName
FROM azure_isv.redis.linked_servers
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND name = 'replace-me';
SELECT
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.linkedRedisCacheId') as "linked_redis_cache_id",
json_extract_path_text(properties, '$.linkedRedisCacheLocation') as "linked_redis_cache_location",
json_extract_path_text(properties, '$.serverRole') as "server_role",
json_extract_path_text(properties, '$.geoReplicatedPrimaryHostName') as "geo_replicated_primary_host_name",
json_extract_path_text(properties, '$.primaryHostName') as "primary_host_name",
subscriptionId,
resourceGroupName,
name,
linkedServerName
FROM azure_isv.redis.linked_servers
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND name = 'replace-me';