aws-sdk-polly 1.122.0 → 1.123.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: a7a0158ace5a73c3d76ac2da6a84a8d2bac9fcb889dd47e944dddfc5bfe7d6e4
4
- data.tar.gz: f9e18c3fdb5424cbafdf43602216229be13c162fb287c6d951b1b69d1e84bced
3
+ metadata.gz: 996f50d8553fffbdba2d31e0cf95347266c8c43d24341dad1a9113ce91e03e70
4
+ data.tar.gz: b65167c473503b5a4468700576b397568e8e4b08294fede3b0dd6293b373d99b
5
5
  SHA512:
6
- metadata.gz: ba6154ac8cb7d4040ca9d99c596780e11587b8cd506345205ff33e0b4aa284088d984f633abfa8b632d4989e95436e1e21f68270fc85aa68ce03c3c34e142fca
7
- data.tar.gz: 40998ba663f5c4e5649f28235c57dd4e1e289e632e369f5604c9cd9cea5a1b352bd06c631630d8a13d7c3582a330942e42a1bacf328dc44c129f13467484ff37
6
+ metadata.gz: 8bfc60f1d72102bd32c50ca338a1fc75a1907b62c8e7f636d7c91d89e991c3a5074b38b0edb7302cc173e48331051a791b8d2af9b72def4b53a7249169864fad
7
+ data.tar.gz: b47b5d071e22950e211e69f6f4ad7141e988d6dde9c6c0abd70a27ec9d98c4dd3b5b103033bb46feac9fdde6e53d6576ff2caf6c643ae9b0c79790e0323415e9
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.123.0 (2026-03-25)
5
+ ------------------
6
+
7
+ * Feature - Add support for Mu-law and A-law codecs for output format
8
+
4
9
  1.122.0 (2026-03-19)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.122.0
1
+ 1.123.0
@@ -566,7 +566,7 @@ module Aws::Polly
566
566
  # engine: "standard", # required, accepts standard, neural, long-form, generative
567
567
  # language_code: "arb", # accepts arb, cmn-CN, cy-GB, da-DK, de-DE, en-AU, en-GB, en-GB-WLS, en-IN, en-US, es-ES, es-MX, es-US, fr-CA, fr-FR, is-IS, it-IT, ja-JP, hi-IN, ko-KR, nb-NO, nl-NL, pl-PL, pt-BR, pt-PT, ro-RO, ru-RU, sv-SE, tr-TR, en-NZ, en-ZA, ca-ES, de-AT, yue-CN, ar-AE, fi-FI, en-IE, nl-BE, fr-BE, cs-CZ, de-CH, en-SG
568
568
  # lexicon_names: ["LexiconName"],
569
- # output_format: "json", # required, accepts json, mp3, ogg_opus, ogg_vorbis, pcm
569
+ # output_format: "json", # required, accepts json, mp3, ogg_opus, ogg_vorbis, pcm, mulaw, alaw
570
570
  # sample_rate: "SampleRate",
571
571
  # voice_id: "Aditi", # required, accepts Aditi, Amy, Astrid, Bianca, Brian, Camila, Carla, Carmen, Celine, Chantal, Conchita, Cristiano, Dora, Emma, Enrique, Ewa, Filiz, Gabrielle, Geraint, Giorgio, Gwyneth, Hans, Ines, Ivy, Jacek, Jan, Joanna, Joey, Justin, Karl, Kendra, Kevin, Kimberly, Lea, Liv, Lotte, Lucia, Lupe, Mads, Maja, Marlene, Mathieu, Matthew, Maxim, Mia, Miguel, Mizuki, Naja, Nicole, Olivia, Penelope, Raveena, Ricardo, Ruben, Russell, Salli, Seoyeon, Takumi, Tatyana, Vicki, Vitoria, Zeina, Zhiyu, Aria, Ayanda, Arlet, Hannah, Arthur, Daniel, Liam, Pedro, Kajal, Hiujin, Laura, Elin, Ida, Suvi, Ola, Hala, Andres, Sergio, Remi, Adriano, Thiago, Ruth, Stephen, Kazuha, Tomoko, Niamh, Sofie, Lisa, Isabelle, Zayd, Danielle, Gregory, Burcu, Jitka, Sabrina, Jasmine, Jihye, Ambre, Beatrice, Florian, Lennart, Lorenzo, Tiffany
