vw_location_based_capability_sets
Creates, updates, deletes, gets or lists a vw_location_based_capability_sets
resource.
Overview
Name | vw_location_based_capability_sets |
Type | View |
Id | azure.mysql.vw_location_based_capability_sets |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.supportedGeoBackupRegions') as "supported_geo_backup_regions",
JSON_EXTRACT(properties, '$.supportedFlexibleServerEditions') as "supported_flexible_server_editions",
JSON_EXTRACT(properties, '$.supportedServerVersions') as "supported_server_versions",
subscriptionId,
locationName,
capabilitySetName
FROM azure.mysql.location_based_capability_sets
WHERE subscriptionId = 'replace-me' AND locationName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.supportedGeoBackupRegions') as "supported_geo_backup_regions",
json_extract_path_text(properties, '$.supportedFlexibleServerEditions') as "supported_flexible_server_editions",
json_extract_path_text(properties, '$.supportedServerVersions') as "supported_server_versions",
subscriptionId,
locationName,
capabilitySetName
FROM azure.mysql.location_based_capability_sets
WHERE subscriptionId = 'replace-me' AND locationName = 'replace-me';