google-api-client 0.30.6 → 0.30.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +19 -0
  3. data/generated/google/apis/bigquery_v2.rb +1 -1
  4. data/generated/google/apis/bigquery_v2/classes.rb +7 -0
  5. data/generated/google/apis/bigquery_v2/representations.rb +2 -0
  6. data/generated/google/apis/bigquery_v2/service.rb +1 -1
  7. data/generated/google/apis/cloudiot_v1.rb +1 -1
  8. data/generated/google/apis/cloudiot_v1/classes.rb +2 -2
  9. data/generated/google/apis/dialogflow_v2.rb +1 -1
  10. data/generated/google/apis/dialogflow_v2/classes.rb +91 -19
  11. data/generated/google/apis/dialogflow_v2/representations.rb +32 -13
  12. data/generated/google/apis/dialogflow_v2beta1.rb +1 -1
  13. data/generated/google/apis/dialogflow_v2beta1/classes.rb +91 -19
  14. data/generated/google/apis/dialogflow_v2beta1/representations.rb +33 -14
  15. data/generated/google/apis/docs_v1.rb +1 -1
  16. data/generated/google/apis/docs_v1/classes.rb +103 -0
  17. data/generated/google/apis/docs_v1/representations.rb +37 -0
  18. data/generated/google/apis/jobs_v2.rb +1 -1
  19. data/generated/google/apis/jobs_v2/classes.rb +147 -240
  20. data/generated/google/apis/jobs_v2/service.rb +24 -44
  21. data/generated/google/apis/jobs_v3.rb +1 -1
  22. data/generated/google/apis/jobs_v3/classes.rb +113 -179
  23. data/generated/google/apis/jobs_v3/service.rb +25 -50
  24. data/generated/google/apis/jobs_v3p1beta1.rb +1 -1
  25. data/generated/google/apis/jobs_v3p1beta1/classes.rb +119 -187
  26. data/generated/google/apis/jobs_v3p1beta1/service.rb +25 -50
  27. data/generated/google/apis/people_v1.rb +1 -1
  28. data/generated/google/apis/people_v1/classes.rb +105 -0
  29. data/generated/google/apis/people_v1/representations.rb +42 -0
  30. data/generated/google/apis/people_v1/service.rb +98 -0
  31. data/generated/google/apis/slides_v1.rb +1 -1
  32. data/generated/google/apis/translate_v3beta1.rb +37 -0
  33. data/generated/google/apis/translate_v3beta1/classes.rb +826 -0
  34. data/generated/google/apis/translate_v3beta1/representations.rb +404 -0
  35. data/generated/google/apis/translate_v3beta1/service.rb +706 -0
  36. data/generated/google/apis/videointelligence_v1.rb +1 -1
  37. data/generated/google/apis/videointelligence_v1/classes.rb +30 -0
  38. data/generated/google/apis/videointelligence_v1/representations.rb +10 -0
  39. data/generated/google/apis/videointelligence_v1beta2.rb +1 -1
  40. data/generated/google/apis/videointelligence_v1beta2/classes.rb +30 -0
  41. data/generated/google/apis/videointelligence_v1beta2/representations.rb +10 -0
  42. data/generated/google/apis/videointelligence_v1p1beta1.rb +1 -1
  43. data/generated/google/apis/videointelligence_v1p1beta1/classes.rb +30 -0
  44. data/generated/google/apis/videointelligence_v1p1beta1/representations.rb +10 -0
  45. data/generated/google/apis/videointelligence_v1p2beta1.rb +1 -1
  46. data/generated/google/apis/videointelligence_v1p2beta1/classes.rb +30 -0
  47. data/generated/google/apis/videointelligence_v1p2beta1/representations.rb +10 -0
  48. data/generated/google/apis/videointelligence_v1p3beta1.rb +1 -1
  49. data/generated/google/apis/videointelligence_v1p3beta1/classes.rb +30 -0
  50. data/generated/google/apis/videointelligence_v1p3beta1/representations.rb +10 -0
  51. data/lib/google/apis/version.rb +1 -1
  52. metadata +6 -2
@@ -27,7 +27,7 @@ module Google
27
27
  # @see https://cloud.google.com/video-intelligence/docs/
28
28
  module VideointelligenceV1
29
29
  VERSION = 'V1'
30
- REVISION = '20190709'
30
+ REVISION = '20190713'
31
31
 
32
32
  # View and manage your data across Google Cloud Platform services
33
33
  AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
@@ -1017,6 +1017,11 @@ module Google
1017
1017
  # @return [Array<Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1ObjectTrackingAnnotation>]
1018
1018
  attr_accessor :object_annotations
1019
1019
 
