Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (#1643)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation committed Aug 4, 2022
1 parent 2dd2fc5 commit 6a8be6a
Show file tree
Hide file tree
Showing 20 changed files with 31,415 additions and 5,189 deletions.
57 changes: 54 additions & 3 deletions admin/directory/v1/admin-api.json
Expand Up @@ -4407,7 +4407,7 @@
}
}
},
"revision": "20220621",
"revision": "20220802",
"rootUrl": "https://admin.googleapis.com/",
"schemas": {
"Alias": {
Expand Down Expand Up @@ -5131,6 +5131,10 @@
"description": "The Chrome device's firmware version.",
"type": "string"
},
"firstEnrollmentTime": {
"description": "Date and time for the first time the device was enrolled.",
"type": "string"
},
"kind": {
"default": "admin#directory#chromeosdevice",
"description": "The type of resource. For the Chromeosdevices resource, the value is `admin#directory#chromeosdevice`.",
Expand Down Expand Up @@ -5196,6 +5200,10 @@
"description": "The full parent path with the organizational unit's name associated with the device. Path names are case insensitive. If the parent organizational unit is the top-level organization, it is represented as a forward slash, `/`. This property can be [updated](/admin-sdk/directory/v1/guides/manage-chrome-devices#move_chrome_devices_to_ou) using the API. For more information about how to create an organizational structure for your device, see the [administration help center](https://support.google.com/a/answer/182433).",
"type": "string"
},
"osUpdateStatus": {
"$ref": "OsUpdateStatus",
"description": "The status of the OS updates for the device."
},
"osVersion": {
"description": "The Chrome device's operating system version.",
"type": "string"
Expand Down Expand Up @@ -5914,7 +5922,7 @@
"type": "boolean"
},
"aliases": {
"description": "Read-only. A list of a group's alias email addresses.",
"description": "Read-only. A list of a group's alias email addresses. To add, update, or remove a group's aliases, use the `groups.aliases` methods. If edited in a group's POST or PUT request, the edit is ignored.",
"items": {
"type": "string"
},
Expand Down Expand Up @@ -5956,7 +5964,7 @@
"type": "string"
},
"nonEditableAliases": {
"description": "Read-only. A list of the group's non-editable alias email addresses that are outside of the account's primary domain or subdomains. These are functioning email addresses used by the group. This is a read-only property returned in the API's response for a group. If edited in a group's POST or PUT request, the edit is ignored by the API service.",
"description": "Read-only. A list of the group's non-editable alias email addresses that are outside of the account's primary domain or subdomains. These are functioning email addresses used by the group. This is a read-only property returned in the API's response for a group. If edited in a group's POST or PUT request, the edit is ignored.",
"items": {
"type": "string"
},
Expand Down Expand Up @@ -6426,6 +6434,49 @@
},
"type": "object"
},
"OsUpdateStatus": {
"description": "Contains information regarding the current OS update status.",
"id": "OsUpdateStatus",
"properties": {
"rebootTime": {
"description": "Date and time of the last reboot.",
"type": "string"
},
"state": {
"description": "The update state of an OS update.",
"enum": [
"updateStateUnspecified",
"updateStateNotStarted",
"updateStateDownloadInProgress",
"updateStateNeedReboot"
],
"enumDescriptions": [
"The update state is unspecified.",
"There is an update pending but it hasn't started.",
"The pending update is being downloaded.",
"The device is ready to install the update, but it just needs to reboot."
],
"type": "string"
},
"targetKioskAppVersion": {
"description": "New required platform version from the pending updated kiosk app.",
"type": "string"
},
"targetOsVersion": {
"description": "New platform version of the OS image being downloaded and applied. It is only set when update status is UPDATE_STATUS_DOWNLOAD_IN_PROGRESS or UPDATE_STATUS_NEED_REBOOT. Note this could be a dummy \"0.0.0.0\" for UPDATE_STATUS_NEED_REBOOT for some edge cases, e.g. update engine is restarted without a reboot.",
"type": "string"
},
"updateCheckTime": {
"description": "Date and time of the last update check.",
"type": "string"
},
"updateTime": {
"description": "Date and time of the last successful OS update.",
"type": "string"
}
},
"type": "object"
},
"Printer": {
"description": "Printer configuration.",
"id": "Printer",
Expand Down
72 changes: 70 additions & 2 deletions admin/directory/v1/admin-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 6a8be6a

Please sign in to comment.