aws-sdk-connect 1.60.0 → 1.61.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: 128638f80465050f5518b9145ac4b5abb19be6f070ac908fc6758e85a3fc4267
4
- data.tar.gz: 447ee19b649bacc1eeb45422a492f1ffe361411a290ed1215f3a8fd19fe544c8
3
+ metadata.gz: fae4a2028fbcf29afdeb6838dfaf63f8b417c8aaa352b06b9c3f9d7744321df1
4
+ data.tar.gz: 28a4b6449e79f29ed85a6b0116d51be6129fcafaaa8d60405a47ef59e8531ac4
5
5
  SHA512:
6
- metadata.gz: efdffe9824433a43c6b4ce5ead5ec0cdbbe583be67b6c3a0accd242720c096e18449d57ad7a32d7e38e45dc14aeeef104d5233cdc453e89da136bf637296745a
7
- data.tar.gz: 9d27c7e4f45fb1266702d4635b73657dffe8f2768d336e0de826eba5ee66449ed0d863e66c6a8444b5e77a98502bec8f8188effdd8ae4d3119ab525c950e4521
6
+ metadata.gz: e7fbaa8a393d9cc5122a2ecd08453f6f974cab91bbbd4d44844ae0eaf823f971a3a9931c53b2e1b8fd73bec9b01d7a5cc1174f86c59fbf96e877099684358e16
7
+ data.tar.gz: 536a083620623579c31279b587a29dca939959c77a4b8f3be691bce56f1eb06e57a89c74a4d3d758b964d9177db2f428de2e564b7a50a1d91c66f23997471d5a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.61.0 (2022-01-20)
5
+ ------------------
6
+
7
+ * Feature - This release adds tagging support for UserHierarchyGroups resource.
8
+
4
9
  1.60.0 (2021-12-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.60.0
1
+ 1.61.0
@@ -977,7 +977,8 @@ module Aws::Connect
977
977
  req.send_request(options)
978
978
  end
979
979
 
980
- # Creates an AWS resource association with an Amazon Connect instance.
980
+ # Creates an Amazon Web Services resource association with an Amazon
981
+ # Connect instance.
981
982
  #
982
983
  # @option params [required, String] :instance_id
983
984
  # The identifier of the Amazon Connect instance. You can find the
@@ -1455,6 +1456,9 @@ module Aws::Connect
1455
1456
  # The identifier of the Amazon Connect instance. You can find the
1456
1457
  # instanceId in the ARN of the instance.
1457
1458
  #
1459
+ # @option params [Hash<String,String>] :tags
1460
+ # The tags used to organize, track, or control access for this resource.
1461
+ #
1458
1462
  # @return [Types::CreateUserHierarchyGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1459
1463
  #
1460
1464
  # * {Types::CreateUserHierarchyGroupResponse#hierarchy_group_id #hierarchy_group_id} => String
@@ -1466,6 +1470,9 @@ module Aws::Connect
1466
1470
  # name: "HierarchyGroupName", # required
1467
1471
  # parent_group_id: "HierarchyGroupId",
1468
1472
  # instance_id: "InstanceId", # required
1473
+ # tags: {
1474
+ # "TagKey" => "TagValue",
1475
+ # },
1469
1476
  # })
1470
1477
  #
1471
1478
  # @example Response structure
@@ -1599,8 +1606,9 @@ module Aws::Connect
1599
1606
  req.send_request(options)
1600
1607
  end
1601
1608
 
1602
- # Deletes an AWS resource association from an Amazon Connect instance.
1603
- # The association must not have any use cases associated with it.
1609
+ # Deletes an Amazon Web Services resource association from an Amazon
1610
+ # Connect instance. The association must not have any use cases
1611
+ # associated with it.
1604
1612
  #
1605
1613
  # @option params [required, String] :instance_id
1606
1614
  # The identifier of the Amazon Connect instance. You can find the
@@ -2419,6 +2427,8 @@ module Aws::Connect
2419
2427
  # resp.hierarchy_group.hierarchy_path.level_five.id #=> String
2420
2428
  # resp.hierarchy_group.hierarchy_path.level_five.arn #=> String
2421
2429
  # resp.hierarchy_group.hierarchy_path.level_five.name #=> String
2430
+ # resp.hierarchy_group.tags #=> Hash
2431
+ # resp.hierarchy_group.tags["TagKey"] #=> String
2422
2432
  #
2423
2433
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeUserHierarchyGroup AWS API Documentation
2424
2434
  #
@@ -3864,8 +3874,8 @@ module Aws::Connect
3864
3874
  req.send_request(options)
3865
3875
  end
3866
3876
 
3867
- # Provides summary information about the AWS resource associations for
3868
- # the specified Amazon Connect instance.
3877
+ # Provides summary information about the Amazon Web Services resource
3878
+ # associations for the specified Amazon Connect instance.
3869
3879
  #
3870
3880
  # @option params [required, String] :instance_id
3871
3881
  # The identifier of the Amazon Connect instance. You can find the
@@ -5896,7 +5906,8 @@ module Aws::Connect
5896
5906
  # The type of attribute.
5897
5907
  #
5898
5908
  # <note markdown="1"> Only allowlisted customers can consume USE\_CUSTOM\_TTS\_VOICES. To
5899
- # access this feature, contact AWS Support for allowlisting.
5909
+ # access this feature, contact Amazon Web Services Support for
5910
+ # allowlisting.
5900
5911
  #
5901
5912
  # </note>
5902
5913
  #
@@ -6702,7 +6713,7 @@ module Aws::Connect
6702
6713
  params: params,
6703
6714
  config: config)
