Skip to content

Commit 0e634ae

Browse files
feat(all): auto-regenerate discovery clients (#3555)
1 parent 0f75259 commit 0e634ae

File tree

360 files changed

+55889
-9784
lines changed

Some content is hidden

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

360 files changed

+55889
-9784
lines changed

adexchangebuyer2/v2beta1/adexchangebuyer2-api.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"baseUrl": "https://adexchangebuyer.googleapis.com/",
1313
"batchPath": "batch",
1414
"canonicalName": "AdExchangeBuyerII",
15-
"description": "Accesses the latest features for managing Authorized Buyers accounts, Real-Time Bidding configurations and auction metrics, and Marketplace programmatic deals.",
15+
"description": "Access the latest features for managing Authorized Buyers accounts, Real-Time Bidding configurations and auction metrics, and Marketplace programmatic deals.",
1616
"discoveryVersion": "v1",
1717
"documentationLink": "https://developers.google.com/authorized-buyers/apis/reference/rest/",
1818
"icons": {
@@ -3115,7 +3115,7 @@
31153115
}
31163116
}
31173117
},
3118-
"revision": "20251203",
3118+
"revision": "20260319",
31193119
"rootUrl": "https://adexchangebuyer.googleapis.com/",
31203120
"schemas": {
31213121
"AbsoluteDateRange": {

admin/reports/v1/admin-api.json

Lines changed: 76 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,11 @@
247247
"pattern": "(id:[a-z0-9]+(,id:[a-z0-9]+)*)",
248248
"type": "string"
249249
},
250+
"includeSensitiveData": {
251+
"description": "Optional. When set to `true`, this field allows sensitive user-generated content to be included in the returned audit logs. This parameter is supported only for Rules (DLP) and Chat applications; using it with any other application will result in a permission error.",
252+
"location": "query",
253+
"type": "boolean"
254+
},
250255
"maxResults": {
251256
"default": "1000",
252257
"description": "Determines how many activity records are shown on each response page. For example, if the request sets `maxResults=1` and the report has two activities, the report has two pages. The response's `nextPageToken` property has the token to the second page. The `maxResults` query string is optional in the request. The default value is 1000.",
@@ -681,7 +686,7 @@
681686
}
682687
}
683688
},
684-
"revision": "20260311",
689+
"revision": "20260317",
685690
"rootUrl": "https://admin.googleapis.com/",
686691
"schemas": {
687692
"Activities": {
@@ -844,6 +849,76 @@
844849
},
845850
"type": "array"
846851
},
852+
"sensitiveParameters": {
853+
"description": "Includes sensitive parameter value pairs for various applications.",
854+
"items": {
855+
"properties": {
856+
"boolValue": {
857+
"description": "Boolean value of the parameter.",
858+
"type": "boolean"
859+
},
860+
"intValue": {
861+
"description": "Integer value of the parameter.",
862+
"format": "int64",
863+
"type": "string"
864+
},
865+
"messageValue": {
866+
"description": "Nested parameter value pairs associated with this parameter. Complex value type for a parameter are returned as a list of parameter values. For example, the address parameter may have a value as `[{parameter: [{name: city, value: abc}]}]`",
867+
"properties": {
868+
"parameter": {
869+
"description": "Parameter values",
870+
"items": {
871+
"$ref": "NestedParameter"
872+
},
873+
"type": "array"
874+
}
875+
},
876+
"type": "object"
877+
},
878+
"multiIntValue": {
879+
"description": "Integer values of the parameter.",
880+
"items": {
881+
"format": "int64",
882+
"type": "string"
883+
},
884+
"type": "array"
885+
},
886+
"multiMessageValue": {
887+
"description": "List of `messageValue` objects.",
888+
"items": {
889+
"properties": {
890+
"parameter": {
891+
"description": "Parameter values",
892+
"items": {
893+
"$ref": "NestedParameter"
894+
},
895+
"type": "array"
896+
}
897+
},
898+
"type": "object"
899+
},
900+
"type": "array"
901+
},
902+
"multiValue": {
903+
"description": "String values of the parameter.",
904+
"items": {
905+
"type": "string"
906+
},
907+
"type": "array"
908+
},
909+
"name": {
910+
"description": "The name of the parameter.",
911+
"type": "string"
912+
},
913+
"value": {
914+
"description": "String value of the parameter.",
915+
"type": "string"
916+
}
917+
},
918+
"type": "object"
919+
},
920+
"type": "array"
921+
},
847922
"status": {
848923
"$ref": "ActivityEventsStatus",
849924
"description": "Status of the event. Note: Not all events have status."

admin/reports/v1/admin-gen.go

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

agentregistry/v1alpha/agentregistry-api.json

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -511,8 +511,10 @@
511511
"$ref": "Operation"
512512
},
513513
"scopes": [
514+
"https://www.googleapis.com/auth/agentregistry.read-only",
514515
"https://www.googleapis.com/auth/agentregistry.read-write",
515-
"https://www.googleapis.com/auth/cloud-platform"
516+
"https://www.googleapis.com/auth/cloud-platform",
517+
"https://www.googleapis.com/auth/cloud-platform.read-only"
516518
]
517519
},
518520
"list": {
@@ -755,7 +757,7 @@
755757
}
756758
}
757759
},
758-
"revision": "20260318",
760+
"revision": "20260326",
759761
"rootUrl": "https://agentregistry.googleapis.com/",
760762
"schemas": {
761763
"Agent": {
@@ -1456,6 +1458,11 @@
14561458
"description": "Identifier. The resource name of the Service. Format: `projects/{project}/locations/{location}/services/{service}`.",
14571459
"type": "string"
14581460
},
1461+
"registryResource": {
1462+
"description": "Output only. The resource name of the resulting Agent, MCP Server, or Endpoint. Format: * `projects/{project}/locations/{location}/mcpServers/{mcp_server}` * `projects/{project}/locations/{location}/agents/{agent}` * `projects/{project}/locations/{location}/endpoints/{endpoint}`",
1463+
"readOnly": true,
1464+
"type": "string"
1465+
},
14591466
"updateTime": {
14601467
"description": "Output only. Update time.",
14611468
"format": "google-datetime",

agentregistry/v1alpha/agentregistry-gen.go

Lines changed: 6 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)