Skip to main content

location_based_performance_tier

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

Overview

Namelocation_based_performance_tier
TypeResource
Idazure_extras.rdbms.location_based_performance_tier

Fields

The following fields are returned by SELECT queries:

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

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectlocation_name, subscription_idList 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
location_namestringThe name of the location. Required.
subscription_idstring

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_extras.rdbms.location_based_performance_tier
WHERE location_name = '{{ location_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;