aws-sdk-connect 1.150.0 → 1.151.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/client.rb +346 -13
- data/lib/aws-sdk-connect/client_api.rb +4 -3
- data/lib/aws-sdk-connect/types.rb +328 -11
- data/lib/aws-sdk-connect.rb +1 -1
- metadata +2 -2
@@ -650,6 +650,7 @@ module Aws::Connect
|
|
650
650
|
MaxResult2 = Shapes::IntegerShape.new(name: 'MaxResult2')
|
651
651
|
MaxResult200 = Shapes::IntegerShape.new(name: 'MaxResult200')
|
652
652
|
MaxResult25 = Shapes::IntegerShape.new(name: 'MaxResult25')
|
653
|
+
MaxResult500 = Shapes::IntegerShape.new(name: 'MaxResult500')
|
653
654
|
MaxResult7 = Shapes::IntegerShape.new(name: 'MaxResult7')
|
654
655
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
655
656
|
MaximumResultReturnedException = Shapes::StructureShape.new(name: 'MaximumResultReturnedException')
|
@@ -4196,7 +4197,7 @@ module Aws::Connect
|
|
4196
4197
|
|
4197
4198
|
SearchQueuesRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
|
4198
4199
|
SearchQueuesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken2500, location_name: "NextToken"))
|
4199
|
-
SearchQueuesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape:
|
4200
|
+
SearchQueuesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult500, location_name: "MaxResults", metadata: {"box"=>true}))
|
4200
4201
|
SearchQueuesRequest.add_member(:search_filter, Shapes::ShapeRef.new(shape: QueueSearchFilter, location_name: "SearchFilter"))
|
4201
4202
|
SearchQueuesRequest.add_member(:search_criteria, Shapes::ShapeRef.new(shape: QueueSearchCriteria, location_name: "SearchCriteria"))
|
4202
4203
|
SearchQueuesRequest.struct_class = Types::SearchQueuesRequest
|
@@ -4231,7 +4232,7 @@ module Aws::Connect
|
|
4231
4232
|
|
4232
4233
|
SearchRoutingProfilesRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
|
4233
4234
|
SearchRoutingProfilesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken2500, location_name: "NextToken"))
|
4234
|
-
SearchRoutingProfilesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape:
|
4235
|
+
SearchRoutingProfilesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult500, location_name: "MaxResults", metadata: {"box"=>true}))
|
4235
4236
|
SearchRoutingProfilesRequest.add_member(:search_filter, Shapes::ShapeRef.new(shape: RoutingProfileSearchFilter, location_name: "SearchFilter"))
|
4236
4237
|
SearchRoutingProfilesRequest.add_member(:search_criteria, Shapes::ShapeRef.new(shape: RoutingProfileSearchCriteria, location_name: "SearchCriteria"))
|
4237
4238
|
SearchRoutingProfilesRequest.struct_class = Types::SearchRoutingProfilesRequest
|
@@ -4257,7 +4258,7 @@ module Aws::Connect
|
|
4257
4258
|
|
4258
4259
|
SearchUsersRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
|
4259
4260
|
SearchUsersRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken2500, location_name: "NextToken"))
|
4260
|
-
SearchUsersRequest.add_member(:max_results, Shapes::ShapeRef.new(shape:
|
4261
|
+
SearchUsersRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult500, location_name: "MaxResults", metadata: {"box"=>true}))
|
4261
4262
|
SearchUsersRequest.add_member(:search_filter, Shapes::ShapeRef.new(shape: UserSearchFilter, location_name: "SearchFilter"))
|
4262
4263
|
SearchUsersRequest.add_member(:search_criteria, Shapes::ShapeRef.new(shape: UserSearchCriteria, location_name: "SearchCriteria"))
|
4263
4264
|
SearchUsersRequest.struct_class = Types::SearchUsersRequest
|