location_based_performance_tiers
Creates, updates, deletes, gets or lists a location_based_performance_tiers
resource.
Overview
Name | location_based_performance_tiers |
Type | Resource |
Id | azure.maria_db.location_based_performance_tiers |
Fields
Name | Datatype | Description |
---|---|---|
id | string | ID of the performance tier. |
maxBackupRetentionDays | integer | Maximum Backup retention in days for the performance tier edition |
maxLargeStorageMB | integer | Max storage allowed for a server. |
maxStorageMB | integer | Max storage allowed for a server. |
minBackupRetentionDays | integer | Minimum Backup retention in days for the performance tier edition |
minLargeStorageMB | integer | Max storage allowed for a server. |
minStorageMB | integer | Max storage allowed for a server. |
serviceLevelObjectives | array | Service level objectives associated with the performance tier |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | locationName, subscriptionId | List all the performance tiers at specified location in a given subscription. |
SELECT
examples
List all the performance tiers at specified location in a given subscription.
SELECT
id,
maxBackupRetentionDays,
maxLargeStorageMB,
maxStorageMB,
minBackupRetentionDays,
minLargeStorageMB,
minStorageMB,
serviceLevelObjectives
FROM azure.maria_db.location_based_performance_tiers
WHERE locationName = '{{ locationName }}'
AND subscriptionId = '{{ subscriptionId }}';