Skip to main content

protection_container_operation_results

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

Overview

Nameprotection_container_operation_results
TypeResource
Idazure.recovery_services_backup.protection_container_operation_results

Fields

NameDatatypeDescription
idtextFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
nametextThe name of the resource
backup_management_typetextfield from the properties object
containerNametextfield from the properties object
container_typetextfield from the properties object
fabricNametextfield from the properties object
friendly_nametextfield from the properties object
health_statustextfield from the properties object
operationIdtextfield from the properties object
protectable_object_typetextfield from the properties object
registration_statustextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object
typetextThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
vaultNametextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTcontainerName, fabricName, operationId, resourceGroupName, subscriptionId, vaultNameFetches the result of any operation on the container.

SELECT examples

Fetches the result of any operation on the container.

SELECT
id,
name,
backup_management_type,
containerName,
container_type,
fabricName,
friendly_name,
health_status,
operationId,
protectable_object_type,
registration_status,
resourceGroupName,
subscriptionId,
type,
vaultName
FROM azure.recovery_services_backup.vw_protection_container_operation_results
WHERE containerName = '{{ containerName }}'
AND fabricName = '{{ fabricName }}'
AND operationId = '{{ operationId }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND vaultName = '{{ vaultName }}';