Skip to main content

ltr_backup_operations

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

Overview

Nameltr_backup_operations
TypeResource
Idazure.postgresql.ltr_backup_operations

Fields

NameDatatypeDescription
backupNametextfield from the properties object
backup_metadatatextfield from the properties object
backup_nametextfield from the properties object
data_transferred_in_bytestextfield from the properties object
datasource_size_in_bytestextfield from the properties object
end_timetextfield from the properties object
error_codetextfield from the properties object
error_messagetextfield from the properties object
percent_completetextfield from the properties object
resourceGroupNametextfield from the properties object
serverNametextfield from the properties object
start_timetextfield from the properties object
statustextfield from the properties object
subscriptionIdtextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTbackupName, resourceGroupName, serverName, subscriptionIdGets the result of the give long term retention backup operation for the flexible server.
list_by_serverSELECTresourceGroupName, serverName, subscriptionIdGets the result of the give long term retention backup operations for the flexible server.

SELECT examples

Gets the result of the give long term retention backup operations for the flexible server.

SELECT
backupName,
backup_metadata,
backup_name,
data_transferred_in_bytes,
datasource_size_in_bytes,
end_time,
error_code,
error_message,
percent_complete,
resourceGroupName,
serverName,
start_time,
status,
subscriptionId
FROM azure.postgresql.vw_ltr_backup_operations
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND serverName = '{{ serverName }}'
AND subscriptionId = '{{ subscriptionId }}';