572
572
  # input_event_stream_hander: EventStreams::StartSpeechSynthesisStreamActionStream.new,
@@ -657,7 +657,7 @@ module Aws::Polly
657
657
  tracer: tracer
658
658
  )
659
659
  context[:gem_name] = 'aws-sdk-polly'
660
- context[:gem_version] = '1.122.0'
660
+ context[:gem_version] = '1.123.0'
661
661
  Seahorse::Client::Request.new(handlers, context)
662
662
  end
663
663
 
@@ -747,7 +747,7 @@ module Aws::Polly
747
747
  # resp.synthesis_task.sns_topic_arn #=> String
748
748
  # resp.synthesis_task.lexicon_names #=> Array
749
749
  # resp.synthesis_task.lexicon_names[0] #=> String
750
- # resp.synthesis_task.output_format #=> String, one of "json", "mp3", "ogg_opus", "ogg_vorbis", "pcm"
750
+ # resp.synthesis_task.output_format #=> String, one of "json", "mp3", "ogg_opus", "ogg_vorbis", "pcm", "mulaw", "alaw"
751
751
  # resp.synthesis_task.sample_rate #=> String
752
752
  # resp.synthesis_task.speech_mark_types #=> Array
753
753
  # resp.synthesis_task.speech_mark_types[0] #=> String, one of "sentence", "ssml", "viseme", "word"
@@ -876,7 +876,7 @@ module Aws::Polly
876
876
  # resp.synthesis_tasks[0].sns_topic_arn #=> String
877
877
  # resp.synthesis_tasks[0].lexicon_names #=> Array
878
878
  # resp.synthesis_tasks[0].lexicon_names[0] #=> String
879
- # resp.synthesis_tasks[0].output_format #=> String, one of "json", "mp3", "ogg_opus", "ogg_vorbis", "pcm"
879
+ # resp.synthesis_tasks[0].output_format #=> String, one of "json", "mp3", "ogg_opus", "ogg_vorbis", "pcm", "mulaw", "alaw"
880
880
  # resp.synthesis_tasks[0].sample_rate #=> String
881
881
  # resp.synthesis_tasks[0].speech_mark_types #=> Array
882
882
  # resp.synthesis_tasks[0].speech_mark_types[0] #=> String, one of "sentence", "ssml", "viseme", "word"
@@ -1038,7 +1038,7 @@ module Aws::Polly
1038
1038
  # engine: "standard", # accepts standard, neural, long-form, generative
1039
1039
  # language_code: "arb", # accepts arb, cmn-CN, cy-GB, da-DK, de-DE, en-AU, en-GB, en-GB-WLS, en-IN, en-US, es-ES, es-MX, es-US, fr-CA, fr-FR, is-IS, it-IT, ja-JP, hi-IN, ko-KR, nb-NO, nl-NL, pl-PL, pt-BR, pt-PT, ro-RO, ru-RU, sv-SE, tr-TR, en-NZ, en-ZA, ca-ES, de-AT, yue-CN, ar-AE, fi-FI, en-IE, nl-BE, fr-BE, cs-CZ, de-CH, en-SG
1040
1040
  # lexicon_names: ["LexiconName"],
1041
- # output_format: "json", # required, accepts json, mp3, ogg_opus, ogg_vorbis, pcm
1041
+ # output_format: "json", # required, accepts json, mp3, ogg_opus, ogg_vorbis, pcm, mulaw, alaw
1042
1042
  # output_s3_bucket_name: "OutputS3BucketName", # required
1043
1043
  # output_s3_key_prefix: "OutputS3KeyPrefix",
1044
1044
  # sample_rate: "SampleRate",
@@ -1061,7 +1061,7 @@ module Aws::Polly
1061
1061
  # resp.synthesis_task.sns_topic_arn #=> String
1062
1062
  # resp.synthesis_task.lexicon_names #=> Array
1063
1063
  # resp.synthesis_task.lexicon_names[0] #=> String
