detailed_cost_report_operation_results
Creates, updates, deletes, gets or lists a detailed_cost_report_operation_results
resource.
Overview
Name | detailed_cost_report_operation_results |
Type | Resource |
Id | azure.cost_management.detailed_cost_report_operation_results |
Fields
- vw_detailed_cost_report_operation_results
- detailed_cost_report_operation_results
Name | Datatype | Description |
---|---|---|
id | text | The ARM resource id of the long running operation. |
name | text | The name of the long running operation. |
download_url | text | field from the properties object |
expiry_time | text | field from the properties object |
operationId | text | field from the properties object |
scope | text | field from the properties object |
type | text | The type of the long running operation. |
valid_till | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | The ARM resource id of the long running operation. |
name | string | The name of the long running operation. |
properties | object | The URL to download the generated report. |
type | string | The type of the long running operation. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | operationId, scope | Gets the result of the specified operation. The link with this operationId is provided as a response header of the initial request. |
SELECT
examples
Gets the result of the specified operation. The link with this operationId is provided as a response header of the initial request.
- vw_detailed_cost_report_operation_results
- detailed_cost_report_operation_results
SELECT
id,
name,
download_url,
expiry_time,
operationId,
scope,
type,
valid_till
FROM azure.cost_management.vw_detailed_cost_report_operation_results
WHERE operationId = '{{ operationId }}'
AND scope = '{{ scope }}';
SELECT
id,
name,
properties,
type
FROM azure.cost_management.detailed_cost_report_operation_results
WHERE operationId = '{{ operationId }}'
AND scope = '{{ scope }}';