Skip to main content

generate_detailed_cost_report_operation_results

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

Overview

Namegenerate_detailed_cost_report_operation_results
TypeResource
Idazure.cost_management.generate_detailed_cost_report_operation_results

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
namestringThe name of the resource.
downloadUrlstringThe URL to download the generated report.
expiryTimestring (date-time)The time at which report URL becomes invalid/expires in UTC e.g. 2020-12-08T05:55:59.4394737Z.
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".
validTillstring (date-time)The time at which report URL becomes invalid/expires in UTC e.g. 2020-12-08T05:55:59.4394737Z.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectoperation_id, 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
operation_idstringThe target operation Id. Required.
scopestringThe fully qualified Azure Resource manager identifier of the resource. Required.

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,
downloadUrl,
expiryTime,
systemData,
type,
validTill
FROM azure.cost_management.generate_detailed_cost_report_operation_results
WHERE operation_id = '{{ operation_id }}' -- required
AND scope = '{{ scope }}' -- required
;