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

feat: add environments client #217

Merged
merged 28 commits into from Aug 26, 2020
Merged
Show file tree
Hide file tree
Changes from 24 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
3ad188d
Integrate Python GAPIC Microgenerator in googleapis. This PR uses usi…
yoshi-automation Aug 13, 2020
639fcdf
fix: restore GAPIC v2 retry configs
yoshi-automation Aug 13, 2020
5c1b6e6
Dialogflow weekly v2 library update: - Minor comment updates.
yoshi-automation Aug 13, 2020
68b9a8e
feat!: additional client library annotations feat: reload information…
yoshi-automation Aug 13, 2020
6ead8c7
Upgrade protoc-docs-plugin version to 0.7.0 to fix unstable docstrings.
yoshi-automation Aug 13, 2020
b01cbbb
feat: add one additional binding for SearchAgents API; clean up deps;…
yoshi-automation Aug 13, 2020
34908bc
bazel: update protobuf, rules_go, gazelle, and gapic-generator-go ver…
yoshi-automation Aug 13, 2020
07c1382
chore: update gapic-generator and go microgen
yoshi-automation Aug 13, 2020
f0dc260
docs: cleaned docs for the Agents service and resource.
yoshi-automation Aug 13, 2020
f6ce5e6
fix: use protoc-docs-plugin 0.8.0
yoshi-automation Aug 13, 2020
59250bd
- Update grpc config for retry mechanism. - Update ImportAgent/Export…
yoshi-automation Aug 13, 2020
5f5b574
- Update grpc config for retry mechanism. - Update ImportAgent/Export…
yoshi-automation Aug 13, 2020
6250c25
chore: update grpc to v1.30.0
yoshi-automation Aug 13, 2020
0cd49b4
Updates to build Google Ads API build files.
yoshi-automation Aug 13, 2020
e83066a
chore: dialogflow/v2 clean up gapic config
yoshi-automation Aug 13, 2020
2e91081
- Fix client library environment resource annotation.
yoshi-automation Aug 13, 2020
ce29dfe
feat: add Location parent to Environment resource
yoshi-automation Aug 13, 2020
908b626
Update protobuf and gapic-generator-csharp versions.
yoshi-automation Aug 13, 2020
c12eb2a
docs: more detailed docs on APIs such as Environment, Intents, Sessions.
yoshi-automation Aug 13, 2020
022bbf7
fix: publish missing client config annotations
yoshi-automation Aug 13, 2020
63aa9a2
fix!: migrate dialogflow/v2beta1 to gapic v2
yoshi-automation Aug 13, 2020
38671a2
docs: more detailed docs on APIs such as Environment, Intents, Sessions.
yoshi-automation Aug 13, 2020
c606f8d
feat: added support for custom content types docs: clarified wording …
yoshi-automation Aug 13, 2020
7413e43
feat: added support for custom content types docs: clarified wording …
yoshi-automation Aug 13, 2020
12a85b9
fix: revert breaking changes
busunkim96 Aug 26, 2020
618a77f
fix: revert function rename
busunkim96 Aug 26, 2020
7ecac62
test: fix test
busunkim96 Aug 26, 2020
e3c1426
fix: add back one more method
busunkim96 Aug 26, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE
@@ -1,4 +1,4 @@
Apache License
Apache License
Version 2.0, January 2004
https://www.apache.org/licenses/

Expand Down
11 changes: 9 additions & 2 deletions dialogflow_v2/__init__.py
Expand Up @@ -24,15 +24,16 @@
from dialogflow_v2.gapic import contexts_client
from dialogflow_v2.gapic import entity_types_client
from dialogflow_v2.gapic import enums
from dialogflow_v2.gapic import environments_client
from dialogflow_v2.gapic import intents_client
from dialogflow_v2.gapic import session_entity_types_client
from dialogflow_v2.gapic import sessions_client


if sys.version_info[:2] == (2, 7):
message = (
"A future version of this library will drop support for Python 2.7."
"More details about Python 2 support for Google Cloud Client Libraries"
"A future version of this library will drop support for Python 2.7. "
"More details about Python 2 support for Google Cloud Client Libraries "
"can be found at https://cloud.google.com/python/docs/python2-sunset/"
)
warnings.warn(message, DeprecationWarning)
Expand All @@ -53,6 +54,11 @@ class EntityTypesClient(entity_types_client.EntityTypesClient):
enums = enums


class EnvironmentsClient(environments_client.EnvironmentsClient):
__doc__ = environments_client.EnvironmentsClient.__doc__
enums = enums


class IntentsClient(intents_client.IntentsClient):
__doc__ = intents_client.IntentsClient.__doc__
enums = enums
Expand All @@ -74,6 +80,7 @@ class SessionsClient(sessions_client.SessionsClient):
"AgentsClient",
"ContextsClient",
"EntityTypesClient",
"EnvironmentsClient",
"IntentsClient",
"SessionEntityTypesClient",
"SessionsClient",
Expand Down