1020
+ # Video segment.
1021
+ # Corresponds to the JSON property `segment`
1022
+ # @return [Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1VideoSegment]
1023
+ attr_accessor :segment
1024
+
1020
1025
  # Topical label annotations on video level or user specified segment level.
1021
1026
  # There is exactly one element for each unique label.
1022
1027
  # Corresponds to the JSON property `segmentLabelAnnotations`
@@ -1057,6 +1062,7 @@ module Google
1057
1062
  @frame_label_annotations = args[:frame_label_annotations] if args.key?(:frame_label_annotations)
1058
1063
  @input_uri = args[:input_uri] if args.key?(:input_uri)
1059
1064
  @object_annotations = args[:object_annotations] if args.key?(:object_annotations)
1065
+ @segment = args[:segment] if args.key?(:segment)
1060
1066
  @segment_label_annotations = args[:segment_label_annotations] if args.key?(:segment_label_annotations)
1061
1067
  @shot_annotations = args[:shot_annotations] if args.key?(:shot_annotations)
1062
1068
  @shot_label_annotations = args[:shot_label_annotations] if args.key?(:shot_label_annotations)
@@ -1858,6 +1864,11 @@ module Google
1858
1864
  # @return [Array<Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1beta2ObjectTrackingAnnotation>]
1859
1865
  attr_accessor :object_annotations
1860
1866
 
1867
+ # Video segment.
1868
+ # Corresponds to the JSON property `segment`
1869
+ # @return [Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1beta2VideoSegment]
1870
+ attr_accessor :segment
1871
+
1861
1872
  # Topical label annotations on video level or user specified segment level.
1862
1873
  # There is exactly one element for each unique label.
1863
1874
  # Corresponds to the JSON property `segmentLabelAnnotations`
@@ -1898,6 +1909,7 @@ module Google
1898
1909
  @frame_label_annotations = args[:frame_label_annotations] if args.key?(:frame_label_annotations)
1899
1910
  @input_uri = args[:input_uri] if args.key?(:input_uri)
1900
1911
  @object_annotations = args[:object_annotations] if args.key?(:object_annotations)
1912
+ @segment = args[:segment] if args.key?(:segment)
1901
1913
  @segment_label_annotations = args[:segment_label_annotations] if args.key?(:segment_label_annotations)
1902
1914
  @shot_annotations = args[:shot_annotations] if args.key?(:shot_annotations)
1903
1915
  @shot_label_annotations = args[:shot_label_annotations] if args.key?(:shot_label_annotations)
@@ -2642,6 +2654,11 @@ module Google
2642
2654
  # @return [Array<Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p1beta1ObjectTrackingAnnotation>]
2643
2655
  attr_accessor :object_annotations
2644
2656
 
2657
+ # Video segment.
2658
+ # Corresponds to the JSON property `segment`
2659
+ # @return [Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p1beta1VideoSegment]
2660
+ attr_accessor :segment
2661
+
2645
2662
  # Topical label annotations on video level or user specified segment level.
2646
2663
  # There is exactly one element for each unique label.
2647
2664
  # Corresponds to the JSON property `segmentLabelAnnotations`
@@ -2682,6 +2699,7 @@ module Google
2682
2699
  @frame_label_annotations = args[:frame_label_annotations] if args.key?(:frame_label_annotations)
2683
2700
  @input_uri = args[:input_uri] if args.key?(:input_uri)
2684
2701
  @object_annotations = args[:object_annotations] if args.key?(:object_annotations)
2702
+ @segment = args[:segment] if args.key?(:segment)
2685
2703
  @segment_label_annotations = args[:segment_label_annotations] if args.key?(:segment_label_annotations)
2686
2704
  @shot_annotations = args[:shot_annotations] if args.key?(:shot_annotations)
2687
2705
  @shot_label_annotations = args[:shot_label_annotations] if args.key?(:shot_label_annotations)
@@ -3426,6 +3444,11 @@ module Google
3426
3444
  # @return [Array<Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p2beta1ObjectTrackingAnnotation>]
3427
3445
  attr_accessor :object_annotations
3428
3446
 
3447
+ # Video segment.
3448
+ # Corresponds to the JSON property `segment`
3449
+ # @return [Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p2beta1VideoSegment]
3450
+ attr_accessor :segment
3451
+
3429
3452
  # Topical label annotations on video level or user specified segment level.
3430
3453
  # There is exactly one element for each unique label.
3431
3454
  # Corresponds to the JSON property `segmentLabelAnnotations`
@@ -3466,6 +3489,7 @@ module Google
3466
3489
  @frame_label_annotations = args[:frame_label_annotations] if args.key?(:frame_label_annotations)
3467
3490
  @input_uri = args[:input_uri] if args.key?(:input_uri)
3468
3491
  @object_annotations = args[:object_annotations] if args.key?(:object_annotations)
