aws-sdk-connectcases 1.43.0 → 1.47.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connectcases/client.rb +104 -16
- data/lib/aws-sdk-connectcases/client_api.rb +43 -0
- data/lib/aws-sdk-connectcases/types.rb +47 -0
- data/lib/aws-sdk-connectcases.rb +1 -1
- data/sig/client.rbs +22 -0
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +19 -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: af9aff77015cb3387ab7f4e23777624fad137df4bf11134d5dd5756cb98c21d9
|
4
|
+
data.tar.gz: fa7c851381acc5ad1c852d58cf32020e2cc76c56495093bcf5bca71df714f8cf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c0ce426af8a78062f89d5f0ec2168c0c243109a748e55b4a1322a4d59425cd75d04b264a3eb024f866145c146a280986c6497ff6a920c97816352d072a6be1f6
|
7
|
+
data.tar.gz: 1b5daceaced0759b982baaa3dce1487fc42fae7648169fb71a55a2c521e07c5b46f86e4dcfaf79d9370eb27797f2f842e403601fe69affeb9ca4c3b25b51ef1d
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.47.0 (2025-07-31)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.46.0 (2025-07-21)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.45.0 (2025-07-02)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - This release adds DeleteCase and DeleteRelatedItem APIs, which enable deleting cases and comments, undoing contact association, and removing service level agreements (SLAs) from cases. Contact center admins can use these APIs to delete cases when requested by customers and correct agent errors.
|
18
|
+
|
19
|
+
1.44.0 (2025-06-02)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.43.0 (2025-05-12)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.47.0
|
@@ -95,7 +95,7 @@ module Aws::ConnectCases
|
|
95
95
|
# class name or an instance of a plugin class.
|
96
96
|
#
|
97
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
98
|
-
# Your AWS credentials. This can be an instance of any one of the
|
98
|
+
# Your AWS credentials used for authentication. This can be an instance of any one of the
|
99
99
|
# following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
@@ -128,18 +128,23 @@ module Aws::ConnectCases
|
|
128
128
|
# locations will be searched for credentials:
|
129
129
|
#
|
130
130
|
# * `Aws.config[:credentials]`
|
131
|
+
#
|
131
132
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
132
133
|
# `:account_id` options.
|
133
|
-
#
|
134
|
-
#
|
134
|
+
#
|
135
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
136
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
137
|
+
#
|
135
138
|
# * `~/.aws/credentials`
|
139
|
+
#
|
136
140
|
# * `~/.aws/config`
|
141
|
+
#
|
137
142
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
138
143
|
# are very aggressive. Construct and pass an instance of
|
139
144
|
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
140
145
|
# enable retries and extended timeouts. Instance profile credential
|
141
|
-
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
142
|
-
# to true
|
146
|
+
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
+
# to `true`.
|
143
148
|
#
|
144
149
|
# @option options [required, String] :region
|
145
150
|
# The AWS region to connect to. The configured `:region` is
|
@@ -167,6 +172,11 @@ module Aws::ConnectCases
|
|
167
172
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
168
173
|
# not retry instead of sleeping.
|
169
174
|
#
|
175
|
+
# @option options [Array<String>] :auth_scheme_preference
|
176
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
177
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
178
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
179
|
+
#
|
170
180
|
# @option options [Boolean] :client_side_monitoring (false)
|
171
181
|
# When `true`, client-side metrics will be collected for all API requests from
|
172
182
|
# this client.
|
@@ -253,8 +263,8 @@ module Aws::ConnectCases
|
|
253
263
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
254
264
|
#
|
255
265
|
# @option options [String] :profile ("default")
|
256
|
-
# Used when loading credentials from the shared credentials file
|
257
|
-
#
|
266
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
267
|
+
# When not specified, 'default' is used.
|
258
268
|
#
|
259
269
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
260
270
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
@@ -367,7 +377,7 @@ module Aws::ConnectCases
|
|
367
377
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
368
378
|
#
|
369
379
|
# @option options [Aws::TokenProvider] :token_provider
|
370
|
-
#
|
380
|
+
# Your Bearer token used for authentication. This can be an instance of any one of the
|
371
381
|
# following classes:
|
372
382
|
#
|
373
383
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
@@ -637,19 +647,20 @@ module Aws::ConnectCases
|
|
637
647
|
req.send_request(options)
|
638
648
|
end
|
639
649
|
|
640
|
-
# <note markdown="1"> If you provide a value for `PerformedBy.UserArn`
|
650
|
+
# <note markdown="1"> If you provide a value for `PerformedBy.UserArn`
|
651
|
+
# you must also have
|
641
652
|
# [connect:DescribeUser][1] permission on the User ARN resource that you
|
642
653
|
# provide
|
643
654
|
#
|
644
655
|
# </note>
|
645
656
|
#
|
646
|
-
#
|
657
|
+
# Creates a case in the specified Cases domain. Case system and custom
|
647
658
|
# fields are taken as an array id/value pairs with a declared data
|
648
659
|
# types.
|
649
660
|
#
|
650
|
-
#
|
661
|
+
# The following fields are required when creating a case:
|
651
662
|
#
|
652
|
-
#
|
663
|
+
# * `customer_id` - You must provide the full customer profile ARN in
|
653
664
|
# this format: `arn:aws:profile:your_AWS_Region:your_AWS_account
|
654
665
|
# ID:domains/your_profiles_domain_name/profiles/profile_ID`
|
655
666
|
#
|
@@ -1175,6 +1186,43 @@ module Aws::ConnectCases
|
|
1175
1186
|
req.send_request(options)
|
1176
1187
|
end
|
1177
1188
|
|
1189
|
+
# The DeleteCase API permanently deletes a case and all its associated
|
1190
|
+
# resources from the cases data store. After a successful deletion, you
|
1191
|
+
# cannot:
|
1192
|
+
#
|
1193
|
+
# * Retrieve related items
|
1194
|
+
#
|
1195
|
+
# * Access audit history
|
1196
|
+
#
|
1197
|
+
# * Perform any operations that require the CaseID
|
1198
|
+
#
|
1199
|
+
# This action is irreversible. Once you delete a case, you cannot
|
1200
|
+
# recover its data.
|
1201
|
+
#
|
1202
|
+
# @option params [required, String] :case_id
|
1203
|
+
# A unique identifier of the case.
|
1204
|
+
#
|
1205
|
+
# @option params [required, String] :domain_id
|
1206
|
+
# A unique identifier of the Cases domain.
|
1207
|
+
#
|
1208
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1209
|
+
#
|
1210
|
+
# @example Request syntax with placeholder values
|
1211
|
+
#
|
1212
|
+
# resp = client.delete_case({
|
1213
|
+
# case_id: "CaseId", # required
|
1214
|
+
# domain_id: "DomainId", # required
|
1215
|
+
# })
|
1216
|
+
#
|
1217
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/DeleteCase AWS API Documentation
|
1218
|
+
#
|
1219
|
+
# @overload delete_case(params = {})
|
1220
|
+
# @param [Hash] params ({})
|
1221
|
+
def delete_case(params = {}, options = {})
|
1222
|
+
req = build_request(:delete_case, params)
|
1223
|
+
req.send_request(options)
|
1224
|
+
end
|
1225
|
+
|
1178
1226
|
# Deletes a case rule. In the Amazon Connect admin website, case rules
|
1179
1227
|
# are known as *case field conditions*. For more information about case
|
1180
1228
|
# field conditions, see [Add case field conditions to a case
|
@@ -1342,6 +1390,45 @@ module Aws::ConnectCases
|
|
1342
1390
|
req.send_request(options)
|
1343
1391
|
end
|
1344
1392
|
|
1393
|
+
# Deletes the related item resource under a case.
|
1394
|
+
#
|
1395
|
+
# <note markdown="1"> This API cannot be used on a FILE type related attachment. To delete
|
1396
|
+
# this type of file, use the [DeleteAttachedFile][1] API
|
1397
|
+
#
|
1398
|
+
# </note>
|
1399
|
+
#
|
1400
|
+
#
|
1401
|
+
#
|
1402
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_DeleteAttachedFile.html
|
1403
|
+
#
|
1404
|
+
# @option params [required, String] :case_id
|
1405
|
+
# A unique identifier of the case.
|
1406
|
+
#
|
1407
|
+
# @option params [required, String] :domain_id
|
1408
|
+
# A unique identifier of the Cases domain.
|
1409
|
+
#
|
1410
|
+
# @option params [required, String] :related_item_id
|
1411
|
+
# A unique identifier of a related item.
|
1412
|
+
#
|
1413
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1414
|
+
#
|
1415
|
+
# @example Request syntax with placeholder values
|
1416
|
+
#
|
1417
|
+
# resp = client.delete_related_item({
|
1418
|
+
# case_id: "CaseId", # required
|
1419
|
+
# domain_id: "DomainId", # required
|
1420
|
+
# related_item_id: "RelatedItemId", # required
|
1421
|
+
# })
|
1422
|
+
#
|
1423
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/DeleteRelatedItem AWS API Documentation
|
1424
|
+
#
|
1425
|
+
# @overload delete_related_item(params = {})
|
1426
|
+
# @param [Hash] params ({})
|
1427
|
+
def delete_related_item(params = {}, options = {})
|
1428
|
+
req = build_request(:delete_related_item, params)
|
1429
|
+
req.send_request(options)
|
1430
|
+
end
|
1431
|
+
|
1345
1432
|
# Deletes a cases template. You can delete up to 100 templates per
|
1346
1433
|
# domain.
|
1347
1434
|
#
|
@@ -2456,17 +2543,18 @@ module Aws::ConnectCases
|
|
2456
2543
|
req.send_request(options)
|
2457
2544
|
end
|
2458
2545
|
|
2459
|
-
# <note markdown="1"> If you provide a value for `PerformedBy.UserArn`
|
2546
|
+
# <note markdown="1"> If you provide a value for `PerformedBy.UserArn`
|
2547
|
+
# you must also have
|
2460
2548
|
# [connect:DescribeUser][1] permission on the User ARN resource that you
|
2461
2549
|
# provide
|
2462
2550
|
#
|
2463
2551
|
# </note>
|
2464
2552
|
#
|
2465
|
-
#
|
2553
|
+
# Updates the values of fields on a case. Fields to be updated are
|
2466
2554
|
# received as an array of id/value pairs identical to the `CreateCase`
|
2467
2555
|
# input .
|
2468
2556
|
#
|
2469
|
-
#
|
2557
|
+
# If the action is successful, the service sends back an HTTP 200
|
2470
2558
|
# response with an empty HTTP body.
|
2471
2559
|
#
|
2472
2560
|
#
|
@@ -2818,7 +2906,7 @@ module Aws::ConnectCases
|
|
2818
2906
|
tracer: tracer
|
2819
2907
|
)
|
2820
2908
|
context[:gem_name] = 'aws-sdk-connectcases'
|
2821
|
-
context[:gem_version] = '1.
|
2909
|
+
context[:gem_version] = '1.47.0'
|
2822
2910
|
Seahorse::Client::Request.new(handlers, context)
|
2823
2911
|
end
|
2824
2912
|
|
@@ -92,6 +92,8 @@ module Aws::ConnectCases
|
|
92
92
|
CreateTemplateResponse = Shapes::StructureShape.new(name: 'CreateTemplateResponse')
|
93
93
|
CreatedTime = Shapes::TimestampShape.new(name: 'CreatedTime', timestampFormat: "iso8601")
|
94
94
|
CustomEntity = Shapes::StringShape.new(name: 'CustomEntity')
|
95
|
+
DeleteCaseRequest = Shapes::StructureShape.new(name: 'DeleteCaseRequest')
|
96
|
+
DeleteCaseResponse = Shapes::StructureShape.new(name: 'DeleteCaseResponse')
|
95
97
|
DeleteCaseRuleRequest = Shapes::StructureShape.new(name: 'DeleteCaseRuleRequest')
|
96
98
|
DeleteCaseRuleResponse = Shapes::StructureShape.new(name: 'DeleteCaseRuleResponse')
|
97
99
|
DeleteDomainRequest = Shapes::StructureShape.new(name: 'DeleteDomainRequest')
|
@@ -100,6 +102,8 @@ module Aws::ConnectCases
|
|
100
102
|
DeleteFieldResponse = Shapes::StructureShape.new(name: 'DeleteFieldResponse')
|
101
103
|
DeleteLayoutRequest = Shapes::StructureShape.new(name: 'DeleteLayoutRequest')
|
102
104
|
DeleteLayoutResponse = Shapes::StructureShape.new(name: 'DeleteLayoutResponse')
|
105
|
+
DeleteRelatedItemRequest = Shapes::StructureShape.new(name: 'DeleteRelatedItemRequest')
|
106
|
+
DeleteRelatedItemResponse = Shapes::StructureShape.new(name: 'DeleteRelatedItemResponse')
|
103
107
|
DeleteTemplateRequest = Shapes::StructureShape.new(name: 'DeleteTemplateRequest')
|
104
108
|
DeleteTemplateResponse = Shapes::StructureShape.new(name: 'DeleteTemplateResponse')
|
105
109
|
Deleted = Shapes::BooleanShape.new(name: 'Deleted')
|
@@ -513,6 +517,12 @@ module Aws::ConnectCases
|
|
513
517
|
CreateTemplateResponse.add_member(:template_id, Shapes::ShapeRef.new(shape: TemplateId, required: true, location_name: "templateId"))
|
514
518
|
CreateTemplateResponse.struct_class = Types::CreateTemplateResponse
|
515
519
|
|
520
|
+
DeleteCaseRequest.add_member(:case_id, Shapes::ShapeRef.new(shape: CaseId, required: true, location: "uri", location_name: "caseId"))
|
521
|
+
DeleteCaseRequest.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainId"))
|
522
|
+
DeleteCaseRequest.struct_class = Types::DeleteCaseRequest
|
523
|
+
|
524
|
+
DeleteCaseResponse.struct_class = Types::DeleteCaseResponse
|
525
|
+
|
516
526
|
DeleteCaseRuleRequest.add_member(:case_rule_id, Shapes::ShapeRef.new(shape: CaseRuleId, required: true, location: "uri", location_name: "caseRuleId"))
|
517
527
|
DeleteCaseRuleRequest.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainId"))
|
518
528
|
DeleteCaseRuleRequest.struct_class = Types::DeleteCaseRuleRequest
|
@@ -536,6 +546,13 @@ module Aws::ConnectCases
|
|
536
546
|
|
537
547
|
DeleteLayoutResponse.struct_class = Types::DeleteLayoutResponse
|
538
548
|
|
549
|
+
DeleteRelatedItemRequest.add_member(:case_id, Shapes::ShapeRef.new(shape: CaseId, required: true, location: "uri", location_name: "caseId"))
|
550
|
+
DeleteRelatedItemRequest.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainId"))
|
551
|
+
DeleteRelatedItemRequest.add_member(:related_item_id, Shapes::ShapeRef.new(shape: RelatedItemId, required: true, location: "uri", location_name: "relatedItemId"))
|
552
|
+
DeleteRelatedItemRequest.struct_class = Types::DeleteRelatedItemRequest
|
553
|
+
|
554
|
+
DeleteRelatedItemResponse.struct_class = Types::DeleteRelatedItemResponse
|
555
|
+
|
539
556
|
DeleteTemplateRequest.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainId"))
|
540
557
|
DeleteTemplateRequest.add_member(:template_id, Shapes::ShapeRef.new(shape: TemplateId, required: true, location: "uri", location_name: "templateId"))
|
541
558
|
DeleteTemplateRequest.struct_class = Types::DeleteTemplateRequest
|
@@ -1266,6 +1283,19 @@ module Aws::ConnectCases
|
|
1266
1283
|
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
1267
1284
|
end)
|
1268
1285
|
|
1286
|
+
api.add_operation(:delete_case, Seahorse::Model::Operation.new.tap do |o|
|
1287
|
+
o.name = "DeleteCase"
|
1288
|
+
o.http_method = "DELETE"
|
1289
|
+
o.http_request_uri = "/domains/{domainId}/cases/{caseId}"
|
1290
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteCaseRequest)
|
1291
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteCaseResponse)
|
1292
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
1293
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1294
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1295
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1296
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1297
|
+
end)
|
1298
|
+
|
1269
1299
|
api.add_operation(:delete_case_rule, Seahorse::Model::Operation.new.tap do |o|
|
1270
1300
|
o.name = "DeleteCaseRule"
|
1271
1301
|
o.http_method = "DELETE"
|
@@ -1322,6 +1352,19 @@ module Aws::ConnectCases
|
|
1322
1352
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1323
1353
|
end)
|
1324
1354
|
|
1355
|
+
api.add_operation(:delete_related_item, Seahorse::Model::Operation.new.tap do |o|
|
1356
|
+
o.name = "DeleteRelatedItem"
|
1357
|
+
o.http_method = "DELETE"
|
1358
|
+
o.http_request_uri = "/domains/{domainId}/cases/{caseId}/related-items/{relatedItemId}"
|
1359
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteRelatedItemRequest)
|
1360
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteRelatedItemResponse)
|
1361
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
1362
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1363
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1364
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1365
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1366
|
+
end)
|
1367
|
+
|
1325
1368
|
api.add_operation(:delete_template, Seahorse::Model::Operation.new.tap do |o|
|
1326
1369
|
o.name = "DeleteTemplate"
|
1327
1370
|
o.http_method = "DELETE"
|
@@ -975,6 +975,27 @@ module Aws::ConnectCases
|
|
975
975
|
include Aws::Structure
|
976
976
|
end
|
977
977
|
|
978
|
+
# @!attribute [rw] case_id
|
979
|
+
# A unique identifier of the case.
|
980
|
+
# @return [String]
|
981
|
+
#
|
982
|
+
# @!attribute [rw] domain_id
|
983
|
+
# A unique identifier of the Cases domain.
|
984
|
+
# @return [String]
|
985
|
+
#
|
986
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/DeleteCaseRequest AWS API Documentation
|
987
|
+
#
|
988
|
+
class DeleteCaseRequest < Struct.new(
|
989
|
+
:case_id,
|
990
|
+
:domain_id)
|
991
|
+
SENSITIVE = []
|
992
|
+
include Aws::Structure
|
993
|
+
end
|
994
|
+
|
995
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/DeleteCaseResponse AWS API Documentation
|
996
|
+
#
|
997
|
+
class DeleteCaseResponse < Aws::EmptyStructure; end
|
998
|
+
|
978
999
|
# @!attribute [rw] case_rule_id
|
979
1000
|
# Unique identifier of a case rule.
|
980
1001
|
# @return [String]
|
@@ -1054,6 +1075,32 @@ module Aws::ConnectCases
|
|
1054
1075
|
#
|
1055
1076
|
class DeleteLayoutResponse < Aws::EmptyStructure; end
|
1056
1077
|
|
1078
|
+
# @!attribute [rw] case_id
|
1079
|
+
# A unique identifier of the case.
|
1080
|
+
# @return [String]
|
1081
|
+
#
|
1082
|
+
# @!attribute [rw] domain_id
|
1083
|
+
# A unique identifier of the Cases domain.
|
1084
|
+
# @return [String]
|
1085
|
+
#
|
1086
|
+
# @!attribute [rw] related_item_id
|
1087
|
+
# A unique identifier of a related item.
|
1088
|
+
# @return [String]
|
1089
|
+
#
|
1090
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/DeleteRelatedItemRequest AWS API Documentation
|
1091
|
+
#
|
1092
|
+
class DeleteRelatedItemRequest < Struct.new(
|
1093
|
+
:case_id,
|
1094
|
+
:domain_id,
|
1095
|
+
:related_item_id)
|
1096
|
+
SENSITIVE = []
|
1097
|
+
include Aws::Structure
|
1098
|
+
end
|
1099
|
+
|
1100
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/DeleteRelatedItemResponse AWS API Documentation
|
1101
|
+
#
|
1102
|
+
class DeleteRelatedItemResponse < Aws::EmptyStructure; end
|
1103
|
+
|
1057
1104
|
# @!attribute [rw] domain_id
|
1058
1105
|
# The unique identifier of the Cases domain.
|
1059
1106
|
# @return [String]
|
data/lib/aws-sdk-connectcases.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
@@ -350,6 +351,16 @@ module Aws
|
|
350
351
|
) -> _CreateTemplateResponseSuccess
|
351
352
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTemplateResponseSuccess
|
352
353
|
|
354
|
+
interface _DeleteCaseResponseSuccess
|
355
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteCaseResponse]
|
356
|
+
end
|
357
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ConnectCases/Client.html#delete_case-instance_method
|
358
|
+
def delete_case: (
|
359
|
+
case_id: ::String,
|
360
|
+
domain_id: ::String
|
361
|
+
) -> _DeleteCaseResponseSuccess
|
362
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteCaseResponseSuccess
|
363
|
+
|
353
364
|
interface _DeleteCaseRuleResponseSuccess
|
354
365
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteCaseRuleResponse]
|
355
366
|
end
|
@@ -389,6 +400,17 @@ module Aws
|
|
389
400
|
) -> _DeleteLayoutResponseSuccess
|
390
401
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteLayoutResponseSuccess
|
391
402
|
|
403
|
+
interface _DeleteRelatedItemResponseSuccess
|
404
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteRelatedItemResponse]
|
405
|
+
end
|
406
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ConnectCases/Client.html#delete_related_item-instance_method
|
407
|
+
def delete_related_item: (
|
408
|
+
case_id: ::String,
|
409
|
+
domain_id: ::String,
|
410
|
+
related_item_id: ::String
|
411
|
+
) -> _DeleteRelatedItemResponseSuccess
|
412
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteRelatedItemResponseSuccess
|
413
|
+
|
392
414
|
interface _DeleteTemplateResponseSuccess
|
393
415
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteTemplateResponse]
|
394
416
|
end
|
data/sig/resource.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
data/sig/types.rbs
CHANGED
@@ -317,6 +317,15 @@ module Aws::ConnectCases
|
|
317
317
|
SENSITIVE: []
|
318
318
|
end
|
319
319
|
|
320
|
+
class DeleteCaseRequest
|
321
|
+
attr_accessor case_id: ::String
|
322
|
+
attr_accessor domain_id: ::String
|
323
|
+
SENSITIVE: []
|
324
|
+
end
|
325
|
+
|
326
|
+
class DeleteCaseResponse < Aws::EmptyStructure
|
327
|
+
end
|
328
|
+
|
320
329
|
class DeleteCaseRuleRequest
|
321
330
|
attr_accessor case_rule_id: ::String
|
322
331
|
attr_accessor domain_id: ::String
|
@@ -352,6 +361,16 @@ module Aws::ConnectCases
|
|
352
361
|
class DeleteLayoutResponse < Aws::EmptyStructure
|
353
362
|
end
|
354
363
|
|
364
|
+
class DeleteRelatedItemRequest
|
365
|
+
attr_accessor case_id: ::String
|
366
|
+
attr_accessor domain_id: ::String
|
367
|
+
attr_accessor related_item_id: ::String
|
368
|
+
SENSITIVE: []
|
369
|
+
end
|
370
|
+
|
371
|
+
class DeleteRelatedItemResponse < Aws::EmptyStructure
|
372
|
+
end
|
373
|
+
|
355
374
|
class DeleteTemplateRequest
|
356
375
|
attr_accessor domain_id: ::String
|
357
376
|
attr_accessor template_id: ::String
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.47.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.228.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.228.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|
@@ -83,7 +83,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
83
83
|
requirements:
|
84
84
|
- - ">="
|
85
85
|
- !ruby/object:Gem::Version
|
86
|
-
version: '2.
|
86
|
+
version: '2.7'
|
87
87
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
88
88
|
requirements:
|
89
89
|
- - ">="
|