Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Jan 6, 2024. It is now read-only.

Commit 97c7fb5

Browse files
feat: add v3 (#21)
1 parent 80f36ad commit 97c7fb5

File tree

208 files changed

+73359
-4991
lines changed

Some content is hidden

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

208 files changed

+73359
-4991
lines changed

.pre-commit-config.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# See https://pre-commit.com for more information
2+
# See https://pre-commit.com/hooks.html for more hooks
3+
repos:
4+
- repo: https://github.com/pre-commit/pre-commit-hooks
5+
rev: v3.3.0
6+
hooks:
7+
- id: trailing-whitespace
8+
- id: end-of-file-fixer
9+
- id: check-yaml
10+
- repo: https://github.com/psf/black
11+
rev: 19.10b0
12+
hooks:
13+
- id: black
14+
- repo: https://gitlab.com/pycqa/flake8
15+
rev: 3.8.4
16+
hooks:
17+
- id: flake8

CONTRIBUTING.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,16 @@ Coding Style
111111
should point to the official ``googleapis`` checkout and the
112112
the branch should be the main branch on that remote (``master``).
113113

114+
- This repository contains configuration for the
115+
`pre-commit <https://pre-commit.com/>`__ tool, which automates checking
116+
our linters during a commit. If you have it installed on your ``$PATH``,
117+
you can enable enforcing those checks via:
118+
119+
.. code-block:: bash
120+
121+
$ pre-commit install
122+
pre-commit installed at .git/hooks/pre-commit
123+
114124
Exceptions to PEP8:
115125

116126
- Many unit tests use a helper method, ``_call_fut`` ("FUT" is short for

docs/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -345,10 +345,10 @@
345345

346346
# Example configuration for intersphinx: refer to the Python standard library.
347347
intersphinx_mapping = {
348-
"python": ("http://python.readthedocs.org/en/latest/", None),
349-
"google-auth": ("https://google-auth.readthedocs.io/en/stable", None),
348+
"python": ("https://python.readthedocs.org/en/latest/", None),
349+
"google-auth": ("https://googleapis.dev/python/google-auth/latest/", None),
350350
"google.api_core": ("https://googleapis.dev/python/google-api-core/latest/", None,),
351-
"grpc": ("https://grpc.io/grpc/python/", None),
351+
"grpc": ("https://grpc.github.io/grpc/python/", None),
352352
"proto-plus": ("https://proto-plus-python.readthedocs.io/en/latest/", None),
353353
}
354354

docs/dialogflowcx_v3/services.rst

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
Services for Google Cloud Dialogflowcx v3 API
2+
=============================================
3+
4+
.. automodule:: google.cloud.dialogflowcx_v3.services.agents
5+
:members:
6+
:inherited-members:
7+
.. automodule:: google.cloud.dialogflowcx_v3.services.entity_types
8+
:members:
9+
:inherited-members:
10+
.. automodule:: google.cloud.dialogflowcx_v3.services.environments
11+
:members:
12+
:inherited-members:
13+
.. automodule:: google.cloud.dialogflowcx_v3.services.flows
14+
:members:
15+
:inherited-members:
16+
.. automodule:: google.cloud.dialogflowcx_v3.services.intents
17+
:members:
18+
:inherited-members:
19+
.. automodule:: google.cloud.dialogflowcx_v3.services.pages
20+
:members:
21+
:inherited-members:
22+
.. automodule:: google.cloud.dialogflowcx_v3.services.security_settings_service
23+
:members:
24+
:inherited-members:
25+
.. automodule:: google.cloud.dialogflowcx_v3.services.session_entity_types
26+
:members:
27+
:inherited-members:
28+
.. automodule:: google.cloud.dialogflowcx_v3.services.sessions
29+
:members:
30+
:inherited-members:
31+
.. automodule:: google.cloud.dialogflowcx_v3.services.transition_route_groups
32+
:members:
33+
:inherited-members:
34+
.. automodule:: google.cloud.dialogflowcx_v3.services.versions
35+
:members:
36+
:inherited-members:
37+
.. automodule:: google.cloud.dialogflowcx_v3.services.webhooks
38+
:members:
39+
:inherited-members:

docs/dialogflowcx_v3/types.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Types for Google Cloud Dialogflowcx v3 API
2+
==========================================
3+
4+
.. automodule:: google.cloud.dialogflowcx_v3.types
5+
:members:
6+
:show-inheritance:

docs/dialogflowcx_v3beta1/types.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ Types for Google Cloud Dialogflowcx v3beta1 API
33

44
.. automodule:: google.cloud.dialogflowcx_v3beta1.types
55
:members:
6+
:show-inheritance:

docs/index.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ API Reference
88
.. toctree::
99
:maxdepth: 2
1010

11+
dialogflowcx_v3/services
12+
dialogflowcx_v3/types
1113
dialogflowcx_v3beta1/services
1214
dialogflowcx_v3beta1/types
1315

google/cloud/dialogflowcx/__init__.py

Lines changed: 176 additions & 152 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)