location_based_capabilities
Creates, updates, deletes, gets or lists a location_based_capabilities
resource.
Overview
Name | location_based_capabilities |
Type | Resource |
Id | azure.mysql.location_based_capabilities |
Fields
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|---|---|
supportedFlexibleServerEditions | array | A list of supported flexible server editions. |
supportedGeoBackupRegions | array | supported geo backup regions |
supportedHAMode | array | Supported high availability mode |
zone | string | zone name |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , locationName | Get capabilities at specified location in a given subscription. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
locationName | string | The name of the location. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- list
Get capabilities at specified location in a given subscription.
SELECT
supportedFlexibleServerEditions,
supportedGeoBackupRegions,
supportedHAMode,
zone
FROM azure.mysql.location_based_capabilities
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND locationName = '{{ locationName }}' -- required
;