location_based_capability_set
Creates, updates, deletes, gets or lists a location_based_capability_set resource.
Overview
| Name | location_based_capability_set |
| Type | Resource |
| Id | azure.mysql_flexible_servers.location_based_capability_set |
Fields
The following fields are returned by SELECT queries:
- get
- list
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}". |
name | string | The name of the resource. |
supportedFeatures | array | A list of supported features. |
supportedFlexibleServerEditions | array | A list of supported flexible server editions. |
supportedGeoBackupRegions | array | supported geo backup regions. |
supportedServerVersions | array | A list of supported server versions. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}". |
name | string | The name of the resource. |
supportedFeatures | array | A list of supported features. |
supportedFlexibleServerEditions | array | A list of supported flexible server editions. |
supportedGeoBackupRegions | array | supported geo backup regions. |
supportedServerVersions | array | A list of supported server versions. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | location_name, subscription_id, capability_set_name | Get capabilities at specified location in a given subscription. | |
list | select | location_name, subscription_id | 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 |
|---|---|---|
capability_set_name | string | Name of capability set. Default value is "default". |
location_name | string | The name of the location. Required. |
subscription_id | string |
SELECT examples
- get
- list
Get capabilities at specified location in a given subscription.
SELECT
id,
name,
supportedFeatures,
supportedFlexibleServerEditions,
supportedGeoBackupRegions,
supportedServerVersions,
systemData,
type
FROM azure.mysql_flexible_servers.location_based_capability_set
WHERE location_name = '{{ location_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
AND capability_set_name = '{{ capability_set_name }}' -- required
;
Get capabilities at specified location in a given subscription.
SELECT
id,
name,
supportedFeatures,
supportedFlexibleServerEditions,
supportedGeoBackupRegions,
supportedServerVersions,
systemData,
type
FROM azure.mysql_flexible_servers.location_based_capability_set
WHERE location_name = '{{ location_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;