Skip to main content

location_based_performance_tiers

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

Overview

Namelocation_based_performance_tiers
TypeResource
Idazure.maria_db.location_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, locationNameList all the performance tiers 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.

NameDatatypeDescription
locationNamestringThe name of the location.
subscriptionIdstringThe ID of the target 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 subscriptionId = '{{ subscriptionId }}' -- required
AND locationName = '{{ locationName }}' -- required
;