Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (#2801)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation authored Sep 26, 2024
1 parent f7c6e66 commit 4f39791
Show file tree
Hide file tree
Showing 50 changed files with 3,479 additions and 258 deletions.
6 changes: 3 additions & 3 deletions admin/directory/v1/admin-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
"description": "View customer related information"
},
"https://www.googleapis.com/auth/admin.directory.device.chromeos": {
"description": "View and manage your Chrome OS devices' metadata"
"description": "View and manage your ChromeOS devices' metadata"
},
"https://www.googleapis.com/auth/admin.directory.device.chromeos.readonly": {
"description": "View your Chrome OS devices' metadata"
"description": "View your ChromeOS devices' metadata"
},
"https://www.googleapis.com/auth/admin.directory.device.mobile": {
"description": "View and manage your mobile devices' metadata"
Expand Down Expand Up @@ -4671,7 +4671,7 @@
}
}
},
"revision": "20240917",
"revision": "20240924",
"rootUrl": "https://admin.googleapis.com/",
"schemas": {
"Alias": {
Expand Down
4 changes: 2 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.

15 changes: 14 additions & 1 deletion aiplatform/v1/aiplatform-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -17813,7 +17813,7 @@
}
}
},
"revision": "20240916",
"revision": "20240923",
"rootUrl": "https://aiplatform.googleapis.com/",
"schemas": {
"CloudAiLargeModelsVisionGenerateVideoResponse": {
Expand Down Expand Up @@ -34947,6 +34947,10 @@
"description": "Whether the prompt dataset has prompt variable.",
"type": "boolean"
},
"logprobs": {
"description": "Whether or not the user has enabled logit probabilities in the model parameters.",
"type": "boolean"
},
"maxOutputTokens": {
"description": "Value of the maximum number of tokens generated set when the dataset was saved.",
"format": "int64",
Expand All @@ -34960,6 +34964,15 @@
"description": "Type of the prompt dataset.",
"type": "string"
},
"seedEnabled": {
"description": "Seeding enables model to return a deterministic response on a best effort basis. Determinism isn't guaranteed. This field determines whether or not seeding is enabled.",
"type": "boolean"
},
"seedValue": {
"description": "The actual value of the seed.",
"format": "int64",
"type": "string"
},
"stopSequences": {
"description": "Customized stop sequences.",
"items": {
Expand Down
9 changes: 9 additions & 0 deletions aiplatform/v1/aiplatform-gen.go

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

45 changes: 44 additions & 1 deletion androidmanagement/v1/androidmanagement-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1168,7 +1168,7 @@
}
}
},
"revision": "20240923",
"revision": "20240924",
"rootUrl": "https://androidmanagement.googleapis.com/",
"schemas": {
"AdbShellCommandEvent": {
Expand Down Expand Up @@ -2795,6 +2795,10 @@
],
"type": "string"
},
"wifiRoamingPolicy": {
"$ref": "WifiRoamingPolicy",
"description": "Optional. Wi-Fi roaming policy."
},
"wifiSsidPolicy": {
"$ref": "WifiSsidPolicy",
"description": "Restrictions on which Wi-Fi SSIDs the device can connect to. Note that this does not affect which networks can be configured on the device. Supported on company-owned devices running Android 13 and above."
Expand Down Expand Up @@ -6600,6 +6604,45 @@
},
"type": "object"
},
"WifiRoamingPolicy": {
"description": "Wi-Fi roaming policy.",
"id": "WifiRoamingPolicy",
"properties": {
"wifiRoamingSettings": {
"description": "Optional. Wi-Fi roaming settings. SSIDs provided in this list must be unique, the policy will be rejected otherwise.",
"items": {
"$ref": "WifiRoamingSetting"
},
"type": "array"
}
},
"type": "object"
},
"WifiRoamingSetting": {
"description": "Wi-Fi roaming setting.",
"id": "WifiRoamingSetting",
"properties": {
"wifiRoamingMode": {
"description": "Required. Wi-Fi roaming mode for the specified SSID.",
"enum": [
"WIFI_ROAMING_MODE_UNSPECIFIED",
"WIFI_ROAMING_DEFAULT",
"WIFI_ROAMING_AGGRESSIVE"
],
"enumDescriptions": [
"Unspecified. Defaults to WIFI_ROAMING_DEFAULT.",
"Default Wi-Fi roaming mode of the device.",
"Aggressive roaming mode which allows quicker Wi-Fi roaming. Supported on Android 15 and above on fully managed devices and work profiles on company-owned devices. A nonComplianceDetail with MANAGEMENT_MODE is reported for other management modes. A nonComplianceDetail with API_LEVEL is reported if the Android version is less than 15. A nonComplianceDetail with DEVICE_INCOMPATIBLE is reported if the device does not support aggressive roaming mode."
],
"type": "string"
},
"wifiSsid": {
"description": "Required. SSID of the Wi-Fi network.",
"type": "string"
}
},
"type": "object"
},
"WifiSsid": {
"description": "Represents a Wi-Fi SSID.",
"id": "WifiSsid",
Expand Down
61 changes: 61 additions & 0 deletions androidmanagement/v1/androidmanagement-gen.go

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

Loading

0 comments on commit 4f39791

Please sign in to comment.