diff --git a/videointelligence/docs/conf.py b/videointelligence/docs/conf.py index accc733ece83..8a3535740da9 100644 --- a/videointelligence/docs/conf.py +++ b/videointelligence/docs/conf.py @@ -45,6 +45,7 @@ autodoc_default_flags = ["members"] autosummary_generate = True + # Add any paths that contain templates here, relative to this directory. templates_path = ["_templates"] @@ -121,6 +122,7 @@ # If true, `todo` and `todoList` produce output, else they produce nothing. todo_include_todos = True + # -- Options for HTML output ---------------------------------------------- # The theme to use for HTML and HTML Help pages. See the documentation for @@ -229,6 +231,7 @@ # -- Options for warnings ------------------------------------------------------ + suppress_warnings = [ # Temporarily suppress this to avoid "more than one target found for # cross-reference" warning, which are intractable for us to avoid while in @@ -284,6 +287,7 @@ # If false, no module index is generated. # latex_domain_indices = True + # -- Options for manual page output --------------------------------------- # One entry per manual page. List of tuples @@ -301,6 +305,7 @@ # If true, show URL addresses after external links. # man_show_urls = False + # -- Options for Texinfo output ------------------------------------------- # Grouping the document tree into Texinfo files. List of tuples @@ -330,6 +335,7 @@ # If true, do not generate a @detailmenu in the "Top" node's menu. # texinfo_no_detailmenu = False + # Example configuration for intersphinx: refer to the Python standard library. intersphinx_mapping = { "python": ("http://python.readthedocs.org/en/latest/", None), @@ -346,6 +352,7 @@ "pandas": ("https://pandas.pydata.org/pandas-docs/stable/", None), } + # Napoleon settings napoleon_google_docstring = True napoleon_numpy_docstring = True diff --git a/videointelligence/google/cloud/videointelligence.py b/videointelligence/google/cloud/videointelligence.py index 5cd6943965cd..276a663b7ec4 100644 --- a/videointelligence/google/cloud/videointelligence.py +++ b/videointelligence/google/cloud/videointelligence.py @@ -14,10 +14,12 @@ # See the License for the specific language governing permissions and # limitations under the License. + from __future__ import absolute_import from google.cloud.videointelligence_v1 import VideoIntelligenceServiceClient from google.cloud.videointelligence_v1 import enums from google.cloud.videointelligence_v1 import types + __all__ = ("enums", "types", "VideoIntelligenceServiceClient") diff --git a/videointelligence/google/cloud/videointelligence_v1/__init__.py b/videointelligence/google/cloud/videointelligence_v1/__init__.py index 8b2b60c8c12b..85cd704ad066 100644 --- a/videointelligence/google/cloud/videointelligence_v1/__init__.py +++ b/videointelligence/google/cloud/videointelligence_v1/__init__.py @@ -14,6 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. + from __future__ import absolute_import from google.cloud.videointelligence_v1 import types diff --git a/videointelligence/google/cloud/videointelligence_v1/gapic/enums.py b/videointelligence/google/cloud/videointelligence_v1/gapic/enums.py index 9c4a6e8391b5..269d8829128a 100644 --- a/videointelligence/google/cloud/videointelligence_v1/gapic/enums.py +++ b/videointelligence/google/cloud/videointelligence_v1/gapic/enums.py @@ -13,6 +13,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. + """Wrappers for protocol buffer enum types.""" import enum diff --git a/videointelligence/google/cloud/videointelligence_v1/gapic/transports/video_intelligence_service_grpc_transport.py b/videointelligence/google/cloud/videointelligence_v1/gapic/transports/video_intelligence_service_grpc_transport.py index 164f9287659b..e9cf16716108 100644 --- a/videointelligence/google/cloud/videointelligence_v1/gapic/transports/video_intelligence_service_grpc_transport.py +++ b/videointelligence/google/cloud/videointelligence_v1/gapic/transports/video_intelligence_service_grpc_transport.py @@ -14,6 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. + import google.api_core.grpc_helpers import google.api_core.operations_v1 diff --git a/videointelligence/google/cloud/videointelligence_v1/gapic/video_intelligence_service_client.py b/videointelligence/google/cloud/videointelligence_v1/gapic/video_intelligence_service_client.py index 6b47ce628d0e..e8c5896db538 100644 --- a/videointelligence/google/cloud/videointelligence_v1/gapic/video_intelligence_service_client.py +++ b/videointelligence/google/cloud/videointelligence_v1/gapic/video_intelligence_service_client.py @@ -13,6 +13,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. + """Accesses the google.cloud.videointelligence.v1 VideoIntelligenceService API.""" import pkg_resources @@ -38,8 +39,9 @@ from google.cloud.videointelligence_v1.proto import video_intelligence_pb2_grpc from google.longrunning import operations_pb2 + _GAPIC_LIBRARY_VERSION = pkg_resources.get_distribution( - "google-cloud-videointelligence" + "google-cloud-video-intelligence" ).version diff --git a/videointelligence/google/cloud/videointelligence_v1/types.py b/videointelligence/google/cloud/videointelligence_v1/types.py index cbead9bd89ce..43bb14867a02 100644 --- a/videointelligence/google/cloud/videointelligence_v1/types.py +++ b/videointelligence/google/cloud/videointelligence_v1/types.py @@ -14,6 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. + from __future__ import absolute_import import sys @@ -26,6 +27,7 @@ from google.protobuf import timestamp_pb2 from google.rpc import status_pb2 + _shared_modules = [operations_pb2, any_pb2, duration_pb2, timestamp_pb2, status_pb2] _local_modules = [video_intelligence_pb2] @@ -42,4 +44,5 @@ setattr(sys.modules[__name__], name, message) names.append(name) + __all__ = tuple(sorted(names)) diff --git a/videointelligence/google/cloud/videointelligence_v1beta1/__init__.py b/videointelligence/google/cloud/videointelligence_v1beta1/__init__.py index 6829fa93a2fe..d71748798c3c 100644 --- a/videointelligence/google/cloud/videointelligence_v1beta1/__init__.py +++ b/videointelligence/google/cloud/videointelligence_v1beta1/__init__.py @@ -14,6 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. + from __future__ import absolute_import from google.cloud.videointelligence_v1beta1 import types diff --git a/videointelligence/google/cloud/videointelligence_v1beta1/gapic/enums.py b/videointelligence/google/cloud/videointelligence_v1beta1/gapic/enums.py index a969c8c46267..7a13aca21272 100644 --- a/videointelligence/google/cloud/videointelligence_v1beta1/gapic/enums.py +++ b/videointelligence/google/cloud/videointelligence_v1beta1/gapic/enums.py @@ -13,6 +13,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. + """Wrappers for protocol buffer enum types.""" import enum diff --git a/videointelligence/google/cloud/videointelligence_v1beta1/gapic/transports/video_intelligence_service_grpc_transport.py b/videointelligence/google/cloud/videointelligence_v1beta1/gapic/transports/video_intelligence_service_grpc_transport.py index 9ac7a34e88e0..1b07cc5cfdc1 100644 --- a/videointelligence/google/cloud/videointelligence_v1beta1/gapic/transports/video_intelligence_service_grpc_transport.py +++ b/videointelligence/google/cloud/videointelligence_v1beta1/gapic/transports/video_intelligence_service_grpc_transport.py @@ -14,6 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. + import google.api_core.grpc_helpers import google.api_core.operations_v1 diff --git a/videointelligence/google/cloud/videointelligence_v1beta1/gapic/video_intelligence_service_client.py b/videointelligence/google/cloud/videointelligence_v1beta1/gapic/video_intelligence_service_client.py index f94d097acb3a..1d31f4942ddd 100644 --- a/videointelligence/google/cloud/videointelligence_v1beta1/gapic/video_intelligence_service_client.py +++ b/videointelligence/google/cloud/videointelligence_v1beta1/gapic/video_intelligence_service_client.py @@ -13,6 +13,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. + """Accesses the google.cloud.videointelligence.v1beta1 VideoIntelligenceService API.""" import pkg_resources @@ -38,8 +39,9 @@ from google.cloud.videointelligence_v1beta1.proto import video_intelligence_pb2_grpc from google.longrunning import operations_pb2 + _GAPIC_LIBRARY_VERSION = pkg_resources.get_distribution( - "google-cloud-videointelligence" + "google-cloud-video-intelligence" ).version diff --git a/videointelligence/google/cloud/videointelligence_v1beta1/types.py b/videointelligence/google/cloud/videointelligence_v1beta1/types.py index af093810a8d7..7ac97ae07933 100644 --- a/videointelligence/google/cloud/videointelligence_v1beta1/types.py +++ b/videointelligence/google/cloud/videointelligence_v1beta1/types.py @@ -14,6 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. + from __future__ import absolute_import import sys @@ -25,6 +26,7 @@ from google.protobuf import timestamp_pb2 from google.rpc import status_pb2 + _shared_modules = [operations_pb2, any_pb2, timestamp_pb2, status_pb2] _local_modules = [video_intelligence_pb2] @@ -41,4 +43,5 @@ setattr(sys.modules[__name__], name, message) names.append(name) + __all__ = tuple(sorted(names)) diff --git a/videointelligence/google/cloud/videointelligence_v1beta2/__init__.py b/videointelligence/google/cloud/videointelligence_v1beta2/__init__.py index c5a767c83b55..c180603ffc35 100644 --- a/videointelligence/google/cloud/videointelligence_v1beta2/__init__.py +++ b/videointelligence/google/cloud/videointelligence_v1beta2/__init__.py @@ -14,6 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. + from __future__ import absolute_import from google.cloud.videointelligence_v1beta2 import types diff --git a/videointelligence/google/cloud/videointelligence_v1beta2/gapic/enums.py b/videointelligence/google/cloud/videointelligence_v1beta2/gapic/enums.py index ca26d09187f5..57070f93e4bc 100644 --- a/videointelligence/google/cloud/videointelligence_v1beta2/gapic/enums.py +++ b/videointelligence/google/cloud/videointelligence_v1beta2/gapic/enums.py @@ -13,6 +13,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. + """Wrappers for protocol buffer enum types.""" import enum diff --git a/videointelligence/google/cloud/videointelligence_v1beta2/gapic/transports/video_intelligence_service_grpc_transport.py b/videointelligence/google/cloud/videointelligence_v1beta2/gapic/transports/video_intelligence_service_grpc_transport.py index 6f1e54eca45b..984db3296ba7 100644 --- a/videointelligence/google/cloud/videointelligence_v1beta2/gapic/transports/video_intelligence_service_grpc_transport.py +++ b/videointelligence/google/cloud/videointelligence_v1beta2/gapic/transports/video_intelligence_service_grpc_transport.py @@ -14,6 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. + import google.api_core.grpc_helpers import google.api_core.operations_v1 diff --git a/videointelligence/google/cloud/videointelligence_v1beta2/gapic/video_intelligence_service_client.py b/videointelligence/google/cloud/videointelligence_v1beta2/gapic/video_intelligence_service_client.py index b3bb0af25061..50cd9cf0458a 100644 --- a/videointelligence/google/cloud/videointelligence_v1beta2/gapic/video_intelligence_service_client.py +++ b/videointelligence/google/cloud/videointelligence_v1beta2/gapic/video_intelligence_service_client.py @@ -13,6 +13,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. + """Accesses the google.cloud.videointelligence.v1beta2 VideoIntelligenceService API.""" import pkg_resources @@ -38,8 +39,9 @@ from google.cloud.videointelligence_v1beta2.proto import video_intelligence_pb2_grpc from google.longrunning import operations_pb2 + _GAPIC_LIBRARY_VERSION = pkg_resources.get_distribution( - "google-cloud-videointelligence" + "google-cloud-video-intelligence" ).version diff --git a/videointelligence/google/cloud/videointelligence_v1beta2/types.py b/videointelligence/google/cloud/videointelligence_v1beta2/types.py index 0d2a67f02ad4..b47daca2c0ed 100644 --- a/videointelligence/google/cloud/videointelligence_v1beta2/types.py +++ b/videointelligence/google/cloud/videointelligence_v1beta2/types.py @@ -14,6 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. + from __future__ import absolute_import import sys @@ -26,6 +27,7 @@ from google.protobuf import timestamp_pb2 from google.rpc import status_pb2 + _shared_modules = [operations_pb2, any_pb2, duration_pb2, timestamp_pb2, status_pb2] _local_modules = [video_intelligence_pb2] @@ -42,4 +44,5 @@ setattr(sys.modules[__name__], name, message) names.append(name) + __all__ = tuple(sorted(names)) diff --git a/videointelligence/google/cloud/videointelligence_v1p1beta1/__init__.py b/videointelligence/google/cloud/videointelligence_v1p1beta1/__init__.py index eab489aca426..f34c79eba8f2 100644 --- a/videointelligence/google/cloud/videointelligence_v1p1beta1/__init__.py +++ b/videointelligence/google/cloud/videointelligence_v1p1beta1/__init__.py @@ -14,6 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. + from __future__ import absolute_import from google.cloud.videointelligence_v1p1beta1 import types diff --git a/videointelligence/google/cloud/videointelligence_v1p1beta1/gapic/enums.py b/videointelligence/google/cloud/videointelligence_v1p1beta1/gapic/enums.py index d7398a573699..534d822ba120 100644 --- a/videointelligence/google/cloud/videointelligence_v1p1beta1/gapic/enums.py +++ b/videointelligence/google/cloud/videointelligence_v1p1beta1/gapic/enums.py @@ -13,6 +13,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. + """Wrappers for protocol buffer enum types.""" import enum diff --git a/videointelligence/google/cloud/videointelligence_v1p1beta1/gapic/transports/video_intelligence_service_grpc_transport.py b/videointelligence/google/cloud/videointelligence_v1p1beta1/gapic/transports/video_intelligence_service_grpc_transport.py index fc5b17062d2c..acf837d26e0a 100644 --- a/videointelligence/google/cloud/videointelligence_v1p1beta1/gapic/transports/video_intelligence_service_grpc_transport.py +++ b/videointelligence/google/cloud/videointelligence_v1p1beta1/gapic/transports/video_intelligence_service_grpc_transport.py @@ -14,6 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. + import google.api_core.grpc_helpers import google.api_core.operations_v1 diff --git a/videointelligence/google/cloud/videointelligence_v1p1beta1/gapic/video_intelligence_service_client.py b/videointelligence/google/cloud/videointelligence_v1p1beta1/gapic/video_intelligence_service_client.py index 5fee3a9dd639..d8d550910c56 100644 --- a/videointelligence/google/cloud/videointelligence_v1p1beta1/gapic/video_intelligence_service_client.py +++ b/videointelligence/google/cloud/videointelligence_v1p1beta1/gapic/video_intelligence_service_client.py @@ -13,6 +13,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. + """Accesses the google.cloud.videointelligence.v1p1beta1 VideoIntelligenceService API.""" import pkg_resources @@ -38,8 +39,9 @@ from google.cloud.videointelligence_v1p1beta1.proto import video_intelligence_pb2_grpc from google.longrunning import operations_pb2 + _GAPIC_LIBRARY_VERSION = pkg_resources.get_distribution( - "google-cloud-videointelligence" + "google-cloud-video-intelligence" ).version diff --git a/videointelligence/google/cloud/videointelligence_v1p1beta1/types.py b/videointelligence/google/cloud/videointelligence_v1p1beta1/types.py index 49e4b199a672..ce7f71b90997 100644 --- a/videointelligence/google/cloud/videointelligence_v1p1beta1/types.py +++ b/videointelligence/google/cloud/videointelligence_v1p1beta1/types.py @@ -14,6 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. + from __future__ import absolute_import import sys @@ -26,6 +27,7 @@ from google.protobuf import timestamp_pb2 from google.rpc import status_pb2 + _shared_modules = [operations_pb2, any_pb2, duration_pb2, timestamp_pb2, status_pb2] _local_modules = [video_intelligence_pb2] @@ -42,4 +44,5 @@ setattr(sys.modules[__name__], name, message) names.append(name) + __all__ = tuple(sorted(names)) diff --git a/videointelligence/google/cloud/videointelligence_v1p2beta1/__init__.py b/videointelligence/google/cloud/videointelligence_v1p2beta1/__init__.py index 82dc4e4b1aef..bb08b22fa8fa 100644 --- a/videointelligence/google/cloud/videointelligence_v1p2beta1/__init__.py +++ b/videointelligence/google/cloud/videointelligence_v1p2beta1/__init__.py @@ -14,6 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. + from __future__ import absolute_import from google.cloud.videointelligence_v1p2beta1 import types diff --git a/videointelligence/google/cloud/videointelligence_v1p2beta1/gapic/enums.py b/videointelligence/google/cloud/videointelligence_v1p2beta1/gapic/enums.py index 75c2cbcf5b9c..4d0ad701bd40 100644 --- a/videointelligence/google/cloud/videointelligence_v1p2beta1/gapic/enums.py +++ b/videointelligence/google/cloud/videointelligence_v1p2beta1/gapic/enums.py @@ -13,6 +13,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. + """Wrappers for protocol buffer enum types.""" import enum diff --git a/videointelligence/google/cloud/videointelligence_v1p2beta1/gapic/transports/video_intelligence_service_grpc_transport.py b/videointelligence/google/cloud/videointelligence_v1p2beta1/gapic/transports/video_intelligence_service_grpc_transport.py index 449e5cf29cae..d7627fc66140 100644 --- a/videointelligence/google/cloud/videointelligence_v1p2beta1/gapic/transports/video_intelligence_service_grpc_transport.py +++ b/videointelligence/google/cloud/videointelligence_v1p2beta1/gapic/transports/video_intelligence_service_grpc_transport.py @@ -14,6 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. + import google.api_core.grpc_helpers import google.api_core.operations_v1 diff --git a/videointelligence/google/cloud/videointelligence_v1p2beta1/gapic/video_intelligence_service_client.py b/videointelligence/google/cloud/videointelligence_v1p2beta1/gapic/video_intelligence_service_client.py index cf03535065ed..4e520a1c68f9 100644 --- a/videointelligence/google/cloud/videointelligence_v1p2beta1/gapic/video_intelligence_service_client.py +++ b/videointelligence/google/cloud/videointelligence_v1p2beta1/gapic/video_intelligence_service_client.py @@ -13,6 +13,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. + """Accesses the google.cloud.videointelligence.v1p2beta1 VideoIntelligenceService API.""" import pkg_resources @@ -38,8 +39,9 @@ from google.cloud.videointelligence_v1p2beta1.proto import video_intelligence_pb2_grpc from google.longrunning import operations_pb2 + _GAPIC_LIBRARY_VERSION = pkg_resources.get_distribution( - "google-cloud-videointelligence" + "google-cloud-video-intelligence" ).version diff --git a/videointelligence/google/cloud/videointelligence_v1p2beta1/types.py b/videointelligence/google/cloud/videointelligence_v1p2beta1/types.py index 509069cda03c..b35b189ccb54 100644 --- a/videointelligence/google/cloud/videointelligence_v1p2beta1/types.py +++ b/videointelligence/google/cloud/videointelligence_v1p2beta1/types.py @@ -14,6 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. + from __future__ import absolute_import import sys @@ -26,6 +27,7 @@ from google.protobuf import timestamp_pb2 from google.rpc import status_pb2 + _shared_modules = [operations_pb2, any_pb2, duration_pb2, timestamp_pb2, status_pb2] _local_modules = [video_intelligence_pb2] @@ -42,4 +44,5 @@ setattr(sys.modules[__name__], name, message) names.append(name) + __all__ = tuple(sorted(names)) diff --git a/videointelligence/google/cloud/videointelligence_v1p3beta1/__init__.py b/videointelligence/google/cloud/videointelligence_v1p3beta1/__init__.py index c53d21ff345b..fd8f0071f62a 100644 --- a/videointelligence/google/cloud/videointelligence_v1p3beta1/__init__.py +++ b/videointelligence/google/cloud/videointelligence_v1p3beta1/__init__.py @@ -14,6 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. + from __future__ import absolute_import from google.cloud.videointelligence_v1p3beta1 import types diff --git a/videointelligence/google/cloud/videointelligence_v1p3beta1/gapic/enums.py b/videointelligence/google/cloud/videointelligence_v1p3beta1/gapic/enums.py index fd4074867567..8b10cd2fe17c 100644 --- a/videointelligence/google/cloud/videointelligence_v1p3beta1/gapic/enums.py +++ b/videointelligence/google/cloud/videointelligence_v1p3beta1/gapic/enums.py @@ -13,6 +13,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. + """Wrappers for protocol buffer enum types.""" import enum diff --git a/videointelligence/google/cloud/videointelligence_v1p3beta1/gapic/streaming_video_intelligence_service_client.py b/videointelligence/google/cloud/videointelligence_v1p3beta1/gapic/streaming_video_intelligence_service_client.py index 5d7ca98e6934..7100c2badd53 100644 --- a/videointelligence/google/cloud/videointelligence_v1p3beta1/gapic/streaming_video_intelligence_service_client.py +++ b/videointelligence/google/cloud/videointelligence_v1p3beta1/gapic/streaming_video_intelligence_service_client.py @@ -13,6 +13,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. + """Accesses the google.cloud.videointelligence.v1p3beta1 StreamingVideoIntelligenceService API.""" import pkg_resources @@ -37,8 +38,9 @@ from google.cloud.videointelligence_v1p3beta1.proto import video_intelligence_pb2_grpc from google.longrunning import operations_pb2 + _GAPIC_LIBRARY_VERSION = pkg_resources.get_distribution( - "google-cloud-videointelligence" + "google-cloud-video-intelligence" ).version diff --git a/videointelligence/google/cloud/videointelligence_v1p3beta1/gapic/transports/streaming_video_intelligence_service_grpc_transport.py b/videointelligence/google/cloud/videointelligence_v1p3beta1/gapic/transports/streaming_video_intelligence_service_grpc_transport.py index 442811736a73..21af3a4cf8c3 100644 --- a/videointelligence/google/cloud/videointelligence_v1p3beta1/gapic/transports/streaming_video_intelligence_service_grpc_transport.py +++ b/videointelligence/google/cloud/videointelligence_v1p3beta1/gapic/transports/streaming_video_intelligence_service_grpc_transport.py @@ -14,6 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. + import google.api_core.grpc_helpers from google.cloud.videointelligence_v1p3beta1.proto import video_intelligence_pb2_grpc diff --git a/videointelligence/google/cloud/videointelligence_v1p3beta1/gapic/transports/video_intelligence_service_grpc_transport.py b/videointelligence/google/cloud/videointelligence_v1p3beta1/gapic/transports/video_intelligence_service_grpc_transport.py index 3fb04b972fd9..d5ee2f86a7ce 100644 --- a/videointelligence/google/cloud/videointelligence_v1p3beta1/gapic/transports/video_intelligence_service_grpc_transport.py +++ b/videointelligence/google/cloud/videointelligence_v1p3beta1/gapic/transports/video_intelligence_service_grpc_transport.py @@ -14,6 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. + import google.api_core.grpc_helpers import google.api_core.operations_v1 diff --git a/videointelligence/google/cloud/videointelligence_v1p3beta1/gapic/video_intelligence_service_client.py b/videointelligence/google/cloud/videointelligence_v1p3beta1/gapic/video_intelligence_service_client.py index aecf312a3511..6df71d3c6cdb 100644 --- a/videointelligence/google/cloud/videointelligence_v1p3beta1/gapic/video_intelligence_service_client.py +++ b/videointelligence/google/cloud/videointelligence_v1p3beta1/gapic/video_intelligence_service_client.py @@ -13,6 +13,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. + """Accesses the google.cloud.videointelligence.v1p3beta1 VideoIntelligenceService API.""" import pkg_resources @@ -38,8 +39,9 @@ from google.cloud.videointelligence_v1p3beta1.proto import video_intelligence_pb2_grpc from google.longrunning import operations_pb2 + _GAPIC_LIBRARY_VERSION = pkg_resources.get_distribution( - "google-cloud-videointelligence" + "google-cloud-video-intelligence" ).version diff --git a/videointelligence/google/cloud/videointelligence_v1p3beta1/types.py b/videointelligence/google/cloud/videointelligence_v1p3beta1/types.py index ae042dff8260..58e52ca83d52 100644 --- a/videointelligence/google/cloud/videointelligence_v1p3beta1/types.py +++ b/videointelligence/google/cloud/videointelligence_v1p3beta1/types.py @@ -14,6 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. + from __future__ import absolute_import import sys @@ -26,6 +27,7 @@ from google.protobuf import timestamp_pb2 from google.rpc import status_pb2 + _shared_modules = [operations_pb2, any_pb2, duration_pb2, timestamp_pb2, status_pb2] _local_modules = [video_intelligence_pb2] @@ -42,4 +44,5 @@ setattr(sys.modules[__name__], name, message) names.append(name) + __all__ = tuple(sorted(names)) diff --git a/videointelligence/synth.metadata b/videointelligence/synth.metadata index 294af20e5c56..ba8fa1658beb 100644 --- a/videointelligence/synth.metadata +++ b/videointelligence/synth.metadata @@ -1,19 +1,19 @@ { - "updateTime": "2019-05-10T12:44:24.157372Z", + "updateTime": "2019-05-21T12:39:05.572598Z", "sources": [ { "generator": { "name": "artman", - "version": "0.19.0", - "dockerImage": "googleapis/artman@sha256:d3df563538225ac6caac45d8ad86499500211d1bcb2536955a6dbda15e1b368e" + "version": "0.20.0", + "dockerImage": "googleapis/artman@sha256:3246adac900f4bdbd62920e80de2e5877380e44036b3feae13667ec255ebf5ec" } }, { "git": { "name": "googleapis", "remote": "https://github.com/googleapis/googleapis.git", - "sha": "07883be5bf3c3233095e99d8e92b8094f5d7084a", - "internalRef": "247530843" + "sha": "32a10f69e2c9ce15bba13ab1ff928bacebb25160", + "internalRef": "249058354" } }, { diff --git a/videointelligence/tests/unit/gapic/v1/test_video_intelligence_service_client_v1.py b/videointelligence/tests/unit/gapic/v1/test_video_intelligence_service_client_v1.py index 9fba2a1d6e26..fca6c1e165bd 100644 --- a/videointelligence/tests/unit/gapic/v1/test_video_intelligence_service_client_v1.py +++ b/videointelligence/tests/unit/gapic/v1/test_video_intelligence_service_client_v1.py @@ -13,6 +13,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. + """Unit tests.""" import mock diff --git a/videointelligence/tests/unit/gapic/v1beta1/test_video_intelligence_service_client_v1beta1.py b/videointelligence/tests/unit/gapic/v1beta1/test_video_intelligence_service_client_v1beta1.py index d7607ea89c9c..bdb27b142940 100644 --- a/videointelligence/tests/unit/gapic/v1beta1/test_video_intelligence_service_client_v1beta1.py +++ b/videointelligence/tests/unit/gapic/v1beta1/test_video_intelligence_service_client_v1beta1.py @@ -13,6 +13,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. + """Unit tests.""" import mock diff --git a/videointelligence/tests/unit/gapic/v1beta2/test_video_intelligence_service_client_v1beta2.py b/videointelligence/tests/unit/gapic/v1beta2/test_video_intelligence_service_client_v1beta2.py index 9ba3b636ab49..373dab7d9bb2 100644 --- a/videointelligence/tests/unit/gapic/v1beta2/test_video_intelligence_service_client_v1beta2.py +++ b/videointelligence/tests/unit/gapic/v1beta2/test_video_intelligence_service_client_v1beta2.py @@ -13,6 +13,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. + """Unit tests.""" import mock diff --git a/videointelligence/tests/unit/gapic/v1p1beta1/test_video_intelligence_service_client_v1p1beta1.py b/videointelligence/tests/unit/gapic/v1p1beta1/test_video_intelligence_service_client_v1p1beta1.py index 536d062fc497..b71dfbfc222c 100644 --- a/videointelligence/tests/unit/gapic/v1p1beta1/test_video_intelligence_service_client_v1p1beta1.py +++ b/videointelligence/tests/unit/gapic/v1p1beta1/test_video_intelligence_service_client_v1p1beta1.py @@ -13,6 +13,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. + """Unit tests.""" import mock diff --git a/videointelligence/tests/unit/gapic/v1p2beta1/test_video_intelligence_service_client_v1p2beta1.py b/videointelligence/tests/unit/gapic/v1p2beta1/test_video_intelligence_service_client_v1p2beta1.py index c575e9ea9ced..c4c1c259fa1b 100644 --- a/videointelligence/tests/unit/gapic/v1p2beta1/test_video_intelligence_service_client_v1p2beta1.py +++ b/videointelligence/tests/unit/gapic/v1p2beta1/test_video_intelligence_service_client_v1p2beta1.py @@ -13,6 +13,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. + """Unit tests.""" import mock diff --git a/videointelligence/tests/unit/gapic/v1p3beta1/test_streaming_video_intelligence_service_client_v1p3beta1.py b/videointelligence/tests/unit/gapic/v1p3beta1/test_streaming_video_intelligence_service_client_v1p3beta1.py index 78a40710fa73..0bc5741c22d5 100644 --- a/videointelligence/tests/unit/gapic/v1p3beta1/test_streaming_video_intelligence_service_client_v1p3beta1.py +++ b/videointelligence/tests/unit/gapic/v1p3beta1/test_streaming_video_intelligence_service_client_v1p3beta1.py @@ -13,6 +13,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. + """Unit tests.""" import mock diff --git a/videointelligence/tests/unit/gapic/v1p3beta1/test_video_intelligence_service_client_v1p3beta1.py b/videointelligence/tests/unit/gapic/v1p3beta1/test_video_intelligence_service_client_v1p3beta1.py index 8387d857b748..69248e67f69b 100644 --- a/videointelligence/tests/unit/gapic/v1p3beta1/test_video_intelligence_service_client_v1p3beta1.py +++ b/videointelligence/tests/unit/gapic/v1p3beta1/test_video_intelligence_service_client_v1p3beta1.py @@ -13,6 +13,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. + """Unit tests.""" import mock