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

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringID of the operation.
namestringName of the operation.
endTimestring (date-time)Operation end time. Format: ISO-8601.
errorobjectError information related to this operation.
propertiesobjectAdditional information associated with this operation.
startTimestring (date-time)Operation start time. Format: ISO-8601.
statusstringOperation status.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, vaultName, operationIdapi-versionGets the status of async operations of tiering cost

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
operationIdstring
resourceGroupNamestringThe name of the resource group where the recovery services vault is present.
subscriptionIdstringThe subscription Id.
vaultNamestringThe name of the recovery services vault.
api-versionstringClient Api Version.

SELECT examples

Gets the status of async operations of tiering cost

SELECT
id,
name,
endTime,
error,
properties,
startTime,
status
FROM azure.recovery_services_backup.tiering_cost_operation_status
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND vaultName = '{{ vaultName }}' -- required
AND operationId = '{{ operationId }}' -- required
AND api-version = '{{ api-version }}'
;