google-apis-videointelligence_v1p2beta1 0.23.0 → 0.24.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.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6bae78e6e984df15922f71fae889dc13f0ad5439b1077d7c8d96b04c76388da6
|
4
|
+
data.tar.gz: b3661e16f7b4867ab99e5fa67b3c1e036f26a459963c3484d7f80ea58d406fd9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2620b0ecff953be985e698b5f28b46df2a6db2dcdca0a388d86979d40f3e4a2e9825afdf658da1c6a568e0cd910d5304176302f0dcfa3d48c57f46173c00a344
|
7
|
+
data.tar.gz: 2baf77bf99afaff9fc291887ea3434ed6dd0a316e53183e14941c73d5a7a5cade2f19c3e7fd1c8e401457f8c14dc0f19e1cff9836ae151ab6448583aca2ae517
|
data/CHANGELOG.md
CHANGED
@@ -215,6 +215,36 @@ module Google
|
|
215
215
|
end
|
216
216
|
end
|
217
217
|
|
218
|
+
# Status of exporting annotation response to user specified `output_uri`.
|
219
|
+
class GoogleCloudVideointelligenceV1ExportToOutputUriStatus
|
220
|
+
include Google::Apis::Core::Hashable
|
221
|
+
|
222
|
+
# Output only. State of the `output_uri` export.
|
223
|
+
# Corresponds to the JSON property `state`
|
224
|
+
# @return [String]
|
225
|
+
attr_accessor :state
|
226
|
+
|
227
|
+
# The `Status` type defines a logical error model that is suitable for different
|
228
|
+
# programming environments, including REST APIs and RPC APIs. It is used by [
|
229
|
+
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
230
|
+
# data: error code, error message, and error details. You can find out more
|
231
|
+
# about this error model and how to work with it in the [API Design Guide](https:
|
232
|
+
# //cloud.google.com/apis/design/errors).
|
233
|
+
# Corresponds to the JSON property `status`
|
234
|
+
# @return [Google::Apis::VideointelligenceV1p2beta1::GoogleRpcStatus]
|
235
|
+
attr_accessor :status
|
236
|
+
|
237
|
+
def initialize(**args)
|
238
|
+
update!(**args)
|
239
|
+
end
|
240
|
+
|
241
|
+
# Update properties of this object
|
242
|
+
def update!(**args)
|
243
|
+
@state = args[:state] if args.key?(:state)
|
244
|
+
@status = args[:status] if args.key?(:status)
|
245
|
+
end
|
246
|
+
end
|
247
|
+
|
218
248
|
# Deprecated. No effect.
|
219
249
|
class GoogleCloudVideointelligenceV1FaceAnnotation
|
220
250
|
include Google::Apis::Core::Hashable
|
@@ -498,7 +528,7 @@ module Google
|
|
498
528
|
# horizontal it might look like: 0----1 | | 3----2 When it's clockwise rotated
|
499
529
|
# 180 degrees around the top-left corner it becomes: 2----3 | | 1----0 and the
|
500
530
|
# vertex order will still be (0, 1, 2, 3). Note that values can be less than 0,
|
501
|
-
# or greater than 1 due to
|
531
|
+
# or greater than 1 due to trigonometric calculations for location of the box.
|
502
532
|
class GoogleCloudVideointelligenceV1NormalizedBoundingPoly
|
503
533
|
include Google::Apis::Core::Hashable
|
504
534
|
|
@@ -764,7 +794,7 @@ module Google
|
|
764
794
|
# horizontal it might look like: 0----1 | | 3----2 When it's clockwise rotated
|
765
795
|
# 180 degrees around the top-left corner it becomes: 2----3 | | 1----0 and the
|
766
796
|
# vertex order will still be (0, 1, 2, 3). Note that values can be less than 0,
|
767
|
-
# or greater than 1 due to
|
797
|
+
# or greater than 1 due to trigonometric calculations for location of the box.
|
768
798
|
# Corresponds to the JSON property `rotatedBoundingBox`
|
769
799
|
# @return [Google::Apis::VideointelligenceV1p2beta1::GoogleCloudVideointelligenceV1NormalizedBoundingPoly]
|
770
800
|
attr_accessor :rotated_bounding_box
|
@@ -898,6 +928,11 @@ module Google
|
|
898
928
|
class GoogleCloudVideointelligenceV1VideoAnnotationProgress
|
899
929
|
include Google::Apis::Core::Hashable
|
900
930
|
|
931
|
+
# Status of exporting annotation response to user specified `output_uri`.
|
932
|
+
# Corresponds to the JSON property `exportStatus`
|
933
|
+
# @return [Google::Apis::VideointelligenceV1p2beta1::GoogleCloudVideointelligenceV1ExportToOutputUriStatus]
|
934
|
+
attr_accessor :export_status
|
935
|
+
|
901
936
|
# Specifies which feature is being tracked if the request contains more than one
|
902
937
|
# feature.
|
903
938
|
# Corresponds to the JSON property `feature`
|
@@ -936,6 +971,7 @@ module Google
|
|
936
971
|
|
937
972
|
# Update properties of this object
|
938
973
|
def update!(**args)
|
974
|
+
@export_status = args[:export_status] if args.key?(:export_status)
|
939
975
|
@feature = args[:feature] if args.key?(:feature)
|
940
976
|
@input_uri = args[:input_uri] if args.key?(:input_uri)
|
941
977
|
@progress_percent = args[:progress_percent] if args.key?(:progress_percent)
|
@@ -1359,6 +1395,36 @@ module Google
|
|
1359
1395
|
end
|
1360
1396
|
end
|
1361
1397
|
|
1398
|
+
# Status of exporting annotation response to user specified `output_uri`.
|
1399
|
+
class GoogleCloudVideointelligenceV1beta2ExportToOutputUriStatus
|
1400
|
+
include Google::Apis::Core::Hashable
|
1401
|
+
|
1402
|
+
# Output only. State of the `output_uri` export.
|
1403
|
+
# Corresponds to the JSON property `state`
|
1404
|
+
# @return [String]
|
1405
|
+
attr_accessor :state
|
1406
|
+
|
1407
|
+
# The `Status` type defines a logical error model that is suitable for different
|
1408
|
+
# programming environments, including REST APIs and RPC APIs. It is used by [
|
1409
|
+
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
1410
|
+
# data: error code, error message, and error details. You can find out more
|
1411
|
+
# about this error model and how to work with it in the [API Design Guide](https:
|
1412
|
+
# //cloud.google.com/apis/design/errors).
|
1413
|
+
# Corresponds to the JSON property `status`
|
1414
|
+
# @return [Google::Apis::VideointelligenceV1p2beta1::GoogleRpcStatus]
|
1415
|
+
attr_accessor :status
|
1416
|
+
|
1417
|
+
def initialize(**args)
|
1418
|
+
update!(**args)
|
1419
|
+
end
|
1420
|
+
|
1421
|
+
# Update properties of this object
|
1422
|
+
def update!(**args)
|
1423
|
+
@state = args[:state] if args.key?(:state)
|
1424
|
+
@status = args[:status] if args.key?(:status)
|
1425
|
+
end
|
1426
|
+
end
|
1427
|
+
|
1362
1428
|
# Deprecated. No effect.
|
1363
1429
|
class GoogleCloudVideointelligenceV1beta2FaceAnnotation
|
1364
1430
|
include Google::Apis::Core::Hashable
|
@@ -1642,7 +1708,7 @@ module Google
|
|
1642
1708
|
# horizontal it might look like: 0----1 | | 3----2 When it's clockwise rotated
|
1643
1709
|
# 180 degrees around the top-left corner it becomes: 2----3 | | 1----0 and the
|
1644
1710
|
# vertex order will still be (0, 1, 2, 3). Note that values can be less than 0,
|
1645
|
-
# or greater than 1 due to
|
1711
|
+
# or greater than 1 due to trigonometric calculations for location of the box.
|
1646
1712
|
class GoogleCloudVideointelligenceV1beta2NormalizedBoundingPoly
|
1647
1713
|
include Google::Apis::Core::Hashable
|
1648
1714
|
|
@@ -1908,7 +1974,7 @@ module Google
|
|
1908
1974
|
# horizontal it might look like: 0----1 | | 3----2 When it's clockwise rotated
|
1909
1975
|
# 180 degrees around the top-left corner it becomes: 2----3 | | 1----0 and the
|
1910
1976
|
# vertex order will still be (0, 1, 2, 3). Note that values can be less than 0,
|
1911
|
-
# or greater than 1 due to
|
1977
|
+
# or greater than 1 due to trigonometric calculations for location of the box.
|
1912
1978
|
# Corresponds to the JSON property `rotatedBoundingBox`
|
1913
1979
|
# @return [Google::Apis::VideointelligenceV1p2beta1::GoogleCloudVideointelligenceV1beta2NormalizedBoundingPoly]
|
1914
1980
|
attr_accessor :rotated_bounding_box
|
@@ -2042,6 +2108,11 @@ module Google
|
|
2042
2108
|
class GoogleCloudVideointelligenceV1beta2VideoAnnotationProgress
|
2043
2109
|
include Google::Apis::Core::Hashable
|
2044
2110
|
|
2111
|
+
# Status of exporting annotation response to user specified `output_uri`.
|
2112
|
+
# Corresponds to the JSON property `exportStatus`
|
2113
|
+
# @return [Google::Apis::VideointelligenceV1p2beta1::GoogleCloudVideointelligenceV1beta2ExportToOutputUriStatus]
|
2114
|
+
attr_accessor :export_status
|
2115
|
+
|
2045
2116
|
# Specifies which feature is being tracked if the request contains more than one
|
2046
2117
|
# feature.
|
2047
2118
|
# Corresponds to the JSON property `feature`
|
@@ -2080,6 +2151,7 @@ module Google
|
|
2080
2151
|
|
2081
2152
|
# Update properties of this object
|
2082
2153
|
def update!(**args)
|
2154
|
+
@export_status = args[:export_status] if args.key?(:export_status)
|
2083
2155
|
@feature = args[:feature] if args.key?(:feature)
|
2084
2156
|
@input_uri = args[:input_uri] if args.key?(:input_uri)
|
2085
2157
|
@progress_percent = args[:progress_percent] if args.key?(:progress_percent)
|
@@ -2503,6 +2575,36 @@ module Google
|
|
2503
2575
|
end
|
2504
2576
|
end
|
2505
2577
|
|
2578
|
+
# Status of exporting annotation response to user specified `output_uri`.
|
2579
|
+
class GoogleCloudVideointelligenceV1p1beta1ExportToOutputUriStatus
|
2580
|
+
include Google::Apis::Core::Hashable
|
2581
|
+
|
2582
|
+
# Output only. State of the `output_uri` export.
|
2583
|
+
# Corresponds to the JSON property `state`
|
2584
|
+
# @return [String]
|
2585
|
+
attr_accessor :state
|
2586
|
+
|
2587
|
+
# The `Status` type defines a logical error model that is suitable for different
|
2588
|
+
# programming environments, including REST APIs and RPC APIs. It is used by [
|
2589
|
+
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
2590
|
+
# data: error code, error message, and error details. You can find out more
|
2591
|
+
# about this error model and how to work with it in the [API Design Guide](https:
|
2592
|
+
# //cloud.google.com/apis/design/errors).
|
2593
|
+
# Corresponds to the JSON property `status`
|
2594
|
+
# @return [Google::Apis::VideointelligenceV1p2beta1::GoogleRpcStatus]
|
2595
|
+
attr_accessor :status
|
2596
|
+
|
2597
|
+
def initialize(**args)
|
2598
|
+
update!(**args)
|
2599
|
+
end
|
2600
|
+
|
2601
|
+
# Update properties of this object
|
2602
|
+
def update!(**args)
|
2603
|
+
@state = args[:state] if args.key?(:state)
|
2604
|
+
@status = args[:status] if args.key?(:status)
|
2605
|
+
end
|
2606
|
+
end
|
2607
|
+
|
2506
2608
|
# Deprecated. No effect.
|
2507
2609
|
class GoogleCloudVideointelligenceV1p1beta1FaceAnnotation
|
2508
2610
|
include Google::Apis::Core::Hashable
|
@@ -2786,7 +2888,7 @@ module Google
|
|
2786
2888
|
# horizontal it might look like: 0----1 | | 3----2 When it's clockwise rotated
|
2787
2889
|
# 180 degrees around the top-left corner it becomes: 2----3 | | 1----0 and the
|
2788
2890
|
# vertex order will still be (0, 1, 2, 3). Note that values can be less than 0,
|
2789
|
-
# or greater than 1 due to
|
2891
|
+
# or greater than 1 due to trigonometric calculations for location of the box.
|
2790
2892
|
class GoogleCloudVideointelligenceV1p1beta1NormalizedBoundingPoly
|
2791
2893
|
include Google::Apis::Core::Hashable
|
2792
2894
|
|
@@ -3052,7 +3154,7 @@ module Google
|
|
3052
3154
|
# horizontal it might look like: 0----1 | | 3----2 When it's clockwise rotated
|
3053
3155
|
# 180 degrees around the top-left corner it becomes: 2----3 | | 1----0 and the
|
3054
3156
|
# vertex order will still be (0, 1, 2, 3). Note that values can be less than 0,
|
3055
|
-
# or greater than 1 due to
|
3157
|
+
# or greater than 1 due to trigonometric calculations for location of the box.
|
3056
3158
|
# Corresponds to the JSON property `rotatedBoundingBox`
|
3057
3159
|
# @return [Google::Apis::VideointelligenceV1p2beta1::GoogleCloudVideointelligenceV1p1beta1NormalizedBoundingPoly]
|
3058
3160
|
attr_accessor :rotated_bounding_box
|
@@ -3186,6 +3288,11 @@ module Google
|
|
3186
3288
|
class GoogleCloudVideointelligenceV1p1beta1VideoAnnotationProgress
|
3187
3289
|
include Google::Apis::Core::Hashable
|
3188
3290
|
|
3291
|
+
# Status of exporting annotation response to user specified `output_uri`.
|
3292
|
+
# Corresponds to the JSON property `exportStatus`
|
3293
|
+
# @return [Google::Apis::VideointelligenceV1p2beta1::GoogleCloudVideointelligenceV1p1beta1ExportToOutputUriStatus]
|
3294
|
+
attr_accessor :export_status
|
3295
|
+
|
3189
3296
|
# Specifies which feature is being tracked if the request contains more than one
|
3190
3297
|
# feature.
|
3191
3298
|
# Corresponds to the JSON property `feature`
|
@@ -3224,6 +3331,7 @@ module Google
|
|
3224
3331
|
|
3225
3332
|
# Update properties of this object
|
3226
3333
|
def update!(**args)
|
3334
|
+
@export_status = args[:export_status] if args.key?(:export_status)
|
3227
3335
|
@feature = args[:feature] if args.key?(:feature)
|
3228
3336
|
@input_uri = args[:input_uri] if args.key?(:input_uri)
|
3229
3337
|
@progress_percent = args[:progress_percent] if args.key?(:progress_percent)
|
@@ -3734,6 +3842,36 @@ module Google
|
|
3734
3842
|
end
|
3735
3843
|
end
|
3736
3844
|
|
3845
|
+
# Status of exporting annotation response to user specified `output_uri`.
|
3846
|
+
class GoogleCloudVideointelligenceV1p2beta1ExportToOutputUriStatus
|
3847
|
+
include Google::Apis::Core::Hashable
|
3848
|
+
|
3849
|
+
# Output only. State of the `output_uri` export.
|
3850
|
+
# Corresponds to the JSON property `state`
|
3851
|
+
# @return [String]
|
3852
|
+
attr_accessor :state
|
3853
|
+
|
3854
|
+
# The `Status` type defines a logical error model that is suitable for different
|
3855
|
+
# programming environments, including REST APIs and RPC APIs. It is used by [
|
3856
|
+
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
3857
|
+
# data: error code, error message, and error details. You can find out more
|
3858
|
+
# about this error model and how to work with it in the [API Design Guide](https:
|
3859
|
+
# //cloud.google.com/apis/design/errors).
|
3860
|
+
# Corresponds to the JSON property `status`
|
3861
|
+
# @return [Google::Apis::VideointelligenceV1p2beta1::GoogleRpcStatus]
|
3862
|
+
attr_accessor :status
|
3863
|
+
|
3864
|
+
def initialize(**args)
|
3865
|
+
update!(**args)
|
3866
|
+
end
|
3867
|
+
|
3868
|
+
# Update properties of this object
|
3869
|
+
def update!(**args)
|
3870
|
+
@state = args[:state] if args.key?(:state)
|
3871
|
+
@status = args[:status] if args.key?(:status)
|
3872
|
+
end
|
3873
|
+
end
|
3874
|
+
|
3737
3875
|
# Deprecated. No effect.
|
3738
3876
|
class GoogleCloudVideointelligenceV1p2beta1FaceAnnotation
|
3739
3877
|
include Google::Apis::Core::Hashable
|
@@ -4108,7 +4246,7 @@ module Google
|
|
4108
4246
|
# horizontal it might look like: 0----1 | | 3----2 When it's clockwise rotated
|
4109
4247
|
# 180 degrees around the top-left corner it becomes: 2----3 | | 1----0 and the
|
4110
4248
|
# vertex order will still be (0, 1, 2, 3). Note that values can be less than 0,
|
4111
|
-
# or greater than 1 due to
|
4249
|
+
# or greater than 1 due to trigonometric calculations for location of the box.
|
4112
4250
|
class GoogleCloudVideointelligenceV1p2beta1NormalizedBoundingPoly
|
4113
4251
|
include Google::Apis::Core::Hashable
|
4114
4252
|
|
@@ -4600,7 +4738,7 @@ module Google
|
|
4600
4738
|
# horizontal it might look like: 0----1 | | 3----2 When it's clockwise rotated
|
4601
4739
|
# 180 degrees around the top-left corner it becomes: 2----3 | | 1----0 and the
|
4602
4740
|
# vertex order will still be (0, 1, 2, 3). Note that values can be less than 0,
|
4603
|
-
# or greater than 1 due to
|
4741
|
+
# or greater than 1 due to trigonometric calculations for location of the box.
|
4604
4742
|
# Corresponds to the JSON property `rotatedBoundingBox`
|
4605
4743
|
# @return [Google::Apis::VideointelligenceV1p2beta1::GoogleCloudVideointelligenceV1p2beta1NormalizedBoundingPoly]
|
4606
4744
|
attr_accessor :rotated_bounding_box
|
@@ -4734,6 +4872,11 @@ module Google
|
|
4734
4872
|
class GoogleCloudVideointelligenceV1p2beta1VideoAnnotationProgress
|
4735
4873
|
include Google::Apis::Core::Hashable
|
4736
4874
|
|
4875
|
+
# Status of exporting annotation response to user specified `output_uri`.
|
4876
|
+
# Corresponds to the JSON property `exportStatus`
|
4877
|
+
# @return [Google::Apis::VideointelligenceV1p2beta1::GoogleCloudVideointelligenceV1p2beta1ExportToOutputUriStatus]
|
4878
|
+
attr_accessor :export_status
|
4879
|
+
|
4737
4880
|
# Specifies which feature is being tracked if the request contains more than one
|
4738
4881
|
# feature.
|
4739
4882
|
# Corresponds to the JSON property `feature`
|
@@ -4772,6 +4915,7 @@ module Google
|
|
4772
4915
|
|
4773
4916
|
# Update properties of this object
|
4774
4917
|
def update!(**args)
|
4918
|
+
@export_status = args[:export_status] if args.key?(:export_status)
|
4775
4919
|
@feature = args[:feature] if args.key?(:feature)
|
4776
4920
|
@input_uri = args[:input_uri] if args.key?(:input_uri)
|
4777
4921
|
@progress_percent = args[:progress_percent] if args.key?(:progress_percent)
|
@@ -5350,6 +5494,36 @@ module Google
|
|
5350
5494
|
end
|
5351
5495
|
end
|
5352
5496
|
|
5497
|
+
# Status of exporting annotation response to user specified `output_uri`.
|
5498
|
+
class GoogleCloudVideointelligenceV1p3beta1ExportToOutputUriStatus
|
5499
|
+
include Google::Apis::Core::Hashable
|
5500
|
+
|
5501
|
+
# Output only. State of the `output_uri` export.
|
5502
|
+
# Corresponds to the JSON property `state`
|
5503
|
+
# @return [String]
|
5504
|
+
attr_accessor :state
|
5505
|
+
|
5506
|
+
# The `Status` type defines a logical error model that is suitable for different
|
5507
|
+
# programming environments, including REST APIs and RPC APIs. It is used by [
|
5508
|
+
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
5509
|
+
# data: error code, error message, and error details. You can find out more
|
5510
|
+
# about this error model and how to work with it in the [API Design Guide](https:
|
5511
|
+
# //cloud.google.com/apis/design/errors).
|
5512
|
+
# Corresponds to the JSON property `status`
|
5513
|
+
# @return [Google::Apis::VideointelligenceV1p2beta1::GoogleRpcStatus]
|
5514
|
+
attr_accessor :status
|
5515
|
+
|
5516
|
+
def initialize(**args)
|
5517
|
+
update!(**args)
|
5518
|
+
end
|
5519
|
+
|
5520
|
+
# Update properties of this object
|
5521
|
+
def update!(**args)
|
5522
|
+
@state = args[:state] if args.key?(:state)
|
5523
|
+
@status = args[:status] if args.key?(:status)
|
5524
|
+
end
|
5525
|
+
end
|
5526
|
+
|
5353
5527
|
# Deprecated. No effect.
|
5354
5528
|
class GoogleCloudVideointelligenceV1p3beta1FaceAnnotation
|
5355
5529
|
include Google::Apis::Core::Hashable
|
@@ -5633,7 +5807,7 @@ module Google
|
|
5633
5807
|
# horizontal it might look like: 0----1 | | 3----2 When it's clockwise rotated
|
5634
5808
|
# 180 degrees around the top-left corner it becomes: 2----3 | | 1----0 and the
|
5635
5809
|
# vertex order will still be (0, 1, 2, 3). Note that values can be less than 0,
|
5636
|
-
# or greater than 1 due to
|
5810
|
+
# or greater than 1 due to trigonometric calculations for location of the box.
|
5637
5811
|
class GoogleCloudVideointelligenceV1p3beta1NormalizedBoundingPoly
|
5638
5812
|
include Google::Apis::Core::Hashable
|
5639
5813
|
|
@@ -6013,7 +6187,7 @@ module Google
|
|
6013
6187
|
# horizontal it might look like: 0----1 | | 3----2 When it's clockwise rotated
|
6014
6188
|
# 180 degrees around the top-left corner it becomes: 2----3 | | 1----0 and the
|
6015
6189
|
# vertex order will still be (0, 1, 2, 3). Note that values can be less than 0,
|
6016
|
-
# or greater than 1 due to
|
6190
|
+
# or greater than 1 due to trigonometric calculations for location of the box.
|
6017
6191
|
# Corresponds to the JSON property `rotatedBoundingBox`
|
6018
6192
|
# @return [Google::Apis::VideointelligenceV1p2beta1::GoogleCloudVideointelligenceV1p3beta1NormalizedBoundingPoly]
|
6019
6193
|
attr_accessor :rotated_bounding_box
|
@@ -6147,6 +6321,11 @@ module Google
|
|
6147
6321
|
class GoogleCloudVideointelligenceV1p3beta1VideoAnnotationProgress
|
6148
6322
|
include Google::Apis::Core::Hashable
|
6149
6323
|
|
6324
|
+
# Status of exporting annotation response to user specified `output_uri`.
|
6325
|
+
# Corresponds to the JSON property `exportStatus`
|
6326
|
+
# @return [Google::Apis::VideointelligenceV1p2beta1::GoogleCloudVideointelligenceV1p3beta1ExportToOutputUriStatus]
|
6327
|
+
attr_accessor :export_status
|
6328
|
+
|
6150
6329
|
# Specifies which feature is being tracked if the request contains more than one
|
6151
6330
|
# feature.
|
6152
6331
|
# Corresponds to the JSON property `feature`
|
@@ -6185,6 +6364,7 @@ module Google
|
|
6185
6364
|
|
6186
6365
|
# Update properties of this object
|
6187
6366
|
def update!(**args)
|
6367
|
+
@export_status = args[:export_status] if args.key?(:export_status)
|
6188
6368
|
@feature = args[:feature] if args.key?(:feature)
|
6189
6369
|
@input_uri = args[:input_uri] if args.key?(:input_uri)
|
6190
6370
|
@progress_percent = args[:progress_percent] if args.key?(:progress_percent)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module VideointelligenceV1p2beta1
|
18
18
|
# Version of the google-apis-videointelligence_v1p2beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.24.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250724"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -64,6 +64,12 @@ module Google
|
|
64
64
|
include Google::Apis::Core::JsonObjectSupport
|
65
65
|
end
|
66
66
|
|
67
|
+
class GoogleCloudVideointelligenceV1ExportToOutputUriStatus
|
68
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
|
+
|
70
|
+
include Google::Apis::Core::JsonObjectSupport
|
71
|
+
end
|
72
|
+
|
67
73
|
class GoogleCloudVideointelligenceV1FaceAnnotation
|
68
74
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
75
|
|
@@ -256,6 +262,12 @@ module Google
|
|
256
262
|
include Google::Apis::Core::JsonObjectSupport
|
257
263
|
end
|
258
264
|
|
265
|
+
class GoogleCloudVideointelligenceV1beta2ExportToOutputUriStatus
|
266
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
267
|
+
|
268
|
+
include Google::Apis::Core::JsonObjectSupport
|
269
|
+
end
|
270
|
+
|
259
271
|
class GoogleCloudVideointelligenceV1beta2FaceAnnotation
|
260
272
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
261
273
|
|
@@ -448,6 +460,12 @@ module Google
|
|
448
460
|
include Google::Apis::Core::JsonObjectSupport
|
449
461
|
end
|
450
462
|
|
463
|
+
class GoogleCloudVideointelligenceV1p1beta1ExportToOutputUriStatus
|
464
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
465
|
+
|
466
|
+
include Google::Apis::Core::JsonObjectSupport
|
467
|
+
end
|
468
|
+
|
451
469
|
class GoogleCloudVideointelligenceV1p1beta1FaceAnnotation
|
452
470
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
453
471
|
|
@@ -652,6 +670,12 @@ module Google
|
|
652
670
|
include Google::Apis::Core::JsonObjectSupport
|
653
671
|
end
|
654
672
|
|
673
|
+
class GoogleCloudVideointelligenceV1p2beta1ExportToOutputUriStatus
|
674
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
675
|
+
|
676
|
+
include Google::Apis::Core::JsonObjectSupport
|
677
|
+
end
|
678
|
+
|
655
679
|
class GoogleCloudVideointelligenceV1p2beta1FaceAnnotation
|
656
680
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
657
681
|
|
@@ -916,6 +940,12 @@ module Google
|
|
916
940
|
include Google::Apis::Core::JsonObjectSupport
|
917
941
|
end
|
918
942
|
|
943
|
+
class GoogleCloudVideointelligenceV1p3beta1ExportToOutputUriStatus
|
944
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
945
|
+
|
946
|
+
include Google::Apis::Core::JsonObjectSupport
|
947
|
+
end
|
948
|
+
|
919
949
|
class GoogleCloudVideointelligenceV1p3beta1FaceAnnotation
|
920
950
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
921
951
|
|
@@ -1157,6 +1187,15 @@ module Google
|
|
1157
1187
|
end
|
1158
1188
|
end
|
1159
1189
|
|
1190
|
+
class GoogleCloudVideointelligenceV1ExportToOutputUriStatus
|
1191
|
+
# @private
|
1192
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1193
|
+
property :state, as: 'state'
|
1194
|
+
property :status, as: 'status', class: Google::Apis::VideointelligenceV1p2beta1::GoogleRpcStatus, decorator: Google::Apis::VideointelligenceV1p2beta1::GoogleRpcStatus::Representation
|
1195
|
+
|
1196
|
+
end
|
1197
|
+
end
|
1198
|
+
|
1160
1199
|
class GoogleCloudVideointelligenceV1FaceAnnotation
|
1161
1200
|
# @private
|
1162
1201
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1376,6 +1415,8 @@ module Google
|
|
1376
1415
|
class GoogleCloudVideointelligenceV1VideoAnnotationProgress
|
1377
1416
|
# @private
|
1378
1417
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1418
|
+
property :export_status, as: 'exportStatus', class: Google::Apis::VideointelligenceV1p2beta1::GoogleCloudVideointelligenceV1ExportToOutputUriStatus, decorator: Google::Apis::VideointelligenceV1p2beta1::GoogleCloudVideointelligenceV1ExportToOutputUriStatus::Representation
|
1419
|
+
|
1379
1420
|
property :feature, as: 'feature'
|
1380
1421
|
property :input_uri, as: 'inputUri'
|
1381
1422
|
property :progress_percent, as: 'progressPercent'
|
@@ -1505,6 +1546,15 @@ module Google
|
|
1505
1546
|
end
|
1506
1547
|
end
|
1507
1548
|
|
1549
|
+
class GoogleCloudVideointelligenceV1beta2ExportToOutputUriStatus
|
1550
|
+
# @private
|
1551
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1552
|
+
property :state, as: 'state'
|
1553
|
+
property :status, as: 'status', class: Google::Apis::VideointelligenceV1p2beta1::GoogleRpcStatus, decorator: Google::Apis::VideointelligenceV1p2beta1::GoogleRpcStatus::Representation
|
1554
|
+
|
1555
|
+
end
|
1556
|
+
end
|
1557
|
+
|
1508
1558
|
class GoogleCloudVideointelligenceV1beta2FaceAnnotation
|
1509
1559
|
# @private
|
1510
1560
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1724,6 +1774,8 @@ module Google
|
|
1724
1774
|
class GoogleCloudVideointelligenceV1beta2VideoAnnotationProgress
|
1725
1775
|
# @private
|
1726
1776
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1777
|
+
property :export_status, as: 'exportStatus', class: Google::Apis::VideointelligenceV1p2beta1::GoogleCloudVideointelligenceV1beta2ExportToOutputUriStatus, decorator: Google::Apis::VideointelligenceV1p2beta1::GoogleCloudVideointelligenceV1beta2ExportToOutputUriStatus::Representation
|
1778
|
+
|
1727
1779
|
property :feature, as: 'feature'
|
1728
1780
|
property :input_uri, as: 'inputUri'
|
1729
1781
|
property :progress_percent, as: 'progressPercent'
|
@@ -1853,6 +1905,15 @@ module Google
|
|
1853
1905
|
end
|
1854
1906
|
end
|
1855
1907
|
|
1908
|
+
class GoogleCloudVideointelligenceV1p1beta1ExportToOutputUriStatus
|
1909
|
+
# @private
|
1910
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1911
|
+
property :state, as: 'state'
|
1912
|
+
property :status, as: 'status', class: Google::Apis::VideointelligenceV1p2beta1::GoogleRpcStatus, decorator: Google::Apis::VideointelligenceV1p2beta1::GoogleRpcStatus::Representation
|
1913
|
+
|
1914
|
+
end
|
1915
|
+
end
|
1916
|
+
|
1856
1917
|
class GoogleCloudVideointelligenceV1p1beta1FaceAnnotation
|
1857
1918
|
# @private
|
1858
1919
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2072,6 +2133,8 @@ module Google
|
|
2072
2133
|
class GoogleCloudVideointelligenceV1p1beta1VideoAnnotationProgress
|
2073
2134
|
# @private
|
2074
2135
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2136
|
+
property :export_status, as: 'exportStatus', class: Google::Apis::VideointelligenceV1p2beta1::GoogleCloudVideointelligenceV1p1beta1ExportToOutputUriStatus, decorator: Google::Apis::VideointelligenceV1p2beta1::GoogleCloudVideointelligenceV1p1beta1ExportToOutputUriStatus::Representation
|
2137
|
+
|
2075
2138
|
property :feature, as: 'feature'
|
2076
2139
|
property :input_uri, as: 'inputUri'
|
2077
2140
|
property :progress_percent, as: 'progressPercent'
|
@@ -2221,6 +2284,15 @@ module Google
|
|
2221
2284
|
end
|
2222
2285
|
end
|
2223
2286
|
|
2287
|
+
class GoogleCloudVideointelligenceV1p2beta1ExportToOutputUriStatus
|
2288
|
+
# @private
|
2289
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2290
|
+
property :state, as: 'state'
|
2291
|
+
property :status, as: 'status', class: Google::Apis::VideointelligenceV1p2beta1::GoogleRpcStatus, decorator: Google::Apis::VideointelligenceV1p2beta1::GoogleRpcStatus::Representation
|
2292
|
+
|
2293
|
+
end
|
2294
|
+
end
|
2295
|
+
|
2224
2296
|
class GoogleCloudVideointelligenceV1p2beta1FaceAnnotation
|
2225
2297
|
# @private
|
2226
2298
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2514,6 +2586,8 @@ module Google
|
|
2514
2586
|
class GoogleCloudVideointelligenceV1p2beta1VideoAnnotationProgress
|
2515
2587
|
# @private
|
2516
2588
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2589
|
+
property :export_status, as: 'exportStatus', class: Google::Apis::VideointelligenceV1p2beta1::GoogleCloudVideointelligenceV1p2beta1ExportToOutputUriStatus, decorator: Google::Apis::VideointelligenceV1p2beta1::GoogleCloudVideointelligenceV1p2beta1ExportToOutputUriStatus::Representation
|
2590
|
+
|
2517
2591
|
property :feature, as: 'feature'
|
2518
2592
|
property :input_uri, as: 'inputUri'
|
2519
2593
|
property :progress_percent, as: 'progressPercent'
|
@@ -2695,6 +2769,15 @@ module Google
|
|
2695
2769
|
end
|
2696
2770
|
end
|
2697
2771
|
|
2772
|
+
class GoogleCloudVideointelligenceV1p3beta1ExportToOutputUriStatus
|
2773
|
+
# @private
|
2774
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2775
|
+
property :state, as: 'state'
|
2776
|
+
property :status, as: 'status', class: Google::Apis::VideointelligenceV1p2beta1::GoogleRpcStatus, decorator: Google::Apis::VideointelligenceV1p2beta1::GoogleRpcStatus::Representation
|
2777
|
+
|
2778
|
+
end
|
2779
|
+
end
|
2780
|
+
|
2698
2781
|
class GoogleCloudVideointelligenceV1p3beta1FaceAnnotation
|
2699
2782
|
# @private
|
2700
2783
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2949,6 +3032,8 @@ module Google
|
|
2949
3032
|
class GoogleCloudVideointelligenceV1p3beta1VideoAnnotationProgress
|
2950
3033
|
# @private
|
2951
3034
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3035
|
+
property :export_status, as: 'exportStatus', class: Google::Apis::VideointelligenceV1p2beta1::GoogleCloudVideointelligenceV1p3beta1ExportToOutputUriStatus, decorator: Google::Apis::VideointelligenceV1p2beta1::GoogleCloudVideointelligenceV1p3beta1ExportToOutputUriStatus::Representation
|
3036
|
+
|
2952
3037
|
property :feature, as: 'feature'
|
2953
3038
|
property :input_uri, as: 'inputUri'
|
2954
3039
|
property :progress_percent, as: 'progressPercent'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-videointelligence_v1p2beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.24.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-videointelligence_v1p2beta1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-videointelligence_v1p2beta1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-videointelligence_v1p2beta1/v0.24.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-videointelligence_v1p2beta1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|