Skip to main content

exports_execution_histories

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

Overview

Nameexports_execution_histories
TypeResource
Idazure.cost_management.exports_execution_histories

Fields

NameDatatypeDescription
idstringResource Id.
namestringResource name.
eTagstringeTag 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.
propertiesobjectThe properties of the export run.
typestringResource type.

Methods

NameAccessible byRequired ParamsDescription
getSELECTexportName, scopeThe 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 }}';