aws-sdk-polly 1.111.0 → 1.112.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: f19996fae9d4b814af19f18ce0dc1c0bc4e389ce21737cea8749ac8696d09cde
4
- data.tar.gz: 63166e13d372bad790820306e252f9025236166852d655dd331e5afed25db941
3
+ metadata.gz: 1e6d28efb2bbca0a7eefdd5bacc48ec1eac754130c2a5930e6f1cfe4364a65da
4
+ data.tar.gz: 23e58f5b4d8f22c6e9201cdf61fe54eb8f54b850877329d9a186de27d5a913ce
5
5
  SHA512:
6
- metadata.gz: fafd42946a40acfebc08b74de9a45731c643d8343fb0ddbcad4a8d91d5b57c9fbea294e52150a649a6b883698c389f644a7089379407feaeaa09e9996e7af8e5
7
- data.tar.gz: 5b7329d1e9b6e934f973bd30ba450c1833ab2d645f1dfa362776a4bee6412247352a08077206e365c4d595a4a6c6060df355f6cb159f0154326de8674a8bc5b5
6
+ metadata.gz: 42a3d86e6e2b2398a35aa5b2ebdf2104b2b936e9903fec0be166093407bfd841800686367ae17dcfbbb4bed522a3502d0a74a80d5242f715fa104bca7755187f
7
+ data.tar.gz: 7da9212f431268a737f0f2871635e18ab12eb8bbf2f8dc67792cb21b48a2daf85785ede6c454b40eb6cc020d8b04d62b25308dbccd86b84f8aa7ec1d81564b3d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.112.0 (2025-08-19)
5
+ ------------------
6
+
7
+ * Feature - Added support for new output format - Opus.
8
+
4
9
  1.111.0 (2025-08-04)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.111.0
1
+ 1.112.0
@@ -736,7 +736,7 @@ module Aws::Polly
736
736
  # resp.synthesis_task.sns_topic_arn #=> String
737
737
  # resp.synthesis_task.lexicon_names #=> Array
738
738
  # resp.synthesis_task.lexicon_names[0] #=> String
739
- # resp.synthesis_task.output_format #=> String, one of "json", "mp3", "ogg_vorbis", "pcm"
739
+ # resp.synthesis_task.output_format #=> String, one of "json", "mp3", "ogg_opus", "ogg_vorbis", "pcm"
740
740
  # resp.synthesis_task.sample_rate #=> String
741
741
  # resp.synthesis_task.speech_mark_types #=> Array
742
742
  # resp.synthesis_task.speech_mark_types[0] #=> String, one of "sentence", "ssml", "viseme", "word"
@@ -865,7 +865,7 @@ module Aws::Polly
865
865
  # resp.synthesis_tasks[0].sns_topic_arn #=> String
866
866
  # resp.synthesis_tasks[0].lexicon_names #=> Array
867
867
  # resp.synthesis_tasks[0].lexicon_names[0] #=> String
868
- # resp.synthesis_tasks[0].output_format #=> String, one of "json", "mp3", "ogg_vorbis", "pcm"
868
+ # resp.synthesis_tasks[0].output_format #=> String, one of "json", "mp3", "ogg_opus", "ogg_vorbis", "pcm"
869
869
  # resp.synthesis_tasks[0].sample_rate #=> String
870
870
  # resp.synthesis_tasks[0].speech_mark_types #=> Array
871
871
  # resp.synthesis_tasks[0].speech_mark_types[0] #=> String, one of "sentence", "ssml", "viseme", "word"
@@ -1023,7 +1023,7 @@ module Aws::Polly
1023
1023
  # engine: "standard", # accepts standard, neural, long-form, generative
1024
1024
  # 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
1025
1025
  # lexicon_names: ["LexiconName"],
1026
- # output_format: "json", # required, accepts json, mp3, ogg_vorbis, pcm
1026
+ # output_format: "json", # required, accepts json, mp3, ogg_opus, ogg_vorbis, pcm
1027
1027
  # output_s3_bucket_name: "OutputS3BucketName", # required
1028
1028
  # output_s3_key_prefix: "OutputS3KeyPrefix",
