aws-sdk-connectcases 1.40.0 → 1.41.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-connectcases/client.rb +8 -3
- data/lib/aws-sdk-connectcases/client_api.rb +3 -0
- data/lib/aws-sdk-connectcases/types.rb +11 -5
- data/lib/aws-sdk-connectcases.rb +1 -1
- data/sig/client.rbs +3 -0
- data/sig/types.rbs +4 -1
- 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: 6e8ee13c0822398a7190ef7a372a3d1765ce99f8837fb56bc4a680f27558207b
|
4
|
+
data.tar.gz: f99af048f04027c4947cf0ae7049d8aea301536b5a27c557ddb5a4fefb3723f8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ca668776c0482566e773f10bb63dc925bb4752504f1ef2b7955ec73021e214160de64ef017bd795672a6be0bff1113d8aa924551ccd130f72e26d16323cc156c
|
7
|
+
data.tar.gz: cd72d847091872e3307266cdc4a8469c4f9084218d15289ced6f83f427891173a4a41ed64da11b801d36499c4636cb241a60dc8345e017b6401a28ff46df4baa
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.41.0 (2025-04-29)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Introduces CustomEntity as part of the UserUnion data type. This field is used to indicate the entity who is performing the API action.
|
8
|
+
|
4
9
|
1.40.0 (2025-04-16)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.41.0
|
@@ -681,7 +681,7 @@ module Aws::ConnectCases
|
|
681
681
|
# and value union data.
|
682
682
|
#
|
683
683
|
# @option params [Types::UserUnion] :performed_by
|
684
|
-
# Represents the
|
684
|
+
# Represents the entity that performed the action.
|
685
685
|
#
|
686
686
|
# @option params [required, String] :template_id
|
687
687
|
# A unique identifier of a template.
|
@@ -710,6 +710,7 @@ module Aws::ConnectCases
|
|
710
710
|
# },
|
711
711
|
# ],
|
712
712
|
# performed_by: {
|
713
|
+
# custom_entity: "CustomEntity",
|
713
714
|
# user_arn: "UserArn",
|
714
715
|
# },
|
715
716
|
# template_id: "TemplateId", # required
|
@@ -1060,6 +1061,7 @@ module Aws::ConnectCases
|
|
1060
1061
|
# },
|
1061
1062
|
# domain_id: "DomainId", # required
|
1062
1063
|
# performed_by: {
|
1064
|
+
# custom_entity: "CustomEntity",
|
1063
1065
|
# user_arn: "UserArn",
|
1064
1066
|
# },
|
1065
1067
|
# type: "Contact", # required, accepts Contact, Comment, File, Sla
|
@@ -1487,6 +1489,7 @@ module Aws::ConnectCases
|
|
1487
1489
|
# resp.audit_events[0].fields[0].old_value.string_value #=> String
|
1488
1490
|
# resp.audit_events[0].fields[0].old_value.user_arn_value #=> String
|
1489
1491
|
# resp.audit_events[0].performed_by.iam_principal_arn #=> String
|
1492
|
+
# resp.audit_events[0].performed_by.user.custom_entity #=> String
|
1490
1493
|
# resp.audit_events[0].performed_by.user.user_arn #=> String
|
1491
1494
|
# resp.audit_events[0].performed_time #=> Time
|
1492
1495
|
# resp.audit_events[0].related_item_type #=> String, one of "Contact", "Comment", "File", "Sla"
|
@@ -2383,6 +2386,7 @@ module Aws::ConnectCases
|
|
2383
2386
|
# resp.related_items[0].content.sla.sla_configuration.target_field_values[0].user_arn_value #=> String
|
2384
2387
|
# resp.related_items[0].content.sla.sla_configuration.target_time #=> Time
|
2385
2388
|
# resp.related_items[0].content.sla.sla_configuration.type #=> String, one of "CaseField"
|
2389
|
+
# resp.related_items[0].performed_by.custom_entity #=> String
|
2386
2390
|
# resp.related_items[0].performed_by.user_arn #=> String
|
2387
2391
|
# resp.related_items[0].related_item_id #=> String
|
2388
2392
|
# resp.related_items[0].tags #=> Hash
|
@@ -2481,7 +2485,7 @@ module Aws::ConnectCases
|
|
2481
2485
|
# and value union data, structured identical to `CreateCase`.
|
2482
2486
|
#
|
2483
2487
|
# @option params [Types::UserUnion] :performed_by
|
2484
|
-
# Represents the
|
2488
|
+
# Represents the entity that performed the action.
|
2485
2489
|
#
|
2486
2490
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2487
2491
|
#
|
@@ -2504,6 +2508,7 @@ module Aws::ConnectCases
|
|
2504
2508
|
# },
|
2505
2509
|
# ],
|
2506
2510
|
# performed_by: {
|
2511
|
+
# custom_entity: "CustomEntity",
|
2507
2512
|
# user_arn: "UserArn",
|
2508
2513
|
# },
|
2509
2514
|
# })
|
@@ -2814,7 +2819,7 @@ module Aws::ConnectCases
|
|
2814
2819
|
tracer: tracer
|
2815
2820
|
)
|
2816
2821
|
context[:gem_name] = 'aws-sdk-connectcases'
|
2817
|
-
context[:gem_version] = '1.
|
2822
|
+
context[:gem_version] = '1.41.0'
|
2818
2823
|
Seahorse::Client::Request.new(handlers, context)
|
2819
2824
|
end
|
2820
2825
|
|
@@ -91,6 +91,7 @@ module Aws::ConnectCases
|
|
91
91
|
CreateTemplateRequest = Shapes::StructureShape.new(name: 'CreateTemplateRequest')
|
92
92
|
CreateTemplateResponse = Shapes::StructureShape.new(name: 'CreateTemplateResponse')
|
93
93
|
CreatedTime = Shapes::TimestampShape.new(name: 'CreatedTime', timestampFormat: "iso8601")
|
94
|
+
CustomEntity = Shapes::StringShape.new(name: 'CustomEntity')
|
94
95
|
DeleteCaseRuleRequest = Shapes::StructureShape.new(name: 'DeleteCaseRuleRequest')
|
95
96
|
DeleteCaseRuleResponse = Shapes::StructureShape.new(name: 'DeleteCaseRuleResponse')
|
96
97
|
DeleteDomainRequest = Shapes::StructureShape.new(name: 'DeleteDomainRequest')
|
@@ -1089,8 +1090,10 @@ module Aws::ConnectCases
|
|
1089
1090
|
|
1090
1091
|
UpdateTemplateResponse.struct_class = Types::UpdateTemplateResponse
|
1091
1092
|
|
1093
|
+
UserUnion.add_member(:custom_entity, Shapes::ShapeRef.new(shape: CustomEntity, location_name: "customEntity"))
|
1092
1094
|
UserUnion.add_member(:user_arn, Shapes::ShapeRef.new(shape: UserArn, location_name: "userArn"))
|
1093
1095
|
UserUnion.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
1096
|
+
UserUnion.add_member_subclass(:custom_entity, Types::UserUnion::CustomEntity)
|
1094
1097
|
UserUnion.add_member_subclass(:user_arn, Types::UserUnion::UserArn)
|
1095
1098
|
UserUnion.add_member_subclass(:unknown, Types::UserUnion::Unknown)
|
1096
1099
|
UserUnion.struct_class = Types::UserUnion
|
@@ -146,7 +146,7 @@ module Aws::ConnectCases
|
|
146
146
|
# @return [String]
|
147
147
|
#
|
148
148
|
# @!attribute [rw] user
|
149
|
-
# Represents the
|
149
|
+
# Represents the entity that performed the action.
|
150
150
|
# @return [Types::UserUnion]
|
151
151
|
#
|
152
152
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/AuditEventPerformedBy AWS API Documentation
|
@@ -661,7 +661,7 @@ module Aws::ConnectCases
|
|
661
661
|
# @return [Array<Types::FieldValue>]
|
662
662
|
#
|
663
663
|
# @!attribute [rw] performed_by
|
664
|
-
# Represents the
|
664
|
+
# Represents the entity that performed the action.
|
665
665
|
# @return [Types::UserUnion]
|
666
666
|
#
|
667
667
|
# @!attribute [rw] template_id
|
@@ -3176,7 +3176,7 @@ module Aws::ConnectCases
|
|
3176
3176
|
# @return [Array<Types::FieldValue>]
|
3177
3177
|
#
|
3178
3178
|
# @!attribute [rw] performed_by
|
3179
|
-
# Represents the
|
3179
|
+
# Represents the entity that performed the action.
|
3180
3180
|
# @return [Types::UserUnion]
|
3181
3181
|
#
|
3182
3182
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/UpdateCaseRequest AWS API Documentation
|
@@ -3350,12 +3350,16 @@ module Aws::ConnectCases
|
|
3350
3350
|
#
|
3351
3351
|
class UpdateTemplateResponse < Aws::EmptyStructure; end
|
3352
3352
|
|
3353
|
-
# Represents the
|
3353
|
+
# Represents the entity that performed the action.
|
3354
3354
|
#
|
3355
3355
|
# @note UserUnion is a union - when making an API calls you must set exactly one of the members.
|
3356
3356
|
#
|
3357
3357
|
# @note UserUnion is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of UserUnion corresponding to the set member.
|
3358
3358
|
#
|
3359
|
+
# @!attribute [rw] custom_entity
|
3360
|
+
# Any provided entity.
|
3361
|
+
# @return [String]
|
3362
|
+
#
|
3359
3363
|
# @!attribute [rw] user_arn
|
3360
3364
|
# Represents the Amazon Connect ARN of the user.
|
3361
3365
|
# @return [String]
|
@@ -3363,12 +3367,14 @@ module Aws::ConnectCases
|
|
3363
3367
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/UserUnion AWS API Documentation
|
3364
3368
|
#
|
3365
3369
|
class UserUnion < Struct.new(
|
3370
|
+
:custom_entity,
|
3366
3371
|
:user_arn,
|
3367
3372
|
:unknown)
|
3368
|
-
SENSITIVE = []
|
3373
|
+
SENSITIVE = [:custom_entity]
|
3369
3374
|
include Aws::Structure
|
3370
3375
|
include Aws::Structure::Union
|
3371
3376
|
|
3377
|
+
class CustomEntity < UserUnion; end
|
3372
3378
|
class UserArn < UserUnion; end
|
3373
3379
|
class Unknown < UserUnion; end
|
3374
3380
|
end
|
data/lib/aws-sdk-connectcases.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -150,6 +150,7 @@ module Aws
|
|
150
150
|
},
|
151
151
|
],
|
152
152
|
?performed_by: {
|
153
|
+
custom_entity: ::String?,
|
153
154
|
user_arn: ::String?
|
154
155
|
},
|
155
156
|
template_id: ::String
|
@@ -314,6 +315,7 @@ module Aws
|
|
314
315
|
},
|
315
316
|
domain_id: ::String,
|
316
317
|
?performed_by: {
|
318
|
+
custom_entity: ::String?,
|
317
319
|
user_arn: ::String?
|
318
320
|
},
|
319
321
|
type: ("Contact" | "Comment" | "File" | "Sla")
|
@@ -792,6 +794,7 @@ module Aws
|
|
792
794
|
},
|
793
795
|
],
|
794
796
|
?performed_by: {
|
797
|
+
custom_entity: ::String?,
|
795
798
|
user_arn: ::String?
|
796
799
|
}
|
797
800
|
) -> _UpdateCaseResponseSuccess
|
data/sig/types.rbs
CHANGED
@@ -1086,10 +1086,13 @@ module Aws::ConnectCases
|
|
1086
1086
|
end
|
1087
1087
|
|
1088
1088
|
class UserUnion
|
1089
|
+
attr_accessor custom_entity: ::String
|
1089
1090
|
attr_accessor user_arn: ::String
|
1090
1091
|
attr_accessor unknown: untyped
|
1091
|
-
SENSITIVE: []
|
1092
|
+
SENSITIVE: [:custom_entity]
|
1092
1093
|
|
1094
|
+
class CustomEntity < UserUnion
|
1095
|
+
end
|
1093
1096
|
class UserArn < UserUnion
|
1094
1097
|
end
|
1095
1098
|
class Unknown < UserUnion
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-connectcases
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.41.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: 2025-04-
|
11
|
+
date: 2025-04-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|