ltr_backup_operations
Creates, updates, deletes, gets or lists a ltr_backup_operations
resource.
Overview
Name | ltr_backup_operations |
Type | Resource |
Id | azure.postgresql.ltr_backup_operations |
Fields
- vw_ltr_backup_operations
- ltr_backup_operations
Name | Datatype | Description |
---|---|---|
backupName | text | field from the properties object |
backup_metadata | text | field from the properties object |
backup_name | text | field from the properties object |
data_transferred_in_bytes | text | field from the properties object |
datasource_size_in_bytes | text | field from the properties object |
end_time | text | field from the properties object |
error_code | text | field from the properties object |
error_message | text | field from the properties object |
percent_complete | text | field from the properties object |
resourceGroupName | text | field from the properties object |
serverName | text | field from the properties object |
start_time | text | field from the properties object |
status | text | field from the properties object |
subscriptionId | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Response for the backup request. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | backupName, resourceGroupName, serverName, subscriptionId | Gets the result of the give long term retention backup operation for the flexible server. |
list_by_server | SELECT | resourceGroupName, serverName, subscriptionId | Gets 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.
- vw_ltr_backup_operations
- ltr_backup_operations
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 }}';
SELECT
properties
FROM azure.postgresql.ltr_backup_operations
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND serverName = '{{ serverName }}'
AND subscriptionId = '{{ subscriptionId }}';