6704
6715
  context[:gem_name] = 'aws-sdk-connect'
6705
- context[:gem_version] = '1.60.0'
6716
+ context[:gem_version] = '1.61.0'
6706
6717
  Seahorse::Client::Request.new(handlers, context)
6707
6718
  end
6708
6719
 
@@ -815,6 +815,7 @@ module Aws::Connect
815
815
  CreateUserHierarchyGroupRequest.add_member(:name, Shapes::ShapeRef.new(shape: HierarchyGroupName, required: true, location_name: "Name"))
816
816
  CreateUserHierarchyGroupRequest.add_member(:parent_group_id, Shapes::ShapeRef.new(shape: HierarchyGroupId, location_name: "ParentGroupId"))
817
817
  CreateUserHierarchyGroupRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
818
+ CreateUserHierarchyGroupRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
818
819
  CreateUserHierarchyGroupRequest.struct_class = Types::CreateUserHierarchyGroupRequest
819
820
 
820
821
  CreateUserHierarchyGroupResponse.add_member(:hierarchy_group_id, Shapes::ShapeRef.new(shape: HierarchyGroupId, location_name: "HierarchyGroupId"))
@@ -1111,6 +1112,7 @@ module Aws::Connect
1111
1112
  HierarchyGroup.add_member(:name, Shapes::ShapeRef.new(shape: HierarchyGroupName, location_name: "Name"))
1112
1113
  HierarchyGroup.add_member(:level_id, Shapes::ShapeRef.new(shape: HierarchyLevelId, location_name: "LevelId"))
1113
1114
  HierarchyGroup.add_member(:hierarchy_path, Shapes::ShapeRef.new(shape: HierarchyPath, location_name: "HierarchyPath"))
1115
+ HierarchyGroup.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
1114
1116
  HierarchyGroup.struct_class = Types::HierarchyGroup
1115
1117
 
1116
1118
  HierarchyGroupSummary.add_member(:id, Shapes::ShapeRef.new(shape: HierarchyGroupId, location_name: "Id"))
@@ -1671,6 +1671,9 @@ module Aws::Connect
1671
1671
  # name: "HierarchyGroupName", # required
1672
1672
  # parent_group_id: "HierarchyGroupId",
1673
1673
  # instance_id: "InstanceId", # required
1674
+ # tags: {
1675
+ # "TagKey" => "TagValue",
1676
+ # },
1674
1677
  # }
1675
1678
  #
1676
1679
  # @!attribute [rw] name
@@ -1688,12 +1691,18 @@ module Aws::Connect
1688
1691
  # instanceId in the ARN of the instance.
1689
1692
  # @return [String]
1690
1693
  #
1694
+ # @!attribute [rw] tags
1695
+ # The tags used to organize, track, or control access for this
1696
+ # resource.
1697
+ # @return [Hash<String,String>]
1698
+ #
1691
1699
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateUserHierarchyGroupRequest AWS API Documentation
1692
1700
  #
1693
1701
  class CreateUserHierarchyGroupRequest < Struct.new(
1694
1702
  :name,
1695
1703
  :parent_group_id,
1696
- :instance_id)
1704
+ :instance_id,
1705
+ :tags)
1697
1706
  SENSITIVE = []
1698
1707
  include Aws::Structure
1699
1708
  end
@@ -3104,8 +3113,10 @@ module Aws::Connect
3104
3113
  # }
3105
3114
  #
3106
3115
  # @!attribute [rw] queues
3107
- # The queues to use to filter the metrics. You can specify up to 100
3108
- # queues per request.
3116
+ # The queues to use to filter the metrics. You should specify at least
3117
+ # one queue, and can specify up to 100 queues per request. The
3118
+ # `GetCurrentMetricsData` API in particular requires a queue when you
3119
+ # include a `Filter` in your request.
3109
3120
  # @return [Array<String>]
3110
3121
  #
3111
3122
  # @!attribute [rw] channels
@@ -3721,6 +3732,11 @@ module Aws::Connect
3721
3732
  # Information about the levels in the hierarchy group.
3722
3733
  # @return [Types::HierarchyPath]
3723
3734
  #
3735
+ # @!attribute [rw] tags
3736
+ # The tags used to organize, track, or control access for this
3737
+ # resource.
3738
+ # @return [Hash<String,String>]
3739
+ #
3724
3740
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/HierarchyGroup AWS API Documentation
3725
3741
  #
3726
3742
  class HierarchyGroup < Struct.new(
@@ -3728,7 +3744,8 @@ module Aws::Connect
3728
3744
  :arn,
3729
3745
  :name,
3730
3746
  :level_id,
3731
- :hierarchy_path)
3747
+ :hierarchy_path,
3748
+ :tags)
3732
3749
  SENSITIVE = []
3733
3750
  include Aws::Structure
3734
3751
  end
@@ -8234,7 +8251,8 @@ module Aws::Connect
8234
8251
  # The type of attribute.
8235
8252
  #
8236
8253
  # <note markdown="1"> Only allowlisted customers can consume USE\_CUSTOM\_TTS\_VOICES. To
8237
- # access this feature, contact AWS Support for allowlisting.
8254
+ # access this feature, contact Amazon Web Services Support for
8255
+ # allowlisting.
8238
8256
  #
8239
8257
  # </note>
8240
8258
  # @return [String]
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-connect/customizations'
48
48
  # @!group service
49
49
  module Aws::Connect
50
50
 
51
- GEM_VERSION = '1.60.0'
51
+ GEM_VERSION = '1.61.0'
52
52
 
53
53
  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.60.0
4
+ version: 1.61.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-12-21 00:00:00.000000000 Z
11
+ date: 2022-01-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core