google-cloud-video_intelligence-v1p3beta1 0.1.0

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 (28) hide show
  1. checksums.yaml +7 -0
  2. data/.yardopts +12 -0
  3. data/AUTHENTICATION.md +169 -0
  4. data/LICENSE.md +201 -0
  5. data/README.md +139 -0
  6. data/lib/google/cloud/video_intelligence/v1p3beta1/streaming_video_intelligence_service/client.rb +361 -0
  7. data/lib/google/cloud/video_intelligence/v1p3beta1/streaming_video_intelligence_service/credentials.rb +51 -0
  8. data/lib/google/cloud/video_intelligence/v1p3beta1/streaming_video_intelligence_service.rb +48 -0
  9. data/lib/google/cloud/video_intelligence/v1p3beta1/version.rb +28 -0
  10. data/lib/google/cloud/video_intelligence/v1p3beta1/video_intelligence_service/client.rb +414 -0
  11. data/lib/google/cloud/video_intelligence/v1p3beta1/video_intelligence_service/credentials.rb +51 -0
  12. data/lib/google/cloud/video_intelligence/v1p3beta1/video_intelligence_service/operations.rb +664 -0
  13. data/lib/google/cloud/video_intelligence/v1p3beta1/video_intelligence_service.rb +49 -0
  14. data/lib/google/cloud/video_intelligence/v1p3beta1.rb +39 -0
  15. data/lib/google/cloud/videointelligence/v1p3beta1/video_intelligence_pb.rb +405 -0
  16. data/lib/google/cloud/videointelligence/v1p3beta1/video_intelligence_services_pb.rb +66 -0
  17. data/lib/google-cloud-video_intelligence-v1p3beta1.rb +21 -0
  18. data/proto_docs/README.md +4 -0
  19. data/proto_docs/google/api/field_behavior.rb +71 -0
  20. data/proto_docs/google/api/resource.rb +283 -0
  21. data/proto_docs/google/cloud/videointelligence/v1p3beta1/video_intelligence.rb +1196 -0
  22. data/proto_docs/google/longrunning/operations.rb +164 -0
  23. data/proto_docs/google/protobuf/any.rb +141 -0
  24. data/proto_docs/google/protobuf/duration.rb +98 -0
  25. data/proto_docs/google/protobuf/empty.rb +36 -0
  26. data/proto_docs/google/protobuf/timestamp.rb +129 -0
  27. data/proto_docs/google/rpc/status.rb +46 -0
  28. metadata +219 -0
