vw_master_sites_controllers
Creates, updates, deletes, gets or lists a vw_master_sites_controllers
resource.
Overview
Name | vw_master_sites_controllers |
Type | View |
Id | azure.migrate.vw_master_sites_controllers |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
tags as tags,
JSON_EXTRACT(properties, '$.publicNetworkAccess') as "public_network_access",
JSON_EXTRACT(properties, '$.allowMultipleSites') as "allow_multiple_sites",
JSON_EXTRACT(properties, '$.sites') as "sites",
JSON_EXTRACT(properties, '$.customerStorageAccountArmId') as "customer_storage_account_arm_id",
JSON_EXTRACT(properties, '$.privateEndpointConnections') as "private_endpoint_connections",
JSON_EXTRACT(properties, '$.nestedSites') as "nested_sites",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
siteName
FROM azure.migrate.master_sites_controllers
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
tags as tags,
json_extract_path_text(properties, '$.publicNetworkAccess') as "public_network_access",
json_extract_path_text(properties, '$.allowMultipleSites') as "allow_multiple_sites",
json_extract_path_text(properties, '$.sites') as "sites",
json_extract_path_text(properties, '$.customerStorageAccountArmId') as "customer_storage_account_arm_id",
json_extract_path_text(properties, '$.privateEndpointConnections') as "private_endpoint_connections",
json_extract_path_text(properties, '$.nestedSites') as "nested_sites",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
siteName
FROM azure.migrate.master_sites_controllers
WHERE subscriptionId = 'replace-me';