aws-sdk-lexmodelsv2 1.58.0 → 1.60.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: 57134db1d24ce4b4595326a3ab4c2e84ef047a92b8ffca81df68d99e9f9a42f1
4
- data.tar.gz: cbfa2e3d87422a3cc2629d51518b9c01c6befeb55e27711e42e3626a30e525c8
3
+ metadata.gz: d0755b4a62cb4a7319109a18b25a887f6f55d219992db7de3e9a8475d79c489b
4
+ data.tar.gz: 330113efae04392670e50e60a266ebbb5eecdefc58bfedac8248292c00fe32e8
5
5
  SHA512:
6
- metadata.gz: ebdd114c0b69bf9781945da27cb5986a40d7132c088341d4da8e95a9976e7182e6fa284b58c99261b619d493119d8ddde9d6ea3d8ac8911085e6d3c52331eb08
7
- data.tar.gz: 874e9441d0d025f594d2fa1ec69d27bca33f2a3d6f2045a79a314accff43771777a7f4d92b6923a803956e6c4a7d79045bdda540351e010331356ad30bbe8a2d
6
+ metadata.gz: ae1f2013d00fecfa2bd6110c2cc9b82888869458f58ba06ea51d6b1dfd65fad2a30c16b6fd0e8c4378257accb9abe43cf3168d0fd2556b827a9ab851bae7327d
7
+ data.tar.gz: 7aca1fb319a8da56bea24805d0bdc9703cf33d698790360118ce51943d25d368f2a46e69aa749b80e69e5e9fd7700c1c5543144b3b0d2cf932470e41e3de8c18
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.60.0 (2024-09-11)
5
+ ------------------
6
+
7
+ * Feature - Support new Polly voice engines in VoiceSettings: long-form and generative
8
+
9
+ 1.59.0 (2024-09-10)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.58.0 (2024-09-03)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.58.0
1
+ 1.60.0
@@ -425,6 +425,12 @@ module Aws::LexModelsV2
425
425
  # @option options [String] :ssl_ca_store
426
426
  # Sets the X509::Store to verify peer certificate.
427
427
  #
428
+ # @option options [OpenSSL::X509::Certificate] :ssl_cert
429
+ # Sets a client certificate when creating http connections.
430
+ #
431
+ # @option options [OpenSSL::PKey] :ssl_key
432
+ # Sets a client key when creating http connections.
433
+ #
428
434
  # @option options [Float] :ssl_timeout
429
435
  # Sets the SSL timeout in seconds
430
436
  #
@@ -1054,7 +1060,7 @@ module Aws::LexModelsV2
1054
1060
  # nlu_intent_confidence_threshold: 1.0, # required
1055
1061
  # voice_settings: {
1056
1062
  # voice_id: "VoiceId", # required
1057
- # engine: "standard", # accepts standard, neural
1063
+ # engine: "standard", # accepts standard, neural, long-form, generative
1058
1064
  # },
1059
1065
  # generative_ai_settings: {
1060
1066
  # runtime_settings: {
@@ -1109,7 +1115,7 @@ module Aws::LexModelsV2
1109
1115
  # resp.description #=> String
1110
1116
  # resp.nlu_intent_confidence_threshold #=> Float
1111
1117
  # resp.voice_settings.voice_id #=> String
1112
- # resp.voice_settings.engine #=> String, one of "standard", "neural"
1118
+ # resp.voice_settings.engine #=> String, one of "standard", "neural", "long-form", "generative"
1113
1119
  # resp.bot_locale_status #=> String, one of "Creating", "Building", "Built", "ReadyExpressTesting", "Failed", "Deleting", "NotBuilt", "Importing", "Processing"
1114
1120
  # resp.creation_date_time #=> Time
1115
1121
  # resp.generative_ai_settings.runtime_settings.slot_resolution_improvement.enabled #=> Boolean
@@ -3543,7 +3549,7 @@ module Aws::LexModelsV2
3543
3549
  # resp.description #=> String
3544
3550
  # resp.nlu_intent_confidence_threshold #=> Float
3545
3551
  # resp.voice_settings.voice_id #=> String
3546
- # resp.voice_settings.engine #=> String, one of "standard", "neural"
3552
+ # resp.voice_settings.engine #=> String, one of "standard", "neural", "long-form", "generative"
3547
3553
  # resp.intents_count #=> Integer
3548
3554
  # resp.slot_types_count #=> Integer
