google-apis-firebaseml_v2beta 0.42.0 → 0.43.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: 223d960a2ce998ce013f1907cfa751b9c17b3432548fc81337c7461ae54f8222
4
- data.tar.gz: d0874c8a9b0c5d68c812b0c8b8c9a98cec1409467a588c3b4052df3e72a503cf
3
+ metadata.gz: 37b0cfc02bc40d3b663ec28614e5807340b6f17f39173654a73a82e218d967c0
4
+ data.tar.gz: 0706e855109aa3996350fa7eea746e7958913add841cd23fbe479411711fa27a
5
5
  SHA512:
6
- metadata.gz: c668924c1e3316774c60dafdcf13e80f0f92b8397234f399bd8d74f25b5342319a834569f7d312cf8658e79c06164c7dd57613af866cbd044c727b3e23b76842
7
- data.tar.gz: e666bba4f7755a1796942f31713eff18b20fc87ee94414f84dfe76a38cf5d80b68ff3c4c89c40156082941f2f8dc7acf34eafccb5d8b46ec21d6812341d75cd9
6
+ metadata.gz: 0a2c7e8e0874cc387f4e35a1e8d50fb3bfae97c7210440b74c730f060afff55aa2f5ba487d62cc7896ab0c7d04a776cb8bdc71fdfb8ebd9e0ea2a733405a0a1d
7
+ data.tar.gz: a456ffe26601287fb77b39c0b946013f849d8bd945ab8e1daa3000f3e2aeaa1507ab560bb2935bd8b28f98f8ae53d9e4aaabb9e4fe3b2a469a575514abe514b1
data/CHANGELOG.md CHANGED
@@ -1,8 +1,12 @@
1
1
  # Release history for google-apis-firebaseml_v2beta
2
2
 
3
- ### v0.42.0 (2026-08-02)
3
+ ### v0.43.0 (2026-08-16)
4
4
 
5
- * Regenerated from discovery document revision 20260726
5
+ * Regenerated from discovery document revision 20260809
6
+
7
+ ### v0.42.0 (2026-08-09)
8
+
9
+ * Regenerated from discovery document revision 20260802
6
10
 
7
11
  ### v0.41.0 (2026-07-05)
8
12
 
@@ -148,13 +148,13 @@ module Google
148
148
  end
149
149
 
150
150
  # The transcription of an audio part. For multi-speaker audio, each speaker
151
- # segment is a separate Part with its own AudioTranscription carrying the
152
- # speaker_label.
151
+ # segment is a separate `Part` with its own `AudioTranscription` carrying the `
152
+ # speaker_label`.
153
153
  class GoogleCloudAiplatformV1beta1AudioTranscription
154
154
  include Google::Apis::Core::Hashable
155
155
 
156
- # Optional. A label identifying the speaker of this audio segment (e.g. "spk_1",
157
- # "spk_2"). Present when diarization is set.
156
+ # Optional. A label identifying the speaker of this audio segment (e.g. `spk_1`,
157
+ # `spk_2`). Present when `diarization` is set.
158
158
  # Corresponds to the JSON property `speakerLabel`
159
159
  # @return [String]
160
160
  attr_accessor :speaker_label
@@ -164,8 +164,8 @@ module Google
164
164
  # @return [String]
165
165
  attr_accessor :text
166
166
 
167
- # Optional. Detailed word-level transcriptions and timing details. Present when
168
- # word_timestamp is set.
167
+ # Optional. Detailed word-level transcriptions and timing details. Present when `
168
+ # word_timestamp` is set.
169
169
  # Corresponds to the JSON property `words`
170
170
  # @return [Array<Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1AudioTranscriptionWordInfo>]
171
171
  attr_accessor :words
@@ -186,7 +186,8 @@ module Google
186
186
  class GoogleCloudAiplatformV1beta1AudioTranscriptionConfig
187
187
  include Google::Apis::Core::Hashable
188
188
 
189
- # Optional. A list of phrases to bias the ASR model towards.
189
+ # Optional. Deprecated: Use `custom_vocabulary` instead. A list of phrases to
190
+ # bias the speech recognition model towards.
190
191
  # Corresponds to the JSON property `adaptationPhrases`
191
192
  # @return [Array<String>]
192
193
  attr_accessor :adaptation_phrases
@@ -203,12 +204,20 @@ module Google
203
204
  attr_accessor :diarization
204
205
  alias_method :diarization?, :diarization
205
206
 
206
- # Indicates the language of the audio should be automatically detected.
207
+ # Deprecated: Use top-level `language_codes` instead. Indicates the language of
208
+ # the audio should be automatically detected.
207
209
  # Corresponds to the JSON property `languageAuto`
208
210
  # @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1AudioTranscriptionConfigLanguageAuto]
209
211
  attr_accessor :language_auto
210
212
 
211
- # Provides hints to the model about possible languages present in the audio.
213
+ # Optional. BCP-47 language codes providing hints about the languages present in
214
+ # the audio. If omitted or empty, defaults to automatic language detection.
215
+ # Corresponds to the JSON property `languageCodes`
216
+ # @return [Array<String>]
217
+ attr_accessor :language_codes
218
+
219
+ # Deprecated: Use top-level `language_codes` instead. Provides hints to the
220
+ # model about possible languages present in the audio.
212
221
  # Corresponds to the JSON property `languageHints`
