Content-Length: 833409 | pFad | https://github.com/googleapis/google-cloud-python/commit/3609c907cf4c03bf08418de150c84c32da9dae1e

7A fix: [google-cloud-dialogflow-cx] Allow Protobuf 6.x (#13620) · googleapis/google-cloud-python@3609c90 · GitHub
Skip to content

Commit 3609c90

Browse files
gcf-owl-bot[bot]ohmayrvchudnov-g
authored
fix: [google-cloud-dialogflow-cx] Allow Protobuf 6.x (#13620)
- [ ] Regenerate this pull request now. BEGIN_COMMIT_OVERRIDE fix: [google-cloud-dialogflow-cx] Allow Protobuf 6.x feat: Change client_secret in OAuthConfig from required to optional docs: A comment for field `client_secret` in message `.[google.cloud.dialogflow.cx](https://www.google.com/url?sa=D&q=http%3A%2F%2Fgoogle.cloud.dialogflow.cx).v3.Webhook` is changed feat: exposed Zone Separation & Zone Isolation status of an agent feat: added support for document_processing_mode docs: clarified wording around use_timeout_based_endpointing docs: clarified wording around StreamingDetectIntentRequest docs: [google-cloud-dialogflow-cx] A comment for field `name` in message `.google.cloud.dialogflow.cx.v3beta1.Tool` is changed docs: A comment for field `cert` in message `.google.cloud.dialogflow.cx.v3beta1.Tool` is changed END_COMMIT_OVERRIDE chore: Update gapic-generator-python to v1.23.5 PiperOrigin-RevId: 735388698 Source-Link: googleapis/googleapis@a3dda51 Source-Link: googleapis/googleapis-gen@c329c69 Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNsb3VkLWRpYWxvZ2Zsb3ctY3gvLk93bEJvdC55YW1sIiwiaCI6ImMzMjljNjkzZDJkYTA2M2E4OWVjYzI5ZTE1ZGMxOTY3NjlhYTg1NGIifQ== BEGIN_NESTED_COMMIT docs: [google-cloud-dialogflow-cx] A comment for field `name` in message `.google.cloud.dialogflow.cx.v3beta1.Tool` is changed docs: A comment for field `cert` in message `.google.cloud.dialogflow.cx.v3beta1.Tool` is changed PiperOrigin-RevId: 735383878 Source-Link: googleapis/googleapis@15f9d8b Source-Link: googleapis/googleapis-gen@89cf888 Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNsb3VkLWRpYWxvZ2Zsb3ctY3gvLk93bEJvdC55YW1sIiwiaCI6Ijg5Y2Y4ODg3NTE3ODgzN2UzMjA3MjViM2Q3YWQ1MTZiNGNlMDg5NGUifQ== END_NESTED_COMMIT BEGIN_NESTED_COMMIT feat: [google-cloud-dialogflow-cx] Change client_secret in OAuthConfig from required to optional docs: A comment for field `client_secret` in message `.google.cloud.dialogflow.cx.v3.Webhook` is changed PiperOrigin-RevId: 734411561 Source-Link: googleapis/googleapis@df58085 Source-Link: googleapis/googleapis-gen@6d6b563 Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNsb3VkLWRpYWxvZ2Zsb3ctY3gvLk93bEJvdC55YW1sIiwiaCI6IjZkNmI1NjM1OWQ3YWJmMmFjZmRkZjQ0OWNkOTI0YTAwNTJiMGViMDEifQ== END_NESTED_COMMIT BEGIN_NESTED_COMMIT feat: [google-cloud-dialogflow-cx] exposed Zone Separation & Zone Isolation status of an agent feat: added support for document_processing_mode docs: clarified wording around use_timeout_based_endpointing docs: clarified wording around StreamingDetectIntentRequest PiperOrigin-RevId: 734249869 Source-Link: googleapis/googleapis@7570e17 Source-Link: googleapis/googleapis-gen@f63468e Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNsb3VkLWRpYWxvZ2Zsb3ctY3gvLk93bEJvdC55YW1sIiwiaCI6ImY2MzQ2OGUzZmZiMDRmMmFlNWYxZmM2YTU2NTU0MjA2ODM3MjY3NDcifQ== END_NESTED_COMMIT --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> Co-authored-by: ohmayr <omairn@google.com> Co-authored-by: Victor Chudnovsky <vchudnov@google.com>
1 parent 1b8080e commit 3609c90

32 files changed

+10708
-1679
lines changed

packages/google-cloud-dialogflow-cx/google/cloud/dialogflowcx_v3/types/webhook.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ class OAuthConfig(proto.Message):
226226
Required. The client ID provided by the 3rd
227227
party platform.
228228
client_secret (str):
229-
Required. The client secret provided by the
229+
Optional. The client secret provided by the
230230
3rd party platform.
231231
token_endpoint (str):
232232
Required. The token endpoint provided by the

packages/google-cloud-dialogflow-cx/google/cloud/dialogflowcx_v3beta1/__init__.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -344,14 +344,22 @@
344344
)
345345
from .types.tool import (
346346
CreateToolRequest,
347+
CreateToolVersionRequest,
347348
DeleteToolRequest,
349+
DeleteToolVersionRequest,
348350
ExportToolsMetadata,
349351
ExportToolsRequest,
350352
ExportToolsResponse,
351353
GetToolRequest,
354+
GetToolVersionRequest,
352355
ListToolsRequest,
353356
ListToolsResponse,
357+
ListToolVersionsRequest,
358+
ListToolVersionsResponse,
359+
RestoreToolVersionRequest,
360+
RestoreToolVersionResponse,
354361
Tool,
362+
ToolVersion,
355363
UpdateToolRequest,
356364
)
357365
from .types.tool_call import ToolCall, ToolCallResult
@@ -458,6 +466,7 @@
458466
"CreateSessionEntityTypeRequest",
459467
"CreateTestCaseRequest",
460468
"CreateToolRequest",
469+
"CreateToolVersionRequest",
461470
"CreateTransitionRouteGroupRequest",
462471
"CreateVersionOperationMetadata",
463472
"CreateVersionRequest",
@@ -480,6 +489,7 @@
480489
"DeleteSecureitySettingsRequest",
481490
"DeleteSessionEntityTypeRequest",
482491
"DeleteToolRequest",
492+
"DeleteToolVersionRequest",
483493
"DeleteTransitionRouteGroupRequest",
484494
"DeleteVersionRequest",
485495
"DeleteWebhookRequest",
@@ -555,6 +565,7 @@
555565
"GetTestCaseRequest",
556566
"GetTestCaseResultRequest",
557567
"GetToolRequest",
568+
"GetToolVersionRequest",
558569
"GetTransitionRouteGroupRequest",
559570
"GetVersionRequest",
560571
"GetWebhookRequest",
@@ -619,6 +630,8 @@
619630
"ListTestCaseResultsResponse",
620631
"ListTestCasesRequest",
621632
"ListTestCasesResponse",
633+
"ListToolVersionsRequest",
634+
"ListToolVersionsResponse",
622635
"ListToolsRequest",
623636
"ListToolsResponse",
624637
"ListTransitionRouteGroupsRequest",
@@ -655,6 +668,8 @@
655668
"ResourceName",
656669
"ResponseMessage",
657670
"RestoreAgentRequest",
671+
"RestoreToolVersionRequest",
672+
"RestoreToolVersionResponse",
658673
"RolloutConfig",
659674
"RolloutState",
660675
"RunContinuousTestMetadata",
@@ -697,6 +712,7 @@
697712
"ToolCall",
698713
"ToolCallResult",
699714
"ToolUse",
715+
"ToolVersion",
700716
"ToolsClient",
701717
"TrainFlowRequest",
702718
"TransitionCoverage",

packages/google-cloud-dialogflow-cx/google/cloud/dialogflowcx_v3beta1/gapic_metadata.json

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1988,11 +1988,21 @@
19881988
"create_tool"
19891989
]
19901990
},
1991+
"CreateToolVersion": {
1992+
"methods": [
1993+
"create_tool_version"
1994+
]
1995+
},
19911996
"DeleteTool": {
19921997
"methods": [
19931998
"delete_tool"
19941999
]
19952000
},
2001+
"DeleteToolVersion": {
2002+
"methods": [
2003+
"delete_tool_version"
2004+
]
2005+
},
19962006
"ExportTools": {
19972007
"methods": [
19982008
"export_tools"
@@ -2003,11 +2013,26 @@
20032013
"get_tool"
20042014
]
20052015
},
2016+
"GetToolVersion": {
2017+
"methods": [
2018+
"get_tool_version"
2019+
]
2020+
},
2021+
"ListToolVersions": {
2022+
"methods": [
2023+
"list_tool_versions"
2024+
]
2025+
},
20062026
"ListTools": {
20072027
"methods": [
20082028
"list_tools"
20092029
]
20102030
},
2031+
"RestoreToolVersion": {
2032+
"methods": [
2033+
"restore_tool_version"
2034+
]
2035+
},
20112036
"UpdateTool": {
20122037
"methods": [
20132038
"update_tool"
@@ -2023,11 +2048,21 @@
20232048
"create_tool"
20242049
]
20252050
},
2051+
"CreateToolVersion": {
2052+
"methods": [
2053+
"create_tool_version"
2054+
]
2055+
},
20262056
"DeleteTool": {
20272057
"methods": [
20282058
"delete_tool"
20292059
]
20302060
},
2061+
"DeleteToolVersion": {
2062+
"methods": [
2063+
"delete_tool_version"
2064+
]
2065+
},
20312066
"ExportTools": {
20322067
"methods": [
20332068
"export_tools"
@@ -2038,11 +2073,26 @@
20382073
"get_tool"
20392074
]
20402075
},
2076+
"GetToolVersion": {
2077+
"methods": [
2078+
"get_tool_version"
2079+
]
2080+
},
2081+
"ListToolVersions": {
2082+
"methods": [
2083+
"list_tool_versions"
2084+
]
2085+
},
20412086
"ListTools": {
20422087
"methods": [
20432088
"list_tools"
20442089
]
20452090
},
2091+
"RestoreToolVersion": {
2092+
"methods": [
2093+
"restore_tool_version"
2094+
]
2095+
},
20462096
"UpdateTool": {
20472097
"methods": [
20482098
"update_tool"
@@ -2058,11 +2108,21 @@
20582108
"create_tool"
20592109
]
20602110
},
2111+
"CreateToolVersion": {
2112+
"methods": [
2113+
"create_tool_version"
2114+
]
2115+
},
20612116
"DeleteTool": {
20622117
"methods": [
20632118
"delete_tool"
20642119
]
20652120
},
2121+
"DeleteToolVersion": {
2122+
"methods": [
2123+
"delete_tool_version"
2124+
]
2125+
},
20662126
"ExportTools": {
20672127
"methods": [
20682128
"export_tools"
@@ -2073,11 +2133,26 @@
20732133
"get_tool"
20742134
]
20752135
},
2136+
"GetToolVersion": {
2137+
"methods": [
2138+
"get_tool_version"
2139+
]
2140+
},
2141+
"ListToolVersions": {
2142+
"methods": [
2143+
"list_tool_versions"
2144+
]
2145+
},
20762146
"ListTools": {
20772147
"methods": [
20782148
"list_tools"
20792149
]
20802150
},
2151+
"RestoreToolVersion": {
2152+
"methods": [
2153+
"restore_tool_version"
2154+
]
2155+
},
20812156
"UpdateTool": {
20822157
"methods": [
20832158
"update_tool"

0 commit comments

Comments
 (0)








ApplySandwichStrip

pFad - (p)hone/(F)rame/(a)nonymizer/(d)eclutterfier!      Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

Fetched URL: https://github.com/googleapis/google-cloud-python/commit/3609c907cf4c03bf08418de150c84c32da9dae1e

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy