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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c66f09137289faa26ad5868142aa8c74d29cf3c175e10b4964d28d8936744e32
4
- data.tar.gz: 7633a70dc6e8d3077dd6c66c88fe8eb677fd4d041943bbbea4b88a75b7d33201
3
+ metadata.gz: 71650b7edb4329739eea5d77a97aad5fce2d329f0cd5b168c539115778924f0f
4
+ data.tar.gz: 5aef7ae1fb6222438ea052fc4d235e795026e406e0983922c4036507b737d052
5
5
  SHA512:
6
- metadata.gz: b80aabaaf1f5ccff67abbdd9cdfbe8ad37469e9b12737476911d4d8854a5ca0672a50438e00df19ece40e530d62afaf03828db93466d89e15b6f9a714df42310
7
- data.tar.gz: 0d0e01ae3314b49f5016929e8a8bce6dcdd6660e4992a33c8dfe7d36fdb014129a5faea6822e63bd558beb45a9645280cf754e735bc87e6a04643bd6d633555b
6
+ metadata.gz: b08646aae4f56192a6d0dee806071633e54d7b3d81ffdbbf3e939bb653dba2faec2da61b5517c864795492c3b48959b486ec103e086800dd5a014e5f83b2ec3f
7
+ data.tar.gz: 8cd21c75e35056ff533a6cd5eac3c9d23ba07f340043ac4455feab23efdd89c08b3eaa5052a76ec03f03f6a305038401e81c3757cdfc307c2a4266c00b36dd80
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.192.0 (2024-12-20)
5
+ ------------------
6
+
7
+ * Feature - This release supports adding NotAttributeCondition and Range to the RoutingCriteria object.
8
+
4
9
  1.191.0 (2024-12-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.191.0
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.191.0'
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
- # Information to be used while uploading the attached file.
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
@@ -54,7 +54,7 @@ module Aws::Connect
54
54
  autoload :EndpointProvider, 'aws-sdk-connect/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-connect/endpoints'
56
56
 
57
- GEM_VERSION = '1.191.0'
57
+ GEM_VERSION = '1.192.0'
58
58
 
59
59
  end
60
60
 
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.191.0
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-18 00:00:00.000000000 Z
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