1064
- # resp.synthesis_task.output_format #=> String, one of "json", "mp3", "ogg_opus", "ogg_vorbis", "pcm"
1064
+ # resp.synthesis_task.output_format #=> String, one of "json", "mp3", "ogg_opus", "ogg_vorbis", "pcm", "mulaw", "alaw"
1065
1065
  # resp.synthesis_task.sample_rate #=> String
1066
1066
  # resp.synthesis_task.speech_mark_types #=> Array
1067
1067
  # resp.synthesis_task.speech_mark_types[0] #=> String, one of "sentence", "ssml", "viseme", "word"
@@ -1210,7 +1210,7 @@ module Aws::Polly
1210
1210
  # engine: "standard", # accepts standard, neural, long-form, generative
1211
1211
  # language_code: "arb", # accepts arb, cmn-CN, cy-GB, da-DK, de-DE, en-AU, en-GB, en-GB-WLS, en-IN, en-US, es-ES, es-MX, es-US, fr-CA, fr-FR, is-IS, it-IT, ja-JP, hi-IN, ko-KR, nb-NO, nl-NL, pl-PL, pt-BR, pt-PT, ro-RO, ru-RU, sv-SE, tr-TR, en-NZ, en-ZA, ca-ES, de-AT, yue-CN, ar-AE, fi-FI, en-IE, nl-BE, fr-BE, cs-CZ, de-CH, en-SG
1212
1212
  # lexicon_names: ["LexiconName"],
1213
- # output_format: "json", # required, accepts json, mp3, ogg_opus, ogg_vorbis, pcm
1213
+ # output_format: "json", # required, accepts json, mp3, ogg_opus, ogg_vorbis, pcm, mulaw, alaw
1214
1214
  # sample_rate: "SampleRate",
1215
1215
  # speech_mark_types: ["sentence"], # accepts sentence, ssml, viseme, word
1216
1216
  # text: "Text", # required
@@ -1251,7 +1251,7 @@ module Aws::Polly
1251
1251
  tracer: tracer
1252
1252
  )
1253
1253
  context[:gem_name] = 'aws-sdk-polly'
1254
- context[:gem_version] = '1.122.0'
1254
+ context[:gem_version] = '1.123.0'
1255
1255
  Seahorse::Client::Request.new(handlers, context)
1256
1256
  end
1257
1257
 
data/lib/aws-sdk-polly.rb CHANGED
@@ -72,7 +72,7 @@ module Aws::Polly
72
72
  autoload :AsyncClient, 'aws-sdk-polly/async_client'
73
73
  autoload :EventStreams, 'aws-sdk-polly/event_streams'
74
74
 
75
- GEM_VERSION = '1.122.0'
75
+ GEM_VERSION = '1.123.0'
76
76
 
77
77
  end
78
78
 
data/sig/async_client.rbs CHANGED
@@ -76,7 +76,7 @@ module Aws
76
76
  engine: ("standard" | "neural" | "long-form" | "generative"),
77
77
  ?language_code: ("arb" | "cmn-CN" | "cy-GB" | "da-DK" | "de-DE" | "en-AU" | "en-GB" | "en-GB-WLS" | "en-IN" | "en-US" | "es-ES" | "es-MX" | "es-US" | "fr-CA" | "fr-FR" | "is-IS" | "it-IT" | "ja-JP" | "hi-IN" | "ko-KR" | "nb-NO" | "nl-NL" | "pl-PL" | "pt-BR" | "pt-PT" | "ro-RO" | "ru-RU" | "sv-SE" | "tr-TR" | "en-NZ" | "en-ZA" | "ca-ES" | "de-AT" | "yue-CN" | "ar-AE" | "fi-FI" | "en-IE" | "nl-BE" | "fr-BE" | "cs-CZ" | "de-CH" | "en-SG"),
78
78
  ?lexicon_names: Array[::String],
79
- output_format: ("json" | "mp3" | "ogg_opus" | "ogg_vorbis" | "pcm"),
79
+ output_format: ("json" | "mp3" | "ogg_opus" | "ogg_vorbis" | "pcm" | "mulaw" | "alaw"),
80
80
  ?sample_rate: ::String,
