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: run the generator #3484

Merged
merged 26 commits into from
May 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
c968f75
feat(admin): update the API
yoshi-automation May 10, 2024
49d16aa
feat(aiplatform)!: update the API
yoshi-automation May 10, 2024
abf2ea3
fix(androidpublisher): update the API
yoshi-automation May 10, 2024
ea0beb6
feat(authorizedbuyersmarketplace): update the API
yoshi-automation May 10, 2024
d9e8e9d
fix(chat): update the API
yoshi-automation May 10, 2024
ec7cffb
fix(clouddeploy): update the API
yoshi-automation May 10, 2024
2cf15ec
feat(cloudidentity): update the API
yoshi-automation May 10, 2024
e896526
fix(compute): update the API
yoshi-automation May 10, 2024
c59063d
feat(contactcenterinsights): update the API
yoshi-automation May 10, 2024
062c89d
feat(container): update the API
yoshi-automation May 10, 2024
d814761
feat(content): update the API
yoshi-automation May 10, 2024
8a995f1
feat(dataform): update the API
yoshi-automation May 10, 2024
2654511
fix(dataproc): update the API
yoshi-automation May 10, 2024
223e05d
fix(dlp): update the API
yoshi-automation May 10, 2024
4f5a1e7
feat(firebaseml): update the API
yoshi-automation May 10, 2024
df39eec
feat(firestore): update the API
yoshi-automation May 10, 2024
ec24ef0
fix(migrationcenter): update the API
yoshi-automation May 10, 2024
721d03e
feat(networksecurity): update the API
yoshi-automation May 10, 2024
0411266
fix(networkservices): update the API
yoshi-automation May 10, 2024
fe7aba5
feat(playintegrity): update the API
yoshi-automation May 10, 2024
d5310d9
feat(run): update the API
yoshi-automation May 10, 2024
971279d
fix(safebrowsing): update the API
yoshi-automation May 10, 2024
7cb860e
fix(sts): update the API
yoshi-automation May 10, 2024
36a61e8
feat(walletobjects): update the API
yoshi-automation May 10, 2024
92de0a7
feat(workloadmanager): update the API
yoshi-automation May 10, 2024
74a5a47
feat: regenerate index files
yoshi-automation May 10, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 41 additions & 5 deletions discovery/admin-directory_v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@
},
"maxResults": {
"default": "100",
"description": "Maximum number of results to return.",
"description": "Maximum number of results to return, value should not exceed 300.",
"format": "int32",
"location": "query",
"minimum": "1",
Expand Down Expand Up @@ -441,7 +441,7 @@
"type": "string"
},
"projection": {
"description": "Restrict information returned to a set of selected fields.",
"description": "Determines whether the response contains the full list of properties or only a subset.",
"enum": [
"BASIC",
"FULL"
Expand Down Expand Up @@ -535,7 +535,7 @@
"type": "string"
},
"projection": {
"description": "Restrict information returned to a set of selected fields.",
"description": "Determines whether the response contains the full list of properties or only a subset.",
"enum": [
"BASIC",
"FULL"
Expand Down Expand Up @@ -582,7 +582,7 @@
"type": "string"
},
"projection": {
"description": "Restrict information returned to a set of selected fields.",
"description": "Determines whether the response contains the full list of properties or only a subset.",
"enum": [
"BASIC",
"FULL"
Expand Down Expand Up @@ -4671,7 +4671,7 @@
}
}
},
"revision": "20240429",
"revision": "20240509",
"rootUrl": "https://admin.googleapis.com/",
"schemas": {
"Alias": {
Expand Down Expand Up @@ -5425,6 +5425,21 @@
"description": "The boot mode for the device. The possible values are: * `Verified`: The device is running a valid version of the Chrome OS. * `Dev`: The devices's developer hardware switch is enabled. When booted, the device has a command line shell. For an example of a developer switch, see the [Chromebook developer information](https://www.chromium.org/chromium-os/developer-information-for-chrome-os-devices/samsung-series-5-chromebook#TOC-Developer-switch).",
"type": "string"
},
"chromeOsType": {
"description": "Output only. Chrome OS type of the device.",
"enum": [
"chromeOsTypeUnspecified",
"chromeOsFlex",
"chromeOs"
],
"enumDescriptions": [
"Chrome OS Type unspecified.",
"Chrome OS Type Chrome OS Flex.",
"Chrome OS Type Chrome OS."
],
"readOnly": true,
"type": "string"
},
"cpuInfo": {
"description": "Information regarding CPU specs in the device.",
"items": {
Expand Down Expand Up @@ -5688,6 +5703,14 @@
"readOnly": true,
"type": "string"
},
"fanInfo": {
"description": "Output only. Fan information for the device.",
"items": {
"$ref": "FanInfo"
},
"readOnly": true,
"type": "array"
},
"firmwareVersion": {
"description": "The Chrome device's firmware version.",
"type": "string"
Expand Down Expand Up @@ -6432,6 +6455,19 @@
},
"type": "object"
},
"FanInfo": {
"description": "Information about the device's fan.",
"id": "FanInfo",
"properties": {
"speedRpm": {
"description": "Output only. Fan speed in RPM.",
"format": "int32",
"readOnly": true,
"type": "integer"
}
},
"type": "object"
},
"Feature": {
"description": "JSON template for Feature object in Directory API.",
"id": "Feature",
Expand Down
Loading
Loading