google-apis-transcoder_v1 0.20.0 → 0.22.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: 60d78a1fea51730e52b7216df66cbf80308182d3eefc39f528956765ca933afd
4
- data.tar.gz: 6a215e67be7899f3505f296700cf6a8d904e5a9ffe334f58d9145304da5b0b28
3
+ metadata.gz: f64f94b2d7ceccc71c0e1acfffd6c1adc669465fa03533a855c90e48daa00c36
4
+ data.tar.gz: e8c5ec7c8813439a33f49f56b0928bd8987e8e46f9e14716fa8276303b87f332
5
5
  SHA512:
6
- metadata.gz: 2b222fd10f4d8200d1ff4a4ad11619195986164ff40628bc11f336340b237d4b2d1e0955cd7493e45ed5f6f6679578226fe339077ccb3d58de036f9f7f2dfbd6
7
- data.tar.gz: 9f6b5123ccf195da55f8f3ebf7d4a10968ef6a3f0e771caebc69a04ea4d54afcb4eee9e158b49eaf46c9b0f71041e4f5d33024b32ce56d74857dba12d31d4fcc
6
+ metadata.gz: 7e8650cb30e6ad6dab63330ac29eb6e304a3304a38240df8a17197a82a31cd1943e65b36f4168dc06e9f109b0650b014842c32e90a1fa3f9aaeaa85646aa7587
7
+ data.tar.gz: 571ec0dc3058230cf6eb24e2ab3fd05c1068681feef54eb948fef79d9063e39d9190c0e1f081349480e284f276eeefbadf0d9a80dda8c255c4d5dc0300d6155f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-transcoder_v1
2
2
 
3
+ ### v0.22.0 (2024-01-22)
4
+
5
+ * Regenerated using generator version 0.13.0
6
+
7
+ ### v0.21.0 (2023-09-17)
8
+
9
+ * Regenerated from discovery document revision 20230906
10
+
3
11
  ### v0.20.0 (2023-07-23)
4
12
 
5
13
  * 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.22.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.12.0"
22
+ GENERATOR_VERSION = "0.13.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
 
@@ -33,6 +33,8 @@ module Google
33
33
  #
34
34
  # @see https://cloud.google.com/transcoder/docs/
35
35
  class TranscoderService < Google::Apis::Core::BaseService
36
+ DEFAULT_ENDPOINT_TEMPLATE = "https://transcoder.$UNIVERSE_DOMAIN$/"
37
+
36
38
  # @return [String]
37
39
  # API key. Your API key identifies your project and provides you with API access,
38
40
  # quota, and reports. Required unless you provide an OAuth 2.0 token.
@@ -44,7 +46,7 @@ module Google
44
46
  attr_accessor :quota_user
45
47
 
46
48
  def initialize
47
- super('https://transcoder.googleapis.com/', '',
49
+ super(DEFAULT_ENDPOINT_TEMPLATE, '',
48
50
  client_name: 'google-apis-transcoder_v1',
49
51
  client_version: Google::Apis::TranscoderV1::GEM_VERSION)
50
52
  @batch_path = 'batch'
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.22.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: 2024-01-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.11.0
19
+ version: 0.12.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.11.0
29
+ version: 0.12.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.22.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.5.3
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Transcoder API V1