google-apis-transcoder_v1 0.13.0 → 0.15.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: 011534d4e940d6e56b6cd89dba555a6bb033cb8de82054c7d697f9c944e24794
4
- data.tar.gz: 343fbbc60e92c9155bc7eb6eedba0be03f7e45e4f60bc56528943ca70ae30d48
3
+ metadata.gz: a73f31db61082651785e4e326e718d2ef4e28c4d0d842da4dfb91f3b72925a12
4
+ data.tar.gz: 3226a9d07728639756f63db9be5e6c50d90c000914ad6f771e695d2dfd1c73a7
5
5
  SHA512:
6
- metadata.gz: 1d1143314f349b0f7bdd5b6764999cc753c0b94da6ec4fe2a3e00ee43d561487c6f5d6bd69904a711cac3598699faeb4faa89da41aa62ff338313a4633b336c0
7
- data.tar.gz: '01781bb77915aa7a287d3a4d2ca94f25bbdf0e5c3399a76280670cd062f0a721f4b47d93c9029b6bd8e519373d0eb96ed259aa02be99c1f8a0f0054f757ccdab'
6
+ metadata.gz: 394e4c6c2f22402fe668904009ccc0eeeb9ba746b0516c7645f4cb9ba4bcb9d3414c9f8624965e74e1c00ad1b89e19b16d7e5659b09f5a20f75e139dd61fcc17
7
+ data.tar.gz: d09cf2d9ffc3d34535af170e4ded4454c100a4e1126287212ac71d56c31810571db24ca3fc739d2cb35721404c81fcfddf25129f7b219702dec1398e432dd213
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-transcoder_v1
2
2
 
3
+ ### v0.15.0 (2023-04-02)
4
+
5
+ * Regenerated from discovery document revision 20230322
6
+
7
+ ### v0.14.0 (2023-03-19)
8
+
9
+ * Regenerated from discovery document revision 20230308
10
+
3
11
  ### v0.13.0 (2023-02-26)
4
12
 
5
13
  * Regenerated from discovery document revision 20230215
@@ -282,13 +282,14 @@ module Google
282
282
  attr_accessor :codec
283
283
 
284
284
  # The name for this particular audio stream that will be added to the HLS/DASH
285
- # manifest.
285
+ # manifest. Not supported in MP4 files.
286
286
  # Corresponds to the JSON property `displayName`
287
287
  # @return [String]
288
288
  attr_accessor :display_name
289
289
 
290
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.
291
+ # see https://www.unicode.org/reports/tr35/#Unicode_locale_identifier. Not
292
+ # supported in MP4 files.
292
293
  # Corresponds to the JSON property `languageCode`
293
294
  # @return [String]
294
295
  attr_accessor :language_code
@@ -1087,6 +1088,11 @@ module Google
1087
1088
  # @return [Hash<String,String>]
1088
1089
  attr_accessor :labels
1089
1090
 
1091
+ # The processing mode of the job. The default is `PROCESSING_MODE_INTERACTIVE`.
1092
+ # Corresponds to the JSON property `mode`
1093
+ # @return [String]
1094
+ attr_accessor :mode
1095
+
1090
1096
  # The resource name of the job. Format: `projects/`project_number`/locations/`
1091
1097
  # location`/jobs/`job``
1092
1098
  # Corresponds to the JSON property `name`
@@ -1113,8 +1119,8 @@ module Google
1113
1119
  attr_accessor :state
1114
1120
 
1115
1121
  # Input only. Specify the `template_id` to use for populating `Job.config`. The
1116
- # default is `preset/web-hd`. Preset Transcoder templates: - `preset/`preset_id``
1117
- # - User defined JobTemplate: ``job_template_id``
1122
+ # default is `preset/web-hd`, which is the only supported preset. User defined
1123
+ # JobTemplate: ``job_template_id``
1118
1124
  # Corresponds to the JSON property `templateId`
1119
1125
  # @return [String]
1120
1126
  attr_accessor :template_id
@@ -1138,6 +1144,7 @@ module Google
1138
1144
  @error = args[:error] if args.key?(:error)
1139
1145
  @input_uri = args[:input_uri] if args.key?(:input_uri)
1140
1146
  @labels = args[:labels] if args.key?(:labels)
1147
+ @mode = args[:mode] if args.key?(:mode)
1141
1148
  @name = args[:name] if args.key?(:name)
1142
1149
  @output_uri = args[:output_uri] if args.key?(:output_uri)
1143
1150
  @start_time = args[:start_time] if args.key?(:start_time)
@@ -1808,13 +1815,14 @@ module Google
1808
1815
  attr_accessor :codec
1809
1816
 
1810
1817
  # The name for this particular text stream that will be added to the HLS/DASH
1811
- # manifest.
1818
+ # manifest. Not supported in MP4 files.
1812
1819
  # Corresponds to the JSON property `displayName`
1813
1820
  # @return [String]
1814
1821
  attr_accessor :display_name
1815
1822
 
1816
1823
  # 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.
1824
+ # see https://www.unicode.org/reports/tr35/#Unicode_locale_identifier. Not
1825
+ # supported in MP4 files.
1818
1826
  # Corresponds to the JSON property `languageCode`
1819
1827
  # @return [String]
1820
1828
  attr_accessor :language_code
@@ -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.13.0"
19
+ GEM_VERSION = "0.15.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 = "20230215"
25
+ REVISION = "20230322"
26
26
  end
27
27
  end
28
28
  end
@@ -521,6 +521,7 @@ module Google
521
521
 
522
522
  property :input_uri, as: 'inputUri'
523
523
  hash :labels, as: 'labels'
524
+ property :mode, as: 'mode'
524
525
  property :name, as: 'name'
525
526
  property :output_uri, as: 'outputUri'
526
527
  property :start_time, as: 'startTime'
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.13.0
4
+ version: 0.15.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-02-26 00:00:00.000000000 Z
11
+ date: 2023-04-02 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.13.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-transcoder_v1/v0.15.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: []