aws-sdk-connect 1.42.0 → 1.43.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect.rb +1 -1
- data/lib/aws-sdk-connect/client.rb +3 -3
- data/lib/aws-sdk-connect/client_api.rb +1 -1
- data/lib/aws-sdk-connect/types.rb +1 -1
- metadata +5 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 774b3bc00f60adb07b61f77c87df413219f2a4e574362aac34a564b35b31d796
|
|
4
|
+
data.tar.gz: ccf22d050d94253e291558a6a360b0b21fb7a2603dac503ac19d8f08aec54af4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 65281b39977fa23daab45adba9346085f9d204f7d592858880d490a68573b2f420da244fd26873a6ed590388858b2438730807997919e8107a662ff0afb5691d
|
|
7
|
+
data.tar.gz: 4c678036fee3e09e560b4d77f7148f6db686ad0b112c3accd4fd4aa4eff317d942472240049cb1fe711b3c371fedad46f74a5b8ab03a7c6caece8d3b4b1a14d3
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.43.0 (2021-04-28)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Updated max number of tags that can be attached from 200 to 50. MaxContacts is now an optional parameter for the UpdateQueueMaxContact API.
|
|
8
|
+
|
|
4
9
|
1.42.0 (2021-03-10)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.43.0
|
data/lib/aws-sdk-connect.rb
CHANGED
|
@@ -4587,7 +4587,7 @@ module Aws::Connect
|
|
|
4587
4587
|
# @option params [required, String] :queue_id
|
|
4588
4588
|
# The identifier for the queue.
|
|
4589
4589
|
#
|
|
4590
|
-
# @option params [
|
|
4590
|
+
# @option params [Integer] :max_contacts
|
|
4591
4591
|
# The maximum number of contacts that can be in the queue before it is
|
|
4592
4592
|
# considered full.
|
|
4593
4593
|
#
|
|
@@ -4598,7 +4598,7 @@ module Aws::Connect
|
|
|
4598
4598
|
# resp = client.update_queue_max_contacts({
|
|
4599
4599
|
# instance_id: "InstanceId", # required
|
|
4600
4600
|
# queue_id: "QueueId", # required
|
|
4601
|
-
# max_contacts: 1,
|
|
4601
|
+
# max_contacts: 1,
|
|
4602
4602
|
# })
|
|
4603
4603
|
#
|
|
4604
4604
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateQueueMaxContacts AWS API Documentation
|
|
@@ -5207,7 +5207,7 @@ module Aws::Connect
|
|
|
5207
5207
|
params: params,
|
|
5208
5208
|
config: config)
|
|
5209
5209
|
context[:gem_name] = 'aws-sdk-connect'
|
|
5210
|
-
context[:gem_version] = '1.
|
|
5210
|
+
context[:gem_version] = '1.43.0'
|
|
5211
5211
|
Seahorse::Client::Request.new(handlers, context)
|
|
5212
5212
|
end
|
|
5213
5213
|
|
|
@@ -1511,7 +1511,7 @@ module Aws::Connect
|
|
|
1511
1511
|
|
|
1512
1512
|
UpdateQueueMaxContactsRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
|
1513
1513
|
UpdateQueueMaxContactsRequest.add_member(:queue_id, Shapes::ShapeRef.new(shape: QueueId, required: true, location: "uri", location_name: "QueueId"))
|
|
1514
|
-
UpdateQueueMaxContactsRequest.add_member(:max_contacts, Shapes::ShapeRef.new(shape: QueueMaxContacts,
|
|
1514
|
+
UpdateQueueMaxContactsRequest.add_member(:max_contacts, Shapes::ShapeRef.new(shape: QueueMaxContacts, location_name: "MaxContacts", metadata: {"box"=>true}))
|
|
1515
1515
|
UpdateQueueMaxContactsRequest.struct_class = Types::UpdateQueueMaxContactsRequest
|
|
1516
1516
|
|
|
1517
1517
|
UpdateQueueNameRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-connect
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.43.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-04-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|
|
@@ -66,8 +66,8 @@ homepage: https://github.com/aws/aws-sdk-ruby
|
|
|
66
66
|
licenses:
|
|
67
67
|
- Apache-2.0
|
|
68
68
|
metadata:
|
|
69
|
-
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/
|
|
70
|
-
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/
|
|
69
|
+
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-connect
|
|
70
|
+
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-connect/CHANGELOG.md
|
|
71
71
|
post_install_message:
|
|
72
72
|
rdoc_options: []
|
|
73
73
|
require_paths:
|
|
@@ -83,8 +83,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
83
83
|
- !ruby/object:Gem::Version
|
|
84
84
|
version: '0'
|
|
85
85
|
requirements: []
|
|
86
|
-
|
|
87
|
-
rubygems_version: 2.7.6.2
|
|
86
|
+
rubygems_version: 3.1.6
|
|
88
87
|
signing_key:
|
|
89
88
|
specification_version: 4
|
|
90
89
|
summary: AWS SDK for Ruby - Amazon Connect
|