generate_detailed_cost_report_operation_results
Creates, updates, deletes, gets or lists a generate_detailed_cost_report_operation_results resource.
Overview
| Name | generate_detailed_cost_report_operation_results |
| Type | Resource |
| Id | azure.cost_management.generate_detailed_cost_report_operation_results |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
downloadUrl | string | The URL to download the generated report. |
expiryTime | string (date-time) | The time at which report URL becomes invalid/expires in UTC e.g. 2020-12-08T05:55:59.4394737Z. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
validTill | string (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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | operation_id, 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 |
|---|---|---|
operation_id | string | The target operation Id. Required. |
scope | string | The fully qualified Azure Resource manager identifier of the resource. Required. |
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,
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
;