Skip to main content

server_based_performance_tiers

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

Overview

Nameserver_based_performance_tiers
TypeResource
Idazure.maria_db.server_based_performance_tiers

Fields

NameDatatypeDescription
idstringID of the performance tier.
maxBackupRetentionDaysintegerMaximum Backup retention in days for the performance tier edition
maxLargeStorageMBintegerMax storage allowed for a server.
maxStorageMBintegerMax storage allowed for a server.
minBackupRetentionDaysintegerMinimum Backup retention in days for the performance tier edition
minLargeStorageMBintegerMax storage allowed for a server.
minStorageMBintegerMax storage allowed for a server.
serviceLevelObjectivesarrayService level objectives associated with the performance tier

Methods

NameAccessible byRequired ParamsDescription
listSELECTresourceGroupName, serverName, subscriptionIdList 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 }}';