Skip to content

Commit

Permalink
feat(chromemanagement): update the API
Browse files Browse the repository at this point in the history
#### chromemanagement:v1

The following keys were added:
- schemas.GoogleChromeManagementV1TelemetryDevice.properties.peripheralsReport.description
- schemas.GoogleChromeManagementV1TelemetryDevice.properties.peripheralsReport.items.$ref
- schemas.GoogleChromeManagementV1TelemetryDevice.properties.peripheralsReport.readOnly
- schemas.GoogleChromeManagementV1TelemetryDevice.properties.peripheralsReport.type
  • Loading branch information
yoshi-automation authored and sofisl committed Feb 9, 2023
1 parent 7e53df7 commit 3368e8d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
10 changes: 9 additions & 1 deletion discovery/chromemanagement-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -764,7 +764,7 @@
}
}
},
"revision": "20230201",
"revision": "20230208",
"rootUrl": "https://chromemanagement.googleapis.com/",
"schemas": {
"GoogleChromeManagementV1AndroidAppInfo": {
Expand Down Expand Up @@ -2630,6 +2630,14 @@
"readOnly": true,
"type": "array"
},
"peripheralsReport": {
"description": "Output only. Peripherals reports collected periodically sorted in a decreasing order of report_time.",
"items": {
"$ref": "GoogleChromeManagementV1PeripheralsReport"
},
"readOnly": true,
"type": "array"
},
"serialNumber": {
"description": "Output only. Device serial number. This value is the same as the Admin Console's Serial Number in the ChromeOS Devices tab.",
"readOnly": true,
Expand Down
5 changes: 5 additions & 0 deletions src/apis/chromemanagement/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1284,6 +1284,10 @@ export namespace chromemanagement_v1 {
* Output only. Contains relevant information regarding ChromeOS update status.
*/
osUpdateStatus?: Schema$GoogleChromeManagementV1OsUpdateStatus[];
/**
* Output only. Peripherals reports collected periodically sorted in a decreasing order of report_time.
*/
peripheralsReport?: Schema$GoogleChromeManagementV1PeripheralsReport[];
/**
* Output only. Device serial number. This value is the same as the Admin Console's Serial Number in the ChromeOS Devices tab.
*/
Expand Down Expand Up @@ -3377,6 +3381,7 @@ export namespace chromemanagement_v1 {
* // "networkStatusReport": [],
* // "orgUnitId": "my_orgUnitId",
* // "osUpdateStatus": [],
* // "peripheralsReport": [],
* // "serialNumber": "my_serialNumber",
* // "storageInfo": {},
* // "storageStatusReport": [],
Expand Down

0 comments on commit 3368e8d

Please sign in to comment.