81
81
  voice_id: ("Aditi" | "Amy" | "Astrid" | "Bianca" | "Brian" | "Camila" | "Carla" | "Carmen" | "Celine" | "Chantal" | "Conchita" | "Cristiano" | "Dora" | "Emma" | "Enrique" | "Ewa" | "Filiz" | "Gabrielle" | "Geraint" | "Giorgio" | "Gwyneth" | "Hans" | "Ines" | "Ivy" | "Jacek" | "Jan" | "Joanna" | "Joey" | "Justin" | "Karl" | "Kendra" | "Kevin" | "Kimberly" | "Lea" | "Liv" | "Lotte" | "Lucia" | "Lupe" | "Mads" | "Maja" | "Marlene" | "Mathieu" | "Matthew" | "Maxim" | "Mia" | "Miguel" | "Mizuki" | "Naja" | "Nicole" | "Olivia" | "Penelope" | "Raveena" | "Ricardo" | "Ruben" | "Russell" | "Salli" | "Seoyeon" | "Takumi" | "Tatyana" | "Vicki" | "Vitoria" | "Zeina" | "Zhiyu" | "Aria" | "Ayanda" | "Arlet" | "Hannah" | "Arthur" | "Daniel" | "Liam" | "Pedro" | "Kajal" | "Hiujin" | "Laura" | "Elin" | "Ida" | "Suvi" | "Ola" | "Hala" | "Andres" | "Sergio" | "Remi" | "Adriano" | "Thiago" | "Ruth" | "Stephen" | "Kazuha" | "Tomoko" | "Niamh" | "Sofie" | "Lisa" | "Isabelle" | "Zayd" | "Danielle" | "Gregory" | "Burcu" | "Jitka" | "Sabrina" | "Jasmine" | "Jihye" | "Ambre" | "Beatrice" | "Florian" | "Lennart" | "Lorenzo" | "Tiffany"),
82
82
  input_event_stream_handler: untyped,
data/sig/client.rbs CHANGED
@@ -168,7 +168,7 @@ module Aws
168
168
  ?engine: ("standard" | "neural" | "long-form" | "generative"),
169
169
  ?language_code: ("arb" | "cmn-CN" | "cy-GB" | "da-DK" | "de-DE" | "en-AU" | "en-GB" | "en-GB-WLS" | "en-IN" | "en-US" | "es-ES" | "es-MX" | "es-US" | "fr-CA" | "fr-FR" | "is-IS" | "it-IT" | "ja-JP" | "hi-IN" | "ko-KR" | "nb-NO" | "nl-NL" | "pl-PL" | "pt-BR" | "pt-PT" | "ro-RO" | "ru-RU" | "sv-SE" | "tr-TR" | "en-NZ" | "en-ZA" | "ca-ES" | "de-AT" | "yue-CN" | "ar-AE" | "fi-FI" | "en-IE" | "nl-BE" | "fr-BE" | "cs-CZ" | "de-CH" | "en-SG"),
170
170
  ?lexicon_names: Array[::String],
171
- output_format: ("json" | "mp3" | "ogg_opus" | "ogg_vorbis" | "pcm"),
171
+ output_format: ("json" | "mp3" | "ogg_opus" | "ogg_vorbis" | "pcm" | "mulaw" | "alaw"),
172
172
  output_s3_bucket_name: ::String,
173
173
  ?output_s3_key_prefix: ::String,
174
174
  ?sample_rate: ::String,
@@ -191,7 +191,7 @@ module Aws
191
191
  ?engine: ("standard" | "neural" | "long-form" | "generative"),
192
192
  ?language_code: ("arb" | "cmn-CN" | "cy-GB" | "da-DK" | "de-DE" | "en-AU" | "en-GB" | "en-GB-WLS" | "en-IN" | "en-US" | "es-ES" | "es-MX" | "es-US" | "fr-CA" | "fr-FR" | "is-IS" | "it-IT" | "ja-JP" | "hi-IN" | "ko-KR" | "nb-NO" | "nl-NL" | "pl-PL" | "pt-BR" | "pt-PT" | "ro-RO" | "ru-RU" | "sv-SE" | "tr-TR" | "en-NZ" | "en-ZA" | "ca-ES" | "de-AT" | "yue-CN" | "ar-AE" | "fi-FI" | "en-IE" | "nl-BE" | "fr-BE" | "cs-CZ" | "de-CH" | "en-SG"),
