aws-sdk-connectwisdomservice 1.24.0 → 1.26.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: 8b60bbf2bd37591758ba2cdad0e2aa0f72f3d78218e715685610ffcd7f58f3b7
4
- data.tar.gz: b084292d233cfd592e29f8a2c0d902d19d57b1eb85ed5f5aa1c344bb653ad457
3
+ metadata.gz: cefece651fa89c7e9473e48bd2f22b5b11883ac28b9f316105f6add3bf394fc9
4
+ data.tar.gz: 5f4e12d0cee22b9a8401f690bcaf1b056c43b9c1c489c223747c9db0264e1f07
5
5
  SHA512:
6
- metadata.gz: 8bd08985a9d98d567c97bf3826118b42f2af7566ad8821910508ed802ac28db13d2df24b0b88db581114ea247c21b90832216d90cb16e5e90e84d00b579f29c1
7
- data.tar.gz: a2a407670d8a6395593063bd2f07c818680d9fd6477be6a665416d3799d55691068052ccb9df8697409a53274d0d413105cf660845f5ebee2d51f6af01bedf59
6
+ metadata.gz: f419e0e6cb533bbafee7989585548865be2efd9782e69e681b00c8bcdf3b4facce6ac8e232e7ccc281942588f2b4b5e56218d1139991f62d1f940c5b4ac85b3b
7
+ data.tar.gz: 7ea96b914ed8f0f282e59c0360d5ef11e063d9ddde3c4ce7cd4573083192f44fc91907ed6b35e5156dbacbac59e22ca8953f609b98c3cf173610a8b04339993c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.26.0 (2024-01-10)
5
+ ------------------
6
+
7
+ * Feature - QueryAssistant and GetRecommendations will be discontinued starting June 1, 2024. To receive generative responses after March 1, 2024 you will need to create a new Assistant in the Connect console and integrate the Amazon Q in Connect JavaScript library (amazon-q-connectjs) into your applications.
8
+
9
+ 1.25.0 (2023-11-28)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.24.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.24.0
1
+ 1.26.0
@@ -2827,7 +2827,7 @@ module Aws::ConnectWisdomService
2827
2827
  params: params,
2828
2828
  config: config)
2829
2829
  context[:gem_name] = 'aws-sdk-connectwisdomservice'
2830
- context[:gem_version] = '1.24.0'
2830
+ context[:gem_version] = '1.26.0'
2831
2831
  Seahorse::Client::Request.new(handlers, context)
2832
2832
  end
2833
2833
 
@@ -1269,6 +1269,7 @@ module Aws::ConnectWisdomService
1269
1269
  o.name = "GetRecommendations"
1270
1270
  o.http_method = "GET"
1271
1271
  o.http_request_uri = "/assistants/{assistantId}/sessions/{sessionId}/recommendations"
1272
+ o.deprecated = true
1272
1273
  o.input = Shapes::ShapeRef.new(shape: GetRecommendationsRequest)
1273
1274
  o.output = Shapes::ShapeRef.new(shape: GetRecommendationsResponse)
1274
1275
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
@@ -1410,6 +1411,7 @@ module Aws::ConnectWisdomService
1410
1411
  o.name = "QueryAssistant"
1411
1412
  o.http_method = "POST"
1412
1413
  o.http_request_uri = "/assistants/{assistantId}/query"
1414
+ o.deprecated = true
1413
1415
  o.input = Shapes::ShapeRef.new(shape: QueryAssistantRequest)
1414
1416
  o.output = Shapes::ShapeRef.new(shape: QueryAssistantResponse)
1415
1417
  o.errors << Shapes::ShapeRef.new(shape: RequestTimeoutException)
@@ -25,16 +25,17 @@ module Aws::ConnectWisdomService
25
25
  # @api private
26
26
  class Handler < Seahorse::Client::Handler
27
27
  def call(context)
28
- # If endpoint was discovered, do not resolve or apply the endpoint.
29
28
  unless context[:discovered_endpoint]
30
29
  params = parameters_for_operation(context)
31
30
  endpoint = context.config.endpoint_provider.resolve_endpoint(params)
32
31
 
33
32
  context.http_request.endpoint = endpoint.url
34
33
  apply_endpoint_headers(context, endpoint.headers)
34
+
35
+ context[:endpoint_params] = params
36
+ context[:endpoint_properties] = endpoint.properties
35
37
  end
36
38
 
37
- context[:endpoint_params] = params
38
39
  context[:auth_scheme] =
39
40
  Aws::Endpoints.resolve_auth_scheme(context, endpoint)
40
41
 
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-connectwisdomservice/customizations'
52
52
  # @!group service
53
53
  module Aws::ConnectWisdomService
54
54
 
55
- GEM_VERSION = '1.24.0'
55
+ GEM_VERSION = '1.26.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-connectwisdomservice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.24.0
4
+ version: 1.26.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-22 00:00:00.000000000 Z
11
+ date: 2024-01-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core