Skip to content

Commit 5291391

Browse files
feat(admin): update the API
#### admin:directory_v1 The following keys were added: - schemas.ChromeOsDevice.properties.osVersionCompliance.description - schemas.ChromeOsDevice.properties.osVersionCompliance.enum - schemas.ChromeOsDevice.properties.osVersionCompliance.enumDescriptions - schemas.ChromeOsDevice.properties.osVersionCompliance.readOnly - schemas.ChromeOsDevice.properties.osVersionCompliance.type
1 parent 9d2c4b5 commit 5291391

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

discovery/admin-directory_v1.json

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4671,7 +4671,7 @@
46714671
}
46724672
}
46734673
},
4674-
"revision": "20250707",
4674+
"revision": "20250804",
46754675
"rootUrl": "https://admin.googleapis.com/",
46764676
"schemas": {
46774677
"Alias": {
@@ -5840,6 +5840,23 @@
58405840
"description": "The Chrome device's operating system version.",
58415841
"type": "string"
58425842
},
5843+
"osVersionCompliance": {
5844+
"description": "Output only. Compliance status of the OS version.",
5845+
"enum": [
5846+
"complianceUnspecified",
5847+
"compliant",
5848+
"pending",
5849+
"notCompliant"
5850+
],
5851+
"enumDescriptions": [
5852+
"Compliance status unspecified.",
5853+
"Compliance status compliant.",
5854+
"Compliance status pending.",
5855+
"Compliance status not compliant."
5856+
],
5857+
"readOnly": true,
5858+
"type": "string"
5859+
},
58435860
"platformVersion": {
58445861
"description": "The Chrome device's platform version.",
58455862
"type": "string"

src/apis/admin/directory_v1.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -838,6 +838,10 @@ export namespace admin_directory_v1 {
838838
* The Chrome device's operating system version.
839839
*/
840840
osVersion?: string | null;
841+
/**
842+
* Output only. Compliance status of the OS version.
843+
*/
844+
osVersionCompliance?: string | null;
841845
/**
842846
* The Chrome device's platform version.
843847
*/
@@ -3756,6 +3760,7 @@ export namespace admin_directory_v1 {
37563760
* // "orgUnitPath": "my_orgUnitPath",
37573761
* // "osUpdateStatus": {},
37583762
* // "osVersion": "my_osVersion",
3763+
* // "osVersionCompliance": "my_osVersionCompliance",
37593764
* // "platformVersion": "my_platformVersion",
37603765
* // "recentUsers": [],
37613766
* // "screenshotFiles": [],
@@ -4247,6 +4252,7 @@ export namespace admin_directory_v1 {
42474252
* // "orgUnitPath": "my_orgUnitPath",
42484253
* // "osUpdateStatus": {},
42494254
* // "osVersion": "my_osVersion",
4255+
* // "osVersionCompliance": "my_osVersionCompliance",
42504256
* // "platformVersion": "my_platformVersion",
42514257
* // "recentUsers": [],
42524258
* // "screenshotFiles": [],
@@ -4306,6 +4312,7 @@ export namespace admin_directory_v1 {
43064312
* // "orgUnitPath": "my_orgUnitPath",
43074313
* // "osUpdateStatus": {},
43084314
* // "osVersion": "my_osVersion",
4315+
* // "osVersionCompliance": "my_osVersionCompliance",
43094316
* // "platformVersion": "my_platformVersion",
43104317
* // "recentUsers": [],
43114318
* // "screenshotFiles": [],
@@ -4498,6 +4505,7 @@ export namespace admin_directory_v1 {
44984505
* // "orgUnitPath": "my_orgUnitPath",
44994506
* // "osUpdateStatus": {},
45004507
* // "osVersion": "my_osVersion",
4508+
* // "osVersionCompliance": "my_osVersionCompliance",
45014509
* // "platformVersion": "my_platformVersion",
45024510
* // "recentUsers": [],
45034511
* // "screenshotFiles": [],
@@ -4557,6 +4565,7 @@ export namespace admin_directory_v1 {
45574565
* // "orgUnitPath": "my_orgUnitPath",
45584566
* // "osUpdateStatus": {},
45594567
* // "osVersion": "my_osVersion",
4568+
* // "osVersionCompliance": "my_osVersionCompliance",
45604569
* // "platformVersion": "my_platformVersion",
45614570
* // "recentUsers": [],
45624571
* // "screenshotFiles": [],

0 commit comments

Comments
 (0)