aws-sdk-connect 1.116.0 → 1.118.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +31 -14
- data/lib/aws-sdk-connect/types.rb +4 -3
- data/lib/aws-sdk-connect.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: 743e9d8075288b450a09aba37e52a1e0a4e1d174be7a16ae8cbce383dfca8b55
|
4
|
+
data.tar.gz: 4e0c7e007f7fe311e733a0c82a412d88d183dede0de6e3262f264ed9846baae0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ff711a0cc4528e042ad92483f800c4e8511b450dfda939092f20b4103ea4500654d6c3a19b43e36636471bd90513ff2219468d2dc0e2c9a81aa60adaa74b74ad
|
7
|
+
data.tar.gz: 7e082a86fa3529d801a28550189767966e7d3a962b09337325e51744421dcafd9b8cc61d7b55432eb1b9dc3eaa8ab0461349693627bcf33e56dafe9b32902b10
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.118.0 (2023-07-06)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.117.0 (2023-07-05)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - GetMetricDataV2 API: Channels filters do not count towards overall limitation of 100 filter values.
|
13
|
+
|
4
14
|
1.116.0 (2023-06-28)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.118.0
|
@@ -28,6 +28,7 @@ require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
30
|
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
31
|
+
require 'aws-sdk-core/plugins/request_compression.rb'
|
31
32
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
32
33
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
33
34
|
require 'aws-sdk-core/plugins/sign.rb'
|
@@ -77,6 +78,7 @@ module Aws::Connect
|
|
77
78
|
add_plugin(Aws::Plugins::TransferEncoding)
|
78
79
|
add_plugin(Aws::Plugins::HttpChecksum)
|
79
80
|
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
81
|
+
add_plugin(Aws::Plugins::RequestCompression)
|
80
82
|
add_plugin(Aws::Plugins::DefaultsMode)
|
81
83
|
add_plugin(Aws::Plugins::RecursionDetection)
|
82
84
|
add_plugin(Aws::Plugins::Sign)
|
@@ -190,6 +192,10 @@ module Aws::Connect
|
|
190
192
|
# Set to true to disable SDK automatically adding host prefix
|
191
193
|
# to default service endpoint when available.
|
192
194
|
#
|
195
|
+
# @option options [Boolean] :disable_request_compression (false)
|
196
|
+
# When set to 'true' the request body will not be compressed
|
197
|
+
# for supported operations.
|
198
|
+
#
|
193
199
|
# @option options [String] :endpoint
|
194
200
|
# The client endpoint is normally constructed from the `:region`
|
195
201
|
# option. You should only configure an `:endpoint` when connecting
|
@@ -230,6 +236,11 @@ module Aws::Connect
|
|
230
236
|
# Used when loading credentials from the shared credentials file
|
231
237
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
232
238
|
#
|
239
|
+
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
240
|
+
# The minimum size in bytes that triggers compression for request
|
241
|
+
# bodies. The value must be non-negative integer value between 0
|
242
|
+
# and 10485780 bytes inclusive.
|
243
|
+
#
|
233
244
|
# @option options [Proc] :retry_backoff
|
234
245
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
235
246
|
# This option is only used in the `legacy` retry mode.
|
@@ -1660,9 +1671,16 @@ module Aws::Connect
|
|
1660
1671
|
# full phone number ARN. If a UUID is provided in this scenario, you
|
1661
1672
|
# will receive a `ResourceNotFoundException`.
|
1662
1673
|
#
|
1674
|
+
# Only use the phone number ARN format that doesn't contain `instance`
|
1675
|
+
# in the path, for example,
|
1676
|
+
# `arn:aws:connect:us-east-1:1234567890:phone-number/uuid`. This is the
|
1677
|
+
# same ARN format that is returned when you call the
|
1678
|
+
# [ListPhoneNumbersV2][2] API.
|
1679
|
+
#
|
1663
1680
|
#
|
1664
1681
|
#
|
1665
1682
|
# [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_OutboundCallerConfig
|
1683
|
+
# [2]: https://docs.aws.amazon.com/connect/latest/APIReference/API_ListPhoneNumbersV2.html
|
1666
1684
|
#
|
1667
1685
|
# @option params [required, String] :instance_id
|
1668
1686
|
# The identifier of the Amazon Connect instance. You can [find the
|
@@ -5601,10 +5619,11 @@ module Aws::Connect
|
|
5601
5619
|
# `AGENT_HIERARCHY_LEVEL_FOUR` \| `AGENT_HIERARCHY_LEVEL_FIVE`
|
5602
5620
|
#
|
5603
5621
|
# * **Filter values**: A maximum of 100 filter values are supported in a
|
5604
|
-
# single request.
|
5605
|
-
#
|
5606
|
-
# filter values.
|
5607
|
-
# for
|
5622
|
+
# single request. VOICE, CHAT, and TASK are valid `filterValue` for
|
5623
|
+
# the CHANNEL filter key. They do not count towards limitation of 100
|
5624
|
+
# filter values. For example, a GetMetricDataV2 request can filter by
|
5625
|
+
# 50 queues, 35 agents, and 15 routing profiles for a total of 100
|
5626
|
+
# filter values, along with 3 channel filters.
|
5608
5627
|
#
|
5609
5628
|
#
|
5610
5629
|
#
|
@@ -8706,9 +8725,6 @@ module Aws::Connect
|
|
8706
8725
|
req.send_request(options)
|
8707
8726
|
end
|
8708
8727
|
|
8709
|
-
# This API is in preview release for Amazon Connect and is subject to
|
8710
|
-
# change.
|
8711
|
-
#
|
8712
8728
|
# Searches queues in an Amazon Connect instance, with optional
|
8713
8729
|
# filtering.
|
8714
8730
|
#
|
@@ -8994,9 +9010,6 @@ module Aws::Connect
|
|
8994
9010
|
req.send_request(options)
|
8995
9011
|
end
|
8996
9012
|
|
8997
|
-
# This API is in preview release for Amazon Connect and is subject to
|
8998
|
-
# change.
|
8999
|
-
#
|
9000
9013
|
# Searches routing profiles in an Amazon Connect instance, with optional
|
9001
9014
|
# filtering.
|
9002
9015
|
#
|
@@ -9113,9 +9126,6 @@ module Aws::Connect
|
|
9113
9126
|
req.send_request(options)
|
9114
9127
|
end
|
9115
9128
|
|
9116
|
-
# This API is in preview release for Amazon Connect and is subject to
|
9117
|
-
# change.
|
9118
|
-
#
|
9119
9129
|
# Searches security profiles in an Amazon Connect instance, with
|
9120
9130
|
# optional filtering.
|
9121
9131
|
#
|
@@ -11562,9 +11572,16 @@ module Aws::Connect
|
|
11562
11572
|
# full phone number ARN. If a UUID is provided in this scenario, you
|
11563
11573
|
# will receive a `ResourceNotFoundException`.
|
11564
11574
|
#
|
11575
|
+
# Only use the phone number ARN format that doesn't contain `instance`
|
11576
|
+
# in the path, for example,
|
11577
|
+
# `arn:aws:connect:us-east-1:1234567890:phone-number/uuid`. This is the
|
11578
|
+
# same ARN format that is returned when you call the
|
11579
|
+
# [ListPhoneNumbersV2][2] API.
|
11580
|
+
#
|
11565
11581
|
#
|
11566
11582
|
#
|
11567
11583
|
# [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_OutboundCallerConfig
|
11584
|
+
# [2]: https://docs.aws.amazon.com/connect/latest/APIReference/API_ListPhoneNumbersV2.html
|
11568
11585
|
#
|
11569
11586
|
# @option params [required, String] :instance_id
|
11570
11587
|
# The identifier of the Amazon Connect instance. You can [find the
|
@@ -12531,7 +12548,7 @@ module Aws::Connect
|
|
12531
12548
|
params: params,
|
12532
12549
|
config: config)
|
12533
12550
|
context[:gem_name] = 'aws-sdk-connect'
|
12534
|
-
context[:gem_version] = '1.
|
12551
|
+
context[:gem_version] = '1.118.0'
|
12535
12552
|
Seahorse::Client::Request.new(handlers, context)
|
12536
12553
|
end
|
12537
12554
|
|
@@ -6031,10 +6031,11 @@ module Aws::Connect
|
|
6031
6031
|
# `AGENT_HIERARCHY_LEVEL_FOUR` \| `AGENT_HIERARCHY_LEVEL_FIVE`
|
6032
6032
|
#
|
6033
6033
|
# * **Filter values**: A maximum of 100 filter values are supported in
|
6034
|
-
# a single request.
|
6034
|
+
# a single request. VOICE, CHAT, and TASK are valid `filterValue`
|
6035
|
+
# for the CHANNEL filter key. They do not count towards limitation
|
6036
|
+
# of 100 filter values. For example, a GetMetricDataV2 request can
|
6035
6037
|
# filter by 50 queues, 35 agents, and 15 routing profiles for a
|
6036
|
-
# total of 100 filter values
|
6037
|
-
# `filterValue` for the `CHANNEL` filter key.
|
6038
|
+
# total of 100 filter values, along with 3 channel filters.
|
6038
6039
|
#
|
6039
6040
|
#
|
6040
6041
|
#
|
data/lib/aws-sdk-connect.rb
CHANGED
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.118.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-06
|
11
|
+
date: 2023-07-06 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.177.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.177.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|