aws-sdk-connect 1.160.0 → 1.161.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: 224e9044d807acac1b0786c74a231f59480ce9d4759dedb85810ec7b4ddd3b74
4
- data.tar.gz: b51c362569993c6bd4215403bd846cefdadbdf8a6b69d7a5f0fbe9b76c73d65f
3
+ metadata.gz: 4f59d9b4d18ce4a285a79ada8080e7717cc3c28d720f39126ed4ed3a4ed8ba78
4
+ data.tar.gz: 76d8efbdea4df6ff32fbcc5e9f8d64e8ec973d4d6894eba049e8cbaed833defa
5
5
  SHA512:
6
- metadata.gz: 1987e4c6fc26e6f25de64d4533ee62ac55cc4d7e2b561443bb2e0c25d49ee5694b51ee8439ce12028b1a4d89a8077ff6eee3366b9c72608d1326d160c1f5cd20
7
- data.tar.gz: c654719c7f2e1d553a2f1ba1f0675a981d35ac44ab766324ae1362dbea58c4a512a3ae8a58c6fb3f26d55bde3b841122fd320f0c03e2900eb4c6db3df26ef54b
6
+ metadata.gz: 9a48ce36b2889555aa0ed4fb5b2c3b4fcfead0942c7da31ed7bbfca97b63fc2c9eb9aa9c0d27a0d505ee726eff72c3a2e14975ba964f0a082686101b29ed7a30
7
+ data.tar.gz: c22683a0a4b3c9a23e6cb97faaec33d292920c4de75335b8d97576adfa4a760a6ad150d2571119e11542073059ab1c445136de13d11a9f5fdeed2323d6dbb7ee
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.161.0 (2024-05-30)
5
+ ------------------
6
+
7
+ * Feature - Adding associatedQueueIds as a SearchCriteria and response field to the SearchRoutingProfiles API
8
+
4
9
  1.160.0 (2024-05-29)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.160.0
1
+ 1.161.0
@@ -5402,6 +5402,8 @@ module Aws::Connect
5402
5402
  # resp.routing_profile.last_modified_time #=> Time
5403
5403
  # resp.routing_profile.last_modified_region #=> String
5404
5404
  # resp.routing_profile.is_default #=> Boolean
5405
+ # resp.routing_profile.associated_queue_ids #=> Array
5406
+ # resp.routing_profile.associated_queue_ids[0] #=> String
5405
5407
  #
5406
5408
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeRoutingProfile AWS API Documentation
5407
5409
  #
@@ -12983,6 +12985,8 @@ module Aws::Connect
12983
12985
  # resp.routing_profiles[0].last_modified_time #=> Time
12984
12986
  # resp.routing_profiles[0].last_modified_region #=> String
12985
12987
  # resp.routing_profiles[0].is_default #=> Boolean
12988
+ # resp.routing_profiles[0].associated_queue_ids #=> Array
12989
+ # resp.routing_profiles[0].associated_queue_ids[0] #=> String
12986
12990
  # resp.next_token #=> String
12987
12991
  # resp.approximate_total_count #=> Integer
12988
12992
  #
@@ -17486,7 +17490,7 @@ module Aws::Connect
17486
17490
  params: params,
17487
17491
  config: config)
17488
17492
  context[:gem_name] = 'aws-sdk-connect'
17489
- context[:gem_version] = '1.160.0'
17493
+ context[:gem_version] = '1.161.0'
17490
17494
  Seahorse::Client::Request.new(handlers, context)
17491
17495
  end
17492
17496
 
@@ -83,6 +83,7 @@ module Aws::Connect
83
83
  AssociateTrafficDistributionGroupUserRequest = Shapes::StructureShape.new(name: 'AssociateTrafficDistributionGroupUserRequest')
84
84
  AssociateTrafficDistributionGroupUserResponse = Shapes::StructureShape.new(name: 'AssociateTrafficDistributionGroupUserResponse')
85
85
  AssociateUserProficienciesRequest = Shapes::StructureShape.new(name: 'AssociateUserProficienciesRequest')
