tiering_cost_operation_results
Creates, updates, deletes, gets or lists a tiering_cost_operation_results resource.
Overview
| Name | tiering_cost_operation_results |
| Type | Resource |
| Id | azure.recovery_services_backup.tiering_cost_operation_results |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
objectType | string | This 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | subscriptionId, resourceGroupName, vaultName, operationId | api-version | Gets 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.
| Name | Datatype | Description |
|---|---|---|
operationId | string | |
resourceGroupName | string | The name of the resource group where the recovery services vault is present. |
subscriptionId | string | The subscription Id. |
vaultName | string | The name of the recovery services vault. |
api-version | string | Client Api Version. |
SELECT examples
- get
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 }}'
;