aws-sdk-connectparticipant 1.37.0 → 1.39.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: 0f05607a91dda0aa03cc53c5616e5772e6799aca7c715105ec2713487e809701
4
- data.tar.gz: 738238b811fd12ac8a6463bba2e8de482e460c0e262903c2dd1f3bf0c06d7055
3
+ metadata.gz: d7cf07c4d1b3dd883973f52484d9eeaef69c707a9a1e9db18a79bd7d209c1e2c
4
+ data.tar.gz: 46da6a270b0deb4641502546ff32d5e27d1a29f8ff9ad3162a58e27c2e7a1da0
5
5
  SHA512:
6
- metadata.gz: 2d9ddd58c5bcb7120326373f0d9b2b29f31cfeb8df70050168bf7cde636f8afed4a4eb3e68580c71b2c99a68f673264d31addf6e554cc06cac601176426ae91a
7
- data.tar.gz: 30e5454ca3aa75745cb0380485c0478438cc8103ca38fdb66406dfd71465943bd53f08d1e1ab2b5f0487ad5773b88a0f285dc9ad3cfc1d1559aef7dc74e0c90b
6
+ metadata.gz: e923ee2ec518389fe34669e5a42fd9be64c7f960cac9b5d63eb6954d7534a92b397e359dd0c97a8b6b64a86e35534996f8d43386ee996cfb96ef55cb8d666139
7
+ data.tar.gz: f61349daf973b158996a0cfbe4ae3a80f1e9711def4f4687720336fdc01f2c8c936dd17c7a45870ec39d1ee39fbc56b6fbad1154cb93b38591f769dfedb5bf92
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.39.0 (2024-01-12)
5
+ ------------------
6
+
7
+ * Feature - Introduce new Supervisor participant role
8
+
9
+ 1.38.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.37.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.37.0
1
+ 1.39.0
@@ -752,7 +752,7 @@ module Aws::ConnectParticipant
752
752
  # resp.transcript[0].type #=> String, one of "TYPING", "PARTICIPANT_JOINED", "PARTICIPANT_LEFT", "CHAT_ENDED", "TRANSFER_SUCCEEDED", "TRANSFER_FAILED", "MESSAGE", "EVENT", "ATTACHMENT", "CONNECTION_ACK", "MESSAGE_DELIVERED", "MESSAGE_READ"
753
753
  # resp.transcript[0].participant_id #=> String
754
754
  # resp.transcript[0].display_name #=> String
755
- # resp.transcript[0].participant_role #=> String, one of "AGENT", "CUSTOMER", "SYSTEM", "CUSTOM_BOT"
755
+ # resp.transcript[0].participant_role #=> String, one of "AGENT", "CUSTOMER", "SYSTEM", "CUSTOM_BOT", "SUPERVISOR"
756
756
  # resp.transcript[0].attachments #=> Array
757
757
  # resp.transcript[0].attachments[0].content_type #=> String
758
758
  # resp.transcript[0].attachments[0].attachment_id #=> String
@@ -1022,7 +1022,7 @@ module Aws::ConnectParticipant
1022
1022
  params: params,
1023
1023
  config: config)
1024
1024
  context[:gem_name] = 'aws-sdk-connectparticipant'
1025
- context[:gem_version] = '1.37.0'
1025
+ context[:gem_version] = '1.39.0'
1026
1026
  Seahorse::Client::Request.new(handlers, context)
1027
1027
  end
1028
1028
 
@@ -387,6 +387,7 @@ module Aws::ConnectParticipant
387
387
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
388
388
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
389
389
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
390
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
390
391
  end)
391
392
 
392
393
  api.add_operation(:send_message, Seahorse::Model::Operation.new.tap do |o|
@@ -32,8 +32,8 @@ module Aws::ConnectParticipant
32
32
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
33
  end
34
34
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
36
- if Aws::Endpoints::Matchers.string_equals?("aws-us-gov", Aws::Endpoints::Matchers.attr(partition_result, "name"))
35
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
+ if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-us-gov")
37
37
  return Aws::Endpoints::Endpoint.new(url: "https://participant.connect.#{region}.amazonaws.com", headers: {}, properties: {})
38
38
  end
39
39
  return Aws::Endpoints::Endpoint.new(url: "https://participant.connect-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
@@ -25,16 +25,17 @@ module Aws::ConnectParticipant
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-connectparticipant/customizations'
52
52
  # @!group service
53
53
  module Aws::ConnectParticipant
54
54
 
55
- GEM_VERSION = '1.37.0'
55
+ GEM_VERSION = '1.39.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-connectparticipant
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.37.0
4
+ version: 1.39.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-22 00:00:00.000000000 Z
11
+ date: 2024-01-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -72,7 +72,7 @@ licenses:
72
72
  metadata:
73
73
  source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-connectparticipant
74
74
  changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-connectparticipant/CHANGELOG.md
75
- post_install_message:
75
+ post_install_message:
76
76
  rdoc_options: []
77
77
  require_paths:
78
78
  - lib
@@ -87,8 +87,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
87
87
  - !ruby/object:Gem::Version
88
88
  version: '0'
89
89
  requirements: []
90
- rubygems_version: 3.1.6
91
- signing_key:
90
+ rubygems_version: 3.4.10
91
+ signing_key:
92
92
  specification_version: 4
93
93
  summary: AWS SDK for Ruby - Amazon Connect Participant
94
94
  test_files: []