3492
+ @segment = args[:segment] if args.key?(:segment)
3469
3493
  @segment_label_annotations = args[:segment_label_annotations] if args.key?(:segment_label_annotations)
3470
3494
  @shot_annotations = args[:shot_annotations] if args.key?(:shot_annotations)
3471
3495
  @shot_label_annotations = args[:shot_label_annotations] if args.key?(:shot_label_annotations)
@@ -4437,6 +4461,11 @@ module Google
4437
4461
  # @return [Array<Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p3beta1ObjectTrackingAnnotation>]
4438
4462
  attr_accessor :object_annotations
4439
4463
 
4464
+ # Video segment.
4465
+ # Corresponds to the JSON property `segment`
4466
+ # @return [Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p3beta1VideoSegment]
4467
+ attr_accessor :segment
4468
+
4440
4469
  # Topical label annotations on video level or user specified segment level.
4441
4470
  # There is exactly one element for each unique label.
4442
4471
  # Corresponds to the JSON property `segmentLabelAnnotations`
@@ -4478,6 +4507,7 @@ module Google
4478
4507
  @input_uri = args[:input_uri] if args.key?(:input_uri)
4479
4508
  @logo_recognition_annotations = args[:logo_recognition_annotations] if args.key?(:logo_recognition_annotations)
4480
4509
  @object_annotations = args[:object_annotations] if args.key?(:object_annotations)
4510
+ @segment = args[:segment] if args.key?(:segment)
4481
4511
  @segment_label_annotations = args[:segment_label_annotations] if args.key?(:segment_label_annotations)
4482
4512
  @shot_annotations = args[:shot_annotations] if args.key?(:shot_annotations)
4483
4513
  @shot_label_annotations = args[:shot_label_annotations] if args.key?(:shot_label_annotations)
@@ -1072,6 +1072,8 @@ module Google
1072
1072
  property :input_uri, as: 'inputUri'
1073
1073
  collection :object_annotations, as: 'objectAnnotations', class: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1ObjectTrackingAnnotation, decorator: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1ObjectTrackingAnnotation::Representation
1074
1074
 
1075
+ property :segment, as: 'segment', class: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1VideoSegment, decorator: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1VideoSegment::Representation
1076
+
1075
1077
  collection :segment_label_annotations, as: 'segmentLabelAnnotations', class: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1LabelAnnotation, decorator: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1LabelAnnotation::Representation
1076
1078
 
1077
1079
  collection :shot_annotations, as: 'shotAnnotations', class: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1VideoSegment, decorator: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1VideoSegment::Representation
@@ -1318,6 +1320,8 @@ module Google
1318
1320
  property :input_uri, as: 'inputUri'
1319
1321
  collection :object_annotations, as: 'objectAnnotations', class: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1beta2ObjectTrackingAnnotation, decorator: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1beta2ObjectTrackingAnnotation::Representation
1320
1322
 
1323
+ property :segment, as: 'segment', class: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1beta2VideoSegment, decorator: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1beta2VideoSegment::Representation
1324
+
1321
1325
  collection :segment_label_annotations, as: 'segmentLabelAnnotations', class: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1beta2LabelAnnotation, decorator: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1beta2LabelAnnotation::Representation
1322
1326
 
1323
1327
  collection :shot_annotations, as: 'shotAnnotations', class: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1beta2VideoSegment, decorator: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1beta2VideoSegment::Representation
@@ -1544,6 +1548,8 @@ module Google
1544
1548
  property :input_uri, as: 'inputUri'
1545
1549
  collection :object_annotations, as: 'objectAnnotations', class: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p1beta1ObjectTrackingAnnotation, decorator: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p1beta1ObjectTrackingAnnotation::Representation
1546
1550
 
1551
+ property :segment, as: 'segment', class: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p1beta1VideoSegment, decorator: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p1beta1VideoSegment::Representation
1552
+
1547
1553
  collection :segment_label_annotations, as: 'segmentLabelAnnotations', class: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p1beta1LabelAnnotation, decorator: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p1beta1LabelAnnotation::Representation
1548
1554
 
1549
1555
  collection :shot_annotations, as: 'shotAnnotations', class: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p1beta1VideoSegment, decorator: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p1beta1VideoSegment::Representation
@@ -1770,6 +1776,8 @@ module Google
1770
1776
  property :input_uri, as: 'inputUri'
1771
1777
  collection :object_annotations, as: 'objectAnnotations', class: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p2beta1ObjectTrackingAnnotation, decorator: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p2beta1ObjectTrackingAnnotation::Representation
1772
1778
 
1779
+ property :segment, as: 'segment', class: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p2beta1VideoSegment, decorator: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p2beta1VideoSegment::Representation
1780
+
1773
1781
  collection :segment_label_annotations, as: 'segmentLabelAnnotations', class: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p2beta1LabelAnnotation, decorator: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p2beta1LabelAnnotation::Representation
