Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(all): auto-regenerate discovery clients #1643

Merged
merged 1 commit into from Aug 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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.