google-cloud-video_intelligence 2.0.2 → 2.0.3
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.
- checksums.yaml +4 -4
- data/lib/google/cloud/video_intelligence/v1beta2/doc/google/cloud/videointelligence/v1beta2/video_intelligence.rb +5 -5
- data/lib/google/cloud/video_intelligence/v1beta2/video_intelligence_service_client.rb +3 -3
- data/lib/google/cloud/video_intelligence/v1p1beta1/doc/google/cloud/videointelligence/v1p1beta1/video_intelligence.rb +24 -24
- data/lib/google/cloud/video_intelligence/v1p1beta1/video_intelligence_service_client.rb +9 -9
- data/lib/google/cloud/video_intelligence/v1p2beta1/doc/google/cloud/videointelligence/v1p2beta1/video_intelligence.rb +9 -9
- data/lib/google/cloud/video_intelligence/v1p2beta1/video_intelligence_service_client.rb +9 -9
- data/lib/google/cloud/video_intelligence/version.rb +1 -1
- data/lib/google/cloud/videointelligence/v1beta2/video_intelligence_pb.rb +2 -0
- data/lib/google/cloud/videointelligence/v1beta2/video_intelligence_services_pb.rb +2 -1
- data/lib/google/cloud/videointelligence/v1p1beta1/video_intelligence_pb.rb +2 -0
- data/lib/google/cloud/videointelligence/v1p1beta1/video_intelligence_services_pb.rb +2 -1
- data/lib/google/cloud/videointelligence/v1p2beta1/video_intelligence_pb.rb +2 -0
- data/lib/google/cloud/videointelligence/v1p2beta1/video_intelligence_services_pb.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dc854006dfe4799c56d7796572cc8f8bfea0806b333f33be1118757b996a3472
|
|
4
|
+
data.tar.gz: d3744922ec1512ca52b76315d86433cb51b63e766f6afaacc6d95bbe08a3fedf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b40ea146afa0c096d9845072ba4fdf7b393ea183fa31ad8f0c726fa149d5b51c957f2cee31fd140bd07d76630cde5fa3d291caf90e20fd8c1b2e2689774211b5
|
|
7
|
+
data.tar.gz: 5c8e9a050d5d8b4147d7061e236cebafd2ff2cdfedc51b86ccc5aa8c0fed0955d66213e7c81014330d656f13aff362aacd18d0cf5e1b837807a3fd222cbcdaea
|
|
@@ -37,13 +37,13 @@ module Google
|
|
|
37
37
|
# If set, `input_uri` should be unset.
|
|
38
38
|
# @!attribute [rw] features
|
|
39
39
|
# @return [Array<Google::Cloud::VideoIntelligence::V1beta2::Feature>]
|
|
40
|
-
# Requested video annotation features.
|
|
40
|
+
# Required. Requested video annotation features.
|
|
41
41
|
# @!attribute [rw] video_context
|
|
42
42
|
# @return [Google::Cloud::VideoIntelligence::V1beta2::VideoContext]
|
|
43
43
|
# Additional video context and/or feature-specific parameters.
|
|
44
44
|
# @!attribute [rw] output_uri
|
|
45
45
|
# @return [String]
|
|
46
|
-
# Optional
|
|
46
|
+
# Optional. Location where the output (in JSON format) should be stored.
|
|
47
47
|
# Currently, only [Google Cloud Storage](https://cloud.google.com/storage/)
|
|
48
48
|
# URIs are supported, which must be specified in the following format:
|
|
49
49
|
# `gs://bucket-id/object-id` (other URI formats return
|
|
@@ -51,7 +51,7 @@ module Google
|
|
|
51
51
|
# more information, see [Request URIs](https://cloud.google.com/storage/docs/reference-uris).
|
|
52
52
|
# @!attribute [rw] location_id
|
|
53
53
|
# @return [String]
|
|
54
|
-
# Optional
|
|
54
|
+
# Optional. Cloud region where annotation should take place. Supported cloud
|
|
55
55
|
# regions: `us-east1`, `us-west1`, `europe-west1`, `asia-east1`. If no region
|
|
56
56
|
# is specified, a region will be determined based on video file location.
|
|
57
57
|
class AnnotateVideoRequest; end
|
|
@@ -60,8 +60,8 @@ module Google
|
|
|
60
60
|
# @!attribute [rw] segments
|
|
61
61
|
# @return [Array<Google::Cloud::VideoIntelligence::V1beta2::VideoSegment>]
|
|
62
62
|
# Video segments to annotate. The segments may overlap and are not required
|
|
63
|
-
# to be contiguous or span the whole video. If unspecified, each video
|
|
64
|
-
#
|
|
63
|
+
# to be contiguous or span the whole video. If unspecified, each video is
|
|
64
|
+
# treated as a single segment.
|
|
65
65
|
# @!attribute [rw] label_detection_config
|
|
66
66
|
# @return [Google::Cloud::VideoIntelligence::V1beta2::LabelDetectionConfig]
|
|
67
67
|
# Config for LABEL_DETECTION.
|
|
@@ -216,20 +216,20 @@ module Google
|
|
|
216
216
|
# If unset, the input video(s) should be specified via `input_uri`.
|
|
217
217
|
# If set, `input_uri` should be unset.
|
|
218
218
|
# @param features [Array<Google::Cloud::VideoIntelligence::V1beta2::Feature>]
|
|
219
|
-
# Requested video annotation features.
|
|
219
|
+
# Required. Requested video annotation features.
|
|
220
220
|
# @param video_context [Google::Cloud::VideoIntelligence::V1beta2::VideoContext | Hash]
|
|
221
221
|
# Additional video context and/or feature-specific parameters.
|
|
222
222
|
# A hash of the same form as `Google::Cloud::VideoIntelligence::V1beta2::VideoContext`
|
|
223
223
|
# can also be provided.
|
|
224
224
|
# @param output_uri [String]
|
|
225
|
-
# Optional
|
|
225
|
+
# Optional. Location where the output (in JSON format) should be stored.
|
|
226
226
|
# Currently, only [Google Cloud Storage](https://cloud.google.com/storage/)
|
|
227
227
|
# URIs are supported, which must be specified in the following format:
|
|
228
228
|
# `gs://bucket-id/object-id` (other URI formats return
|
|
229
229
|
# {Google::Rpc::Code::INVALID_ARGUMENT}). For
|
|
230
230
|
# more information, see [Request URIs](https://cloud.google.com/storage/docs/reference-uris).
|
|
231
231
|
# @param location_id [String]
|
|
232
|
-
# Optional
|
|
232
|
+
# Optional. Cloud region where annotation should take place. Supported cloud
|
|
233
233
|
# regions: `us-east1`, `us-west1`, `europe-west1`, `asia-east1`. If no region
|
|
234
234
|
# is specified, a region will be determined based on video file location.
|
|
235
235
|
# @param options [Google::Gax::CallOptions]
|
|
@@ -24,10 +24,10 @@ module Google
|
|
|
24
24
|
# [Google Cloud Storage](https://cloud.google.com/storage/) URIs are
|
|
25
25
|
# supported, which must be specified in the following format:
|
|
26
26
|
# `gs://bucket-id/object-id` (other URI formats return
|
|
27
|
-
# {Google::Rpc::Code::INVALID_ARGUMENT}). For
|
|
28
|
-
#
|
|
29
|
-
# URI may include wildcards in `object-id`, and thus identify
|
|
30
|
-
# videos. Supported wildcards: '*' to match 0 or more characters;
|
|
27
|
+
# {Google::Rpc::Code::INVALID_ARGUMENT}). For more information, see
|
|
28
|
+
# [Request URIs](https://cloud.google.com/storage/docs/reference-uris).
|
|
29
|
+
# A video URI may include wildcards in `object-id`, and thus identify
|
|
30
|
+
# multiple videos. Supported wildcards: '*' to match 0 or more characters;
|
|
31
31
|
# '?' to match 1 character. If unset, the input video should be embedded
|
|
32
32
|
# in the request as `input_content`. If set, `input_content` should be unset.
|
|
33
33
|
# @!attribute [rw] input_content
|
|
@@ -37,21 +37,21 @@ module Google
|
|
|
37
37
|
# If set, `input_uri` should be unset.
|
|
38
38
|
# @!attribute [rw] features
|
|
39
39
|
# @return [Array<Google::Cloud::VideoIntelligence::V1p1beta1::Feature>]
|
|
40
|
-
# Requested video annotation features.
|
|
40
|
+
# Required. Requested video annotation features.
|
|
41
41
|
# @!attribute [rw] video_context
|
|
42
42
|
# @return [Google::Cloud::VideoIntelligence::V1p1beta1::VideoContext]
|
|
43
43
|
# Additional video context and/or feature-specific parameters.
|
|
44
44
|
# @!attribute [rw] output_uri
|
|
45
45
|
# @return [String]
|
|
46
|
-
# Optional
|
|
46
|
+
# Optional. Location where the output (in JSON format) should be stored.
|
|
47
47
|
# Currently, only [Google Cloud Storage](https://cloud.google.com/storage/)
|
|
48
48
|
# URIs are supported, which must be specified in the following format:
|
|
49
49
|
# `gs://bucket-id/object-id` (other URI formats return
|
|
50
|
-
# {Google::Rpc::Code::INVALID_ARGUMENT}). For
|
|
51
|
-
#
|
|
50
|
+
# {Google::Rpc::Code::INVALID_ARGUMENT}). For more information, see
|
|
51
|
+
# [Request URIs](https://cloud.google.com/storage/docs/reference-uris).
|
|
52
52
|
# @!attribute [rw] location_id
|
|
53
53
|
# @return [String]
|
|
54
|
-
# Optional
|
|
54
|
+
# Optional. Cloud region where annotation should take place. Supported cloud
|
|
55
55
|
# regions: `us-east1`, `us-west1`, `europe-west1`, `asia-east1`. If no region
|
|
56
56
|
# is specified, a region will be determined based on video file location.
|
|
57
57
|
class AnnotateVideoRequest; end
|
|
@@ -258,30 +258,30 @@ module Google
|
|
|
258
258
|
# Config for SPEECH_TRANSCRIPTION.
|
|
259
259
|
# @!attribute [rw] language_code
|
|
260
260
|
# @return [String]
|
|
261
|
-
# *Required* The language of the supplied audio as a
|
|
261
|
+
# Required. *Required* The language of the supplied audio as a
|
|
262
262
|
# [BCP-47](https://www.rfc-editor.org/rfc/bcp/bcp47.txt) language tag.
|
|
263
263
|
# Example: "en-US".
|
|
264
264
|
# See [Language Support](https://cloud.google.com/speech/docs/languages)
|
|
265
265
|
# for a list of the currently supported language codes.
|
|
266
266
|
# @!attribute [rw] max_alternatives
|
|
267
267
|
# @return [Integer]
|
|
268
|
-
#
|
|
268
|
+
# Optional. Maximum number of recognition hypotheses to be returned.
|
|
269
269
|
# Specifically, the maximum number of `SpeechRecognitionAlternative` messages
|
|
270
|
-
# within each `
|
|
270
|
+
# within each `SpeechTranscription`. The server may return fewer than
|
|
271
271
|
# `max_alternatives`. Valid values are `0`-`30`. A value of `0` or `1` will
|
|
272
272
|
# return a maximum of one. If omitted, will return a maximum of one.
|
|
273
273
|
# @!attribute [rw] filter_profanity
|
|
274
274
|
# @return [true, false]
|
|
275
|
-
#
|
|
275
|
+
# Optional. If set to `true`, the server will attempt to filter out
|
|
276
276
|
# profanities, replacing all but the initial character in each filtered word
|
|
277
277
|
# with asterisks, e.g. "f***". If set to `false` or omitted, profanities
|
|
278
278
|
# won't be filtered out.
|
|
279
279
|
# @!attribute [rw] speech_contexts
|
|
280
280
|
# @return [Array<Google::Cloud::VideoIntelligence::V1p1beta1::SpeechContext>]
|
|
281
|
-
#
|
|
281
|
+
# Optional. A means to provide context to assist the speech recognition.
|
|
282
282
|
# @!attribute [rw] enable_automatic_punctuation
|
|
283
283
|
# @return [true, false]
|
|
284
|
-
#
|
|
284
|
+
# Optional. If 'true', adds punctuation to recognition result hypotheses.
|
|
285
285
|
# This feature is only available in select languages. Setting this for
|
|
286
286
|
# requests in other languages has no effect at all. The default 'false' value
|
|
287
287
|
# does not add punctuation to result hypotheses. NOTE: "This is currently
|
|
@@ -289,7 +289,7 @@ module Google
|
|
|
289
289
|
# future this may be exclusively available as a premium feature."
|
|
290
290
|
# @!attribute [rw] audio_tracks
|
|
291
291
|
# @return [Array<Integer>]
|
|
292
|
-
#
|
|
292
|
+
# Optional. For file formats, such as MXF or MKV, supporting multiple audio
|
|
293
293
|
# tracks, specify up to two tracks. Default: track 0.
|
|
294
294
|
class SpeechTranscriptionConfig; end
|
|
295
295
|
|
|
@@ -297,7 +297,7 @@ module Google
|
|
|
297
297
|
# in the results.
|
|
298
298
|
# @!attribute [rw] phrases
|
|
299
299
|
# @return [Array<String>]
|
|
300
|
-
#
|
|
300
|
+
# Optional. A list of strings containing words and phrases "hints" so that
|
|
301
301
|
# the speech recognition is more likely to recognize them. This can be used
|
|
302
302
|
# to improve the accuracy for specific words and phrases, for example, if
|
|
303
303
|
# specific commands are typically spoken by the user. This can also be used
|
|
@@ -308,10 +308,10 @@ module Google
|
|
|
308
308
|
# A speech recognition result corresponding to a portion of the audio.
|
|
309
309
|
# @!attribute [rw] alternatives
|
|
310
310
|
# @return [Array<Google::Cloud::VideoIntelligence::V1p1beta1::SpeechRecognitionAlternative>]
|
|
311
|
-
#
|
|
312
|
-
#
|
|
313
|
-
#
|
|
314
|
-
#
|
|
311
|
+
# May contain one or more recognition hypotheses (up to the maximum specified
|
|
312
|
+
# in `max_alternatives`). These alternatives are ordered in terms of
|
|
313
|
+
# accuracy, with the top (first) alternative being the most probable, as
|
|
314
|
+
# ranked by the recognizer.
|
|
315
315
|
class SpeechTranscription; end
|
|
316
316
|
|
|
317
317
|
# Alternative hypotheses (a.k.a. n-best list).
|
|
@@ -322,9 +322,9 @@ module Google
|
|
|
322
322
|
# @return [Float]
|
|
323
323
|
# Output only. The confidence estimate between 0.0 and 1.0. A higher number
|
|
324
324
|
# indicates an estimated greater likelihood that the recognized words are
|
|
325
|
-
# correct. This field is
|
|
326
|
-
#
|
|
327
|
-
#
|
|
325
|
+
# correct. This field is set only for the top alternative.
|
|
326
|
+
# This field is not guaranteed to be accurate and users should not rely on it
|
|
327
|
+
# to be always provided.
|
|
328
328
|
# The default of 0.0 is a sentinel value indicating `confidence` was not set.
|
|
329
329
|
# @!attribute [rw] words
|
|
330
330
|
# @return [Array<Google::Cloud::VideoIntelligence::V1p1beta1::WordInfo>]
|
|
@@ -205,10 +205,10 @@ module Google
|
|
|
205
205
|
# [Google Cloud Storage](https://cloud.google.com/storage/) URIs are
|
|
206
206
|
# supported, which must be specified in the following format:
|
|
207
207
|
# `gs://bucket-id/object-id` (other URI formats return
|
|
208
|
-
# {Google::Rpc::Code::INVALID_ARGUMENT}). For
|
|
209
|
-
#
|
|
210
|
-
# URI may include wildcards in `object-id`, and thus identify
|
|
211
|
-
# videos. Supported wildcards: '*' to match 0 or more characters;
|
|
208
|
+
# {Google::Rpc::Code::INVALID_ARGUMENT}). For more information, see
|
|
209
|
+
# [Request URIs](https://cloud.google.com/storage/docs/reference-uris).
|
|
210
|
+
# A video URI may include wildcards in `object-id`, and thus identify
|
|
211
|
+
# multiple videos. Supported wildcards: '*' to match 0 or more characters;
|
|
212
212
|
# '?' to match 1 character. If unset, the input video should be embedded
|
|
213
213
|
# in the request as `input_content`. If set, `input_content` should be unset.
|
|
214
214
|
# @param input_content [String]
|
|
@@ -216,20 +216,20 @@ module Google
|
|
|
216
216
|
# If unset, the input video(s) should be specified via `input_uri`.
|
|
217
217
|
# If set, `input_uri` should be unset.
|
|
218
218
|
# @param features [Array<Google::Cloud::VideoIntelligence::V1p1beta1::Feature>]
|
|
219
|
-
# Requested video annotation features.
|
|
219
|
+
# Required. Requested video annotation features.
|
|
220
220
|
# @param video_context [Google::Cloud::VideoIntelligence::V1p1beta1::VideoContext | Hash]
|
|
221
221
|
# Additional video context and/or feature-specific parameters.
|
|
222
222
|
# A hash of the same form as `Google::Cloud::VideoIntelligence::V1p1beta1::VideoContext`
|
|
223
223
|
# can also be provided.
|
|
224
224
|
# @param output_uri [String]
|
|
225
|
-
# Optional
|
|
225
|
+
# Optional. Location where the output (in JSON format) should be stored.
|
|
226
226
|
# Currently, only [Google Cloud Storage](https://cloud.google.com/storage/)
|
|
227
227
|
# URIs are supported, which must be specified in the following format:
|
|
228
228
|
# `gs://bucket-id/object-id` (other URI formats return
|
|
229
|
-
# {Google::Rpc::Code::INVALID_ARGUMENT}). For
|
|
230
|
-
#
|
|
229
|
+
# {Google::Rpc::Code::INVALID_ARGUMENT}). For more information, see
|
|
230
|
+
# [Request URIs](https://cloud.google.com/storage/docs/reference-uris).
|
|
231
231
|
# @param location_id [String]
|
|
232
|
-
# Optional
|
|
232
|
+
# Optional. Cloud region where annotation should take place. Supported cloud
|
|
233
233
|
# regions: `us-east1`, `us-west1`, `europe-west1`, `asia-east1`. If no region
|
|
234
234
|
# is specified, a region will be determined based on video file location.
|
|
235
235
|
# @param options [Google::Gax::CallOptions]
|
|
@@ -24,10 +24,10 @@ module Google
|
|
|
24
24
|
# [Google Cloud Storage](https://cloud.google.com/storage/) URIs are
|
|
25
25
|
# supported, which must be specified in the following format:
|
|
26
26
|
# `gs://bucket-id/object-id` (other URI formats return
|
|
27
|
-
# {Google::Rpc::Code::INVALID_ARGUMENT}). For
|
|
28
|
-
#
|
|
29
|
-
# URI may include wildcards in `object-id`, and thus identify
|
|
30
|
-
# videos. Supported wildcards: '*' to match 0 or more characters;
|
|
27
|
+
# {Google::Rpc::Code::INVALID_ARGUMENT}). For more information, see
|
|
28
|
+
# [Request URIs](https://cloud.google.com/storage/docs/reference-uris).
|
|
29
|
+
# A video URI may include wildcards in `object-id`, and thus identify
|
|
30
|
+
# multiple videos. Supported wildcards: '*' to match 0 or more characters;
|
|
31
31
|
# '?' to match 1 character. If unset, the input video should be embedded
|
|
32
32
|
# in the request as `input_content`. If set, `input_content` should be unset.
|
|
33
33
|
# @!attribute [rw] input_content
|
|
@@ -37,21 +37,21 @@ module Google
|
|
|
37
37
|
# If set, `input_uri` should be unset.
|
|
38
38
|
# @!attribute [rw] features
|
|
39
39
|
# @return [Array<Google::Cloud::VideoIntelligence::V1p2beta1::Feature>]
|
|
40
|
-
# Requested video annotation features.
|
|
40
|
+
# Required. Requested video annotation features.
|
|
41
41
|
# @!attribute [rw] video_context
|
|
42
42
|
# @return [Google::Cloud::VideoIntelligence::V1p2beta1::VideoContext]
|
|
43
43
|
# Additional video context and/or feature-specific parameters.
|
|
44
44
|
# @!attribute [rw] output_uri
|
|
45
45
|
# @return [String]
|
|
46
|
-
# Optional
|
|
46
|
+
# Optional. Location where the output (in JSON format) should be stored.
|
|
47
47
|
# Currently, only [Google Cloud Storage](https://cloud.google.com/storage/)
|
|
48
48
|
# URIs are supported, which must be specified in the following format:
|
|
49
49
|
# `gs://bucket-id/object-id` (other URI formats return
|
|
50
|
-
# {Google::Rpc::Code::INVALID_ARGUMENT}). For
|
|
51
|
-
#
|
|
50
|
+
# {Google::Rpc::Code::INVALID_ARGUMENT}). For more information, see
|
|
51
|
+
# [Request URIs](https://cloud.google.com/storage/docs/reference-uris).
|
|
52
52
|
# @!attribute [rw] location_id
|
|
53
53
|
# @return [String]
|
|
54
|
-
# Optional
|
|
54
|
+
# Optional. Cloud region where annotation should take place. Supported cloud
|
|
55
55
|
# regions: `us-east1`, `us-west1`, `europe-west1`, `asia-east1`. If no region
|
|
56
56
|
# is specified, a region will be determined based on video file location.
|
|
57
57
|
class AnnotateVideoRequest; end
|
|
@@ -205,10 +205,10 @@ module Google
|
|
|
205
205
|
# [Google Cloud Storage](https://cloud.google.com/storage/) URIs are
|
|
206
206
|
# supported, which must be specified in the following format:
|
|
207
207
|
# `gs://bucket-id/object-id` (other URI formats return
|
|
208
|
-
# {Google::Rpc::Code::INVALID_ARGUMENT}). For
|
|
209
|
-
#
|
|
210
|
-
# URI may include wildcards in `object-id`, and thus identify
|
|
211
|
-
# videos. Supported wildcards: '*' to match 0 or more characters;
|
|
208
|
+
# {Google::Rpc::Code::INVALID_ARGUMENT}). For more information, see
|
|
209
|
+
# [Request URIs](https://cloud.google.com/storage/docs/reference-uris).
|
|
210
|
+
# A video URI may include wildcards in `object-id`, and thus identify
|
|
211
|
+
# multiple videos. Supported wildcards: '*' to match 0 or more characters;
|
|
212
212
|
# '?' to match 1 character. If unset, the input video should be embedded
|
|
213
213
|
# in the request as `input_content`. If set, `input_content` should be unset.
|
|
214
214
|
# @param input_content [String]
|
|
@@ -216,20 +216,20 @@ module Google
|
|
|
216
216
|
# If unset, the input video(s) should be specified via `input_uri`.
|
|
217
217
|
# If set, `input_uri` should be unset.
|
|
218
218
|
# @param features [Array<Google::Cloud::VideoIntelligence::V1p2beta1::Feature>]
|
|
219
|
-
# Requested video annotation features.
|
|
219
|
+
# Required. Requested video annotation features.
|
|
220
220
|
# @param video_context [Google::Cloud::VideoIntelligence::V1p2beta1::VideoContext | Hash]
|
|
221
221
|
# Additional video context and/or feature-specific parameters.
|
|
222
222
|
# A hash of the same form as `Google::Cloud::VideoIntelligence::V1p2beta1::VideoContext`
|
|
223
223
|
# can also be provided.
|
|
224
224
|
# @param output_uri [String]
|
|
225
|
-
# Optional
|
|
225
|
+
# Optional. Location where the output (in JSON format) should be stored.
|
|
226
226
|
# Currently, only [Google Cloud Storage](https://cloud.google.com/storage/)
|
|
227
227
|
# URIs are supported, which must be specified in the following format:
|
|
228
228
|
# `gs://bucket-id/object-id` (other URI formats return
|
|
229
|
-
# {Google::Rpc::Code::INVALID_ARGUMENT}). For
|
|
230
|
-
#
|
|
229
|
+
# {Google::Rpc::Code::INVALID_ARGUMENT}). For more information, see
|
|
230
|
+
# [Request URIs](https://cloud.google.com/storage/docs/reference-uris).
|
|
231
231
|
# @param location_id [String]
|
|
232
|
-
# Optional
|
|
232
|
+
# Optional. Cloud region where annotation should take place. Supported cloud
|
|
233
233
|
# regions: `us-east1`, `us-west1`, `europe-west1`, `asia-east1`. If no region
|
|
234
234
|
# is specified, a region will be determined based on video file location.
|
|
235
235
|
# @param options [Google::Gax::CallOptions]
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
require 'google/protobuf'
|
|
6
6
|
|
|
7
7
|
require 'google/api/annotations_pb'
|
|
8
|
+
require 'google/api/client_pb'
|
|
9
|
+
require 'google/api/field_behavior_pb'
|
|
8
10
|
require 'google/longrunning/operations_pb'
|
|
9
11
|
require 'google/protobuf/duration_pb'
|
|
10
12
|
require 'google/protobuf/timestamp_pb'
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
2
2
|
# Source: google/cloud/videointelligence/v1beta2/video_intelligence.proto for package 'Google::Cloud::VideoIntelligence::V1beta2'
|
|
3
3
|
# Original file comments:
|
|
4
|
-
# Copyright
|
|
4
|
+
# Copyright 2019 Google LLC.
|
|
5
5
|
#
|
|
6
6
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
7
|
# you may not use this file except in compliance with the License.
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
# See the License for the specific language governing permissions and
|
|
16
16
|
# limitations under the License.
|
|
17
17
|
#
|
|
18
|
+
#
|
|
18
19
|
|
|
19
20
|
|
|
20
21
|
require 'grpc'
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
require 'google/protobuf'
|
|
6
6
|
|
|
7
7
|
require 'google/api/annotations_pb'
|
|
8
|
+
require 'google/api/client_pb'
|
|
9
|
+
require 'google/api/field_behavior_pb'
|
|
8
10
|
require 'google/longrunning/operations_pb'
|
|
9
11
|
require 'google/protobuf/duration_pb'
|
|
10
12
|
require 'google/protobuf/timestamp_pb'
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
2
2
|
# Source: google/cloud/videointelligence/v1p1beta1/video_intelligence.proto for package 'Google::Cloud::VideoIntelligence::V1p1beta1'
|
|
3
3
|
# Original file comments:
|
|
4
|
-
# Copyright
|
|
4
|
+
# Copyright 2019 Google LLC.
|
|
5
5
|
#
|
|
6
6
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
7
|
# you may not use this file except in compliance with the License.
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
# See the License for the specific language governing permissions and
|
|
16
16
|
# limitations under the License.
|
|
17
17
|
#
|
|
18
|
+
#
|
|
18
19
|
|
|
19
20
|
|
|
20
21
|
require 'grpc'
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
require 'google/protobuf'
|
|
6
6
|
|
|
7
7
|
require 'google/api/annotations_pb'
|
|
8
|
+
require 'google/api/client_pb'
|
|
9
|
+
require 'google/api/field_behavior_pb'
|
|
8
10
|
require 'google/longrunning/operations_pb'
|
|
9
11
|
require 'google/protobuf/duration_pb'
|
|
10
12
|
require 'google/protobuf/timestamp_pb'
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
2
2
|
# Source: google/cloud/videointelligence/v1p2beta1/video_intelligence.proto for package 'Google::Cloud::VideoIntelligence::V1p2beta1'
|
|
3
3
|
# Original file comments:
|
|
4
|
-
# Copyright
|
|
4
|
+
# Copyright 2019 Google LLC.
|
|
5
5
|
#
|
|
6
6
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
7
|
# you may not use this file except in compliance with the License.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-cloud-video_intelligence
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-02-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-gax
|