1774
1782
 
1775
1783
  collection :shot_annotations, as: 'shotAnnotations', class: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p2beta1VideoSegment, decorator: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p2beta1VideoSegment::Representation
@@ -2068,6 +2076,8 @@ module Google
2068
2076
 
2069
2077
  collection :object_annotations, as: 'objectAnnotations', class: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p3beta1ObjectTrackingAnnotation, decorator: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p3beta1ObjectTrackingAnnotation::Representation
2070
2078
 
2079
+ property :segment, as: 'segment', class: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p3beta1VideoSegment, decorator: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p3beta1VideoSegment::Representation
2080
+
2071
2081
  collection :segment_label_annotations, as: 'segmentLabelAnnotations', class: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p3beta1LabelAnnotation, decorator: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p3beta1LabelAnnotation::Representation
2072
2082
 
2073
2083
  collection :shot_annotations, as: 'shotAnnotations', class: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p3beta1VideoSegment, decorator: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p3beta1VideoSegment::Representation
@@ -27,7 +27,7 @@ module Google
27
27
  # @see https://cloud.google.com/video-intelligence/docs/
28
28
  module VideointelligenceV1beta2
29
29
  VERSION = 'V1beta2'
30
- REVISION = '20190618'
30
+ REVISION = '20190713'
31
31
 
32
32
  # View and manage your data across Google Cloud Platform services
33
33
  AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
@@ -672,6 +672,11 @@ module Google
672
672
  # @return [Array<Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1ObjectTrackingAnnotation>]
673
673
  attr_accessor :object_annotations
674
674
 
675
+ # Video segment.
676
+ # Corresponds to the JSON property `segment`
677
+ # @return [Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1VideoSegment]
678
+ attr_accessor :segment
679
+
675
680
  # Topical label annotations on video level or user specified segment level.
676
681
  # There is exactly one element for each unique label.
677
682
  # Corresponds to the JSON property `segmentLabelAnnotations`
@@ -712,6 +717,7 @@ module Google
712
717
  @frame_label_annotations = args[:frame_label_annotations] if args.key?(:frame_label_annotations)
713
718
  @input_uri = args[:input_uri] if args.key?(:input_uri)
714
719
  @object_annotations = args[:object_annotations] if args.key?(:object_annotations)
720
+ @segment = args[:segment] if args.key?(:segment)
715
721
  @segment_label_annotations = args[:segment_label_annotations] if args.key?(:segment_label_annotations)
716
722
  @shot_annotations = args[:shot_annotations] if args.key?(:shot_annotations)
717
723
  @shot_label_annotations = args[:shot_label_annotations] if args.key?(:shot_label_annotations)
@@ -1801,6 +1807,11 @@ module Google
1801
1807
  # @return [Array<Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1beta2ObjectTrackingAnnotation>]
1802
1808
  attr_accessor :object_annotations
1803
1809
 
1810
+ # Video segment.
1811
+ # Corresponds to the JSON property `segment`
1812
+ # @return [Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1beta2VideoSegment]
1813
+ attr_accessor :segment
1814
+
1804
1815
  # Topical label annotations on video level or user specified segment level.
1805
1816
  # There is exactly one element for each unique label.
1806
1817
  # Corresponds to the JSON property `segmentLabelAnnotations`
@@ -1841,6 +1852,7 @@ module Google
1841
1852
  @frame_label_annotations = args[:frame_label_annotations] if args.key?(:frame_label_annotations)
1842
1853
  @input_uri = args[:input_uri] if args.key?(:input_uri)
1843
1854
  @object_annotations = args[:object_annotations] if args.key?(:object_annotations)
1855
+ @segment = args[:segment] if args.key?(:segment)
1844
1856
  @segment_label_annotations = args[:segment_label_annotations] if args.key?(:segment_label_annotations)
1845
1857
  @shot_annotations = args[:shot_annotations] if args.key?(:shot_annotations)
1846
1858
  @shot_label_annotations = args[:shot_label_annotations] if args.key?(:shot_label_annotations)
@@ -2642,6 +2654,11 @@ module Google
2642
2654
  # @return [Array<Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p1beta1ObjectTrackingAnnotation>]
2643
2655
  attr_accessor :object_annotations
2644
2656
 
2657
+ # Video segment.
2658
+ # Corresponds to the JSON property `segment`
2659
+ # @return [Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p1beta1VideoSegment]
2660
+ attr_accessor :segment
2661
+
2645
2662
  # Topical label annotations on video level or user specified segment level.
2646
2663
  # There is exactly one element for each unique label.
2647
2664
  # Corresponds to the JSON property `segmentLabelAnnotations`