193
193
  ?lexicon_names: Array[::String],
194
- output_format: ("json" | "mp3" | "ogg_opus" | "ogg_vorbis" | "pcm"),
194
+ output_format: ("json" | "mp3" | "ogg_opus" | "ogg_vorbis" | "pcm" | "mulaw" | "alaw"),
195
195
  ?sample_rate: ::String,
196
196
  ?speech_mark_types: Array[("sentence" | "ssml" | "viseme" | "word")],
197
197
  text: ::String,
data/sig/types.rbs CHANGED
@@ -220,7 +220,7 @@ module Aws::Polly
220
220
  attr_accessor engine: ("standard" | "neural" | "long-form" | "generative")
221
221
  attr_accessor language_code: ("arb" | "cmn-CN" | "cy-GB" | "da-DK" | "de-DE" | "en-AU" | "en-GB" | "en-GB-WLS" | "en-IN" | "en-US" | "es-ES" | "es-MX" | "es-US" | "fr-CA" | "fr-FR" | "is-IS" | "it-IT" | "ja-JP" | "hi-IN" | "ko-KR" | "nb-NO" | "nl-NL" | "pl-PL" | "pt-BR" | "pt-PT" | "ro-RO" | "ru-RU" | "sv-SE" | "tr-TR" | "en-NZ" | "en-ZA" | "ca-ES" | "de-AT" | "yue-CN" | "ar-AE" | "fi-FI" | "en-IE" | "nl-BE" | "fr-BE" | "cs-CZ" | "de-CH" | "en-SG")
222
222
  attr_accessor lexicon_names: ::Array[::String]
223
- attr_accessor output_format: ("json" | "mp3" | "ogg_opus" | "ogg_vorbis" | "pcm")
223
+ attr_accessor output_format: ("json" | "mp3" | "ogg_opus" | "ogg_vorbis" | "pcm" | "mulaw" | "alaw")
224
224
  attr_accessor sample_rate: ::String
225
225
  attr_accessor voice_id: ("Aditi" | "Amy" | "Astrid" | "Bianca" | "Brian" | "Camila" | "Carla" | "Carmen" | "Celine" | "Chantal" | "Conchita" | "Cristiano" | "Dora" | "Emma" | "Enrique" | "Ewa" | "Filiz" | "Gabrielle" | "Geraint" | "Giorgio" | "Gwyneth" | "Hans" | "Ines" | "Ivy" | "Jacek" | "Jan" | "Joanna" | "Joey" | "Justin" | "Karl" | "Kendra" | "Kevin" | "Kimberly" | "Lea" | "Liv" | "Lotte" | "Lucia" | "Lupe" | "Mads" | "Maja" | "Marlene" | "Mathieu" | "Matthew" | "Maxim" | "Mia" | "Miguel" | "Mizuki" | "Naja" | "Nicole" | "Olivia" | "Penelope" | "Raveena" | "Ricardo" | "Ruben" | "Russell" | "Salli" | "Seoyeon" | "Takumi" | "Tatyana" | "Vicki" | "Vitoria" | "Zeina" | "Zhiyu" | "Aria" | "Ayanda" | "Arlet" | "Hannah" | "Arthur" | "Daniel" | "Liam" | "Pedro" | "Kajal" | "Hiujin" | "Laura" | "Elin" | "Ida" | "Suvi" | "Ola" | "Hala" | "Andres" | "Sergio" | "Remi" | "Adriano" | "Thiago" | "Ruth" | "Stephen" | "Kazuha" | "Tomoko" | "Niamh" | "Sofie" | "Lisa" | "Isabelle" | "Zayd" | "Danielle" | "Gregory" | "Burcu" | "Jitka" | "Sabrina" | "Jasmine" | "Jihye" | "Ambre" | "Beatrice" | "Florian" | "Lennart" | "Lorenzo" | "Tiffany")
