get_tiering_cost_operation_result
Creates, updates, deletes, gets or lists a get_tiering_cost_operation_result resource.
Overview
| Name | get_tiering_cost_operation_result |
| Type | Resource |
| Id | azure.recovery_services_backup.get_tiering_cost_operation_result |
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. Required. Default value is None. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | resource_group_name, vault_name, operation_id, subscription_id | 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 |
|---|---|---|
operation_id | string | Required. |
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
subscription_id | string | |
vault_name | string | The name of the recovery services vault. Required. |
SELECT examples
- get
Gets the result of async operation for tiering cost.
SELECT
objectType
FROM azure.recovery_services_backup.get_tiering_cost_operation_result
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND vault_name = '{{ vault_name }}' -- required
AND operation_id = '{{ operation_id }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;