1029
1029
  # sample_rate: "SampleRate",
@@ -1046,7 +1046,7 @@ module Aws::Polly
1046
1046
  # resp.synthesis_task.sns_topic_arn #=> String
1047
1047
  # resp.synthesis_task.lexicon_names #=> Array
1048
1048
  # resp.synthesis_task.lexicon_names[0] #=> String
1049
- # resp.synthesis_task.output_format #=> String, one of "json", "mp3", "ogg_vorbis", "pcm"
1049
+ # resp.synthesis_task.output_format #=> String, one of "json", "mp3", "ogg_opus", "ogg_vorbis", "pcm"
1050
1050
  # resp.synthesis_task.sample_rate #=> String
1051
1051
  # resp.synthesis_task.speech_mark_types #=> Array
1052
1052
  # resp.synthesis_task.speech_mark_types[0] #=> String, one of "sentence", "ssml", "viseme", "word"
@@ -1083,12 +1083,6 @@ module Aws::Polly
1083
1083
  # Amazon Polly voices and which voices are available for each engine,
1084
1084
  # see [Available Voices][1].
1085
1085
  #
1086
- # Type: String
1087
- #
1088
- # Valid Values: `standard` \| `neural` \| `long-form` \| `generative`
1089
- #
1090
- # Required: Yes
1091
- #
1092
1086
  #
1093
1087
  #
1094
1088
  # [1]: https://docs.aws.amazon.com/polly/latest/dg/voicelist.html
@@ -1131,10 +1125,10 @@ module Aws::Polly
1131
1125
  # The audio frequency specified in Hz.
1132
1126
  #
1133
1127
  # The valid values for mp3 and ogg\_vorbis are "8000", "16000",
1134
- # "22050", and "24000". The default value for standard voices is
1135
- # "22050". The default value for neural voices is "24000". The
1136
- # default value for long-form voices is "24000". The default value for
1137
- # generative voices is "24000".
1128
+ # "22050", "24000", "44100" and "48000". The default value for
1129
+ # standard voices is "22050". The default value for neural voices is
1130
+ # "24000". The default value for long-form voices is "24000". The
1131
+ # default value for generative voices is "24000".
1138
1132
  #
1139
1133
  # Valid values for pcm are "8000" and "16000" The default value is
1140
1134
  # "16000".
@@ -1197,7 +1191,7 @@ module Aws::Polly
1197
1191
  # engine: "standard", # accepts standard, neural, long-form, generative
1198
1192
  # 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
1199
1193
  # lexicon_names: ["LexiconName"],
1200
- # output_format: "json", # required, accepts json, mp3, ogg_vorbis, pcm
1194
+ # output_format: "json", # required, accepts json, mp3, ogg_opus, ogg_vorbis, pcm
1201
1195
  # sample_rate: "SampleRate",
1202
1196
  # speech_mark_types: ["sentence"], # accepts sentence, ssml, viseme, word
1203
1197
  # text: "Text", # required
@@ -1238,7 +1232,7 @@ module Aws::Polly
1238
1232
  tracer: tracer
1239
1233
  )
1240
1234
  context[:gem_name] = 'aws-sdk-polly'
1241
- context[:gem_version] = '1.111.0'
1235
+ context[:gem_version] = '1.112.0'
1242
1236
  Seahorse::Client::Request.new(handlers, context)
1243
1237
  end
1244
1238
 
@@ -827,12 +827,6 @@ module Aws::Polly
827
827
  # Amazon Polly voices and which voices are available for each engine,
828
828
  # see [Available Voices][1].
829
829
  #
830
- # Type: String
831
- #
832
- # Valid Values: `standard` \| `neural` \| `long-form` \| `generative`
833
- #
834
- # Required: Yes
835
- #
836
830
  #
837
831
  #
838
832
  # [1]: https://docs.aws.amazon.com/polly/latest/dg/voicelist.html
@@ -879,10 +873,10 @@ module Aws::Polly
879
873
  # The audio frequency specified in Hz.
880
874
  #
881
875
  # The valid values for mp3 and ogg\_vorbis are "8000", "16000",