226
226
  attr_accessor action_stream: Types::StartSpeechSynthesisStreamActionStream
@@ -236,7 +236,7 @@ module Aws::Polly
236
236
  attr_accessor engine: ("standard" | "neural" | "long-form" | "generative")
237
237
  attr_accessor language_code: ("arb" | "cmn-CN" | "cy-GB" | "da-DK" | "de-DE" | "en-AU" | "en-GB" | "en-GB-WLS" | "en-IN" | "en-US" | "es-ES" | "es-MX" | "es-US" | "fr-CA" | "fr-FR" | "is-IS" | "it-IT" | "ja-JP" | "hi-IN" | "ko-KR" | "nb-NO" | "nl-NL" | "pl-PL" | "pt-BR" | "pt-PT" | "ro-RO" | "ru-RU" | "sv-SE" | "tr-TR" | "en-NZ" | "en-ZA" | "ca-ES" | "de-AT" | "yue-CN" | "ar-AE" | "fi-FI" | "en-IE" | "nl-BE" | "fr-BE" | "cs-CZ" | "de-CH" | "en-SG")
238
238
  attr_accessor lexicon_names: ::Array[::String]
239
- attr_accessor output_format: ("json" | "mp3" | "ogg_opus" | "ogg_vorbis" | "pcm")
239
+ attr_accessor output_format: ("json" | "mp3" | "ogg_opus" | "ogg_vorbis" | "pcm" | "mulaw" | "alaw")
240
240
  attr_accessor output_s3_bucket_name: ::String
241
241
  attr_accessor output_s3_key_prefix: ::String
242
242
  attr_accessor sample_rate: ::String
@@ -269,7 +269,7 @@ module Aws::Polly
269
269
  attr_accessor request_characters: ::Integer
270
270
  attr_accessor sns_topic_arn: ::String
271
271
  attr_accessor lexicon_names: ::Array[::String]
272
- attr_accessor output_format: ("json" | "mp3" | "ogg_opus" | "ogg_vorbis" | "pcm")
272
+ attr_accessor output_format: ("json" | "mp3" | "ogg_opus" | "ogg_vorbis" | "pcm" | "mulaw" | "alaw")
273
273
  attr_accessor sample_rate: ::String
274
274
  attr_accessor speech_mark_types: ::Array[("sentence" | "ssml" | "viseme" | "word")]
275
275
  attr_accessor text_type: ("ssml" | "text")
@@ -287,7 +287,7 @@ module Aws::Polly
287
287
  attr_accessor engine: ("standard" | "neural" | "long-form" | "generative")
288
288
  attr_accessor language_code: ("arb" | "cmn-CN" | "cy-GB" | "da-DK" | "de-DE" | "en-AU" | "en-GB" | "en-GB-WLS" | "en-IN" | "en-US" | "es-ES" | "es-MX" | "es-US" | "fr-CA" | "fr-FR" | "is-IS" | "it-IT" | "ja-JP" | "hi-IN" | "ko-KR" | "nb-NO" | "nl-NL" | "pl-PL" | "pt-BR" | "pt-PT" | "ro-RO" | "ru-RU" | "sv-SE" | "tr-TR" | "en-NZ" | "en-ZA" | "ca-ES" | "de-AT" | "yue-CN" | "ar-AE" | "fi-FI" | "en-IE" | "nl-BE" | "fr-BE" | "cs-CZ" | "de-CH" | "en-SG")
289
289
  attr_accessor lexicon_names: ::Array[::String]
290
- attr_accessor output_format: ("json" | "mp3" | "ogg_opus" | "ogg_vorbis" | "pcm")
290
+ attr_accessor output_format: ("json" | "mp3" | "ogg_opus" | "ogg_vorbis" | "pcm" | "mulaw" | "alaw")
291
291
  attr_accessor sample_rate: ::String
292
292
  attr_accessor speech_mark_types: ::Array[("sentence" | "ssml" | "viseme" | "word")]
293
293
  attr_accessor text: ::String
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-polly
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.122.0
4
+ version: 1.123.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services