Skip to main content

tiering_cost_operation_status

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

Overview

Nametiering_cost_operation_status
TypeResource
Idazure.recovery_services_backup.tiering_cost_operation_status

Fields

NameDatatypeDescription
idtextID of the operation.
nametextName of the operation.
end_timetextfield from the properties object
errortextError information associated with operation status call.
object_typetextfield from the properties object
operationIdtextfield from the properties object
resourceGroupNametextfield from the properties object
start_timetextfield from the properties object
statustextOperation status.
subscriptionIdtextfield from the properties object
vaultNametextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECToperationId, resourceGroupName, subscriptionId, vaultNameGets the status of async operations of tiering cost

SELECT examples

Gets the status of async operations of tiering cost

SELECT
id,
name,
end_time,
error,
object_type,
operationId,
resourceGroupName,
start_time,
status,
subscriptionId,
vaultName
FROM azure.recovery_services_backup.vw_tiering_cost_operation_status
WHERE operationId = '{{ operationId }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND vaultName = '{{ vaultName }}';