vw_servers
Creates, updates, deletes, gets or lists a vw_servers
resource.
Overview
Name | vw_servers |
Type | View |
Id | azure.fluid_relay.vw_servers |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
systemData as system_data,
identity as identity,
tags as tags,
JSON_EXTRACT(properties, '$.frsTenantId') as "frs_tenant_id",
JSON_EXTRACT(properties, '$.fluidRelayEndpoints') as "fluid_relay_endpoints",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.encryption') as "encryption",
JSON_EXTRACT(properties, '$.storagesku') as "storagesku",
subscriptionId,
resourceGroup,
fluidRelayServerName
FROM azure.fluid_relay.servers
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
systemData as system_data,
identity as identity,
tags as tags,
json_extract_path_text(properties, '$.frsTenantId') as "frs_tenant_id",
json_extract_path_text(properties, '$.fluidRelayEndpoints') as "fluid_relay_endpoints",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.encryption') as "encryption",
json_extract_path_text(properties, '$.storagesku') as "storagesku",
subscriptionId,
resourceGroup,
fluidRelayServerName
FROM azure.fluid_relay.servers
WHERE subscriptionId = 'replace-me';