operation_results
Creates, updates, deletes, gets or lists a operation_results
resource.
Overview
Name | operation_results |
Type | Resource |
Id | azure.recovery_services.operation_results |
Fields
- vw_operation_results
- operation_results
Name | Datatype | Description |
---|---|---|
backup_storage_version | text | field from the properties object |
bcdr_security_level | text | field from the properties object |
encryption | text | field from the properties object |
identity | text | Identity for the resource. |
location | text | The geo-location where the resource lives |
monitoring_settings | text | field from the properties object |
move_details | text | field from the properties object |
move_state | text | field from the properties object |
operationId | text | field from the properties object |
private_endpoint_connections | text | field from the properties object |
private_endpoint_state_for_backup | text | field from the properties object |
private_endpoint_state_for_site_recovery | text | field from the properties object |
provisioning_state | text | field from the properties object |
public_network_access | text | field from the properties object |
redundancy_settings | text | field from the properties object |
resourceGroupName | text | field from the properties object |
resource_guard_operation_requests | text | field from the properties object |
restore_settings | text | field from the properties object |
secure_score | text | field from the properties object |
security_settings | text | field from the properties object |
sku | text | The resource model definition representing SKU |
subscriptionId | text | field from the properties object |
system_data | text | field from the properties object |
tags | text | Resource tags. |
upgrade_details | text | field from the properties object |
vaultName | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
identity | object | Identity for the resource. |
location | string | The geo-location where the resource lives |
properties | object | Properties of the vault. |
sku | object | The resource model definition representing SKU |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
tags | object | Resource tags. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | operationId, resourceGroupName, subscriptionId, vaultName | Gets the operation result for a resource. |
SELECT
examples
Gets the operation result for a resource.
- vw_operation_results
- operation_results
SELECT
backup_storage_version,
bcdr_security_level,
encryption,
identity,
location,
monitoring_settings,
move_details,
move_state,
operationId,
private_endpoint_connections,
private_endpoint_state_for_backup,
private_endpoint_state_for_site_recovery,
provisioning_state,
public_network_access,
redundancy_settings,
resourceGroupName,
resource_guard_operation_requests,
restore_settings,
secure_score,
security_settings,
sku,
subscriptionId,
system_data,
tags,
upgrade_details,
vaultName
FROM azure.recovery_services.vw_operation_results
WHERE operationId = '{{ operationId }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND vaultName = '{{ vaultName }}';
SELECT
identity,
location,
properties,
sku,
systemData,
tags
FROM azure.recovery_services.operation_results
WHERE operationId = '{{ operationId }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND vaultName = '{{ vaultName }}';