Skip to main content

recoverable_servers

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

Overview

Namerecoverable_servers
TypeResource
Idazure.maria_db.recoverable_servers

Fields

NameDatatypeDescription
editiontextfield from the properties object
hardware_generationtextfield from the properties object
last_available_backup_date_timetextfield from the properties object
resourceGroupNametextfield from the properties object
serverNametextfield from the properties object
service_level_objectivetextfield from the properties object
subscriptionIdtextfield from the properties object
v_coretextfield from the properties object
versiontextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTresourceGroupName, serverName, subscriptionIdGets a recoverable MariaDB Server.

SELECT examples

Gets a recoverable MariaDB Server.

SELECT
edition,
hardware_generation,
last_available_backup_date_time,
resourceGroupName,
serverName,
service_level_objective,
subscriptionId,
v_core,
version
FROM azure.maria_db.vw_recoverable_servers
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND serverName = '{{ serverName }}'
AND subscriptionId = '{{ subscriptionId }}';