@@ -2682,6 +2699,7 @@ module Google
2682
2699
  @frame_label_annotations = args[:frame_label_annotations] if args.key?(:frame_label_annotations)
2683
2700
  @input_uri = args[:input_uri] if args.key?(:input_uri)
2684
2701
  @object_annotations = args[:object_annotations] if args.key?(:object_annotations)
2702
+ @segment = args[:segment] if args.key?(:segment)
2685
2703
  @segment_label_annotations = args[:segment_label_annotations] if args.key?(:segment_label_annotations)
2686
2704
  @shot_annotations = args[:shot_annotations] if args.key?(:shot_annotations)
2687
2705
  @shot_label_annotations = args[:shot_label_annotations] if args.key?(:shot_label_annotations)
@@ -3426,6 +3444,11 @@ module Google
3426
3444
  # @return [Array<Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p2beta1ObjectTrackingAnnotation>]
3427
3445
  attr_accessor :object_annotations
3428
3446
 
3447
+ # Video segment.
3448
+ # Corresponds to the JSON property `segment`
3449
+ # @return [Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p2beta1VideoSegment]
3450
+ attr_accessor :segment
3451
+
3429
3452
  # Topical label annotations on video level or user specified segment level.
3430
3453
  # There is exactly one element for each unique label.
3431
3454
  # Corresponds to the JSON property `segmentLabelAnnotations`
@@ -3466,6 +3489,7 @@ module Google
3466
3489
  @frame_label_annotations = args[:frame_label_annotations] if args.key?(:frame_label_annotations)
3467
3490
  @input_uri = args[:input_uri] if args.key?(:input_uri)
3468
3491
  @object_annotations = args[:object_annotations] if args.key?(:object_annotations)
3492
+ @segment = args[:segment] if args.key?(:segment)
3469
3493
  @segment_label_annotations = args[:segment_label_annotations] if args.key?(:segment_label_annotations)
3470
3494
  @shot_annotations = args[:shot_annotations] if args.key?(:shot_annotations)
3471
3495
  @shot_label_annotations = args[:shot_label_annotations] if args.key?(:shot_label_annotations)
@@ -4437,6 +4461,11 @@ module Google
4437
4461
  # @return [Array<Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p3beta1ObjectTrackingAnnotation>]
4438
4462
  attr_accessor :object_annotations
4439
4463
 
4464
+ # Video segment.
4465
+ # Corresponds to the JSON property `segment`
4466
+ # @return [Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p3beta1VideoSegment]
4467
+ attr_accessor :segment
4468
+
4440
4469
  # Topical label annotations on video level or user specified segment level.
4441
4470
  # There is exactly one element for each unique label.
4442
4471
  # Corresponds to the JSON property `segmentLabelAnnotations`
@@ -4478,6 +4507,7 @@ module Google
4478
4507
  @input_uri = args[:input_uri] if args.key?(:input_uri)
4479
4508
  @logo_recognition_annotations = args[:logo_recognition_annotations] if args.key?(:logo_recognition_annotations)
4480
4509
  @object_annotations = args[:object_annotations] if args.key?(:object_annotations)
4510
+ @segment = args[:segment] if args.key?(:segment)
4481
4511
  @segment_label_annotations = args[:segment_label_annotations] if args.key?(:segment_label_annotations)
4482
4512
  @shot_annotations = args[:shot_annotations] if args.key?(:shot_annotations)
4483
4513
  @shot_label_annotations = args[:shot_label_annotations] if args.key?(:shot_label_annotations)
@@ -978,6 +978,8 @@ module Google
978
978
  property :input_uri, as: 'inputUri'
979
979
  collection :object_annotations, as: 'objectAnnotations', class: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1ObjectTrackingAnnotation, decorator: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1ObjectTrackingAnnotation::Representation
980
980
 
981
+ property :segment, as: 'segment', class: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1VideoSegment, decorator: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1VideoSegment::Representation
982
+
981
983
  collection :segment_label_annotations, as: 'segmentLabelAnnotations', class: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1LabelAnnotation, decorator: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1LabelAnnotation::Representation
982
984
 
983
985
  collection :shot_annotations, as: 'shotAnnotations', class: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1VideoSegment, decorator: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1VideoSegment::Representation
@@ -1280,6 +1282,8 @@ module Google
1280
1282
  property :input_uri, as: 'inputUri'
1281
1283
  collection :object_annotations, as: 'objectAnnotations', class: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1beta2ObjectTrackingAnnotation, decorator: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1beta2ObjectTrackingAnnotation::Representation
1282
1284
 
1285
+ property :segment, as: 'segment', class: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1beta2VideoSegment, decorator: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1beta2VideoSegment::Representation
1286
+
1283
1287
  collection :segment_label_annotations, as: 'segmentLabelAnnotations', class: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1beta2LabelAnnotation, decorator: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1beta2LabelAnnotation::Representation
