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

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringID of the performance tier.
maxBackupRetentionDaysinteger (int32)Maximum Backup retention in days for the performance tier edition
maxLargeStorageMBinteger (int32)Max storage allowed for a server.
maxStorageMBinteger (int32)Max storage allowed for a server.
minBackupRetentionDaysinteger (int32)Minimum Backup retention in days for the performance tier edition
minLargeStorageMBinteger (int32)Max storage allowed for a server.
minStorageMBinteger (int32)Max storage allowed for a server.
serviceLevelObjectivesarrayService level objectives associated with the performance tier

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, serverNameList all the performance tiers for a MariaDB server.

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.

NameDatatypeDescription
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
serverNamestringThe name of the server.
subscriptionIdstringThe ID of the target subscription.

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 subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND serverName = '{{ serverName }}' -- required
;