882
- # "22050", and "24000". The default value for standard voices is
883
- # "22050". The default value for neural voices is "24000". The
884
- # default value for long-form voices is "24000". The default value
885
- # for generative voices is "24000".
876
+ # "22050", "24000", "44100" and "48000". The default value for
877
+ # standard voices is "22050". The default value for neural voices is
878
+ # "24000". The default value for long-form voices is "24000". The
879
+ # default value for generative voices is "24000".
886
880
  #
887
881
  # Valid values for pcm are "8000" and "16000" The default value is
888
882
  # "16000".
data/lib/aws-sdk-polly.rb CHANGED
@@ -54,7 +54,7 @@ module Aws::Polly
54
54
  autoload :EndpointProvider, 'aws-sdk-polly/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-polly/endpoints'
56
56
 
57
- GEM_VERSION = '1.111.0'
57
+ GEM_VERSION = '1.112.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -165,7 +165,7 @@ module Aws
165
165
  ?engine: ("standard" | "neural" | "long-form" | "generative"),
166
166
  ?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"),
167
167
  ?lexicon_names: Array[::String],
168
- output_format: ("json" | "mp3" | "ogg_vorbis" | "pcm"),
168
+ output_format: ("json" | "mp3" | "ogg_opus" | "ogg_vorbis" | "pcm"),
169
169
  output_s3_bucket_name: ::String,
170
170
  ?output_s3_key_prefix: ::String,
171
171
  ?sample_rate: ::String,
@@ -188,7 +188,7 @@ module Aws
188
188
  ?engine: ("standard" | "neural" | "long-form" | "generative"),
189
189
  ?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"),
190
190
  ?lexicon_names: Array[::String],
191
- output_format: ("json" | "mp3" | "ogg_vorbis" | "pcm"),
191
+ output_format: ("json" | "mp3" | "ogg_opus" | "ogg_vorbis" | "pcm"),
192
192
  ?sample_rate: ::String,
193
193
  ?speech_mark_types: Array[("sentence" | "ssml" | "viseme" | "word")],
194
194
  text: ::String,
data/sig/types.rbs CHANGED
@@ -195,7 +195,7 @@ module Aws::Polly
195
195
  attr_accessor engine: ("standard" | "neural" | "long-form" | "generative")
196
196
  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")
197
197
  attr_accessor lexicon_names: ::Array[::String]
198
- attr_accessor output_format: ("json" | "mp3" | "ogg_vorbis" | "pcm")
198
+ attr_accessor output_format: ("json" | "mp3" | "ogg_opus" | "ogg_vorbis" | "pcm")
199
199
  attr_accessor output_s3_bucket_name: ::String
200
200
  attr_accessor output_s3_key_prefix: ::String
201
201
  attr_accessor sample_rate: ::String
@@ -222,7 +222,7 @@ module Aws::Polly
222
222
  attr_accessor request_characters: ::Integer
223
223
  attr_accessor sns_topic_arn: ::String
224
224
  attr_accessor lexicon_names: ::Array[::String]
225
- attr_accessor output_format: ("json" | "mp3" | "ogg_vorbis" | "pcm")
225
+ attr_accessor output_format: ("json" | "mp3" | "ogg_opus" | "ogg_vorbis" | "pcm")
226
226
  attr_accessor sample_rate: ::String
227
227
  attr_accessor speech_mark_types: ::Array[("sentence" | "ssml" | "viseme" | "word")]
228
228
  attr_accessor text_type: ("ssml" | "text")
@@ -240,7 +240,7 @@ module Aws::Polly
240
240
  attr_accessor engine: ("standard" | "neural" | "long-form" | "generative")
241
241
  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")
242
242
  attr_accessor lexicon_names: ::Array[::String]
243
- attr_accessor output_format: ("json" | "mp3" | "ogg_vorbis" | "pcm")
243
+ attr_accessor output_format: ("json" | "mp3" | "ogg_opus" | "ogg_vorbis" | "pcm")
244
244
  attr_accessor sample_rate: ::String
245
245
  attr_accessor speech_mark_types: ::Array[("sentence" | "ssml" | "viseme" | "word")]
246
246
  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.111.0
4
+ version: 1.112.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services