1284
1288
 
1285
1289
  collection :shot_annotations, as: 'shotAnnotations', class: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1beta2VideoSegment, decorator: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1beta2VideoSegment::Representation
@@ -1526,6 +1530,8 @@ module Google
1526
1530
  property :input_uri, as: 'inputUri'
1527
1531
  collection :object_annotations, as: 'objectAnnotations', class: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p1beta1ObjectTrackingAnnotation, decorator: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p1beta1ObjectTrackingAnnotation::Representation
1528
1532
 
1533
+ property :segment, as: 'segment', class: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p1beta1VideoSegment, decorator: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p1beta1VideoSegment::Representation
1534
+
1529
1535
  collection :segment_label_annotations, as: 'segmentLabelAnnotations', class: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p1beta1LabelAnnotation, decorator: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p1beta1LabelAnnotation::Representation
1530
1536
 
1531
1537
  collection :shot_annotations, as: 'shotAnnotations', class: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p1beta1VideoSegment, decorator: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p1beta1VideoSegment::Representation
@@ -1752,6 +1758,8 @@ module Google
1752
1758
  property :input_uri, as: 'inputUri'
1753
1759
  collection :object_annotations, as: 'objectAnnotations', class: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p2beta1ObjectTrackingAnnotation, decorator: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p2beta1ObjectTrackingAnnotation::Representation
1754
1760
 
1761
+ property :segment, as: 'segment', class: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p2beta1VideoSegment, decorator: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p2beta1VideoSegment::Representation
1762
+
1755
1763
  collection :segment_label_annotations, as: 'segmentLabelAnnotations', class: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p2beta1LabelAnnotation, decorator: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p2beta1LabelAnnotation::Representation
1756
1764
 
1757
1765
  collection :shot_annotations, as: 'shotAnnotations', class: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p2beta1VideoSegment, decorator: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p2beta1VideoSegment::Representation
@@ -2050,6 +2058,8 @@ module Google
2050
2058
 
2051
2059
  collection :object_annotations, as: 'objectAnnotations', class: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p3beta1ObjectTrackingAnnotation, decorator: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p3beta1ObjectTrackingAnnotation::Representation
2052
2060
 
2061
+ property :segment, as: 'segment', class: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p3beta1VideoSegment, decorator: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p3beta1VideoSegment::Representation
2062
+
2053
2063
  collection :segment_label_annotations, as: 'segmentLabelAnnotations', class: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p3beta1LabelAnnotation, decorator: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p3beta1LabelAnnotation::Representation
2054
2064
 
2055
2065
  collection :shot_annotations, as: 'shotAnnotations', class: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p3beta1VideoSegment, decorator: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p3beta1VideoSegment::Representation
@@ -27,7 +27,7 @@ module Google
27
27
  # @see https://cloud.google.com/video-intelligence/docs/
28
28
  module VideointelligenceV1p1beta1
29
29
  VERSION = 'V1p1beta1'
30
- REVISION = '20190618'
30
+ REVISION = '20190713'
31
31
 
32
32
  # View and manage your data across Google Cloud Platform services
33
33
  AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
@@ -672,6 +672,11 @@ module Google
672
672
  # @return [Array<Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1ObjectTrackingAnnotation>]
673
673
  attr_accessor :object_annotations
674
674
 
675
+ # Video segment.
676
+ # Corresponds to the JSON property `segment`
677
+ # @return [Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1VideoSegment]
678
+ attr_accessor :segment
679
+
675
680
  # Topical label annotations on video level or user specified segment level.
676
681
  # There is exactly one element for each unique label.
677
682
  # Corresponds to the JSON property `segmentLabelAnnotations`
@@ -712,6 +717,7 @@ module Google
712
717
  @frame_label_annotations = args[:frame_label_annotations] if args.key?(:frame_label_annotations)
713
718
  @input_uri = args[:input_uri] if args.key?(:input_uri)
714
719
  @object_annotations = args[:object_annotations] if args.key?(:object_annotations)
720
+ @segment = args[:segment] if args.key?(:segment)
715
721
  @segment_label_annotations = args[:segment_label_annotations] if args.key?(:segment_label_annotations)
716
722
  @shot_annotations = args[:shot_annotations] if args.key?(:shot_annotations)
717
723
  @shot_label_annotations = args[:shot_label_annotations] if args.key?(:shot_label_annotations)
@@ -1456,6 +1462,11 @@ module Google
1456
1462
  # @return [Array<Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1beta2ObjectTrackingAnnotation>]
1457
1463
  attr_accessor :object_annotations
1458
1464
 
1465
+ # Video segment.
1466
+ # Corresponds to the JSON property `segment`
1467
+ # @return [Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1beta2VideoSegment]
1468
+ attr_accessor :segment
1469
+
1459
1470
  # Topical label annotations on video level or user specified segment level.
