operations
Creates, updates, deletes, gets or lists a operations
resource.
Overview
Name | operations |
Type | Resource |
Id | azure.recovery_services_backup.operations |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Name of the Operation. |
display | object | Localized display information of an operation. |
origin | string | The intended executor of the operation;governs the display of the operation in the RBAC UX and the audit logs UX |
properties | object | Class to represent shoebox properties in json client discovery. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT |
| Returns the list of available operations. |
bms_prepare_data_move | EXEC | resourceGroupName, subscriptionId, vaultName, data__dataMoveLevel, data__targetRegion, data__targetResourceId | Prepares source vault for Data Move operation |
bms_trigger_data_move | EXEC | resourceGroupName, subscriptionId, vaultName, data__correlationId, data__dataMoveLevel, data__sourceRegion, data__sourceResourceId | Triggers Data Move Operation on target vault |
move_recovery_point | EXEC | containerName, fabricName, protectedItemName, recoveryPointId, resourceGroupName, subscriptionId, vaultName | |
validate | EXEC | resourceGroupName, subscriptionId, vaultName, data__id, data__properties | Validate operation for specified backed up item. This is a synchronous operation. |
SELECT
examples
Returns the list of available operations.
SELECT
name,
display,
origin,
properties
FROM azure.recovery_services_backup.operations
;