aws-sdk-connect 1.191.0 → 1.192.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +30 -1
- data/lib/aws-sdk-connect/client_api.rb +7 -0
- data/lib/aws-sdk-connect/types.rb +31 -2
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +20 -1
- data/sig/types.rbs +8 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 71650b7edb4329739eea5d77a97aad5fce2d329f0cd5b168c539115778924f0f
|
4
|
+
data.tar.gz: 5aef7ae1fb6222438ea052fc4d235e795026e406e0983922c4036507b737d052
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b08646aae4f56192a6d0dee806071633e54d7b3d81ffdbbf3e939bb653dba2faec2da61b5517c864795492c3b48959b486ec103e086800dd5a014e5f83b2ec3f
|
7
|
+
data.tar.gz: 8cd21c75e35056ff533a6cd5eac3c9d23ba07f340043ac4455feab23efdd89c08b3eaa5052a76ec03f03f6a305038401e81c3757cdfc307c2a4266c00b36dd80
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.192.0
|
@@ -5228,6 +5228,8 @@ module Aws::Connect
|
|
5228
5228
|
# resp.contact.routing_criteria.steps[0].expression.attribute_condition.name #=> String
|
5229
5229
|
# resp.contact.routing_criteria.steps[0].expression.attribute_condition.value #=> String
|
5230
5230
|
# resp.contact.routing_criteria.steps[0].expression.attribute_condition.proficiency_level #=> Float
|
5231
|
+
# resp.contact.routing_criteria.steps[0].expression.attribute_condition.range.min_proficiency_level #=> Float
|
5232
|
+
# resp.contact.routing_criteria.steps[0].expression.attribute_condition.range.max_proficiency_level #=> Float
|
5231
5233
|
# resp.contact.routing_criteria.steps[0].expression.attribute_condition.match_criteria.agents_criteria.agent_ids #=> Array
|
5232
5234
|
# resp.contact.routing_criteria.steps[0].expression.attribute_condition.match_criteria.agents_criteria.agent_ids[0] #=> String
|
5233
5235
|
# resp.contact.routing_criteria.steps[0].expression.attribute_condition.comparison_operator #=> String
|
@@ -5235,6 +5237,14 @@ module Aws::Connect
|
|
5235
5237
|
# resp.contact.routing_criteria.steps[0].expression.and_expression[0] #=> Types::Expression
|
5236
5238
|
# resp.contact.routing_criteria.steps[0].expression.or_expression #=> Array
|
5237
5239
|
# resp.contact.routing_criteria.steps[0].expression.or_expression[0] #=> Types::Expression
|
5240
|
+
# resp.contact.routing_criteria.steps[0].expression.not_attribute_condition.name #=> String
|
5241
|
+
# resp.contact.routing_criteria.steps[0].expression.not_attribute_condition.value #=> String
|
5242
|
+
# resp.contact.routing_criteria.steps[0].expression.not_attribute_condition.proficiency_level #=> Float
|
5243
|
+
# resp.contact.routing_criteria.steps[0].expression.not_attribute_condition.range.min_proficiency_level #=> Float
|
5244
|
+
# resp.contact.routing_criteria.steps[0].expression.not_attribute_condition.range.max_proficiency_level #=> Float
|
5245
|
+
# resp.contact.routing_criteria.steps[0].expression.not_attribute_condition.match_criteria.agents_criteria.agent_ids #=> Array
|
5246
|
+
# resp.contact.routing_criteria.steps[0].expression.not_attribute_condition.match_criteria.agents_criteria.agent_ids[0] #=> String
|
5247
|
+
# resp.contact.routing_criteria.steps[0].expression.not_attribute_condition.comparison_operator #=> String
|
5238
5248
|
# resp.contact.routing_criteria.steps[0].status #=> String, one of "ACTIVE", "INACTIVE", "JOINED", "EXPIRED"
|
5239
5249
|
# resp.contact.routing_criteria.activation_timestamp #=> Time
|
5240
5250
|
# resp.contact.routing_criteria.index #=> Integer
|
@@ -18244,6 +18254,10 @@ module Aws::Connect
|
|
18244
18254
|
# name: "PredefinedAttributeName",
|
18245
18255
|
# value: "ProficiencyValue",
|
18246
18256
|
# proficiency_level: 1.0,
|
18257
|
+
# range: {
|
18258
|
+
# min_proficiency_level: 1.0,
|
18259
|
+
# max_proficiency_level: 1.0,
|
18260
|
+
# },
|
18247
18261
|
# match_criteria: {
|
18248
18262
|
# agents_criteria: {
|
18249
18263
|
# agent_ids: ["AgentId"],
|
@@ -18261,6 +18275,21 @@ module Aws::Connect
|
|
18261
18275
|
# # recursive Expression
|
18262
18276
|
# },
|
18263
18277
|
# ],
|
18278
|
+
# not_attribute_condition: {
|
18279
|
+
# name: "PredefinedAttributeName",
|
18280
|
+
# value: "ProficiencyValue",
|
18281
|
+
# proficiency_level: 1.0,
|
18282
|
+
# range: {
|
18283
|
+
# min_proficiency_level: 1.0,
|
18284
|
+
# max_proficiency_level: 1.0,
|
18285
|
+
# },
|
18286
|
+
# match_criteria: {
|
18287
|
+
# agents_criteria: {
|
18288
|
+
# agent_ids: ["AgentId"],
|
18289
|
+
# },
|
18290
|
+
# },
|
18291
|
+
# comparison_operator: "ComparisonOperator",
|
18292
|
+
# },
|
18264
18293
|
# },
|
18265
18294
|
# },
|
18266
18295
|
# ],
|
@@ -20570,7 +20599,7 @@ module Aws::Connect
|
|
20570
20599
|
tracer: tracer
|
20571
20600
|
)
|
20572
20601
|
context[:gem_name] = 'aws-sdk-connect'
|
20573
|
-
context[:gem_version] = '1.
|
20602
|
+
context[:gem_version] = '1.192.0'
|
20574
20603
|
Seahorse::Client::Request.new(handlers, context)
|
20575
20604
|
end
|
20576
20605
|
|
@@ -1013,6 +1013,7 @@ module Aws::Connect
|
|
1013
1013
|
QuickConnectType = Shapes::StringShape.new(name: 'QuickConnectType')
|
1014
1014
|
QuickConnectTypes = Shapes::ListShape.new(name: 'QuickConnectTypes')
|
1015
1015
|
QuickConnectsList = Shapes::ListShape.new(name: 'QuickConnectsList')
|
1016
|
+
Range = Shapes::StructureShape.new(name: 'Range')
|
1016
1017
|
ReadOnlyFieldInfo = Shapes::StructureShape.new(name: 'ReadOnlyFieldInfo')
|
1017
1018
|
ReadOnlyTaskTemplateFields = Shapes::ListShape.new(name: 'ReadOnlyTaskTemplateFields')
|
1018
1019
|
RealTimeContactAnalysisAttachment = Shapes::StructureShape.new(name: 'RealTimeContactAnalysisAttachment')
|
@@ -1798,6 +1799,7 @@ module Aws::Connect
|
|
1798
1799
|
AttributeCondition.add_member(:name, Shapes::ShapeRef.new(shape: PredefinedAttributeName, location_name: "Name"))
|
1799
1800
|
AttributeCondition.add_member(:value, Shapes::ShapeRef.new(shape: ProficiencyValue, location_name: "Value"))
|
1800
1801
|
AttributeCondition.add_member(:proficiency_level, Shapes::ShapeRef.new(shape: NullableProficiencyLevel, location_name: "ProficiencyLevel"))
|
1802
|
+
AttributeCondition.add_member(:range, Shapes::ShapeRef.new(shape: Range, location_name: "Range"))
|
1801
1803
|
AttributeCondition.add_member(:match_criteria, Shapes::ShapeRef.new(shape: MatchCriteria, location_name: "MatchCriteria"))
|
1802
1804
|
AttributeCondition.add_member(:comparison_operator, Shapes::ShapeRef.new(shape: ComparisonOperator, location_name: "ComparisonOperator"))
|
1803
1805
|
AttributeCondition.struct_class = Types::AttributeCondition
|
@@ -3341,6 +3343,7 @@ module Aws::Connect
|
|
3341
3343
|
Expression.add_member(:attribute_condition, Shapes::ShapeRef.new(shape: AttributeCondition, location_name: "AttributeCondition"))
|
3342
3344
|
Expression.add_member(:and_expression, Shapes::ShapeRef.new(shape: Expressions, location_name: "AndExpression"))
|
3343
3345
|
Expression.add_member(:or_expression, Shapes::ShapeRef.new(shape: Expressions, location_name: "OrExpression"))
|
3346
|
+
Expression.add_member(:not_attribute_condition, Shapes::ShapeRef.new(shape: AttributeCondition, location_name: "NotAttributeCondition"))
|
3344
3347
|
Expression.struct_class = Types::Expression
|
3345
3348
|
|
3346
3349
|
Expressions.member = Shapes::ShapeRef.new(shape: Expression)
|
@@ -4739,6 +4742,10 @@ module Aws::Connect
|
|
4739
4742
|
|
4740
4743
|
QuickConnectsList.member = Shapes::ShapeRef.new(shape: QuickConnectId)
|
4741
4744
|
|
4745
|
+
Range.add_member(:min_proficiency_level, Shapes::ShapeRef.new(shape: NullableProficiencyLevel, location_name: "MinProficiencyLevel"))
|
4746
|
+
Range.add_member(:max_proficiency_level, Shapes::ShapeRef.new(shape: NullableProficiencyLevel, location_name: "MaxProficiencyLevel"))
|
4747
|
+
Range.struct_class = Types::Range
|
4748
|
+
|
4742
4749
|
ReadOnlyFieldInfo.add_member(:id, Shapes::ShapeRef.new(shape: TaskTemplateFieldIdentifier, location_name: "Id"))
|
4743
4750
|
ReadOnlyFieldInfo.struct_class = Types::ReadOnlyFieldInfo
|
4744
4751
|
|
@@ -1330,6 +1330,10 @@ module Aws::Connect
|
|
1330
1330
|
# The proficiency level of the condition.
|
1331
1331
|
# @return [Float]
|
1332
1332
|
#
|
1333
|
+
# @!attribute [rw] range
|
1334
|
+
# An Object to define the minimum and maximum proficiency levels.
|
1335
|
+
# @return [Types::Range]
|
1336
|
+
#
|
1333
1337
|
# @!attribute [rw] match_criteria
|
1334
1338
|
# An object to define `AgentsCriteria`.
|
1335
1339
|
# @return [Types::MatchCriteria]
|
@@ -1344,6 +1348,7 @@ module Aws::Connect
|
|
1344
1348
|
:name,
|
1345
1349
|
:value,
|
1346
1350
|
:proficiency_level,
|
1351
|
+
:range,
|
1347
1352
|
:match_criteria,
|
1348
1353
|
:comparison_operator)
|
1349
1354
|
SENSITIVE = []
|
@@ -9112,12 +9117,17 @@ module Aws::Connect
|
|
9112
9117
|
# List of routing expressions which will be OR-ed together.
|
9113
9118
|
# @return [Array<Types::Expression>]
|
9114
9119
|
#
|
9120
|
+
# @!attribute [rw] not_attribute_condition
|
9121
|
+
# An object to specify the predefined attribute condition.
|
9122
|
+
# @return [Types::AttributeCondition]
|
9123
|
+
#
|
9115
9124
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/Expression AWS API Documentation
|
9116
9125
|
#
|
9117
9126
|
class Expression < Struct.new(
|
9118
9127
|
:attribute_condition,
|
9119
9128
|
:and_expression,
|
9120
|
-
:or_expression
|
9129
|
+
:or_expression,
|
9130
|
+
:not_attribute_condition)
|
9121
9131
|
SENSITIVE = []
|
9122
9132
|
include Aws::Structure
|
9123
9133
|
end
|
@@ -17747,6 +17757,25 @@ module Aws::Connect
|
|
17747
17757
|
include Aws::Structure
|
17748
17758
|
end
|
17749
17759
|
|
17760
|
+
# An Object to define the minimum and maximum proficiency levels.
|
17761
|
+
#
|
17762
|
+
# @!attribute [rw] min_proficiency_level
|
17763
|
+
# The minimum proficiency level of the range.
|
17764
|
+
# @return [Float]
|
17765
|
+
#
|
17766
|
+
# @!attribute [rw] max_proficiency_level
|
17767
|
+
# The maximum proficiency level of the range.
|
17768
|
+
# @return [Float]
|
17769
|
+
#
|
17770
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/Range AWS API Documentation
|
17771
|
+
#
|
17772
|
+
class Range < Struct.new(
|
17773
|
+
:min_proficiency_level,
|
17774
|
+
:max_proficiency_level)
|
17775
|
+
SENSITIVE = []
|
17776
|
+
include Aws::Structure
|
17777
|
+
end
|
17778
|
+
|
17750
17779
|
# Indicates a field that is read-only to an agent.
|
17751
17780
|
#
|
17752
17781
|
# @!attribute [rw] id
|
@@ -21343,7 +21372,7 @@ module Aws::Connect
|
|
21343
21372
|
# @return [Types::CreatedByInfo]
|
21344
21373
|
#
|
21345
21374
|
# @!attribute [rw] upload_url_metadata
|
21346
|
-
#
|
21375
|
+
# The headers to be provided while uploading the file to the URL.
|
21347
21376
|
# @return [Types::UploadUrlMetadata]
|
21348
21377
|
#
|
21349
21378
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartAttachedFileUploadResponse AWS API Documentation
|
data/lib/aws-sdk-connect.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -4414,6 +4414,10 @@ module Aws
|
|
4414
4414
|
name: ::String?,
|
4415
4415
|
value: ::String?,
|
4416
4416
|
proficiency_level: ::Float?,
|
4417
|
+
range: {
|
4418
|
+
min_proficiency_level: ::Float?,
|
4419
|
+
max_proficiency_level: ::Float?
|
4420
|
+
}?,
|
4417
4421
|
match_criteria: {
|
4418
4422
|
agents_criteria: {
|
4419
4423
|
agent_ids: Array[::String]?
|
@@ -4426,7 +4430,22 @@ module Aws
|
|
4426
4430
|
]?,
|
4427
4431
|
or_expression: Array[
|
4428
4432
|
untyped,
|
4429
|
-
]
|
4433
|
+
]?,
|
4434
|
+
not_attribute_condition: {
|
4435
|
+
name: ::String?,
|
4436
|
+
value: ::String?,
|
4437
|
+
proficiency_level: ::Float?,
|
4438
|
+
range: {
|
4439
|
+
min_proficiency_level: ::Float?,
|
4440
|
+
max_proficiency_level: ::Float?
|
4441
|
+
}?,
|
4442
|
+
match_criteria: {
|
4443
|
+
agents_criteria: {
|
4444
|
+
agent_ids: Array[::String]?
|
4445
|
+
}?
|
4446
|
+
}?,
|
4447
|
+
comparison_operator: ::String?
|
4448
|
+
}?
|
4430
4449
|
}?
|
4431
4450
|
},
|
4432
4451
|
]?
|
data/sig/types.rbs
CHANGED
@@ -346,6 +346,7 @@ module Aws::Connect
|
|
346
346
|
attr_accessor name: ::String
|
347
347
|
attr_accessor value: ::String
|
348
348
|
attr_accessor proficiency_level: ::Float
|
349
|
+
attr_accessor range: Types::Range
|
349
350
|
attr_accessor match_criteria: Types::MatchCriteria
|
350
351
|
attr_accessor comparison_operator: ::String
|
351
352
|
SENSITIVE: []
|
@@ -2348,6 +2349,7 @@ module Aws::Connect
|
|
2348
2349
|
attr_accessor attribute_condition: Types::AttributeCondition
|
2349
2350
|
attr_accessor and_expression: ::Array[Types::Expression]
|
2350
2351
|
attr_accessor or_expression: ::Array[Types::Expression]
|
2352
|
+
attr_accessor not_attribute_condition: Types::AttributeCondition
|
2351
2353
|
SENSITIVE: []
|
2352
2354
|
end
|
2353
2355
|
|
@@ -4109,6 +4111,12 @@ module Aws::Connect
|
|
4109
4111
|
SENSITIVE: []
|
4110
4112
|
end
|
4111
4113
|
|
4114
|
+
class Range
|
4115
|
+
attr_accessor min_proficiency_level: ::Float
|
4116
|
+
attr_accessor max_proficiency_level: ::Float
|
4117
|
+
SENSITIVE: []
|
4118
|
+
end
|
4119
|
+
|
4112
4120
|
class ReadOnlyFieldInfo
|
4113
4121
|
attr_accessor id: Types::TaskTemplateFieldIdentifier
|
4114
4122
|
SENSITIVE: []
|
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.
|
4
|
+
version: 1.192.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-12-
|
11
|
+
date: 2024-12-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|