1460
1471
  # There is exactly one element for each unique label.
1461
1472
  # Corresponds to the JSON property `segmentLabelAnnotations`
@@ -1496,6 +1507,7 @@ module Google
1496
1507
  @frame_label_annotations = args[:frame_label_annotations] if args.key?(:frame_label_annotations)
1497
1508
  @input_uri = args[:input_uri] if args.key?(:input_uri)
1498
1509
  @object_annotations = args[:object_annotations] if args.key?(:object_annotations)
1510
+ @segment = args[:segment] if args.key?(:segment)
1499
1511
  @segment_label_annotations = args[:segment_label_annotations] if args.key?(:segment_label_annotations)
1500
1512
  @shot_annotations = args[:shot_annotations] if args.key?(:shot_annotations)
1501
1513
  @shot_label_annotations = args[:shot_label_annotations] if args.key?(:shot_label_annotations)
@@ -2585,6 +2597,11 @@ module Google
2585
2597
  # @return [Array<Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p1beta1ObjectTrackingAnnotation>]
2586
2598
  attr_accessor :object_annotations
2587
2599
 
2600
+ # Video segment.
2601
+ # Corresponds to the JSON property `segment`
2602
+ # @return [Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p1beta1VideoSegment]
2603
+ attr_accessor :segment
2604
+
2588
2605
  # Topical label annotations on video level or user specified segment level.
2589
2606
  # There is exactly one element for each unique label.
2590
2607
  # Corresponds to the JSON property `segmentLabelAnnotations`
@@ -2625,6 +2642,7 @@ module Google
2625
2642
  @frame_label_annotations = args[:frame_label_annotations] if args.key?(:frame_label_annotations)
2626
2643
  @input_uri = args[:input_uri] if args.key?(:input_uri)
2627
2644
  @object_annotations = args[:object_annotations] if args.key?(:object_annotations)
2645
+ @segment = args[:segment] if args.key?(:segment)
2628
2646
  @segment_label_annotations = args[:segment_label_annotations] if args.key?(:segment_label_annotations)
2629
2647
  @shot_annotations = args[:shot_annotations] if args.key?(:shot_annotations)
2630
2648
  @shot_label_annotations = args[:shot_label_annotations] if args.key?(:shot_label_annotations)
@@ -3426,6 +3444,11 @@ module Google
3426
3444
  # @return [Array<Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p2beta1ObjectTrackingAnnotation>]
3427
3445
  attr_accessor :object_annotations
3428
3446
 
3447
+ # Video segment.
3448
+ # Corresponds to the JSON property `segment`
3449
+ # @return [Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p2beta1VideoSegment]
3450
+ attr_accessor :segment
3451
+
3429
3452
  # Topical label annotations on video level or user specified segment level.
3430
3453
  # There is exactly one element for each unique label.
3431
3454
  # Corresponds to the JSON property `segmentLabelAnnotations`
@@ -3466,6 +3489,7 @@ module Google
3466
3489
  @frame_label_annotations = args[:frame_label_annotations] if args.key?(:frame_label_annotations)
3467
3490
  @input_uri = args[:input_uri] if args.key?(:input_uri)
3468
3491
  @object_annotations = args[:object_annotations] if args.key?(:object_annotations)
3492
+ @segment = args[:segment] if args.key?(:segment)
3469
3493
  @segment_label_annotations = args[:segment_label_annotations] if args.key?(:segment_label_annotations)
3470
3494
  @shot_annotations = args[:shot_annotations] if args.key?(:shot_annotations)
3471
3495
  @shot_label_annotations = args[:shot_label_annotations] if args.key?(:shot_label_annotations)
@@ -4437,6 +4461,11 @@ module Google
4437
4461
  # @return [Array<Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p3beta1ObjectTrackingAnnotation>]
4438
4462
  attr_accessor :object_annotations
4439
4463
 
4464
+ # Video segment.
4465
+ # Corresponds to the JSON property `segment`
4466
+ # @return [Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p3beta1VideoSegment]
4467
+ attr_accessor :segment
4468
+
4440
4469
  # Topical label annotations on video level or user specified segment level.
4441
4470
  # There is exactly one element for each unique label.
4442
4471
  # Corresponds to the JSON property `segmentLabelAnnotations`
@@ -4478,6 +4507,7 @@ module Google
4478
4507
  @input_uri = args[:input_uri] if args.key?(:input_uri)
4479
4508
  @logo_recognition_annotations = args[:logo_recognition_annotations] if args.key?(:logo_recognition_annotations)
4480
4509
  @object_annotations = args[:object_annotations] if args.key?(:object_annotations)
4510
+ @segment = args[:segment] if args.key?(:segment)
4481
4511
  @segment_label_annotations = args[:segment_label_annotations] if args.key?(:segment_label_annotations)
