server_based_performance_tiers
Creates, updates, deletes, gets or lists a server_based_performance_tiers
resource.
Overview
Name | server_based_performance_tiers |
Type | Resource |
Id | azure.maria_db.server_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 | resourceGroupName, serverName, subscriptionId | List all the performance tiers for a MariaDB server. |
SELECT
examples
List all the performance tiers for a MariaDB server.
SELECT
id,
maxBackupRetentionDays,
maxLargeStorageMB,
maxStorageMB,
minBackupRetentionDays,
minLargeStorageMB,
minStorageMB,
serviceLevelObjectives
FROM azure.maria_db.server_based_performance_tiers
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND serverName = '{{ serverName }}'
AND subscriptionId = '{{ subscriptionId }}';