Skip to content

Commit 4f39791

Browse files
feat(all): auto-regenerate discovery clients (#2801)
1 parent f7c6e66 commit 4f39791

File tree

50 files changed

+3479
-258
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+3479
-258
lines changed

‎admin/directory/v1/admin-api.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
"description": "View customer related information"
1616
},
1717
"https://www.googleapis.com/auth/admin.directory.device.chromeos": {
18-
"description": "View and manage your Chrome OS devices' metadata"
18+
"description": "View and manage your ChromeOS devices' metadata"
1919
},
2020
"https://www.googleapis.com/auth/admin.directory.device.chromeos.readonly": {
21-
"description": "View your Chrome OS devices' metadata"
21+
"description": "View your ChromeOS devices' metadata"
2222
},
2323
"https://www.googleapis.com/auth/admin.directory.device.mobile": {
2424
"description": "View and manage your mobile devices' metadata"
@@ -4671,7 +4671,7 @@
46714671
}
46724672
}
46734673
},
4674-
"revision": "20240917",
4674+
"revision": "20240924",
46754675
"rootUrl": "https://admin.googleapis.com/",
46764676
"schemas": {
46774677
"Alias": {

‎admin/directory/v1/admin-gen.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎aiplatform/v1/aiplatform-api.json

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17813,7 +17813,7 @@
1781317813
}
1781417814
}
1781517815
},
17816-
"revision": "20240916",
17816+
"revision": "20240923",
1781717817
"rootUrl": "https://aiplatform.googleapis.com/",
1781817818
"schemas": {
1781917819
"CloudAiLargeModelsVisionGenerateVideoResponse": {
@@ -34947,6 +34947,10 @@
3494734947
"description": "Whether the prompt dataset has prompt variable.",
3494834948
"type": "boolean"
3494934949
},
34950+
"logprobs": {
34951+
"description": "Whether or not the user has enabled logit probabilities in the model parameters.",
34952+
"type": "boolean"
34953+
},
3495034954
"maxOutputTokens": {
3495134955
"description": "Value of the maximum number of tokens generated set when the dataset was saved.",
3495234956
"format": "int64",
@@ -34960,6 +34964,15 @@
3496034964
"description": "Type of the prompt dataset.",
3496134965
"type": "string"
3496234966
},
34967+
"seedEnabled": {
34968+
"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.",
34969+
"type": "boolean"
34970+
},
34971+
"seedValue": {
34972+
"description": "The actual value of the seed.",
34973+
"format": "int64",
34974+
"type": "string"
34975+
},
3496334976
"stopSequences": {
3496434977
"description": "Customized stop sequences.",
3496534978
"items": {

‎aiplatform/v1/aiplatform-gen.go

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎androidmanagement/v1/androidmanagement-api.json

Lines changed: 44 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1168,7 +1168,7 @@
11681168
}
11691169
}
11701170
},
1171-
"revision": "20240923",
1171+
"revision": "20240924",
11721172
"rootUrl": "https://androidmanagement.googleapis.com/",
11731173
"schemas": {
11741174
"AdbShellCommandEvent": {
@@ -2795,6 +2795,10 @@
27952795
],
27962796
"type": "string"
27972797
},
2798+
"wifiRoamingPolicy": {
2799+
"$ref": "WifiRoamingPolicy",
2800+
"description": "Optional. Wi-Fi roaming policy."
2801+
},
27982802
"wifiSsidPolicy": {
27992803
"$ref": "WifiSsidPolicy",
28002804
"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."
@@ -6600,6 +6604,45 @@
66006604
},
66016605
"type": "object"
66026606
},
6607+
"WifiRoamingPolicy": {
6608+
"description": "Wi-Fi roaming policy.",
6609+
"id": "WifiRoamingPolicy",
6610+
"properties": {
6611+
"wifiRoamingSettings": {
6612+
"description": "Optional. Wi-Fi roaming settings. SSIDs provided in this list must be unique, the policy will be rejected otherwise.",
6613+
"items": {
6614+
"$ref": "WifiRoamingSetting"
6615+
},
6616+
"type": "array"
6617+
}
6618+
},
6619+
"type": "object"
6620+
},
6621+
"WifiRoamingSetting": {
6622+
"description": "Wi-Fi roaming setting.",
6623+
"id": "WifiRoamingSetting",
6624+
"properties": {
6625+
"wifiRoamingMode": {
6626+
"description": "Required. Wi-Fi roaming mode for the specified SSID.",
6627+
"enum": [
6628+
"WIFI_ROAMING_MODE_UNSPECIFIED",
6629+
"WIFI_ROAMING_DEFAULT",
6630+
"WIFI_ROAMING_AGGRESSIVE"
6631+
],
6632+
"enumDescriptions": [
6633+
"Unspecified. Defaults to WIFI_ROAMING_DEFAULT.",
6634+
"Default Wi-Fi roaming mode of the device.",
6635+
"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."
6636+
],
6637+
"type": "string"
6638+
},
6639+
"wifiSsid": {
6640+
"description": "Required. SSID of the Wi-Fi network.",
6641+
"type": "string"
6642+
}
6643+
},
6644+
"type": "object"
6645+
},
66036646
"WifiSsid": {
66046647
"description": "Represents a Wi-Fi SSID.",
66056648
"id": "WifiSsid",

‎androidmanagement/v1/androidmanagement-gen.go

Lines changed: 61 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)