86
+ AssociatedQueueIdList = Shapes::ListShape.new(name: 'AssociatedQueueIdList')
86
87
  AssociationId = Shapes::StringShape.new(name: 'AssociationId')
87
88
  AttachedFile = Shapes::StructureShape.new(name: 'AttachedFile')
88
89
  AttachedFileError = Shapes::StructureShape.new(name: 'AttachedFileError')
@@ -1514,6 +1515,8 @@ module Aws::Connect
1514
1515
  AssociateUserProficienciesRequest.add_member(:user_proficiencies, Shapes::ShapeRef.new(shape: UserProficiencyList, required: true, location_name: "UserProficiencies"))
1515
1516
  AssociateUserProficienciesRequest.struct_class = Types::AssociateUserProficienciesRequest
1516
1517
 
1518
+ AssociatedQueueIdList.member = Shapes::ShapeRef.new(shape: QueueId)
1519
+
1517
1520
  AttachedFile.add_member(:creation_time, Shapes::ShapeRef.new(shape: ISO8601Datetime, required: true, location_name: "CreationTime"))
1518
1521
  AttachedFile.add_member(:file_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "FileArn"))
1519
1522
  AttachedFile.add_member(:file_id, Shapes::ShapeRef.new(shape: FileId, required: true, location_name: "FileId"))
@@ -4310,6 +4313,7 @@ module Aws::Connect
4310
4313
  RoutingProfile.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
4311
4314
  RoutingProfile.add_member(:last_modified_region, Shapes::ShapeRef.new(shape: RegionName, location_name: "LastModifiedRegion"))
4312
4315
  RoutingProfile.add_member(:is_default, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsDefault"))
4316
+ RoutingProfile.add_member(:associated_queue_ids, Shapes::ShapeRef.new(shape: AssociatedQueueIdList, location_name: "AssociatedQueueIds"))
4313
4317
  RoutingProfile.struct_class = Types::RoutingProfile
4314
4318
 
4315
4319
  RoutingProfileList.member = Shapes::ShapeRef.new(shape: RoutingProfile)
@@ -16202,6 +16202,10 @@ module Aws::Connect
16202
16202
  # Whether this a default routing profile.
16203
16203
  # @return [Boolean]
16204
16204
  #
16205
+ # @!attribute [rw] associated_queue_ids
16206
+ # The IDs of the associated queue.
16207
+ # @return [Array<String>]
16208
+ #
16205
16209
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/RoutingProfile AWS API Documentation
16206
16210
  #
16207
16211
  class RoutingProfile < Struct.new(
@@ -16218,7 +16222,8 @@ module Aws::Connect
16218
16222
  :agent_availability_timer,
16219
16223
  :last_modified_time,
16220
16224
  :last_modified_region,
16221
- :is_default)
16225
+ :is_default,
16226
+ :associated_queue_ids)
16222
16227
  SENSITIVE = []
16223
16228
  include Aws::Structure
16224
16229
  end
@@ -16372,8 +16377,8 @@ module Aws::Connect
16372
16377
  # A leaf node condition which can be used to specify a string
16373
16378
  # condition.
16374
16379
  #
16375
- # <note markdown="1"> The currently supported values for `FieldName` are `name`,
16376
- # `description`, and `resourceID`.
16380
+ # <note markdown="1"> The currently supported values for `FieldName` are
16381
+ # `associatedQueueIds`, `name`, `description`, and `resourceID`.
16377
16382
  #
16378
16383
  # </note>
16379
16384
  # @return [Types::StringCondition]
@@ -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.160.0'
55
+ GEM_VERSION = '1.161.0'
56
56
 
57
57
  end
data/sig/types.rbs CHANGED
@@ -3842,6 +3842,7 @@ module Aws::Connect
3842
3842
  attr_accessor last_modified_time: ::Time
3843
3843
  attr_accessor last_modified_region: ::String
3844
3844
  attr_accessor is_default: bool
3845
+ attr_accessor associated_queue_ids: ::Array[::String]
3845
3846
  SENSITIVE: []
3846
3847
  end
3847
3848
 
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.160.0
4
+ version: 1.161.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: 2024-05-29 00:00:00.000000000 Z
11
+ date: 2024-05-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core