vw_fabric_locations
Creates, updates, deletes, gets or lists a vw_fabric_locations
resource.
Overview
Name | vw_fabric_locations |
Type | View |
Id | azure_stack.fabric_admin.vw_fabric_locations |
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, '$.pepIpAddresses') as "pep_ip_addresses",
JSON_EXTRACT(properties, '$.timeServer') as "time_server",
JSON_EXTRACT(properties, '$.stampInformationId') as "stamp_information_id",
JSON_EXTRACT(properties, '$.stampCloudId') as "stamp_cloud_id",
JSON_EXTRACT(properties, '$.externalDNSIPAddress01') as "external_dnsip_address01",
JSON_EXTRACT(properties, '$.externalDNSIPAddress02') as "external_dnsip_address02",
JSON_EXTRACT(properties, '$.exclusiveAdminOperationRunning') as "exclusive_admin_operation_running",
JSON_EXTRACT(properties, '$.exclusiveAdminOperationName') as "exclusive_admin_operation_name",
JSON_EXTRACT(properties, '$.startUpActionPlanStartTime') as "start_up_action_plan_start_time",
JSON_EXTRACT(properties, '$.startUpActionPlanEndTime') as "start_up_action_plan_end_time",
JSON_EXTRACT(properties, '$.shutDownActionPlanStartTime') as "shut_down_action_plan_start_time",
JSON_EXTRACT(properties, '$.shutDownActionPlanEndTime') as "shut_down_action_plan_end_time",
JSON_EXTRACT(properties, '$.dataGeoLocation') as "data_geo_location",
subscriptionId,
resourceGroupName,
fabricLocation
FROM azure_stack.fabric_admin.fabric_locations
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.pepIpAddresses') as "pep_ip_addresses",
json_extract_path_text(properties, '$.timeServer') as "time_server",
json_extract_path_text(properties, '$.stampInformationId') as "stamp_information_id",
json_extract_path_text(properties, '$.stampCloudId') as "stamp_cloud_id",
json_extract_path_text(properties, '$.externalDNSIPAddress01') as "external_dnsip_address01",
json_extract_path_text(properties, '$.externalDNSIPAddress02') as "external_dnsip_address02",
json_extract_path_text(properties, '$.exclusiveAdminOperationRunning') as "exclusive_admin_operation_running",
json_extract_path_text(properties, '$.exclusiveAdminOperationName') as "exclusive_admin_operation_name",
json_extract_path_text(properties, '$.startUpActionPlanStartTime') as "start_up_action_plan_start_time",
json_extract_path_text(properties, '$.startUpActionPlanEndTime') as "start_up_action_plan_end_time",
json_extract_path_text(properties, '$.shutDownActionPlanStartTime') as "shut_down_action_plan_start_time",
json_extract_path_text(properties, '$.shutDownActionPlanEndTime') as "shut_down_action_plan_end_time",
json_extract_path_text(properties, '$.dataGeoLocation') as "data_geo_location",
subscriptionId,
resourceGroupName,
fabricLocation
FROM azure_stack.fabric_admin.fabric_locations
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me';