aws-sdk-connectparticipant 1.14.0 → 1.18.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connectparticipant/client.rb +54 -7
- data/lib/aws-sdk-connectparticipant/client_api.rb +2 -0
- data/lib/aws-sdk-connectparticipant/types.rb +21 -6
- data/lib/aws-sdk-connectparticipant.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4a1815c257886b9da76cb06e2f4e2a60f64f4b15b4a0f9134c1cf25cdbd11813
|
4
|
+
data.tar.gz: 1f57f4c8c97349bf765e6e6ab9e7d40cbc1b95436aa6371015112a5600947895
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fb8d34a67ba652ab50c35d53d872e0529d12d151eec539a300910356df85300a83abdf7dec9e15b08dd378e03b77795cf67ec559c62ebf414b68946688e157f6
|
7
|
+
data.tar.gz: c4a35abc3076b591e7b504ed1e34dada54d5018bf4bb6c8f3e36941043965ff53e1ca1e59344a741e6535a6c968f800f704ef56771c541d0f048388e224d7dcd
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.18.0 (2021-11-04)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.17.0 (2021-11-03)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds a new boolean attribute - Connect Participant - to the CreateParticipantConnection API, which can be used to mark the participant as connected.
|
13
|
+
|
14
|
+
1.16.0 (2021-10-28)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - This release adds a new boolean attribute - Connect Participant - to the CreateParticipantConnection API, which can be used to mark the participant as connected.
|
18
|
+
|
19
|
+
1.15.0 (2021-10-18)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.14.0 (2021-09-01)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.18.0
|
@@ -275,6 +275,15 @@ module Aws::ConnectParticipant
|
|
275
275
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
276
276
|
# requests are made, and retries are disabled.
|
277
277
|
#
|
278
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
279
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
280
|
+
# will be used if available.
|
281
|
+
#
|
282
|
+
# @option options [Boolean] :use_fips_endpoint
|
283
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
284
|
+
# When a `fips` region is used, the region is normalized and this config
|
285
|
+
# is set to `true`.
|
286
|
+
#
|
278
287
|
# @option options [Boolean] :validate_params (true)
|
279
288
|
# When `true`, request parameters are validated before
|
280
289
|
# sending the request.
|
@@ -330,6 +339,13 @@ module Aws::ConnectParticipant
|
|
330
339
|
# Allows you to confirm that the attachment has been uploaded using the
|
331
340
|
# pre-signed URL provided in StartAttachmentUpload API.
|
332
341
|
#
|
342
|
+
# The Amazon Connect Participant Service APIs do not use [Signature
|
343
|
+
# Version 4 authentication][1].
|
344
|
+
#
|
345
|
+
#
|
346
|
+
#
|
347
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
348
|
+
#
|
333
349
|
# @option params [required, Array<String>] :attachment_ids
|
334
350
|
# A list of unique identifiers for the attachments.
|
335
351
|
#
|
@@ -382,14 +398,28 @@ module Aws::ConnectParticipant
|
|
382
398
|
# ConnectionExpiry parameter, clients need to call this API again to
|
383
399
|
# obtain a new websocket URL and perform the same steps as before.
|
384
400
|
#
|
401
|
+
# **Message streaming support**\: This API can also be used together
|
402
|
+
# with the [StartContactStreaming][1] API to create a participant
|
403
|
+
# connection for chat contacts that are not using a websocket. For more
|
404
|
+
# information about message streaming, [Enable real-time chat message
|
405
|
+
# streaming][2] in the *Amazon Connect Administrator Guide*.
|
406
|
+
#
|
407
|
+
# **Feature specifications**\: For information about feature
|
408
|
+
# specifications, such as the allowed number of open websocket
|
409
|
+
# connections per participant, see [Feature specifications][3] in the
|
410
|
+
# *Amazon Connect Administrator Guide*.
|
411
|
+
#
|
385
412
|
# <note markdown="1"> The Amazon Connect Participant Service APIs do not use [Signature
|
386
|
-
# Version 4 authentication][
|
413
|
+
# Version 4 authentication][4].
|
387
414
|
#
|
388
415
|
# </note>
|
389
416
|
#
|
390
417
|
#
|
391
418
|
#
|
392
|
-
# [1]: https://docs.aws.amazon.com/
|
419
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_StartContactStreaming.html
|
420
|
+
# [2]: https://docs.aws.amazon.com/connect/latest/adminguide/chat-message-streaming.html
|
421
|
+
# [3]: https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html#feature-limits
|
422
|
+
# [4]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
393
423
|
#
|
394
424
|
# @option params [required, Array<String>] :type
|
395
425
|
# Type of connection information required.
|
@@ -397,13 +427,17 @@ module Aws::ConnectParticipant
|
|
397
427
|
# @option params [required, String] :participant_token
|
398
428
|
# This is a header parameter.
|
399
429
|
#
|
400
|
-
# The
|
430
|
+
# The ParticipantToken as obtained from [StartChatContact][1] API
|
401
431
|
# response.
|
402
432
|
#
|
403
433
|
#
|
404
434
|
#
|
405
435
|
# [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_StartChatContact.html
|
406
436
|
#
|
437
|
+
# @option params [Boolean] :connect_participant
|
438
|
+
# Amazon Connect Participant is used to mark the participant as
|
439
|
+
# connected for message streaming.
|
440
|
+
#
|
407
441
|
# @return [Types::CreateParticipantConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
408
442
|
#
|
409
443
|
# * {Types::CreateParticipantConnectionResponse#websocket #websocket} => Types::Websocket
|
@@ -414,6 +448,7 @@ module Aws::ConnectParticipant
|
|
414
448
|
# resp = client.create_participant_connection({
|
415
449
|
# type: ["WEBSOCKET"], # required, accepts WEBSOCKET, CONNECTION_CREDENTIALS
|
416
450
|
# participant_token: "ParticipantToken", # required
|
451
|
+
# connect_participant: false,
|
417
452
|
# })
|
418
453
|
#
|
419
454
|
# @example Response structure
|
@@ -474,6 +509,13 @@ module Aws::ConnectParticipant
|
|
474
509
|
# Provides a pre-signed URL for download of a completed attachment. This
|
475
510
|
# is an asynchronous API for use with active contacts.
|
476
511
|
#
|
512
|
+
# The Amazon Connect Participant Service APIs do not use [Signature
|
513
|
+
# Version 4 authentication][1].
|
514
|
+
#
|
515
|
+
#
|
516
|
+
#
|
517
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
518
|
+
#
|
477
519
|
# @option params [required, String] :attachment_id
|
478
520
|
# A unique identifier for the attachment.
|
479
521
|
#
|
@@ -659,11 +701,9 @@ module Aws::ConnectParticipant
|
|
659
701
|
# Sends a message. Note that ConnectionToken is used for invoking this
|
660
702
|
# API instead of ParticipantToken.
|
661
703
|
#
|
662
|
-
#
|
704
|
+
# The Amazon Connect Participant Service APIs do not use [Signature
|
663
705
|
# Version 4 authentication][1].
|
664
706
|
#
|
665
|
-
# </note>
|
666
|
-
#
|
667
707
|
#
|
668
708
|
#
|
669
709
|
# [1]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
@@ -715,6 +755,13 @@ module Aws::ConnectParticipant
|
|
715
755
|
# Provides a pre-signed Amazon S3 URL in response for uploading the file
|
716
756
|
# directly to S3.
|
717
757
|
#
|
758
|
+
# The Amazon Connect Participant Service APIs do not use [Signature
|
759
|
+
# Version 4 authentication][1].
|
760
|
+
#
|
761
|
+
#
|
762
|
+
#
|
763
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
764
|
+
#
|
718
765
|
# @option params [required, String] :content_type
|
719
766
|
# Describes the MIME file type of the attachment. For a list of
|
720
767
|
# supported file types, see [Feature specifications][1] in the *Amazon
|
@@ -785,7 +832,7 @@ module Aws::ConnectParticipant
|
|
785
832
|
params: params,
|
786
833
|
config: config)
|
787
834
|
context[:gem_name] = 'aws-sdk-connectparticipant'
|
788
|
-
context[:gem_version] = '1.
|
835
|
+
context[:gem_version] = '1.18.0'
|
789
836
|
Seahorse::Client::Request.new(handlers, context)
|
790
837
|
end
|
791
838
|
|
@@ -21,6 +21,7 @@ module Aws::ConnectParticipant
|
|
21
21
|
AttachmentName = Shapes::StringShape.new(name: 'AttachmentName')
|
22
22
|
AttachmentSizeInBytes = Shapes::IntegerShape.new(name: 'AttachmentSizeInBytes')
|
23
23
|
Attachments = Shapes::ListShape.new(name: 'Attachments')
|
24
|
+
Bool = Shapes::BooleanShape.new(name: 'Bool')
|
24
25
|
ChatContent = Shapes::StringShape.new(name: 'ChatContent')
|
25
26
|
ChatContentType = Shapes::StringShape.new(name: 'ChatContentType')
|
26
27
|
ChatItemId = Shapes::StringShape.new(name: 'ChatItemId')
|
@@ -109,6 +110,7 @@ module Aws::ConnectParticipant
|
|
109
110
|
|
110
111
|
CreateParticipantConnectionRequest.add_member(:type, Shapes::ShapeRef.new(shape: ConnectionTypeList, required: true, location_name: "Type"))
|
111
112
|
CreateParticipantConnectionRequest.add_member(:participant_token, Shapes::ShapeRef.new(shape: ParticipantToken, required: true, location: "header", location_name: "X-Amz-Bearer"))
|
113
|
+
CreateParticipantConnectionRequest.add_member(:connect_participant, Shapes::ShapeRef.new(shape: Bool, location_name: "ConnectParticipant"))
|
112
114
|
CreateParticipantConnectionRequest.struct_class = Types::CreateParticipantConnectionRequest
|
113
115
|
|
114
116
|
CreateParticipantConnectionResponse.add_member(:websocket, Shapes::ShapeRef.new(shape: Websocket, location_name: "Websocket"))
|
@@ -140,6 +140,7 @@ module Aws::ConnectParticipant
|
|
140
140
|
# {
|
141
141
|
# type: ["WEBSOCKET"], # required, accepts WEBSOCKET, CONNECTION_CREDENTIALS
|
142
142
|
# participant_token: "ParticipantToken", # required
|
143
|
+
# connect_participant: false,
|
143
144
|
# }
|
144
145
|
#
|
145
146
|
# @!attribute [rw] type
|
@@ -149,7 +150,7 @@ module Aws::ConnectParticipant
|
|
149
150
|
# @!attribute [rw] participant_token
|
150
151
|
# This is a header parameter.
|
151
152
|
#
|
152
|
-
# The
|
153
|
+
# The ParticipantToken as obtained from [StartChatContact][1] API
|
153
154
|
# response.
|
154
155
|
#
|
155
156
|
#
|
@@ -157,11 +158,17 @@ module Aws::ConnectParticipant
|
|
157
158
|
# [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_StartChatContact.html
|
158
159
|
# @return [String]
|
159
160
|
#
|
161
|
+
# @!attribute [rw] connect_participant
|
162
|
+
# Amazon Connect Participant is used to mark the participant as
|
163
|
+
# connected for message streaming.
|
164
|
+
# @return [Boolean]
|
165
|
+
#
|
160
166
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectparticipant-2018-09-07/CreateParticipantConnectionRequest AWS API Documentation
|
161
167
|
#
|
162
168
|
class CreateParticipantConnectionRequest < Struct.new(
|
163
169
|
:type,
|
164
|
-
:participant_token
|
170
|
+
:participant_token,
|
171
|
+
:connect_participant)
|
165
172
|
SENSITIVE = []
|
166
173
|
include Aws::Structure
|
167
174
|
end
|
@@ -245,8 +252,12 @@ module Aws::ConnectParticipant
|
|
245
252
|
end
|
246
253
|
|
247
254
|
# @!attribute [rw] url
|
248
|
-
#
|
249
|
-
# S3
|
255
|
+
# This is the pre-signed URL that can be used for uploading the file
|
256
|
+
# to Amazon S3 when used in response to [StartAttachmentUpload][1].
|
257
|
+
#
|
258
|
+
#
|
259
|
+
#
|
260
|
+
# [1]: https://docs.aws.amazon.com/connect-participant/latest/APIReference/API_StartAttachmentUpload.html
|
250
261
|
# @return [String]
|
251
262
|
#
|
252
263
|
# @!attribute [rw] url_expiry
|
@@ -689,8 +700,12 @@ module Aws::ConnectParticipant
|
|
689
700
|
# Fields to be used while uploading the attachment.
|
690
701
|
#
|
691
702
|
# @!attribute [rw] url
|
692
|
-
#
|
693
|
-
# S3
|
703
|
+
# This is the pre-signed URL that can be used for uploading the file
|
704
|
+
# to Amazon S3 when used in response to [StartAttachmentUpload][1].
|
705
|
+
#
|
706
|
+
#
|
707
|
+
#
|
708
|
+
# [1]: https://docs.aws.amazon.com/connect-participant/latest/APIReference/API_StartAttachmentUpload.html
|
694
709
|
# @return [String]
|
695
710
|
#
|
696
711
|
# @!attribute [rw] url_expiry
|
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.
|
4
|
+
version: 1.18.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: 2021-
|
11
|
+
date: 2021-11-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.122.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.122.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|