Skip to main content

detailed_cost_report_operation_status

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

Overview

Namedetailed_cost_report_operation_status
TypeResource
Idazure.cost_management.detailed_cost_report_operation_status

Fields

NameDatatypeDescription
idtextThe ID of the long running operation.
nametextThe name of the long running operation.
download_urltextfield from the properties object
end_timetextfield from the properties object
errortextThe details of the error.
expiry_timetextfield from the properties object
operationIdtextfield from the properties object
scopetextfield from the properties object
start_timetextfield from the properties object
statustextThe status of the long running operation.
typetextThe type of the long running operation.
valid_tilltextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECToperationId, scopeGet 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.

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 }}';