exports_execution_histories
Creates, updates, deletes, gets or lists a exports_execution_histories
resource.
Overview
Name | exports_execution_histories |
Type | Resource |
Id | azure.cost_management.exports_execution_histories |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Resource Id. |
name | string | Resource name. |
eTag | string | eTag of the resource. To handle concurrent update scenario, this field will be used to determine whether the user is updating the latest version or not. |
properties | object | The properties of the export run. |
type | string | Resource type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | exportName, scope | The operation to get the run history of an export for the defined scope and export name. |
SELECT
examples
The operation to get the run history of an export for the defined scope and export name.
SELECT
id,
name,
eTag,
properties,
type
FROM azure.cost_management.exports_execution_histories
WHERE exportName = '{{ exportName }}'
AND scope = '{{ scope }}';