@@ -0,0 +1,361 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2021 Google LLC
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # https://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
+
19
+ require "google/cloud/errors"
20
+ require "google/cloud/videointelligence/v1p3beta1/video_intelligence_pb"
21
+
22
+ module Google
23
+ module Cloud
24
+ module VideoIntelligence
25
+ module V1p3beta1
26
+ module StreamingVideoIntelligenceService
27
+ ##
28
+ # Client for the StreamingVideoIntelligenceService service.
29
+ #
30
+ # Service that implements streaming Video Intelligence API.
31
+ #
32
+ class Client
33
+ # @private
34
+ attr_reader :streaming_video_intelligence_service_stub
35
+
36
+ ##
37
+ # Configure the StreamingVideoIntelligenceService Client class.
38
+ #
39
+ # See {::Google::Cloud::VideoIntelligence::V1p3beta1::StreamingVideoIntelligenceService::Client::Configuration}
40
+ # for a description of the configuration fields.
41
+ #
42
+ # @example
43
+ #
44
+ # # Modify the configuration for all StreamingVideoIntelligenceService clients
45
+ # ::Google::Cloud::VideoIntelligence::V1p3beta1::StreamingVideoIntelligenceService::Client.configure do |config|
46
+ # config.timeout = 10.0
47
+ # end
48
+ #
49
+ # @yield [config] Configure the Client client.
50
+ # @yieldparam config [Client::Configuration]
51
+ #
52
+ # @return [Client::Configuration]
53
+ #
54
+ def self.configure
55
+ @configure ||= begin
56
+ namespace = ["Google", "Cloud", "VideoIntelligence", "V1p3beta1"]
57
+ parent_config = while namespace.any?
58
+ parent_name = namespace.join "::"
59
+ parent_const = const_get parent_name
60
+ break parent_const.configure if parent_const.respond_to? :configure
61
+ namespace.pop
62
+ end
63
+ default_config = Client::Configuration.new parent_config
64
+
65
+ default_config.rpcs.streaming_annotate_video.timeout = 10_800.0
66
+ default_config.rpcs.streaming_annotate_video.retry_policy = {
67
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [14, 4]
68
+ }
69
+
70
+ default_config
71
+ end
72
+ yield @configure if block_given?
73
+ @configure
74
+ end
75
+
76
+ ##
77
+ # Configure the StreamingVideoIntelligenceService Client instance.
78
+ #
79
+ # The configuration is set to the derived mode, meaning that values can be changed,
80
+ # but structural changes (adding new fields, etc.) are not allowed. Structural changes
81
+ # should be made on {Client.configure}.
82
+ #
83
+ # See {::Google::Cloud::VideoIntelligence::V1p3beta1::StreamingVideoIntelligenceService::Client::Configuration}
84
+ # for a description of the configuration fields.
85
+ #
86
+ # @yield [config] Configure the Client client.
87
+ # @yieldparam config [Client::Configuration]
88
+ #
89
+ # @return [Client::Configuration]
90
+ #
91
+ def configure
92
+ yield @config if block_given?
93
+ @config
94
+ end
95
+
96
+ ##
97
+ # Create a new StreamingVideoIntelligenceService client object.
98
+ #
99
+ # @example
100
+ #
101
+ # # Create a client using the default configuration
102
+ # client = ::Google::Cloud::VideoIntelligence::V1p3beta1::StreamingVideoIntelligenceService::Client.new
103
+ #
104
+ # # Create a client using a custom configuration
105
+ # client = ::Google::Cloud::VideoIntelligence::V1p3beta1::StreamingVideoIntelligenceService::Client.new do |config|
106
+ # config.timeout = 10.0
107
+ # end
108
+ #
109
+ # @yield [config] Configure the StreamingVideoIntelligenceService client.
110
+ # @yieldparam config [Client::Configuration]
111
+ #
112
+ def initialize
113
+ # These require statements are intentionally placed here to initialize
114
+ # the gRPC module only when it's required.
115
+ # See https://github.com/googleapis/toolkit/issues/446
116
+ require "gapic/grpc"
117
+ require "google/cloud/videointelligence/v1p3beta1/video_intelligence_services_pb"
118
+
119
+ # Create the configuration object
120
+ @config = Configuration.new Client.configure
121
+
122
+ # Yield the configuration if needed
123
+ yield @config if block_given?
124
+
125
+ # Create credentials
126
+ credentials = @config.credentials
127
+ # Use self-signed JWT if the endpoint is unchanged from default,
128
+ # but only if the default endpoint does not have a region prefix.
129
+ enable_self_signed_jwt = @config.endpoint == Client.configure.endpoint &&
130
+ !@config.endpoint.split(".").first.include?("-")
131
+ credentials ||= Credentials.default scope: @config.scope,
132
+ enable_self_signed_jwt: enable_self_signed_jwt
133
+ if credentials.is_a?(::String) || credentials.is_a?(::Hash)
134
+ credentials = Credentials.new credentials, scope: @config.scope
135
+ end
136
+ @quota_project_id = @config.quota_project
137
+ @quota_project_id ||= credentials.quota_project_id if credentials.respond_to? :quota_project_id
138
+
139
+ @streaming_video_intelligence_service_stub = ::Gapic::ServiceStub.new(
140
+ ::Google::Cloud::VideoIntelligence::V1p3beta1::StreamingVideoIntelligenceService::Stub,
141
+ credentials: credentials,
142
+ endpoint: @config.endpoint,
143
+ channel_args: @config.channel_args,
144
+ interceptors: @config.interceptors
145
+ )
146
+ end
147
+
148
+ # Service calls
149
+
150
+ ##
151
+ # Performs video annotation with bidirectional streaming: emitting results
152
+ # while sending video/audio bytes.
153
+ # This method is only available via the gRPC API (not REST).
154
+ #
155
+ # @param request [::Gapic::StreamInput, ::Enumerable<::Google::Cloud::VideoIntelligence::V1p3beta1::StreamingAnnotateVideoRequest, ::Hash>]
156
+ # An enumerable of {::Google::Cloud::VideoIntelligence::V1p3beta1::StreamingAnnotateVideoRequest} instances.
157
+ # @param options [::Gapic::CallOptions, ::Hash]
158
+ # Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
159
+ #
160
+ # @yield [response, operation] Access the result along with the RPC operation
161
+ # @yieldparam response [::Enumerable<::Google::Cloud::VideoIntelligence::V1p3beta1::StreamingAnnotateVideoResponse>]
162
+ # @yieldparam operation [::GRPC::ActiveCall::Operation]
163
+ #
164
+ # @return [::Enumerable<::Google::Cloud::VideoIntelligence::V1p3beta1::StreamingAnnotateVideoResponse>]
165
+ #
166
+ # @raise [::Google::Cloud::Error] if the RPC is aborted.
167
+ #
168
+ def streaming_annotate_video request, options = nil
169
+ unless request.is_a? ::Enumerable
170
+ raise ::ArgumentError, "request must be an Enumerable" unless request.respond_to? :to_enum
171
+ request = request.to_enum
172
+ end
173
+
174
+ request = request.lazy.map do |req|
175
+ ::Gapic::Protobuf.coerce req, to: ::Google::Cloud::VideoIntelligence::V1p3beta1::StreamingAnnotateVideoRequest
176
+ end
177
+
178
+ # Converts hash and nil to an options object
179
+ options = ::Gapic::CallOptions.new(**options.to_h) if options.respond_to? :to_h
180
+
181
+ # Customize the options with defaults
182
+ metadata = @config.rpcs.streaming_annotate_video.metadata.to_h
183
+
184
+ # Set x-goog-api-client and x-goog-user-project headers
185
+ metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
186
+ lib_name: @config.lib_name, lib_version: @config.lib_version,
187
+ gapic_version: ::Google::Cloud::VideoIntelligence::V1p3beta1::VERSION
188
+ metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
189
+
190
+ options.apply_defaults timeout: @config.rpcs.streaming_annotate_video.timeout,
191
+ metadata: metadata,
192
+ retry_policy: @config.rpcs.streaming_annotate_video.retry_policy
193
+
194
+ options.apply_defaults timeout: @config.timeout,
195
+ metadata: @config.metadata,
196
+ retry_policy: @config.retry_policy
197
+
198
+ @streaming_video_intelligence_service_stub.call_rpc :streaming_annotate_video, request, options: options do |response, operation|
199
+ yield response, operation if block_given?
200
+ return response
201
+ end
202
+ rescue ::GRPC::BadStatus => e
203
+ raise ::Google::Cloud::Error.from_error(e)
204
+ end
205
+
206
+ ##
207
+ # Configuration class for the StreamingVideoIntelligenceService API.
208
+ #
209
+ # This class represents the configuration for StreamingVideoIntelligenceService,
210
+ # providing control over timeouts, retry behavior, logging, transport
211
+ # parameters, and other low-level controls. Certain parameters can also be
212
+ # applied individually to specific RPCs. See
213
+ # {::Google::Cloud::VideoIntelligence::V1p3beta1::StreamingVideoIntelligenceService::Client::Configuration::Rpcs}
214
+ # for a list of RPCs that can be configured independently.
215
+ #
216
+ # Configuration can be applied globally to all clients, or to a single client
217
+ # on construction.
218
+ #
219
+ # @example
220
+ #
221
+ # # Modify the global config, setting the timeout for
222
+ # # streaming_annotate_video to 20 seconds,
223
+ # # and all remaining timeouts to 10 seconds.
224
+ # ::Google::Cloud::VideoIntelligence::V1p3beta1::StreamingVideoIntelligenceService::Client.configure do |config|
225
+ # config.timeout = 10.0
226
+ # config.rpcs.streaming_annotate_video.timeout = 20.0
227
+ # end
228
+ #
229
+ # # Apply the above configuration only to a new client.
230
+ # client = ::Google::Cloud::VideoIntelligence::V1p3beta1::StreamingVideoIntelligenceService::Client.new do |config|
231
+ # config.timeout = 10.0
232
+ # config.rpcs.streaming_annotate_video.timeout = 20.0
233
+ # end
234
+ #
235
+ # @!attribute [rw] endpoint
236
+ # The hostname or hostname:port of the service endpoint.
237
+ # Defaults to `"videointelligence.googleapis.com"`.
238
+ # @return [::String]
239
+ # @!attribute [rw] credentials
240
+ # Credentials to send with calls. You may provide any of the following types:
241
+ # * (`String`) The path to a service account key file in JSON format
242
+ # * (`Hash`) A service account key as a Hash
243
+ # * (`Google::Auth::Credentials`) A googleauth credentials object
244
+ # (see the [googleauth docs](https://googleapis.dev/ruby/googleauth/latest/index.html))
245
+ # * (`Signet::OAuth2::Client`) A signet oauth2 client object
246
+ # (see the [signet docs](https://googleapis.dev/ruby/signet/latest/Signet/OAuth2/Client.html))
247
+ # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
248
+ # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
249
+ # * (`nil`) indicating no credentials
250
+ # @return [::Object]
251
+ # @!attribute [rw] scope
252
+ # The OAuth scopes
253
+ # @return [::Array<::String>]
254
+ # @!attribute [rw] lib_name
255
+ # The library name as recorded in instrumentation and logging
256
+ # @return [::String]
257
+ # @!attribute [rw] lib_version
258
+ # The library version as recorded in instrumentation and logging
259
+ # @return [::String]
260
+ # @!attribute [rw] channel_args
261
+ # Extra parameters passed to the gRPC channel. Note: this is ignored if a
262
+ # `GRPC::Core::Channel` object is provided as the credential.
263
+ # @return [::Hash]
264
+ # @!attribute [rw] interceptors
265
+ # An array of interceptors that are run before calls are executed.
266
+ # @return [::Array<::GRPC::ClientInterceptor>]
267
+ # @!attribute [rw] timeout
268
+ # The call timeout in seconds.
269
+ # @return [::Numeric]
270
+ # @!attribute [rw] metadata
271
+ # Additional gRPC headers to be sent with the call.
272
+ # @return [::Hash{::Symbol=>::String}]
273
+ # @!attribute [rw] retry_policy
274
+ # The retry policy. The value is a hash with the following keys:
275
+ # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
276
+ # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
277
+ # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
278
+ # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should
279
+ # trigger a retry.
280
+ # @return [::Hash]
281
+ # @!attribute [rw] quota_project
282
+ # A separate project against which to charge quota.
283
+ # @return [::String]
284
+ #
285
+ class Configuration
286
+ extend ::Gapic::Config
287
+
288
+ config_attr :endpoint, "videointelligence.googleapis.com", ::String
289
+ config_attr :credentials, nil do |value|
290
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
291
+ allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
292
+ allowed.any? { |klass| klass === value }
293
+ end
294
+ config_attr :scope, nil, ::String, ::Array, nil
295
+ config_attr :lib_name, nil, ::String, nil
296
+ config_attr :lib_version, nil, ::String, nil
297
+ config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil)
298
+ config_attr :interceptors, nil, ::Array, nil
299
+ config_attr :timeout, nil, ::Numeric, nil
300
+ config_attr :metadata, nil, ::Hash, nil
301
+ config_attr :retry_policy, nil, ::Hash, ::Proc, nil
302
+ config_attr :quota_project, nil, ::String, nil
303
+
304
+ # @private
305
+ def initialize parent_config = nil
306
+ @parent_config = parent_config unless parent_config.nil?
307
+
308
+ yield self if block_given?
309
+ end
310
+
311
+ ##
312
+ # Configurations for individual RPCs
313
+ # @return [Rpcs]
314
+ #
315
+ def rpcs
316
+ @rpcs ||= begin
317
+ parent_rpcs = nil
318
+ parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
319
+ Rpcs.new parent_rpcs
320
+ end
321
+ end
322
+
323
+ ##
324
+ # Configuration RPC class for the StreamingVideoIntelligenceService API.
325
+ #
326
+ # Includes fields providing the configuration for each RPC in this service.
327
+ # Each configuration object is of type `Gapic::Config::Method` and includes
328
+ # the following configuration fields:
329
+ #
330
+ # * `timeout` (*type:* `Numeric`) - The call timeout in seconds
331
+ # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
332
+ # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
333
+ # include the following keys:
334
+ # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
335
+ # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
336
+ # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
337
+ # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should
338
+ # trigger a retry.
339
+ #
340
+ class Rpcs
341
+ ##
342
+ # RPC-specific configuration for `streaming_annotate_video`
343
+ # @return [::Gapic::Config::Method]
344
+ #
345
+ attr_reader :streaming_annotate_video
346
+
347
+ # @private
348
+ def initialize parent_rpcs = nil
349
+ streaming_annotate_video_config = parent_rpcs.streaming_annotate_video if parent_rpcs.respond_to? :streaming_annotate_video
350
+ @streaming_annotate_video = ::Gapic::Config::Method.new streaming_annotate_video_config
351
+
352
+ yield self if block_given?
353
+ end
354
+ end
355
+ end
356
+ end
357
+ end
358
+ end
359
+ end
360
+ end
361
+ end
@@ -0,0 +1,51 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2021 Google LLC
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # https://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
+
19
+ require "googleauth"
20
+
21
+ module Google
22
+ module Cloud
23
+ module VideoIntelligence
24
+ module V1p3beta1
25
+ module StreamingVideoIntelligenceService
26
+ # Credentials for the StreamingVideoIntelligenceService API.
27
+ class Credentials < ::Google::Auth::Credentials
28
+ self.scope = [
29
+ "https://www.googleapis.com/auth/cloud-platform"
30
+ ]
31
+ self.env_vars = [
32
+ "VIDEO_INTELLIGENCE_CREDENTIALS",
33
+ "VIDEO_INTELLIGENCE_KEYFILE",
34
+ "GOOGLE_CLOUD_CREDENTIALS",
35
+ "GOOGLE_CLOUD_KEYFILE",
36
+ "GCLOUD_KEYFILE",
37
+ "VIDEO_INTELLIGENCE_CREDENTIALS_JSON",
38
+ "VIDEO_INTELLIGENCE_KEYFILE_JSON",
39
+ "GOOGLE_CLOUD_CREDENTIALS_JSON",
40
+ "GOOGLE_CLOUD_KEYFILE_JSON",
41
+ "GCLOUD_KEYFILE_JSON"
42
+ ]
43
+ self.paths = [
44
+ "~/.config/google_cloud/application_default_credentials.json"
45
+ ]
46
+ end
47
+ end
48
+ end
49
+ end
50
+ end
51
+ end
@@ -0,0 +1,48 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2021 Google LLC
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # https://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
+
19
+ require "gapic/common"
20
+ require "gapic/config"
21
+ require "gapic/config/method"
22
+
23
+ require "google/cloud/video_intelligence/v1p3beta1/version"
24
+
25
+ require "google/cloud/video_intelligence/v1p3beta1/streaming_video_intelligence_service/credentials"
26
+ require "google/cloud/video_intelligence/v1p3beta1/streaming_video_intelligence_service/client"
27
+
28
+ module Google
29
+ module Cloud
30
+ module VideoIntelligence
31
+ module V1p3beta1
32
+ ##
33
+ # Service that implements streaming Video Intelligence API.
34
+ #
35
+ # To load this service and instantiate a client:
36
+ #
37
+ # require "google/cloud/video_intelligence/v1p3beta1/streaming_video_intelligence_service"
38
+ # client = ::Google::Cloud::VideoIntelligence::V1p3beta1::StreamingVideoIntelligenceService::Client.new
39
+ #
40
+ module StreamingVideoIntelligenceService
41
+ end
42
+ end
43
+ end
44
+ end
45
+ end
46
+
47
+ helper_path = ::File.join __dir__, "streaming_video_intelligence_service", "helpers.rb"
48
+ require "google/cloud/video_intelligence/v1p3beta1/streaming_video_intelligence_service/helpers" if ::File.file? helper_path
@@ -0,0 +1,28 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2021 Google LLC
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # https://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
+
19
+
20
+ module Google
21
+ module Cloud
22
+ module VideoIntelligence
23
+ module V1p3beta1
24
+ VERSION = "0.1.0"
25
+ end
26
+ end
27
+ end
28
+ end