4482
4512
  @shot_annotations = args[:shot_annotations] if args.key?(:shot_annotations)
4483
4513
  @shot_label_annotations = args[:shot_label_annotations] if args.key?(:shot_label_annotations)
@@ -978,6 +978,8 @@ module Google
978
978
  property :input_uri, as: 'inputUri'
979
979
  collection :object_annotations, as: 'objectAnnotations', class: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1ObjectTrackingAnnotation, decorator: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1ObjectTrackingAnnotation::Representation
980
980
 
981
+ property :segment, as: 'segment', class: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1VideoSegment, decorator: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1VideoSegment::Representation
982
+
981
983
  collection :segment_label_annotations, as: 'segmentLabelAnnotations', class: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1LabelAnnotation, decorator: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1LabelAnnotation::Representation
982
984
 
983
985
  collection :shot_annotations, as: 'shotAnnotations', class: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1VideoSegment, decorator: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1VideoSegment::Representation
@@ -1204,6 +1206,8 @@ module Google
1204
1206
  property :input_uri, as: 'inputUri'
1205
1207
  collection :object_annotations, as: 'objectAnnotations', class: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1beta2ObjectTrackingAnnotation, decorator: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1beta2ObjectTrackingAnnotation::Representation
1206
1208
 
1209
+ property :segment, as: 'segment', class: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1beta2VideoSegment, decorator: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1beta2VideoSegment::Representation
1210
+
1207
1211
  collection :segment_label_annotations, as: 'segmentLabelAnnotations', class: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1beta2LabelAnnotation, decorator: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1beta2LabelAnnotation::Representation
1208
1212
 
1209
1213
  collection :shot_annotations, as: 'shotAnnotations', class: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1beta2VideoSegment, decorator: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1beta2VideoSegment::Representation
@@ -1506,6 +1510,8 @@ module Google
1506
1510
  property :input_uri, as: 'inputUri'
1507
1511
  collection :object_annotations, as: 'objectAnnotations', class: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p1beta1ObjectTrackingAnnotation, decorator: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p1beta1ObjectTrackingAnnotation::Representation
1508
1512
 
1513
+ property :segment, as: 'segment', class: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p1beta1VideoSegment, decorator: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p1beta1VideoSegment::Representation
1514
+
1509
1515
  collection :segment_label_annotations, as: 'segmentLabelAnnotations', class: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p1beta1LabelAnnotation, decorator: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p1beta1LabelAnnotation::Representation
1510
1516
 
1511
1517
  collection :shot_annotations, as: 'shotAnnotations', class: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p1beta1VideoSegment, decorator: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p1beta1VideoSegment::Representation
@@ -1752,6 +1758,8 @@ module Google
1752
1758
  property :input_uri, as: 'inputUri'
1753
1759
  collection :object_annotations, as: 'objectAnnotations', class: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p2beta1ObjectTrackingAnnotation, decorator: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p2beta1ObjectTrackingAnnotation::Representation
1754
1760
 
1761
+ property :segment, as: 'segment', class: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p2beta1VideoSegment, decorator: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p2beta1VideoSegment::Representation
1762
+
1755
1763
  collection :segment_label_annotations, as: 'segmentLabelAnnotations', class: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p2beta1LabelAnnotation, decorator: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p2beta1LabelAnnotation::Representation
1756
1764
 
1757
1765
  collection :shot_annotations, as: 'shotAnnotations', class: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p2beta1VideoSegment, decorator: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p2beta1VideoSegment::Representation
@@ -2050,6 +2058,8 @@ module Google
2050
2058
 
2051
2059
  collection :object_annotations, as: 'objectAnnotations', class: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p3beta1ObjectTrackingAnnotation, decorator: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p3beta1ObjectTrackingAnnotation::Representation
2052
2060
 
2061
+ property :segment, as: 'segment', class: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p3beta1VideoSegment, decorator: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p3beta1VideoSegment::Representation
2062
+
2053
2063
  collection :segment_label_annotations, as: 'segmentLabelAnnotations', class: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p3beta1LabelAnnotation, decorator: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p3beta1LabelAnnotation::Representation
2054
2064
 
2055
2065
  collection :shot_annotations, as: 'shotAnnotations', class: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p3beta1VideoSegment, decorator: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p3beta1VideoSegment::Representation
@@ -27,7 +27,7 @@ module Google
27
27
  # @see https://cloud.google.com/video-intelligence/docs/
28
28
  module VideointelligenceV1p2beta1
29
29
  VERSION = 'V1p2beta1'
30
- REVISION = '20190618'
30
+ REVISION = '20190713'
31
31
 
32
32
  # View and manage your data across Google Cloud Platform services
33
33
  AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'