detailed_cost_report_operation_status
Creates, updates, deletes, gets or lists a detailed_cost_report_operation_status
resource.
Overview
Name | detailed_cost_report_operation_status |
Type | Resource |
Id | azure.cost_management.detailed_cost_report_operation_status |
Fields
- vw_detailed_cost_report_operation_status
- detailed_cost_report_operation_status
Name | Datatype | Description |
---|---|---|
id | text | The ID of the long running operation. |
name | text | The name of the long running operation. |
download_url | text | field from the properties object |
end_time | text | field from the properties object |
error | text | The details of the error. |
expiry_time | text | field from the properties object |
operationId | text | field from the properties object |
scope | text | field from the properties object |
start_time | text | field from the properties object |
status | text | The status of the long running operation. |
type | text | The type of the long running operation. |
valid_till | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | The ID of the long running operation. |
name | string | The name of the long running operation. |
endTime | string | The endTime of the operation. |
error | object | The details of the error. |
properties | object | The URL to download the generated report. |
startTime | string | The startTime of the operation. |
status | object | The status of the long running operation. |
type | string | The type of the long running operation. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | operationId, scope | Get the status of the specified operation. This link is provided in the GenerateDetailedCostReport creation request response header. |
SELECT
examples
Get the status of the specified operation. This link is provided in the GenerateDetailedCostReport creation request response header.
- vw_detailed_cost_report_operation_status
- detailed_cost_report_operation_status
SELECT
id,
name,
download_url,
end_time,
error,
expiry_time,
operationId,
scope,
start_time,
status,
type,
valid_till
FROM azure.cost_management.vw_detailed_cost_report_operation_status
WHERE operationId = '{{ operationId }}'
AND scope = '{{ scope }}';
SELECT
id,
name,
endTime,
error,
properties,
startTime,
status,
type
FROM azure.cost_management.detailed_cost_report_operation_status
WHERE operationId = '{{ operationId }}'
AND scope = '{{ scope }}';