Skip to content
This repository was archived by the owner on Dec 17, 2023. It is now read-only.

Commit 03199c4

Browse files
feat: added support for AssistQueryParameters and SynthesizeSpeechConfig (#621)
* chore: Update gapic-generator-python to v1.8.5 PiperOrigin-RevId: 511892190 Source-Link: googleapis/googleapis@a45d9c0 Source-Link: https://github.com/googleapis/googleapis-gen/commit/1907294b1d8365ea24f8c5f2e059a64124c4ed3b Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMTkwNzI5NGIxZDgzNjVlYTI0ZjhjNWYyZTA1OWE2NDEyNGM0ZWQzYiJ9 feat: added support for AssistQueryParameters and SynthesizeSpeechConfig docs: add more meaningful comments PiperOrigin-RevId: 510042252 Source-Link: googleapis/googleapis@7b30db7 Source-Link: https://github.com/googleapis/googleapis-gen/commit/17beb9941750b31faa423a29d7a018346a6b88b5 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMTdiZWI5OTQxNzUwYjMxZmFhNDIzYTI5ZDdhMDE4MzQ2YTZiODhiNSJ9 feat: enable "rest" transport in Python for services supporting numeric enums PiperOrigin-RevId: 508143576 Source-Link: googleapis/googleapis@7a702a9 Source-Link: https://github.com/googleapis/googleapis-gen/commit/6ad1279c0e7aa787ac6b66c9fd4a210692edffcd Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNmFkMTI3OWMwZTdhYTc4N2FjNmI2NmM5ZmQ0YTIxMDY5MmVkZmZjZCJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent 1a932ee commit 03199c4

File tree

175 files changed

+121980
-3515
lines changed

Some content is hidden

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

175 files changed

+121980
-3515
lines changed

google/cloud/dialogflow_v2/gapic_metadata.json

Lines changed: 612 additions & 12 deletions
Large diffs are not rendered by default.

google/cloud/dialogflow_v2/services/agents/client.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@
6161
from .transports.base import DEFAULT_CLIENT_INFO, AgentsTransport
6262
from .transports.grpc import AgentsGrpcTransport
6363
from .transports.grpc_asyncio import AgentsGrpcAsyncIOTransport
64+
from .transports.rest import AgentsRestTransport
6465

6566

6667
class AgentsClientMeta(type):
@@ -74,6 +75,7 @@ class AgentsClientMeta(type):
7475
_transport_registry = OrderedDict() # type: Dict[str, Type[AgentsTransport]]
7576
_transport_registry["grpc"] = AgentsGrpcTransport
7677
_transport_registry["grpc_asyncio"] = AgentsGrpcAsyncIOTransport
78+
_transport_registry["rest"] = AgentsRestTransport
7779

7880
def get_transport_class(
7981
cls,

google/cloud/dialogflow_v2/services/agents/transports/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,18 @@
1919
from .base import AgentsTransport
2020
from .grpc import AgentsGrpcTransport
2121
from .grpc_asyncio import AgentsGrpcAsyncIOTransport
22+
from .rest import AgentsRestInterceptor, AgentsRestTransport
2223

2324
# Compile a registry of transports.
2425
_transport_registry = OrderedDict() # type: Dict[str, Type[AgentsTransport]]
2526
_transport_registry["grpc"] = AgentsGrpcTransport
2627
_transport_registry["grpc_asyncio"] = AgentsGrpcAsyncIOTransport
28+
_transport_registry["rest"] = AgentsRestTransport
2729

2830
__all__ = (
2931
"AgentsTransport",
3032
"AgentsGrpcTransport",
3133
"AgentsGrpcAsyncIOTransport",
34+
"AgentsRestTransport",
35+
"AgentsRestInterceptor",
3236
)

0 commit comments

Comments
 (0)