vw_cloud_services_networks
Creates, updates, deletes, gets or lists a vw_cloud_services_networks
resource.
Overview
Name | vw_cloud_services_networks |
Type | View |
Id | azure.nexus.vw_cloud_services_networks |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
extendedLocation as extended_location,
tags as tags,
JSON_EXTRACT(properties, '$.additionalEgressEndpoints') as "additional_egress_endpoints",
JSON_EXTRACT(properties, '$.associatedResourceIds') as "associated_resource_ids",
JSON_EXTRACT(properties, '$.clusterId') as "cluster_id",
JSON_EXTRACT(properties, '$.detailedStatus') as "detailed_status",
JSON_EXTRACT(properties, '$.detailedStatusMessage') as "detailed_status_message",
JSON_EXTRACT(properties, '$.enableDefaultEgressEndpoints') as "enable_default_egress_endpoints",
JSON_EXTRACT(properties, '$.enabledEgressEndpoints') as "enabled_egress_endpoints",
JSON_EXTRACT(properties, '$.hybridAksClustersAssociatedIds') as "hybrid_aks_clusters_associated_ids",
JSON_EXTRACT(properties, '$.interfaceName') as "interface_name",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.virtualMachinesAssociatedIds') as "virtual_machines_associated_ids",
subscriptionId,
resourceGroupName,
cloudServicesNetworkName
FROM azure.nexus.cloud_services_networks
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
extendedLocation as extended_location,
tags as tags,
json_extract_path_text(properties, '$.additionalEgressEndpoints') as "additional_egress_endpoints",
json_extract_path_text(properties, '$.associatedResourceIds') as "associated_resource_ids",
json_extract_path_text(properties, '$.clusterId') as "cluster_id",
json_extract_path_text(properties, '$.detailedStatus') as "detailed_status",
json_extract_path_text(properties, '$.detailedStatusMessage') as "detailed_status_message",
json_extract_path_text(properties, '$.enableDefaultEgressEndpoints') as "enable_default_egress_endpoints",
json_extract_path_text(properties, '$.enabledEgressEndpoints') as "enabled_egress_endpoints",
json_extract_path_text(properties, '$.hybridAksClustersAssociatedIds') as "hybrid_aks_clusters_associated_ids",
json_extract_path_text(properties, '$.interfaceName') as "interface_name",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.virtualMachinesAssociatedIds') as "virtual_machines_associated_ids",
subscriptionId,
resourceGroupName,
cloudServicesNetworkName
FROM azure.nexus.cloud_services_networks
WHERE subscriptionId = 'replace-me';