google-apis-transcoder_v1 0.11.0 → 0.13.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: a665a75e299f2e4997b9c304e931386ca450249157352c2a69afccdccdcd181a
4
- data.tar.gz: edcf4edb6d7a9c145d0b4cda6bb84b553592f7c6cbca9cff6ee4d57989e76b25
3
+ metadata.gz: 011534d4e940d6e56b6cd89dba555a6bb033cb8de82054c7d697f9c944e24794
4
+ data.tar.gz: 343fbbc60e92c9155bc7eb6eedba0be03f7e45e4f60bc56528943ca70ae30d48
5
5
  SHA512:
6
- metadata.gz: ef97c4f4b95c31e154da01e8e45013902c6a836d67213ee9748de2ed2cc0ec1deec38a845006324c50fb40cf7ea25a0938ce850d7b96f479e898088eb3ce6e88
7
- data.tar.gz: 53bed6c63bb4dbd5cfa2643a06d7a6cd2ebea62d34ba2e4458fee323e3d07a7e8713d4f5e529f2ea6f7d5fd7ef4a7a79b993950f635bc55f3339045d92d70672
6
+ metadata.gz: 1d1143314f349b0f7bdd5b6764999cc753c0b94da6ec4fe2a3e00ee43d561487c6f5d6bd69904a711cac3598699faeb4faa89da41aa62ff338313a4633b336c0
7
+ data.tar.gz: '01781bb77915aa7a287d3a4d2ca94f25bbdf0e5c3399a76280670cd062f0a721f4b47d93c9029b6bd8e519373d0eb96ed259aa02be99c1f8a0f0054f757ccdab'
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-transcoder_v1
2
2
 
3
+ ### v0.13.0 (2023-02-26)
4
+
5
+ * Regenerated from discovery document revision 20230215
6
+
7
+ ### v0.12.0 (2023-02-15)
8
+
9
+ * Regenerated using generator version 0.12.0
10
+
3
11
  ### v0.11.0 (2022-12-07)
4
12
 
5
13
  * Regenerated from discovery document revision 20221201
@@ -281,6 +281,18 @@ module Google
281
281
  # @return [String]
282
282
  attr_accessor :codec
283
283
 
284
+ # The name for this particular audio stream that will be added to the HLS/DASH
285
+ # manifest.
286
+ # Corresponds to the JSON property `displayName`
287
+ # @return [String]
288
+ attr_accessor :display_name
289
+
290
+ # The BCP-47 language code, such as `en-US` or `sr-Latn`. For more information,
291
+ # see https://www.unicode.org/reports/tr35/#Unicode_locale_identifier.
292
+ # Corresponds to the JSON property `languageCode`
293
+ # @return [String]
294
+ attr_accessor :language_code
295
+
284
296
  # The mapping for the `Job.edit_list` atoms with audio `EditAtom.inputs`.
285
297
  # Corresponds to the JSON property `mapping`
286
298
  # @return [Array<Google::Apis::TranscoderV1::AudioMapping>]
@@ -301,6 +313,8 @@ module Google
301
313
  @channel_count = args[:channel_count] if args.key?(:channel_count)
302
314
  @channel_layout = args[:channel_layout] if args.key?(:channel_layout)
303
315
  @codec = args[:codec] if args.key?(:codec)
316
+ @display_name = args[:display_name] if args.key?(:display_name)
317
+ @language_code = args[:language_code] if args.key?(:language_code)
304
318
  @mapping = args[:mapping] if args.key?(:mapping)
305
319
  @sample_rate_hertz = args[:sample_rate_hertz] if args.key?(:sample_rate_hertz)
306
320
  end
@@ -1793,6 +1807,18 @@ module Google
1793
1807
  # @return [String]
1794
1808
  attr_accessor :codec
1795
1809
 
1810
+ # The name for this particular text stream that will be added to the HLS/DASH
1811
+ # manifest.
1812
+ # Corresponds to the JSON property `displayName`
1813
+ # @return [String]
1814
+ attr_accessor :display_name
1815
+
1816
+ # The BCP-47 language code, such as `en-US` or `sr-Latn`. For more information,
1817
+ # see https://www.unicode.org/reports/tr35/#Unicode_locale_identifier.
1818
+ # Corresponds to the JSON property `languageCode`
1819
+ # @return [String]
1820
+ attr_accessor :language_code
1821
+
1796
1822
  # The mapping for the `Job.edit_list` atoms with text `EditAtom.inputs`.
1797
1823
  # Corresponds to the JSON property `mapping`
1798
1824
  # @return [Array<Google::Apis::TranscoderV1::TextMapping>]
@@ -1805,6 +1831,8 @@ module Google
1805
1831
  # Update properties of this object
1806
1832
  def update!(**args)
1807
1833
  @codec = args[:codec] if args.key?(:codec)
1834
+ @display_name = args[:display_name] if args.key?(:display_name)
1835
+ @language_code = args[:language_code] if args.key?(:language_code)
1808
1836
  @mapping = args[:mapping] if args.key?(:mapping)
1809
1837
  end
1810
1838
  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.11.0"
19
+ GEM_VERSION = "0.13.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.11.0"
22
+ GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20221201"
25
+ REVISION = "20230215"
26
26
  end
27
27
  end
28
28
  end
@@ -348,6 +348,8 @@ module Google
348
348
  property :channel_count, as: 'channelCount'
349
349
  collection :channel_layout, as: 'channelLayout'
350
350
  property :codec, as: 'codec'
351
+ property :display_name, as: 'displayName'
352
+ property :language_code, as: 'languageCode'
351
353
  collection :mapping, as: 'mapping', class: Google::Apis::TranscoderV1::AudioMapping, decorator: Google::Apis::TranscoderV1::AudioMapping::Representation
352
354
 
353
355
  property :sample_rate_hertz, as: 'sampleRateHertz'
@@ -714,6 +716,8 @@ module Google
714
716
  # @private
715
717
  class Representation < Google::Apis::Core::JsonRepresentation
716
718
  property :codec, as: 'codec'
719
+ property :display_name, as: 'displayName'
720
+ property :language_code, as: 'languageCode'
717
721
  collection :mapping, as: 'mapping', class: Google::Apis::TranscoderV1::TextMapping, decorator: Google::Apis::TranscoderV1::TextMapping::Representation
718
722
 
719
723
  end
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.11.0
4
+ version: 0.13.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: 2022-12-12 00:00:00.000000000 Z
11
+ date: 2023-02-26 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.9.1
19
+ version: 0.11.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.9.1
29
+ version: 0.11.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.11.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-transcoder_v1/v0.13.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.3.14
78
+ rubygems_version: 3.4.2
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Transcoder API V1