Skip to main content

detailed_cost_report_operation_results

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

Overview

Namedetailed_cost_report_operation_results
TypeResource
Idazure.cost_management.detailed_cost_report_operation_results

Fields

The following fields are returned by SELECT queries:

OK. The request has succeeded.

NameDatatypeDescription
idstringThe ARM resource id of the long running operation.
namestringThe name of the long running operation.
propertiesobjectThe properties of the resource generated.
typestringThe type of the long running operation.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectoperationId, scopeGets the result of the specified operation. The link with this operationId is provided as a response header of the initial request.

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.

NameDatatypeDescription
operationIdstringThe target operation Id.
scopestringThe ARM Resource ID for subscription, billing account, or other billing scopes.Currently Resource Group and Management Group are not supported. For details, see https://aka.ms/costmgmt/scopes.

SELECT examples

Gets the result of the specified operation. The link with this operationId is provided as a response header of the initial request.

SELECT
id,
name,
properties,
type
FROM azure.cost_management.detailed_cost_report_operation_results
WHERE operationId = '{{ operationId }}' -- required
AND scope = '{{ scope }}' -- required
;