Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Namespace: microsoft.graph
Note: The Microsoft Graph API for Intune requires an active Intune license for the tenant.
Entity representing a job to export a report.
Methods
| Method | Return Type | Description |
|---|---|---|
| List deviceManagementExportJobs | deviceManagementExportJob collection | List properties and relationships of the deviceManagementExportJob objects. |
| Get deviceManagementExportJob | deviceManagementExportJob | Read properties and relationships of the deviceManagementExportJob object. |
| Create deviceManagementExportJob | deviceManagementExportJob | Create a new deviceManagementExportJob object. |
| Delete deviceManagementExportJob | None | Deletes a deviceManagementExportJob. |
| Update deviceManagementExportJob | deviceManagementExportJob | Update the properties of a deviceManagementExportJob object. |
Properties
| Property | Type | Description |
|---|---|---|
| id | String | Unique identifier for this entity. |
| reportName | String | Name of the report. The maximum length allowed for this property is 2000 characters. |
| filter | String | Filters applied on the report. The maximum length allowed for this property is 2000 characters. |
| select | String collection | Columns selected from the report. The maximum number of allowed columns names is 256. The maximum length allowed for each column name in this property is 1000 characters. |
| format | deviceManagementReportFileFormat | Format of the exported report. Possible values are csv and json. The possible values are: csv, pdf, json, unknownFutureValue. |
| snapshotId | String | A snapshot is an identifiable subset of the dataset represented by the ReportName. A sessionId or CachedReportConfiguration id can be used here. If a sessionId is specified, Filter, Select, and OrderBy are applied to the data represented by the sessionId. Filter, Select, and OrderBy cannot be specified together with a CachedReportConfiguration id. The maximum length allowed for this property is 128 characters. |
| localizationType | deviceManagementExportJobLocalizationType | Configures how the requested export job is localized. Possible values are replaceLocalizableValues and localizedValuesAsAdditionalColumn. The possible values are: localizedValuesAsAdditionalColumn, replaceLocalizableValues. |
| status | deviceManagementReportStatus | Status of the export job. Possible values are unknown, notStarted, inProgress, completed and failed. The possible values are: unknown, notStarted, inProgress, completed, failed. |
| url | String | Temporary location of the exported report. |
| requestDateTime | DateTimeOffset | Time that the exported report was requested. |
| expirationDateTime | DateTimeOffset | Time that the exported report expires. |
Relationships
None
JSON Representation
Here is a JSON representation of the resource.
{
"@odata.type": "#microsoft.graph.deviceManagementExportJob",
"id": "String (identifier)",
"reportName": "String",
"filter": "String",
"select": [
"String"
],
"format": "String",
"snapshotId": "String",
"localizationType": "String",
"status": "String",
"url": "String",
"requestDateTime": "String (timestamp)",
"expirationDateTime": "String (timestamp)"
}