google-apis-transcoder_v1 0.20.0 → 0.21.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 60d78a1fea51730e52b7216df66cbf80308182d3eefc39f528956765ca933afd
4
- data.tar.gz: 6a215e67be7899f3505f296700cf6a8d904e5a9ffe334f58d9145304da5b0b28
3
+ metadata.gz: 99cb31c0f5ae145fc47349632b474f3704eadd5d2ada9ec460a6a9f9c95571b7
4
+ data.tar.gz: 3d73bfa4ac696278724ed678324b3c1b6261d6fb23b514e281e28234f01005ef
5
5
  SHA512:
6
- metadata.gz: 2b222fd10f4d8200d1ff4a4ad11619195986164ff40628bc11f336340b237d4b2d1e0955cd7493e45ed5f6f6679578226fe339077ccb3d58de036f9f7f2dfbd6
7
- data.tar.gz: 9f6b5123ccf195da55f8f3ebf7d4a10968ef6a3f0e771caebc69a04ea4d54afcb4eee9e158b49eaf46c9b0f71041e4f5d33024b32ce56d74857dba12d31d4fcc
6
+ metadata.gz: f6d94668cc9904ab1c774318832fd8cf463ac2753f2bcac79984f3180c2f0b551222a10801be8defd331f77b26050b988d394dc199a7c0c2d70f6f7fa2d1e2b2
7
+ data.tar.gz: 5758a83643a6ce96588174c527088e8d5ae4d1effdf17b3b9062919593b7253f8a4c160a9d16efadaf2125c1d715bc8ccd64407ed3f680df82ff70177e412870
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-transcoder_v1
2
2
 
3
+ ### v0.21.0 (2023-09-17)
4
+
5
+ * Regenerated from discovery document revision 20230906
6
+
3
7
  ### v0.20.0 (2023-07-23)
4
8
 
5
9
  * Regenerated from discovery document revision 20230712
@@ -757,6 +757,27 @@ module Google
757
757
  end
758
758
  end
759
759
 
760
+ # `fmp4` container configuration.
761
+ class Fmp4Config
762
+ include Google::Apis::Core::Hashable
763
+
764
+ # Optional. Specify the codec tag string that will be used in the media
765
+ # bitstream. When not specified, the codec appropriate value is used. Supported
766
+ # H265 codec tags: - `hvc1` (default) - `hev1`
767
+ # Corresponds to the JSON property `codecTag`
768
+ # @return [String]
769
+ attr_accessor :codec_tag
770
+
771
+ def initialize(**args)
772
+ update!(**args)
773
+ end
774
+
775
+ # Update properties of this object
776
+ def update!(**args)
777
+ @codec_tag = args[:codec_tag] if args.key?(:codec_tag)
778
+ end
779
+ end
780
+
760
781
  # H264 codec settings.
761
782
  class H264CodecSettings
762
783
  include Google::Apis::Core::Hashable
@@ -1585,6 +1606,11 @@ module Google
1585
1606
  # @return [String]
1586
1607
  attr_accessor :file_name
1587
1608
 
1609
+ # `fmp4` container configuration.
1610
+ # Corresponds to the JSON property `fmp4`
1611
+ # @return [Google::Apis::TranscoderV1::Fmp4Config]
1612
+ attr_accessor :fmp4
1613
+
1588
1614
  # A unique key for this multiplexed stream.
1589
1615
  # Corresponds to the JSON property `key`
1590
1616
  # @return [String]
@@ -1605,6 +1631,7 @@ module Google
1605
1631
  @elementary_streams = args[:elementary_streams] if args.key?(:elementary_streams)
1606
1632
  @encryption_id = args[:encryption_id] if args.key?(:encryption_id)
1607
1633
  @file_name = args[:file_name] if args.key?(:file_name)
1634
+ @fmp4 = args[:fmp4] if args.key?(:fmp4)
1608
1635
  @key = args[:key] if args.key?(:key)
1609
1636
  @segment_settings = args[:segment_settings] if args.key?(:segment_settings)
1610
1637
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module TranscoderV1
18
18
  # Version of the google-apis-transcoder_v1 gem
19
- GEM_VERSION = "0.20.0"
19
+ GEM_VERSION = "0.21.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230712"
25
+ REVISION = "20230906"
26
26
  end
27
27
  end
28
28
  end
@@ -160,6 +160,12 @@ module Google
160
160
  include Google::Apis::Core::JsonObjectSupport
161
161
  end
162
162
 
163
+ class Fmp4Config
164
+ class Representation < Google::Apis::Core::JsonRepresentation; end
165
+
166
+ include Google::Apis::Core::JsonObjectSupport
167
+ end
168
+
163
169
  class H264CodecSettings
164
170
  class Representation < Google::Apis::Core::JsonRepresentation; end
165
171
 
@@ -561,6 +567,13 @@ module Google
561
567
  end
562
568
  end
563
569
 
570
+ class Fmp4Config
571
+ # @private
572
+ class Representation < Google::Apis::Core::JsonRepresentation
573
+ property :codec_tag, as: 'codecTag'
574
+ end
575
+ end
576
+
564
577
  class H264CodecSettings
565
578
  # @private
566
579
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -738,6 +751,8 @@ module Google
738
751
  collection :elementary_streams, as: 'elementaryStreams'
739
752
  property :encryption_id, as: 'encryptionId'
740
753
  property :file_name, as: 'fileName'
754
+ property :fmp4, as: 'fmp4', class: Google::Apis::TranscoderV1::Fmp4Config, decorator: Google::Apis::TranscoderV1::Fmp4Config::Representation
755
+
741
756
  property :key, as: 'key'
742
757
  property :segment_settings, as: 'segmentSettings', class: Google::Apis::TranscoderV1::SegmentSettings, decorator: Google::Apis::TranscoderV1::SegmentSettings::Representation
743
758
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-transcoder_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.20.0
4
+ version: 0.21.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-07-23 00:00:00.000000000 Z
11
+ date: 2023-09-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-transcoder_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-transcoder_v1/v0.20.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-transcoder_v1/v0.21.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-transcoder_v1
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.4.2
78
+ rubygems_version: 3.4.19
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Transcoder API V1