Skip to main content

tiering_cost_operation_results

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

Overview

Nametiering_cost_operation_results
TypeResource
Idazure.recovery_services_backup.tiering_cost_operation_results

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
objectTypestringThis property will be used as the discriminator for deciding the specific types in the polymorphic chain of types.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, vaultName, operationIdapi-versionGets the result of async operation for 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 result of async operation for tiering cost

SELECT
objectType
FROM azure.recovery_services_backup.tiering_cost_operation_results
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND vaultName = '{{ vaultName }}' -- required
AND operationId = '{{ operationId }}' -- required
AND api-version = '{{ api-version }}'
;