3549
3555
  # resp.bot_locale_status #=> String, one of "Creating", "Building", "Built", "ReadyExpressTesting", "Failed", "Deleting", "NotBuilt", "Importing", "Processing"
@@ -3998,7 +4004,7 @@ module Aws::LexModelsV2
3998
4004
  # resp.resource_specification.bot_locale_import_specification.locale_id #=> String
3999
4005
  # resp.resource_specification.bot_locale_import_specification.nlu_intent_confidence_threshold #=> Float
4000
4006
  # resp.resource_specification.bot_locale_import_specification.voice_settings.voice_id #=> String
4001
- # resp.resource_specification.bot_locale_import_specification.voice_settings.engine #=> String, one of "standard", "neural"
4007
+ # resp.resource_specification.bot_locale_import_specification.voice_settings.engine #=> String, one of "standard", "neural", "long-form", "generative"
4002
4008
  # resp.resource_specification.custom_vocabulary_import_specification.bot_id #=> String
4003
4009
  # resp.resource_specification.custom_vocabulary_import_specification.bot_version #=> String
4004
4010
  # resp.resource_specification.custom_vocabulary_import_specification.locale_id #=> String
@@ -8419,7 +8425,7 @@ module Aws::LexModelsV2
8419
8425
  # nlu_intent_confidence_threshold: 1.0,
8420
8426
  # voice_settings: {
8421
8427
  # voice_id: "VoiceId", # required
8422
- # engine: "standard", # accepts standard, neural
8428
+ # engine: "standard", # accepts standard, neural, long-form, generative
8423
8429
  # },
8424
8430
  # },
8425
8431
  # custom_vocabulary_import_specification: {
@@ -8466,7 +8472,7 @@ module Aws::LexModelsV2
8466
8472
  # resp.resource_specification.bot_locale_import_specification.locale_id #=> String
8467
8473
  # resp.resource_specification.bot_locale_import_specification.nlu_intent_confidence_threshold #=> Float
8468
8474
  # resp.resource_specification.bot_locale_import_specification.voice_settings.voice_id #=> String
8469
- # resp.resource_specification.bot_locale_import_specification.voice_settings.engine #=> String, one of "standard", "neural"
8475
+ # resp.resource_specification.bot_locale_import_specification.voice_settings.engine #=> String, one of "standard", "neural", "long-form", "generative"
8470
8476
  # resp.resource_specification.custom_vocabulary_import_specification.bot_id #=> String
8471
8477
  # resp.resource_specification.custom_vocabulary_import_specification.bot_version #=> String
8472
8478
  # resp.resource_specification.custom_vocabulary_import_specification.locale_id #=> String
@@ -9060,7 +9066,7 @@ module Aws::LexModelsV2
9060
9066
  # nlu_intent_confidence_threshold: 1.0, # required
9061
9067
  # voice_settings: {
9062
9068
  # voice_id: "VoiceId", # required
9063
- # engine: "standard", # accepts standard, neural
9069
+ # engine: "standard", # accepts standard, neural, long-form, generative
9064
9070
  # },
9065
9071
  # generative_ai_settings: {
9066
9072
  # runtime_settings: {
@@ -9115,7 +9121,7 @@ module Aws::LexModelsV2
9115
9121
  # resp.description #=> String
9116
9122
  # resp.nlu_intent_confidence_threshold #=> Float
9117
9123
  # resp.voice_settings.voice_id #=> String
9118
- # resp.voice_settings.engine #=> String, one of "standard", "neural"
9124
+ # resp.voice_settings.engine #=> String, one of "standard", "neural", "long-form", "generative"
9119
9125
  # resp.bot_locale_status #=> String, one of "Creating", "Building", "Built", "ReadyExpressTesting", "Failed", "Deleting", "NotBuilt", "Importing", "Processing"
9120
9126
  # resp.failure_reasons #=> Array
9121
9127
  # resp.failure_reasons[0] #=> String
@@ -10488,7 +10494,7 @@ module Aws::LexModelsV2
10488
10494
  tracer: tracer
10489
10495
  )
10490
10496
  context[:gem_name] = 'aws-sdk-lexmodelsv2'
10491
- context[:gem_version] = '1.58.0'
10497
+ context[:gem_version] = '1.60.0'
10492
10498
  Seahorse::Client::Request.new(handlers, context)
10493
10499
  end
10494
10500