Skip to content

Commit b792200

Browse files
feat(all): auto-regenerate discovery clients (#3261)
1 parent ed4d4ca commit b792200

20 files changed

+1824
-76
lines changed

androidmanagement/v1/androidmanagement-api.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@
453453
],
454454
"parameters": {
455455
"pageSize": {
456-
"description": "The requested page size. The actual page size may be fixed to a min or max value.",
456+
"description": "The requested page size. If unspecified, at most 10 devices will be returned. The maximum value is 100; values above 100 will be coerced to 100. The limits can change over time.",
457457
"format": "int32",
458458
"location": "query",
459459
"type": "integer"
@@ -1260,7 +1260,7 @@
12601260
}
12611261
}
12621262
},
1263-
"revision": "20250714",
1263+
"revision": "20250804",
12641264
"rootUrl": "https://androidmanagement.googleapis.com/",
12651265
"schemas": {
12661266
"AdbShellCommandEvent": {

androidmanagement/v1/androidmanagement-gen.go

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

chat/v1/chat-api.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1528,7 +1528,7 @@
15281528
}
15291529
}
15301530
},
1531-
"revision": "20250727",
1531+
"revision": "20250731",
15321532
"rootUrl": "https://chat.googleapis.com/",
15331533
"schemas": {
15341534
"AccessSettings": {
@@ -4950,7 +4950,7 @@
49504950
"type": "string"
49514951
},
49524952
"customer": {
4953-
"description": "Optional. Immutable. The customer id of the domain of the space. Required only when creating a space with [app authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-app) and `SpaceType` is `SPACE`, otherwise should not be set. In the format `customers/{customer}`, where `customer` is the `id` from the [Admin SDK customer resource]( https://developers.google.com/admin-sdk/directory/reference/rest/v1/customers). Private apps can also use the `customers/my_customer` alias to create the space in the same Google Workspace organization as the app. For DMs, this field isn't populated.",
4953+
"description": "Optional. Immutable. The customer id of the domain of the space. Required only when creating a space with [app authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-app) and `SpaceType` is `SPACE`, otherwise should not be set. In the format `customers/{customer}`, where `customer` is the `id` from the [Admin SDK customer resource](https://developers.google.com/admin-sdk/directory/reference/rest/v1/customers). Private apps can also use the `customers/my_customer` alias to create the space in the same Google Workspace organization as the app. For DMs, this field isn't populated.",
49544954
"type": "string"
49554955
},
49564956
"displayName": {

chat/v1/chat-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.

discoveryengine/v1/discoveryengine-api.json

Lines changed: 134 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7291,7 +7291,7 @@
72917291
}
72927292
}
72937293
},
7294-
"revision": "20250728",
7294+
"revision": "20250803",
72957295
"rootUrl": "https://discoveryengine.googleapis.com/",
72967296
"schemas": {
72977297
"GdataBlobstore2Info": {
@@ -9776,9 +9776,40 @@
97769776
"description": "Discovery Engine Assistant resource.",
97779777
"id": "GoogleCloudDiscoveryengineV1Assistant",
97789778
"properties": {
9779+
"customerPolicy": {
9780+
"$ref": "GoogleCloudDiscoveryengineV1AssistantCustomerPolicy",
9781+
"description": "Optional. Customer policy for the assistant."
9782+
},
9783+
"enabledTools": {
9784+
"additionalProperties": {
9785+
"$ref": "GoogleCloudDiscoveryengineV1AssistantToolList"
9786+
},
9787+
"description": "Optional. Note: not implemented yet. Use enabled_actions instead. The enabled tools on this assistant. The keys are connector name, for example \"projects/{projectId}/locations/{locationId}/collections/{collectionId}/dataconnector The values consist of admin enabled tools towards the connector instance. Admin can selectively enable multiple tools on any of the connector instances that they created in the project. For example {\"jira1ConnectorName\": [(toolId1, \"createTicket\"), (toolId2, \"transferTicket\")], \"gmail1ConnectorName\": [(toolId3, \"sendEmail\"),..] }",
9788+
"type": "object"
9789+
},
9790+
"generationConfig": {
9791+
"$ref": "GoogleCloudDiscoveryengineV1AssistantGenerationConfig",
9792+
"description": "Optional. Configuration for the generation of the assistant response."
9793+
},
97799794
"name": {
97809795
"description": "Immutable. Resource name of the assistant. Format: `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}/assistants/{assistant}` It must be a UTF-8 encoded string with a length limit of 1024 characters.",
97819796
"type": "string"
9797+
},
9798+
"webGroundingType": {
9799+
"description": "Optional. The type of web grounding to use.",
9800+
"enum": [
9801+
"WEB_GROUNDING_TYPE_UNSPECIFIED",
9802+
"WEB_GROUNDING_TYPE_DISABLED",
9803+
"WEB_GROUNDING_TYPE_GOOGLE_SEARCH",
9804+
"WEB_GROUNDING_TYPE_ENTERPRISE_WEB_SEARCH"
9805+
],
9806+
"enumDescriptions": [
9807+
"Default, unspecified setting. This is the same as disabled.",
9808+
"Web grounding is disabled.",
9809+
"Grounding with Google Search is enabled.",
9810+
"Grounding with Enterprise Web Search is enabled."
9811+
],
9812+
"type": "string"
97829813
}
97839814
},
97849815
"type": "object"
@@ -9887,6 +9918,75 @@
98879918
},
98889919
"type": "object"
98899920
},
9921+
"GoogleCloudDiscoveryengineV1AssistantCustomerPolicy": {
9922+
"description": "Customer-defined policy for the assistant.",
9923+
"id": "GoogleCloudDiscoveryengineV1AssistantCustomerPolicy",
9924+
"properties": {
9925+
"bannedPhrases": {
9926+
"description": "Optional. List of banned phrases.",
9927+
"items": {
9928+
"$ref": "GoogleCloudDiscoveryengineV1AssistantCustomerPolicyBannedPhrase"
9929+
},
9930+
"type": "array"
9931+
}
9932+
},
9933+
"type": "object"
9934+
},
9935+
"GoogleCloudDiscoveryengineV1AssistantCustomerPolicyBannedPhrase": {
9936+
"description": "Definition of a customer-defined banned phrase. A banned phrase is not allowed to appear in the user query or the LLM response, or else the answer will be refused.",
9937+
"id": "GoogleCloudDiscoveryengineV1AssistantCustomerPolicyBannedPhrase",
9938+
"properties": {
9939+
"ignoreDiacritics": {
9940+
"description": "Optional. If true, diacritical marks (e.g., accents, umlauts) are ignored when matching banned phrases. For example, \"cafe\" would match \"café\".",
9941+
"type": "boolean"
9942+
},
9943+
"matchType": {
9944+
"description": "Optional. Match type for the banned phrase.",
9945+
"enum": [
9946+
"BANNED_PHRASE_MATCH_TYPE_UNSPECIFIED",
9947+
"SIMPLE_STRING_MATCH",
9948+
"WORD_BOUNDARY_STRING_MATCH"
9949+
],
9950+
"enumDescriptions": [
9951+
"Defaults to SIMPLE_STRING_MATCH.",
9952+
"The banned phrase matches if it is found anywhere in the text as an exact substring.",
9953+
"Banned phrase only matches if the pattern found in the text is surrounded by word delimiters. The phrase itself may still contain word delimiters."
9954+
],
9955+
"type": "string"
9956+
},
9957+
"phrase": {
9958+
"description": "Required. The raw string content to be banned.",
9959+
"type": "string"
9960+
}
9961+
},
9962+
"type": "object"
9963+
},
9964+
"GoogleCloudDiscoveryengineV1AssistantGenerationConfig": {
9965+
"description": "Configuration for the generation of the assistant response.",
9966+
"id": "GoogleCloudDiscoveryengineV1AssistantGenerationConfig",
9967+
"properties": {
9968+
"defaultLanguage": {
9969+
"description": "The default language to use for the generation of the assistant response. Use an ISO 639-1 language code such as `en`. If not specified, the language will be automatically detected.",
9970+
"type": "string"
9971+
},
9972+
"systemInstruction": {
9973+
"$ref": "GoogleCloudDiscoveryengineV1AssistantGenerationConfigSystemInstruction",
9974+
"description": "System instruction, also known as the prompt preamble for LLM calls. See also https://cloud.google.com/vertex-ai/generative-ai/docs/learn/prompts/system-instructions"
9975+
}
9976+
},
9977+
"type": "object"
9978+
},
9979+
"GoogleCloudDiscoveryengineV1AssistantGenerationConfigSystemInstruction": {
9980+
"description": "System instruction, also known as the prompt preamble for LLM calls.",
9981+
"id": "GoogleCloudDiscoveryengineV1AssistantGenerationConfigSystemInstruction",
9982+
"properties": {
9983+
"additionalSystemInstruction": {
9984+
"description": "Optional. Additional system instruction that will be added to the default system instruction.",
9985+
"type": "string"
9986+
}
9987+
},
9988+
"type": "object"
9989+
},
98909990
"GoogleCloudDiscoveryengineV1AssistantGroundedContent": {
98919991
"description": "A piece of content and possibly its grounding information. Not all content needs grounding. Phrases like \"Of course, I will gladly search it for you.\" do not need grounding.",
98929992
"id": "GoogleCloudDiscoveryengineV1AssistantGroundedContent",
@@ -9999,6 +10099,35 @@
999910099
},
1000010100
"type": "object"
1000110101
},
10102+
"GoogleCloudDiscoveryengineV1AssistantToolInfo": {
10103+
"description": "Information to identify a tool.",
10104+
"id": "GoogleCloudDiscoveryengineV1AssistantToolInfo",
10105+
"properties": {
10106+
"toolDisplayName": {
10107+
"description": "The display name of the tool.",
10108+
"type": "string"
10109+
},
10110+
"toolName": {
10111+
"description": "The name of the tool as defined by DataConnectorService.QueryAvailableActions. Note: it's using `action` in the DataConnectorService apis, but they are the same as the `tool` here.",
10112+
"type": "string"
10113+
}
10114+
},
10115+
"type": "object"
10116+
},
10117+
"GoogleCloudDiscoveryengineV1AssistantToolList": {
10118+
"description": "The enabled tools on a connector",
10119+
"id": "GoogleCloudDiscoveryengineV1AssistantToolList",
10120+
"properties": {
10121+
"toolInfo": {
10122+
"description": "The list of tools with corresponding tool information.",
10123+
"items": {
10124+
"$ref": "GoogleCloudDiscoveryengineV1AssistantToolInfo"
10125+
},
10126+
"type": "array"
10127+
}
10128+
},
10129+
"type": "object"
10130+
},
1000210131
"GoogleCloudDiscoveryengineV1BatchCreateTargetSiteMetadata": {
1000310132
"description": "Metadata related to the progress of the SiteSearchEngineService.BatchCreateTargetSites operation. This will be returned by the google.longrunning.Operation.metadata field.",
1000410133
"id": "GoogleCloudDiscoveryengineV1BatchCreateTargetSiteMetadata",
@@ -10619,6 +10748,10 @@
1061910748
"description": "Document metadata contains the information of the document of the current chunk.",
1062010749
"id": "GoogleCloudDiscoveryengineV1ChunkDocumentMetadata",
1062110750
"properties": {
10751+
"mimeType": {
10752+
"description": "The mime type of the document. https://www.iana.org/assignments/media-types/media-types.xhtml.",
10753+
"type": "string"
10754+
},
1062210755
"structData": {
1062310756
"additionalProperties": {
1062410757
"description": "Properties of the object.",

0 commit comments

Comments
 (0)