aws-sdk-connect 1.116.0 → 1.117.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b101fa20584c7c500f84d9d743253b6619ae1637f4989bd4af7c7fe64c8a1e2e
4
- data.tar.gz: a6f748f3c4de70206184ba61f5c93d866f58a31efae3f7e85c01b3134051c096
3
+ metadata.gz: cc6d5a32ed38b41dd07ec390de092b3c58a72e796f46025e9e2c7d22600a41bd
4
+ data.tar.gz: f6587b9df1db10fc335a3bae1584cc2838afa8c4ce37cfb41f9ac0e5d9776456
5
5
  SHA512:
6
- metadata.gz: adfc269e5221fe18af62104808f4e0efb1bcd8e696d5bcd05fb6190e9185ae0f0ce23d88cdd4e0834c2e9d61fa4c641c9cffe9a5a5c67636df1225c96e1219e9
7
- data.tar.gz: 45a6c304743f8c73efac718f49f325aefb2e6bd599f415ba3ed1084cf630befd8eb489a4871a8f543a9e2225496d6ff2a5f648e0d1fd4826f895b2110cc08a99
6
+ metadata.gz: af3b85adbdf1fa7d3b7e65d04868bb753c8efdfeeca82ee0b25f50a032fd447974754ad92de8fc088ff17af64349f2522eb4b850b61db28a45fcebf10b178450
7
+ data.tar.gz: 54d10bef933737c70a023207866b918928337da93e7e57ed6d70c0a799ea01199b30419e0ceec6d5a516688aba3c70c5d04a40c820df2a12c160a79edca3513a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.117.0 (2023-07-05)
5
+ ------------------
6
+
7
+ * Feature - GetMetricDataV2 API: Channels filters do not count towards overall limitation of 100 filter values.
8
+
4
9
  1.116.0 (2023-06-28)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.116.0
1
+ 1.117.0
@@ -1660,9 +1660,16 @@ module Aws::Connect
1660
1660
  # full phone number ARN. If a UUID is provided in this scenario, you
1661
1661
  # will receive a `ResourceNotFoundException`.
1662
1662
  #
1663
+ # Only use the phone number ARN format that doesn't contain `instance`
1664
+ # in the path, for example,
1665
+ # `arn:aws:connect:us-east-1:1234567890:phone-number/uuid`. This is the
1666
+ # same ARN format that is returned when you call the
1667
+ # [ListPhoneNumbersV2][2] API.
1668
+ #
1663
1669
  #
1664
1670
  #
1665
1671
  # [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_OutboundCallerConfig
1672
+ # [2]: https://docs.aws.amazon.com/connect/latest/APIReference/API_ListPhoneNumbersV2.html
1666
1673
  #
1667
1674
  # @option params [required, String] :instance_id
1668
1675
  # The identifier of the Amazon Connect instance. You can [find the
@@ -5601,10 +5608,11 @@ module Aws::Connect
5601
5608
  # `AGENT_HIERARCHY_LEVEL_FOUR` \| `AGENT_HIERARCHY_LEVEL_FIVE`
5602
5609
  #
5603
5610
  # * **Filter values**: A maximum of 100 filter values are supported in a
5604
- # single request. For example, a `GetMetricDataV2` request can filter
5605
- # by 50 queues, 35 agents, and 15 routing profiles for a total of 100
5606
- # filter values. `VOICE`, `CHAT`, and `TASK` are valid `filterValue`
5607
- # for the `CHANNEL` filter key.
5611
+ # single request. VOICE, CHAT, and TASK are valid `filterValue` for
5612
+ # the CHANNEL filter key. They do not count towards limitation of 100
5613
+ # filter values. For example, a GetMetricDataV2 request can filter by
5614
+ # 50 queues, 35 agents, and 15 routing profiles for a total of 100
5615
+ # filter values, along with 3 channel filters.
5608
5616
  #
5609
5617
  #
5610
5618
  #
@@ -8706,9 +8714,6 @@ module Aws::Connect
8706
8714
  req.send_request(options)
8707
8715
  end
8708
8716
 
8709
- # This API is in preview release for Amazon Connect and is subject to
8710
- # change.
8711
- #
8712
8717
  # Searches queues in an Amazon Connect instance, with optional
8713
8718
  # filtering.
8714
8719
  #
@@ -8994,9 +8999,6 @@ module Aws::Connect
8994
8999
  req.send_request(options)
8995
9000
  end
8996
9001
 
8997
- # This API is in preview release for Amazon Connect and is subject to
8998
- # change.
8999
- #
9000
9002
  # Searches routing profiles in an Amazon Connect instance, with optional
9001
9003
  # filtering.
9002
9004
  #
@@ -9113,9 +9115,6 @@ module Aws::Connect
9113
9115
  req.send_request(options)
9114
9116
  end
9115
9117
 
9116
- # This API is in preview release for Amazon Connect and is subject to
9117
- # change.
9118
- #
9119
9118
  # Searches security profiles in an Amazon Connect instance, with
9120
9119
  # optional filtering.
9121
9120
  #
@@ -11562,9 +11561,16 @@ module Aws::Connect
11562
11561
  # full phone number ARN. If a UUID is provided in this scenario, you
11563
11562
  # will receive a `ResourceNotFoundException`.
11564
11563
  #
11564
+ # Only use the phone number ARN format that doesn't contain `instance`
11565
+ # in the path, for example,
11566
+ # `arn:aws:connect:us-east-1:1234567890:phone-number/uuid`. This is the
11567
+ # same ARN format that is returned when you call the
11568
+ # [ListPhoneNumbersV2][2] API.
11569
+ #
11565
11570
  #
11566
11571
  #
11567
11572
  # [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_OutboundCallerConfig
11573
+ # [2]: https://docs.aws.amazon.com/connect/latest/APIReference/API_ListPhoneNumbersV2.html
11568
11574
  #
11569
11575
  # @option params [required, String] :instance_id
11570
11576
  # The identifier of the Amazon Connect instance. You can [find the
@@ -12531,7 +12537,7 @@ module Aws::Connect
12531
12537
  params: params,
12532
12538
  config: config)
12533
12539
  context[:gem_name] = 'aws-sdk-connect'
12534
- context[:gem_version] = '1.116.0'
12540
+ context[:gem_version] = '1.117.0'
12535
12541
  Seahorse::Client::Request.new(handlers, context)
12536
12542
  end
12537
12543
 
@@ -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. For example, a `GetMetricDataV2` request can
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. `VOICE`, `CHAT`, and `TASK` are valid
6037
- # `filterValue` for the `CHANNEL` filter key.
6038
+ # total of 100 filter values, along with 3 channel filters.
6038
6039
  #
6039
6040
  #
6040
6041
  #
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-connect/customizations'
52
52
  # @!group service
53
53
  module Aws::Connect
54
54
 
55
- GEM_VERSION = '1.116.0'
55
+ GEM_VERSION = '1.117.0'
56
56
 
57
57
  end
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.116.0
4
+ version: 1.117.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-28 00:00:00.000000000 Z
11
+ date: 2023-07-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core