Skip to main content

location_based_capability_sets

Creates, updates, deletes, gets or lists a location_based_capability_sets resource.

Overview

Namelocation_based_capability_sets
TypeResource
Idazure.mysql.location_based_capability_sets

Fields

NameDatatypeDescription
capabilitySetNametextfield from the properties object
locationNametextfield from the properties object
subscriptionIdtextfield from the properties object
supported_flexible_server_editionstextfield from the properties object
supported_geo_backup_regionstextfield from the properties object
supported_server_versionstextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTcapabilitySetName, locationName, subscriptionIdGet capabilities at specified location in a given subscription.
listSELECTlocationName, subscriptionIdGet capabilities at specified location in a given subscription.

SELECT examples

Get capabilities at specified location in a given subscription.

SELECT
capabilitySetName,
locationName,
subscriptionId,
supported_flexible_server_editions,
supported_geo_backup_regions,
supported_server_versions
FROM azure.mysql.vw_location_based_capability_sets
WHERE locationName = '{{ locationName }}'
AND subscriptionId = '{{ subscriptionId }}';