aws-sdk-connect 1.164.0 → 1.165.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 +177 -118
- data/lib/aws-sdk-connect/client_api.rb +16 -1
- data/lib/aws-sdk-connect/types.rb +169 -117
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/types.rbs +11 -0
- metadata +2 -2
@@ -29,6 +29,8 @@ module Aws::Connect
|
|
29
29
|
AgentFirstName = Shapes::StringShape.new(name: 'AgentFirstName')
|
30
30
|
AgentHierarchyGroup = Shapes::StructureShape.new(name: 'AgentHierarchyGroup')
|
31
31
|
AgentHierarchyGroups = Shapes::StructureShape.new(name: 'AgentHierarchyGroups')
|
32
|
+
AgentId = Shapes::StringShape.new(name: 'AgentId')
|
33
|
+
AgentIds = Shapes::ListShape.new(name: 'AgentIds')
|
32
34
|
AgentInfo = Shapes::StructureShape.new(name: 'AgentInfo')
|
33
35
|
AgentLastName = Shapes::StringShape.new(name: 'AgentLastName')
|
34
36
|
AgentPauseDurationInSeconds = Shapes::IntegerShape.new(name: 'AgentPauseDurationInSeconds')
|
@@ -47,6 +49,7 @@ module Aws::Connect
|
|
47
49
|
AgentStatusType = Shapes::StringShape.new(name: 'AgentStatusType')
|
48
50
|
AgentStatusTypes = Shapes::ListShape.new(name: 'AgentStatusTypes')
|
49
51
|
AgentUsername = Shapes::StringShape.new(name: 'AgentUsername')
|
52
|
+
AgentsCriteria = Shapes::StructureShape.new(name: 'AgentsCriteria')
|
50
53
|
AgentsMinOneMaxHundred = Shapes::ListShape.new(name: 'AgentsMinOneMaxHundred')
|
51
54
|
AliasArn = Shapes::StringShape.new(name: 'AliasArn')
|
52
55
|
AllowedAccessControlTags = Shapes::MapShape.new(name: 'AllowedAccessControlTags')
|
@@ -702,6 +705,7 @@ module Aws::Connect
|
|
702
705
|
ListViewsRequest = Shapes::StructureShape.new(name: 'ListViewsRequest')
|
703
706
|
ListViewsResponse = Shapes::StructureShape.new(name: 'ListViewsResponse')
|
704
707
|
Long = Shapes::IntegerShape.new(name: 'Long')
|
708
|
+
MatchCriteria = Shapes::StructureShape.new(name: 'MatchCriteria')
|
705
709
|
MaxResult10 = Shapes::IntegerShape.new(name: 'MaxResult10')
|
706
710
|
MaxResult100 = Shapes::IntegerShape.new(name: 'MaxResult100')
|
707
711
|
MaxResult1000 = Shapes::IntegerShape.new(name: 'MaxResult1000')
|
@@ -747,6 +751,7 @@ module Aws::Connect
|
|
747
751
|
NotificationContentType = Shapes::StringShape.new(name: 'NotificationContentType')
|
748
752
|
NotificationDeliveryType = Shapes::StringShape.new(name: 'NotificationDeliveryType')
|
749
753
|
NotificationRecipientType = Shapes::StructureShape.new(name: 'NotificationRecipientType')
|
754
|
+
NullableProficiencyLevel = Shapes::FloatShape.new(name: 'NullableProficiencyLevel')
|
750
755
|
NumberReference = Shapes::StructureShape.new(name: 'NumberReference')
|
751
756
|
NumericQuestionPropertyAutomationLabel = Shapes::StringShape.new(name: 'NumericQuestionPropertyAutomationLabel')
|
752
757
|
NumericQuestionPropertyValueAutomation = Shapes::StructureShape.new(name: 'NumericQuestionPropertyValueAutomation')
|
@@ -1355,6 +1360,8 @@ module Aws::Connect
|
|
1355
1360
|
AgentHierarchyGroups.add_member(:l5_ids, Shapes::ShapeRef.new(shape: HierarchyGroupIdList, location_name: "L5Ids"))
|
1356
1361
|
AgentHierarchyGroups.struct_class = Types::AgentHierarchyGroups
|
1357
1362
|
|
1363
|
+
AgentIds.member = Shapes::ShapeRef.new(shape: AgentId)
|
1364
|
+
|
1358
1365
|
AgentInfo.add_member(:id, Shapes::ShapeRef.new(shape: AgentResourceId, location_name: "Id"))
|
1359
1366
|
AgentInfo.add_member(:connected_to_agent_timestamp, Shapes::ShapeRef.new(shape: timestamp, location_name: "ConnectedToAgentTimestamp"))
|
1360
1367
|
AgentInfo.add_member(:agent_pause_duration_in_seconds, Shapes::ShapeRef.new(shape: AgentPauseDurationInSeconds, location_name: "AgentPauseDurationInSeconds"))
|
@@ -1397,6 +1404,9 @@ module Aws::Connect
|
|
1397
1404
|
|
1398
1405
|
AgentStatusTypes.member = Shapes::ShapeRef.new(shape: AgentStatusType)
|
1399
1406
|
|
1407
|
+
AgentsCriteria.add_member(:agent_ids, Shapes::ShapeRef.new(shape: AgentIds, location_name: "AgentIds"))
|
1408
|
+
AgentsCriteria.struct_class = Types::AgentsCriteria
|
1409
|
+
|
1400
1410
|
AgentsMinOneMaxHundred.member = Shapes::ShapeRef.new(shape: UserId)
|
1401
1411
|
|
1402
1412
|
AllowedAccessControlTags.key = Shapes::ShapeRef.new(shape: SecurityProfilePolicyKey)
|
@@ -1557,7 +1567,8 @@ module Aws::Connect
|
|
1557
1567
|
|
1558
1568
|
AttributeCondition.add_member(:name, Shapes::ShapeRef.new(shape: PredefinedAttributeName, location_name: "Name"))
|
1559
1569
|
AttributeCondition.add_member(:value, Shapes::ShapeRef.new(shape: ProficiencyValue, location_name: "Value"))
|
1560
|
-
AttributeCondition.add_member(:proficiency_level, Shapes::ShapeRef.new(shape:
|
1570
|
+
AttributeCondition.add_member(:proficiency_level, Shapes::ShapeRef.new(shape: NullableProficiencyLevel, location_name: "ProficiencyLevel"))
|
1571
|
+
AttributeCondition.add_member(:match_criteria, Shapes::ShapeRef.new(shape: MatchCriteria, location_name: "MatchCriteria"))
|
1561
1572
|
AttributeCondition.add_member(:comparison_operator, Shapes::ShapeRef.new(shape: ComparisonOperator, location_name: "ComparisonOperator"))
|
1562
1573
|
AttributeCondition.struct_class = Types::AttributeCondition
|
1563
1574
|
|
@@ -3760,6 +3771,9 @@ module Aws::Connect
|
|
3760
3771
|
ListViewsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: ViewsNextToken, location_name: "NextToken"))
|
3761
3772
|
ListViewsResponse.struct_class = Types::ListViewsResponse
|
3762
3773
|
|
3774
|
+
MatchCriteria.add_member(:agents_criteria, Shapes::ShapeRef.new(shape: AgentsCriteria, location_name: "AgentsCriteria"))
|
3775
|
+
MatchCriteria.struct_class = Types::MatchCriteria
|
3776
|
+
|
3763
3777
|
MaximumResultReturnedException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
|
3764
3778
|
MaximumResultReturnedException.struct_class = Types::MaximumResultReturnedException
|
3765
3779
|
|
@@ -5613,6 +5627,7 @@ module Aws::Connect
|
|
5613
5627
|
|
5614
5628
|
api.metadata = {
|
5615
5629
|
"apiVersion" => "2017-08-08",
|
5630
|
+
"auth" => ["aws.auth#sigv4"],
|
5616
5631
|
"endpointPrefix" => "connect",
|
5617
5632
|
"jsonVersion" => "1.1",
|
5618
5633
|
"protocol" => "rest-json",
|