deviceManagementCachedReportConfiguration resource type

Namespace: microsoft.graph

Note: The Microsoft Graph API for Intune requires an active Intune license for the tenant.

Entity representing the configuration of a cached report.

Methods

Method Return Type Description
List deviceManagementCachedReportConfigurations deviceManagementCachedReportConfiguration collection List properties and relationships of the deviceManagementCachedReportConfiguration objects.
Get deviceManagementCachedReportConfiguration deviceManagementCachedReportConfiguration Read properties and relationships of the deviceManagementCachedReportConfiguration object.
Create deviceManagementCachedReportConfiguration deviceManagementCachedReportConfiguration Create a new deviceManagementCachedReportConfiguration object.
Delete deviceManagementCachedReportConfiguration None Deletes a deviceManagementCachedReportConfiguration.
Update deviceManagementCachedReportConfiguration deviceManagementCachedReportConfiguration Update the properties of a deviceManagementCachedReportConfiguration object.

Properties

Property Type Description
id String Unique identifier for this entity.
reportName String Name of the report.
filter String Filters applied on report creation.
select String collection Columns selected from the report.
orderBy String collection Ordering of columns in the report.
metadata String Caller-managed metadata associated with the report.
status deviceManagementReportStatus Status of the cached report. Possible values are: unknown, notStarted, inProgress, completed, failed.
lastRefreshDateTime DateTimeOffset Time that the cached report was last refreshed.
expirationDateTime DateTimeOffset Time that the cached report expires.

Relationships

None

JSON Representation

Here is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.deviceManagementCachedReportConfiguration",
  "id": "String (identifier)",
  "reportName": "String",
  "filter": "String",
  "select": [
    "String"
  ],
  "orderBy": [
    "String"
  ],
  "metadata": "String",
  "status": "String",
  "lastRefreshDateTime": "String (timestamp)",
  "expirationDateTime": "String (timestamp)"
}