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

feat: add support for streaming automl action recognition in v1p3beta1; make 'features' a positional param for annotate_video in betas #31

Merged
merged 17 commits into from
Jun 9, 2020
Merged
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
02d1e77
Integrate Python GAPIC Microgenerator in googleapis.
yoshi-automation May 30, 2020
2a26908
chore(python): create thread_safety doc (#517)
yoshi-automation May 30, 2020
8646aec
chore(python): remove extra #!/bin/bash (#538)
yoshi-automation May 30, 2020
d1651d2
chore!: enable gapicv2 for monitoring/v3 API
yoshi-automation May 30, 2020
66c9c7c
fix: restore GAPIC v2 retry configs
yoshi-automation May 30, 2020
fe1f278
feat(v1p3beta1): added support for streaming automl action recognition.
yoshi-automation May 30, 2020
611b7e4
fix: point artman at gapic v1 for monitoring/v3 API
yoshi-automation May 30, 2020
170caf7
Dialogflow weekly v2 library update:
yoshi-automation May 30, 2020
3d792b8
chore(python): remove one remaining extra bash line (#565)
yoshi-automation May 30, 2020
c78b9f1
Upgrade protoc-docs-plugin version to 0.7.0 to fix unstable docstrings.
yoshi-automation May 30, 2020
167d88a
bazel: update protobuf, rules_go, gazelle, and gapic-generator-go ver…
yoshi-automation May 30, 2020
fe796fd
Use correct resource type for DetachSubscriptionRequest
yoshi-automation May 30, 2020
db9cadc
docs: update python docs template (#576)
yoshi-automation May 30, 2020
8f9f187
feat: add templates for python samples projects (#506)
yoshi-automation May 30, 2020
79cf5ec
chore: update default ignores for Python libraries (#586)
yoshi-automation May 30, 2020
2033698
feat: allow custom python versions in noxfile (#585)
yoshi-automation May 30, 2020
69b387f
docs: fix docs
busunkim96 Jun 9, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
docs: fix docs
  • Loading branch information
busunkim96 committed Jun 9, 2020
commit 69b387f4d60cbfd6ec6c3075ea8670fbacc1423e
3 changes: 2 additions & 1 deletion docs/gapic/v1/types.rst
Original file line number Diff line number Diff line change
@@ -2,4 +2,5 @@ Types for Cloud Video Intelligence API Client
=============================================

.. automodule:: google.cloud.videointelligence_v1.types
:members:
:members:
:noindex:
3 changes: 2 additions & 1 deletion docs/gapic/v1beta2/types.rst
Original file line number Diff line number Diff line change
@@ -2,4 +2,5 @@ Types for Google Cloud Video Intelligence API Client
====================================================

.. automodule:: google.cloud.videointelligence_v1beta2.types
:members:
:members:
:noindex:
3 changes: 2 additions & 1 deletion docs/gapic/v1p1beta1/types.rst
Original file line number Diff line number Diff line change
@@ -2,4 +2,5 @@ Types for Cloud Video Intelligence API Client
=============================================

.. automodule:: google.cloud.videointelligence_v1p1beta1.types
:members:
:members:
:noindex:
3 changes: 2 additions & 1 deletion docs/gapic/v1p2beta1/types.rst
Original file line number Diff line number Diff line change
@@ -2,4 +2,5 @@ Types for Cloud Video Intelligence API Client
=============================================

.. automodule:: google.cloud.videointelligence_v1p2beta1.types
:members:
:members:
:noindex:
3 changes: 2 additions & 1 deletion docs/gapic/v1p3beta1/types.rst
Original file line number Diff line number Diff line change
@@ -2,4 +2,5 @@ Types for Cloud Video Intelligence API Client
=============================================

.. automodule:: google.cloud.videointelligence_v1p3beta1.types
:members:
:members:
:noindex:
2 changes: 2 additions & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
.. include:: README.rst

.. include:: multiprocessing.rst

API Reference
-------------

4 changes: 2 additions & 2 deletions google/cloud/videointelligence_v1/__init__.py
Original file line number Diff line number Diff line change
@@ -26,8 +26,8 @@

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)
40 changes: 40 additions & 0 deletions google/cloud/videointelligence_v1/proto/video_intelligence_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions google/cloud/videointelligence_v1beta2/__init__.py
Original file line number Diff line number Diff line change
@@ -28,8 +28,8 @@

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)
Loading