213
222
  # @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1AudioTranscriptionConfigLanguageHints]
214
223
  attr_accessor :language_hints
@@ -229,12 +238,14 @@ module Google
229
238
  @custom_vocabulary = args[:custom_vocabulary] if args.key?(:custom_vocabulary)
230
239
  @diarization = args[:diarization] if args.key?(:diarization)
231
240
  @language_auto = args[:language_auto] if args.key?(:language_auto)
241
+ @language_codes = args[:language_codes] if args.key?(:language_codes)
232
242
  @language_hints = args[:language_hints] if args.key?(:language_hints)
233
243
  @word_timestamp = args[:word_timestamp] if args.key?(:word_timestamp)
234
244
  end
235
245
  end
236
246
 
237
- # Indicates the language of the audio should be automatically detected.
247
+ # Deprecated: Use top-level `language_codes` instead. Indicates the language of
248
+ # the audio should be automatically detected.
238
249
  class GoogleCloudAiplatformV1beta1AudioTranscriptionConfigLanguageAuto
239
250
  include Google::Apis::Core::Hashable
240
251
 
@@ -247,11 +258,13 @@ module Google
247
258
  end
248
259
  end
249
260
 
250
- # Provides hints to the model about possible languages present in the audio.
261
+ # Deprecated: Use top-level `language_codes` instead. Provides hints to the
262
+ # model about possible languages present in the audio.
251
263
  class GoogleCloudAiplatformV1beta1AudioTranscriptionConfigLanguageHints
252
264
  include Google::Apis::Core::Hashable
253
265
 
254
- # Required. BCP-47 language codes. At least one must be specified.
266
+ # Required. Deprecated: Use top-level `language_codes` instead. BCP-47 language
267
+ # codes. At least one must be specified.
255
268
  # Corresponds to the JSON property `languageCodes`
256
269
  # @return [Array<String>]
257
270
  attr_accessor :language_codes
@@ -2901,8 +2914,8 @@ module Google
2901
2914
  include Google::Apis::Core::Hashable
2902
2915
 
2903
2916
  # The transcription of an audio part. For multi-speaker audio, each speaker
2904
- # segment is a separate Part with its own AudioTranscription carrying the
2905
- # speaker_label.
2917
+ # segment is a separate `Part` with its own `AudioTranscription` carrying the `
2918
+ # speaker_label`.
2906
2919
  # Corresponds to the JSON property `audioTranscription`
2907
2920
  # @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1AudioTranscription]
2908
2921
  attr_accessor :audio_transcription
@@ -4549,6 +4562,12 @@ module Google
4549
4562
  # @return [String]
4550
4563
  attr_accessor :gcs_uri
4551
4564
 
4565
+ # Optional. The video output resolution. Supported values: "360p", "720p", "
4566
+ # 1080p", "4k".
4567
+ # Corresponds to the JSON property `resolution`
4568
+ # @return [String]
4569
+ attr_accessor :resolution
4570
+
4552
4571
  def initialize(**args)
4553
4572
  update!(**args)
4554
4573
  end
@@ -4559,6 +4578,7 @@ module Google
4559
4578
  @delivery = args[:delivery] if args.key?(:delivery)
4560
4579
  @duration = args[:duration] if args.key?(:duration)
4561
4580
  @gcs_uri = args[:gcs_uri] if args.key?(:gcs_uri)
4581
+ @resolution = args[:resolution] if args.key?(:resolution)
4562
4582
  end
4563
4583
  end
4564
4584
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module FirebasemlV2beta
18
18
  # Version of the google-apis-firebaseml_v2beta gem
19
- GEM_VERSION = "0.42.0"
19
+ GEM_VERSION = "0.43.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260726"
25
+ REVISION = "20260809"
26
26
  end
27
27
  end
28
28
  end
@@ -789,6 +789,7 @@ module Google
789
789
  property :diarization, as: 'diarization'
790
790
  property :language_auto, as: 'languageAuto', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1AudioTranscriptionConfigLanguageAuto, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1AudioTranscriptionConfigLanguageAuto::Representation
791
791
 
792
+ collection :language_codes, as: 'languageCodes'
792
793
  property :language_hints, as: 'languageHints', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1AudioTranscriptionConfigLanguageHints, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1AudioTranscriptionConfigLanguageHints::Representation
793
794
 
794
795
  property :word_timestamp, as: 'wordTimestamp'
@@ -1964,6 +1965,7 @@ module Google
1964
1965
  property :delivery, as: 'delivery'
1965
1966
  property :duration, as: 'duration'
1966
1967
  property :gcs_uri, as: 'gcsUri'
1968
+ property :resolution, as: 'resolution'
1967
1969
  end
1968
1970
  end
1969
1971
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-firebaseml_v2beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.42.0
4
+ version: 0.43.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-firebaseml_v2beta/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseml_v2beta/v0.42.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseml_v2beta/v0.43.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebaseml_v2beta
62
62
  rdoc_options: []
63
63
  require_paths: