google-cloud-video_intelligence 1.1.1 → 1.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (27) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +5 -5
  3. data/lib/google/cloud/video_intelligence.rb +4 -4
  4. data/lib/google/cloud/video_intelligence/v1.rb +4 -4
  5. data/lib/google/cloud/video_intelligence/v1/doc/google/cloud/videointelligence/v1/video_intelligence.rb +23 -23
  6. data/lib/google/cloud/video_intelligence/v1/doc/google/longrunning/operations.rb +9 -9
  7. data/lib/google/cloud/video_intelligence/v1/doc/google/protobuf/any.rb +8 -8
  8. data/lib/google/cloud/video_intelligence/v1/doc/google/protobuf/duration.rb +3 -3
  9. data/lib/google/cloud/video_intelligence/v1/doc/google/rpc/status.rb +11 -11
  10. data/lib/google/cloud/video_intelligence/v1/video_intelligence_service_client.rb +10 -10
  11. data/lib/google/cloud/video_intelligence/v1beta1.rb +4 -4
  12. data/lib/google/cloud/video_intelligence/v1beta1/doc/google/cloud/videointelligence/v1beta1/video_intelligence.rb +21 -21
  13. data/lib/google/cloud/video_intelligence/v1beta1/doc/google/longrunning/operations.rb +9 -9
  14. data/lib/google/cloud/video_intelligence/v1beta1/doc/google/protobuf/any.rb +8 -8
  15. data/lib/google/cloud/video_intelligence/v1beta1/doc/google/rpc/status.rb +11 -11
  16. data/lib/google/cloud/video_intelligence/v1beta1/video_intelligence_service_client.rb +9 -9
  17. data/lib/google/cloud/video_intelligence/v1beta2.rb +4 -4
  18. data/lib/google/cloud/video_intelligence/v1beta2/doc/google/cloud/videointelligence/v1beta2/video_intelligence.rb +23 -23
  19. data/lib/google/cloud/video_intelligence/v1beta2/doc/google/longrunning/operations.rb +9 -9
  20. data/lib/google/cloud/video_intelligence/v1beta2/doc/google/protobuf/any.rb +8 -8
  21. data/lib/google/cloud/video_intelligence/v1beta2/doc/google/protobuf/duration.rb +3 -3
  22. data/lib/google/cloud/video_intelligence/v1beta2/doc/google/rpc/status.rb +11 -11
  23. data/lib/google/cloud/video_intelligence/v1beta2/video_intelligence_service_client.rb +10 -10
  24. metadata +3 -6
  25. data/lib/google/cloud/video_intelligence/v1/doc/overview.rb +0 -118
  26. data/lib/google/cloud/video_intelligence/v1beta1/doc/overview.rb +0 -80
  27. data/lib/google/cloud/video_intelligence/v1beta2/doc/overview.rb +0 -80
@@ -1,80 +0,0 @@
1
- # Copyright 2018 Google LLC
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
6
- #
7
- # https://www.apache.org/licenses/LICENSE-2.0
8
- #
9
- # Unless required by applicable law or agreed to in writing, software
10
- # distributed under the License is distributed on an "AS IS" BASIS,
11
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
- # See the License for the specific language governing permissions and
13
- # limitations under the License.
14
-
15
-
16
- module Google
17
- module Cloud
18
- # rubocop:disable LineLength
19
-
20
- ##
21
- # # Ruby Client for Google Cloud Video Intelligence API ([GA](https://github.com/GoogleCloudPlatform/google-cloud-ruby#versioning))
22
- #
23
- # [Google Cloud Video Intelligence API][Product Documentation]:
24
- # Google Cloud Video Intelligence API.
25
- # - [Product Documentation][]
26
- #
27
- # ## Quick Start
28
- # In order to use this library, you first need to go through the following
29
- # steps:
30
- #
31
- # 1. [Select or create a Cloud Platform project.](https://console.cloud.google.com/project)
32
- # 2. [Enable billing for your project.](https://cloud.google.com/billing/docs/how-to/modify-project#enable_billing_for_a_project)
33
- # 3. [Enable the Google Cloud Video Intelligence API.](https://console.cloud.google.com/apis/library/videointelligence.googleapis.com)
34
- # 4. [Setup Authentication.](https://googlecloudplatform.github.io/google-cloud-ruby/#/docs/google-cloud/master/guides/authentication)
35
- #
36
- # ### Installation
37
- # ```
38
- # $ gem install google-cloud-video_intelligence
39
- # ```
40
- #
41
- # ### Next Steps
42
- # - Read the [Google Cloud Video Intelligence API Product documentation][Product Documentation]
43
- # to learn more about the product and see How-to Guides.
44
- # - View this [repository's main README](https://github.com/GoogleCloudPlatform/google-cloud-ruby/blob/master/README.md)
45
- # to see the full list of Cloud APIs that we cover.
46
- #
47
- # [Product Documentation]: https://cloud.google.com/video-intelligence
48
- #
49
- # ## Enabling Logging
50
- #
51
- # To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
52
- # The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/stdlib-2.5.0/libdoc/logger/rdoc/Logger.html) as shown below,
53
- # or a [`Google::Cloud::Logging::Logger`](https://googlecloudplatform.github.io/google-cloud-ruby/#/docs/google-cloud-logging/latest/google/cloud/logging/logger)
54
- # that will write logs to [Stackdriver Logging](https://cloud.google.com/logging/). See [grpc/logconfig.rb](https://github.com/grpc/grpc/blob/master/src/ruby/lib/grpc/logconfig.rb)
55
- # and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
56
- #
57
- # Configuring a Ruby stdlib logger:
58
- #
59
- # ```ruby
60
- # require "logger"
61
- #
62
- # module MyLogger
63
- # LOGGER = Logger.new $stderr, level: Logger::WARN
64
- # def logger
65
- # LOGGER
66
- # end
67
- # end
68
- #
69
- # # Define a gRPC module-level logger method before grpc/logconfig.rb loads.
70
- # module GRPC
71
- # extend MyLogger
72
- # end
73
- # ```
74
- #
75
- module VideoIntelligence
76
- module V1beta2
77
- end
78
- end
79
- end
80
- end