aws-sdk-connect 1.191.0 → 1.193.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +53 -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 +22 -1
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +8 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a6b79434b889fb740528c94b84a15a8b803280d56df7321a2ef6f0927c245952
|
4
|
+
data.tar.gz: 625087792df152be852b218ae4919e624a74bb128f40e0154d576fabe5f8ab77
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eb3caf7219f3886b4b51df64eefd0e5d7727f2a564b82f1990bb3c1008d6420e6a5624d60f79b7c68797057da61f6727ef308477a44e12d16f3407f2830d07df
|
7
|
+
data.tar.gz: 1e4457523d4d84908a7ae92a08173d8d6f7c8cdf95993ba0eec033dde3b54d814fa38d86d0f968308c0991d07b9e6f705f2d1eb50e5b4747e7e5d7b7fb7266c2
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.193.0 (2025-01-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.192.0 (2024-12-20)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release supports adding NotAttributeCondition and Range to the RoutingCriteria object.
|
13
|
+
|
4
14
|
1.191.0 (2024-12-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.193.0
|
@@ -257,11 +257,34 @@ module Aws::Connect
|
|
257
257
|
# Used when loading credentials from the shared credentials file
|
258
258
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
259
259
|
#
|
260
|
+
# @option options [String] :request_checksum_calculation ("when_supported")
|
261
|
+
# Determines when a checksum will be calculated for request payloads. Values are:
|
262
|
+
#
|
263
|
+
# * `when_supported` - (default) When set, a checksum will be
|
264
|
+
# calculated for all request payloads of operations modeled with the
|
265
|
+
# `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
|
266
|
+
# `requestAlgorithmMember` is modeled.
|
267
|
+
# * `when_required` - When set, a checksum will only be calculated for
|
268
|
+
# request payloads of operations modeled with the `httpChecksum` trait where
|
269
|
+
# `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
|
270
|
+
# is modeled and supplied.
|
271
|
+
#
|
260
272
|
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
261
273
|
# The minimum size in bytes that triggers compression for request
|
262
274
|
# bodies. The value must be non-negative integer value between 0
|
263
275
|
# and 10485780 bytes inclusive.
|
264
276
|
#
|
277
|
+
# @option options [String] :response_checksum_validation ("when_supported")
|
278
|
+
# Determines when checksum validation will be performed on response payloads. Values are:
|
279
|
+
#
|
280
|
+
# * `when_supported` - (default) When set, checksum validation is performed on all
|
281
|
+
# response payloads of operations modeled with the `httpChecksum` trait where
|
282
|
+
# `responseAlgorithms` is modeled, except when no modeled checksum algorithms
|
283
|
+
# are supported.
|
284
|
+
# * `when_required` - When set, checksum validation is not performed on
|
285
|
+
# response payloads of operations unless the checksum algorithm is supported and
|
286
|
+
# the `requestValidationModeMember` member is set to `ENABLED`.
|
287
|
+
#
|
265
288
|
# @option options [Proc] :retry_backoff
|
266
289
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
267
290
|
# This option is only used in the `legacy` retry mode.
|
@@ -5228,6 +5251,8 @@ module Aws::Connect
|
|
5228
5251
|
# resp.contact.routing_criteria.steps[0].expression.attribute_condition.name #=> String
|
5229
5252
|
# resp.contact.routing_criteria.steps[0].expression.attribute_condition.value #=> String
|
5230
5253
|
# resp.contact.routing_criteria.steps[0].expression.attribute_condition.proficiency_level #=> Float
|
5254
|
+
# resp.contact.routing_criteria.steps[0].expression.attribute_condition.range.min_proficiency_level #=> Float
|
5255
|
+
# resp.contact.routing_criteria.steps[0].expression.attribute_condition.range.max_proficiency_level #=> Float
|
5231
5256
|
# resp.contact.routing_criteria.steps[0].expression.attribute_condition.match_criteria.agents_criteria.agent_ids #=> Array
|
5232
5257
|
# resp.contact.routing_criteria.steps[0].expression.attribute_condition.match_criteria.agents_criteria.agent_ids[0] #=> String
|
5233
5258
|
# resp.contact.routing_criteria.steps[0].expression.attribute_condition.comparison_operator #=> String
|
@@ -5235,6 +5260,14 @@ module Aws::Connect
|
|
5235
5260
|
# resp.contact.routing_criteria.steps[0].expression.and_expression[0] #=> Types::Expression
|
5236
5261
|
# resp.contact.routing_criteria.steps[0].expression.or_expression #=> Array
|
5237
5262
|
# resp.contact.routing_criteria.steps[0].expression.or_expression[0] #=> Types::Expression
|
5263
|
+
# resp.contact.routing_criteria.steps[0].expression.not_attribute_condition.name #=> String
|
5264
|
+
# resp.contact.routing_criteria.steps[0].expression.not_attribute_condition.value #=> String
|
5265
|
+
# resp.contact.routing_criteria.steps[0].expression.not_attribute_condition.proficiency_level #=> Float
|
5266
|
+
# resp.contact.routing_criteria.steps[0].expression.not_attribute_condition.range.min_proficiency_level #=> Float
|
5267
|
+
# resp.contact.routing_criteria.steps[0].expression.not_attribute_condition.range.max_proficiency_level #=> Float
|
5268
|
+
# resp.contact.routing_criteria.steps[0].expression.not_attribute_condition.match_criteria.agents_criteria.agent_ids #=> Array
|
5269
|
+
# resp.contact.routing_criteria.steps[0].expression.not_attribute_condition.match_criteria.agents_criteria.agent_ids[0] #=> String
|
5270
|
+
# resp.contact.routing_criteria.steps[0].expression.not_attribute_condition.comparison_operator #=> String
|
5238
5271
|
# resp.contact.routing_criteria.steps[0].status #=> String, one of "ACTIVE", "INACTIVE", "JOINED", "EXPIRED"
|
5239
5272
|
# resp.contact.routing_criteria.activation_timestamp #=> Time
|
5240
5273
|
# resp.contact.routing_criteria.index #=> Integer
|
@@ -18244,6 +18277,10 @@ module Aws::Connect
|
|
18244
18277
|
# name: "PredefinedAttributeName",
|
18245
18278
|
# value: "ProficiencyValue",
|
18246
18279
|
# proficiency_level: 1.0,
|
18280
|
+
# range: {
|
18281
|
+
# min_proficiency_level: 1.0,
|
18282
|
+
# max_proficiency_level: 1.0,
|
18283
|
+
# },
|
18247
18284
|
# match_criteria: {
|
18248
18285
|
# agents_criteria: {
|
18249
18286
|
# agent_ids: ["AgentId"],
|
@@ -18261,6 +18298,21 @@ module Aws::Connect
|
|
18261
18298
|
# # recursive Expression
|
18262
18299
|
# },
|
18263
18300
|
# ],
|
18301
|
+
# not_attribute_condition: {
|
18302
|
+
# name: "PredefinedAttributeName",
|
18303
|
+
# value: "ProficiencyValue",
|
18304
|
+
# proficiency_level: 1.0,
|
18305
|
+
# range: {
|
18306
|
+
# min_proficiency_level: 1.0,
|
18307
|
+
# max_proficiency_level: 1.0,
|
18308
|
+
# },
|
18309
|
+
# match_criteria: {
|
18310
|
+
# agents_criteria: {
|
18311
|
+
# agent_ids: ["AgentId"],
|
18312
|
+
# },
|
18313
|
+
# },
|
18314
|
+
# comparison_operator: "ComparisonOperator",
|
18315
|
+
# },
|
18264
18316
|
# },
|
18265
18317
|
# },
|
18266
18318
|
# ],
|
@@ -20570,7 +20622,7 @@ module Aws::Connect
|
|
20570
20622
|
tracer: tracer
|
20571
20623
|
)
|
20572
20624
|
context[:gem_name] = 'aws-sdk-connect'
|
20573
|
-
context[:gem_version] = '1.
|
20625
|
+
context[:gem_version] = '1.193.0'
|
20574
20626
|
Seahorse::Client::Request.new(handlers, context)
|
20575
20627
|
end
|
20576
20628
|
|
@@ -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
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
@@ -4414,6 +4416,10 @@ module Aws
|
|
4414
4416
|
name: ::String?,
|
4415
4417
|
value: ::String?,
|
4416
4418
|
proficiency_level: ::Float?,
|
4419
|
+
range: {
|
4420
|
+
min_proficiency_level: ::Float?,
|
4421
|
+
max_proficiency_level: ::Float?
|
4422
|
+
}?,
|
4417
4423
|
match_criteria: {
|
4418
4424
|
agents_criteria: {
|
4419
4425
|
agent_ids: Array[::String]?
|
@@ -4426,7 +4432,22 @@ module Aws
|
|
4426
4432
|
]?,
|
4427
4433
|
or_expression: Array[
|
4428
4434
|
untyped,
|
4429
|
-
]
|
4435
|
+
]?,
|
4436
|
+
not_attribute_condition: {
|
4437
|
+
name: ::String?,
|
4438
|
+
value: ::String?,
|
4439
|
+
proficiency_level: ::Float?,
|
4440
|
+
range: {
|
4441
|
+
min_proficiency_level: ::Float?,
|
4442
|
+
max_proficiency_level: ::Float?
|
4443
|
+
}?,
|
4444
|
+
match_criteria: {
|
4445
|
+
agents_criteria: {
|
4446
|
+
agent_ids: Array[::String]?
|
4447
|
+
}?
|
4448
|
+
}?,
|
4449
|
+
comparison_operator: ::String?
|
4450
|
+
}?
|
4430
4451
|
}?
|
4431
4452
|
},
|
4432
4453
|
]?
|
data/sig/resource.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
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.193.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:
|
11
|
+
date: 2025-01-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.216.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.216.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|