google-apis-transcoder_v1 0.31.0 → 0.32.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: 4d15d1330a141e10dfb0b86db1e055b6648d62a8fa459839962b11cbca1bc79e
4
- data.tar.gz: 53b0d5750477bbc7ddb3f54e67659e6c8725c40c3387e57647020abfa1cd55fe
3
+ metadata.gz: f962cc981422dc91d91423df0b45564c46467052e92a208e519bb43a2f05fd32
4
+ data.tar.gz: 6b67667c5364dab33c4fd36f534931338996b9d59a96f54489105f6e0f2d37da
5
5
  SHA512:
6
- metadata.gz: e369211661d2c79454db6903aa05f76347573e0529803269b5dd480317ed3ead74b372859fdf8bf0bf26409680d6d4ce94d7acd076d21cc8aec3431dd12ada1e
7
- data.tar.gz: eea68e1ab56fae01f881e4fc6b733b050004e31b279dacef1ed3b854e80a862dbd9a711e736f952cafbd64e33e21f7bb84be9b8b54c91623c4f893dabecf49da
6
+ metadata.gz: f883b7a78159d2718104c9149f3888830bcbc078dde9c0f9cfb77501f5a9154b03adaa667499a22cdd99c704de6a5f081a4aafb86984b12d8305bc5a62708677
7
+ data.tar.gz: 14318d1697485141cd9f3b52d127900c30c1257a1e8cd4184ddfc49cf8b3398e656fc5f4edeb2311c38113a7aebd39cfe1cab80ca1e8c2b0c6c124f243430935
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-transcoder_v1
2
2
 
3
+ ### v0.32.0 (2025-08-03)
4
+
5
+ * Regenerated from discovery document revision 20250723
6
+
3
7
  ### v0.31.0 (2025-07-13)
4
8
 
5
9
  * Regenerated from discovery document revision 20250630
@@ -1280,6 +1280,11 @@ module Google
1280
1280
  class Input
1281
1281
  include Google::Apis::Core::Hashable
1282
1282
 
1283
+ # Input attributes that provide additional information about the input asset.
1284
+ # Corresponds to the JSON property `attributes`
1285
+ # @return [Google::Apis::TranscoderV1::InputAttributes]
1286
+ attr_accessor :attributes
1287
+
1283
1288
  # A unique key for this input. Must be specified when using advanced mapping and
1284
1289
  # edit lists.
1285
1290
  # Corresponds to the JSON property `key`
@@ -1306,12 +1311,32 @@ module Google
1306
1311
 
1307
1312
  # Update properties of this object
1308
1313
  def update!(**args)
1314
+ @attributes = args[:attributes] if args.key?(:attributes)
1309
1315
  @key = args[:key] if args.key?(:key)
1310
1316
  @preprocessing_config = args[:preprocessing_config] if args.key?(:preprocessing_config)
1311
1317
  @uri = args[:uri] if args.key?(:uri)
1312
1318
  end
1313
1319
  end
1314
1320
 
1321
+ # Input attributes that provide additional information about the input asset.
1322
+ class InputAttributes
1323
+ include Google::Apis::Core::Hashable
1324
+
1325
+ # Optional. A list of track definitions for the input asset.
1326
+ # Corresponds to the JSON property `trackDefinitions`
1327
+ # @return [Array<Google::Apis::TranscoderV1::TrackDefinition>]
1328
+ attr_accessor :track_definitions
1329
+
1330
+ def initialize(**args)
1331
+ update!(**args)
1332
+ end
1333
+
1334
+ # Update properties of this object
1335
+ def update!(**args)
1336
+ @track_definitions = args[:track_definitions] if args.key?(:track_definitions)
1337
+ end
1338
+ end
1339
+
1315
1340
  # Transcoding job resource.
1316
1341
  class Job
1317
1342
  include Google::Apis::Core::Hashable
@@ -2230,6 +2255,51 @@ module Google
2230
2255
  end
2231
2256
  end
2232
2257
 
