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
The following fields are returned by SELECT
queries:
- get
OK. The request has succeeded.
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 properties of the resource generated. |
type | string | The type of the long running operation. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional 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. |
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 |
---|---|---|
operationId | string | The target operation Id. |
scope | string | The 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
- get
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
;