2258
+ # Track definition for the input asset.
2259
+ class TrackDefinition
2260
+ include Google::Apis::Core::Hashable
2261
+
2262
+ # Optional. Whether to automatically detect the languages present in the track.
2263
+ # If true, the system will attempt to identify all the languages present in the
2264
+ # track and populate the languages field.
2265
+ # Corresponds to the JSON property `detectLanguages`
2266
+ # @return [Boolean]
2267
+ attr_accessor :detect_languages
2268
+ alias_method :detect_languages?, :detect_languages
2269
+
2270
+ # Output only. A list of languages detected in the input asset, represented by a
2271
+ # BCP 47 language code, such as "en-US" or "sr-Latn". For more information, see
2272
+ # https://www.unicode.org/reports/tr35/#Unicode_locale_identifier. This field is
2273
+ # only populated if the detect_languages field is set to true.
2274
+ # Corresponds to the JSON property `detectedLanguages`
2275
+ # @return [Array<String>]
2276
+ attr_accessor :detected_languages
2277
+
2278
+ # The input track.
2279
+ # Corresponds to the JSON property `inputTrack`
2280
+ # @return [Fixnum]
2281
+ attr_accessor :input_track
2282
+
2283
+ # Optional. A list of languages spoken in the input asset, represented by a BCP
2284
+ # 47 language code, such as "en-US" or "sr-Latn". For more information, see
2285
+ # https://www.unicode.org/reports/tr35/#Unicode_locale_identifier.
2286
+ # Corresponds to the JSON property `languages`
2287
+ # @return [Array<String>]
2288
+ attr_accessor :languages
2289
+
2290
+ def initialize(**args)
2291
+ update!(**args)
2292
+ end
2293
+
2294
+ # Update properties of this object
2295
+ def update!(**args)
2296
+ @detect_languages = args[:detect_languages] if args.key?(:detect_languages)
2297
+ @detected_languages = args[:detected_languages] if args.key?(:detected_languages)
2298
+ @input_track = args[:input_track] if args.key?(:input_track)
2299
+ @languages = args[:languages] if args.key?(:languages)
2300
+ end
2301
+ end
2302
+
2233
2303
  # Video stream resource.
2234
2304
  class VideoStream
2235
2305
  include Google::Apis::Core::Hashable
@@ -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.31.0"
19
+ GEM_VERSION = "0.32.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 = "20250630"
25
+ REVISION = "20250723"
26
26
  end
27
27
  end
28
28
  end
@@ -220,6 +220,12 @@ module Google
220
220
  include Google::Apis::Core::JsonObjectSupport
221
221
  end
222
222
 
223
+ class InputAttributes
224
+ class Representation < Google::Apis::Core::JsonRepresentation; end
225
+
226
+ include Google::Apis::Core::JsonObjectSupport
227
+ end
228
+
223
229
  class Job
224
230
  class Representation < Google::Apis::Core::JsonRepresentation; end
225
231
 
@@ -352,6 +358,12 @@ module Google
352
358
  include Google::Apis::Core::JsonObjectSupport
353
359
  end
354
360
 
361
+ class TrackDefinition
362
+ class Representation < Google::Apis::Core::JsonRepresentation; end
363
+
364
+ include Google::Apis::Core::JsonObjectSupport
365
+ end
366
+
355
367
  class VideoStream
356
368
  class Representation < Google::Apis::Core::JsonRepresentation; end
357
369
 
@@ -722,6 +734,8 @@ module Google
722
734
  class Input
723
735
  # @private
724
736
  class Representation < Google::Apis::Core::JsonRepresentation
737
+ property :attributes, as: 'attributes', class: Google::Apis::TranscoderV1::InputAttributes, decorator: Google::Apis::TranscoderV1::InputAttributes::Representation
738
+
725
739
  property :key, as: 'key'
726
740
  property :preprocessing_config, as: 'preprocessingConfig', class: Google::Apis::TranscoderV1::PreprocessingConfig, decorator: Google::Apis::TranscoderV1::PreprocessingConfig::Representation
727
741
 
@@ -729,6 +743,14 @@ module Google
729
743
  end
730
744
  end
731
745
 
746
+ class InputAttributes
747
+ # @private
748
+ class Representation < Google::Apis::Core::JsonRepresentation
749
+ collection :track_definitions, as: 'trackDefinitions', class: Google::Apis::TranscoderV1::TrackDefinition, decorator: Google::Apis::TranscoderV1::TrackDefinition::Representation
750
+
751
+ end
752
+ end
753
+
732
754
  class Job
733
755
  # @private
734
756
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -979,6 +1001,16 @@ module Google
979
1001
  end
980
1002
  end
981
1003
 
1004
+ class TrackDefinition
1005
+ # @private
1006
+ class Representation < Google::Apis::Core::JsonRepresentation
1007
+ property :detect_languages, as: 'detectLanguages'
1008
+ collection :detected_languages, as: 'detectedLanguages'
1009
+ property :input_track, as: 'inputTrack'
1010
+ collection :languages, as: 'languages'
1011
+ end
1012
+ end
1013
+
982
1014
  class VideoStream
983
1015
  # @private
984
1016
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-transcoder_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.31.0
4
+ version: 0.32.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-transcoder_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-transcoder_v1/v0.31.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-transcoder_v1/v0.32.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-transcoder_v1
62
62
  rdoc_options: []
63
63
  require_paths: