mypy-boto3-connectcases 1.34.2__py3-none-any.whl → 1.34.94__py3-none-any.whl
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.
- mypy_boto3_connectcases/__init__.py +0 -1
- mypy_boto3_connectcases/__main__.py +8 -7
- mypy_boto3_connectcases/client.py +65 -20
- mypy_boto3_connectcases/client.pyi +65 -19
- mypy_boto3_connectcases/literals.py +14 -6
- mypy_boto3_connectcases/literals.pyi +14 -4
- mypy_boto3_connectcases/paginator.py +2 -3
- mypy_boto3_connectcases/paginator.pyi +2 -2
- mypy_boto3_connectcases/type_defs.py +258 -57
- mypy_boto3_connectcases/type_defs.pyi +258 -56
- mypy_boto3_connectcases/version.py +1 -1
- {mypy_boto3_connectcases-1.34.2.dist-info → mypy_boto3_connectcases-1.34.94.dist-info}/LICENSE +1 -1
- {mypy_boto3_connectcases-1.34.2.dist-info → mypy_boto3_connectcases-1.34.94.dist-info}/METADATA +10 -11
- mypy_boto3_connectcases-1.34.94.dist-info/RECORD +18 -0
- {mypy_boto3_connectcases-1.34.2.dist-info → mypy_boto3_connectcases-1.34.94.dist-info}/WHEEL +1 -1
- mypy_boto3_connectcases-1.34.2.dist-info/RECORD +0 -18
- {mypy_boto3_connectcases-1.34.2.dist-info → mypy_boto3_connectcases-1.34.94.dist-info}/top_level.txt +0 -0
|
@@ -10,12 +10,13 @@ def print_info() -> None:
|
|
|
10
10
|
Print package info to stdout.
|
|
11
11
|
"""
|
|
12
12
|
print(
|
|
13
|
-
"Type annotations for boto3.ConnectCases 1.34.
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
" https://
|
|
13
|
+
"Type annotations for boto3.ConnectCases 1.34.94\n"
|
|
14
|
+
"Version: 1.34.94\n"
|
|
15
|
+
"Builder version: 7.24.0\n"
|
|
16
|
+
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases//\n"
|
|
17
|
+
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases\n"
|
|
18
|
+
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
19
|
+
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases"
|
|
19
20
|
)
|
|
20
21
|
|
|
21
22
|
|
|
@@ -23,7 +24,7 @@ def print_version() -> None:
|
|
|
23
24
|
"""
|
|
24
25
|
Print package version to stdout.
|
|
25
26
|
"""
|
|
26
|
-
print("1.34.
|
|
27
|
+
print("1.34.94")
|
|
27
28
|
|
|
28
29
|
|
|
29
30
|
def main() -> None:
|
|
@@ -32,17 +32,18 @@ from .type_defs import (
|
|
|
32
32
|
CreateRelatedItemResponseTypeDef,
|
|
33
33
|
CreateTemplateResponseTypeDef,
|
|
34
34
|
EmptyResponseMetadataTypeDef,
|
|
35
|
-
|
|
35
|
+
EventBridgeConfigurationUnionTypeDef,
|
|
36
36
|
FieldIdentifierTypeDef,
|
|
37
37
|
FieldOptionTypeDef,
|
|
38
|
-
|
|
38
|
+
FieldValueExtraUnionTypeDef,
|
|
39
|
+
GetCaseAuditEventsResponseTypeDef,
|
|
39
40
|
GetCaseEventConfigurationResponseTypeDef,
|
|
40
41
|
GetCaseResponseTypeDef,
|
|
41
42
|
GetDomainResponseTypeDef,
|
|
42
43
|
GetLayoutResponseTypeDef,
|
|
43
44
|
GetTemplateResponseTypeDef,
|
|
44
45
|
LayoutConfigurationTypeDef,
|
|
45
|
-
|
|
46
|
+
LayoutContentUnionTypeDef,
|
|
46
47
|
ListCasesForContactResponseTypeDef,
|
|
47
48
|
ListDomainsResponseTypeDef,
|
|
48
49
|
ListFieldOptionsResponseTypeDef,
|
|
@@ -64,7 +65,6 @@ if sys.version_info >= (3, 12):
|
|
|
64
65
|
else:
|
|
65
66
|
from typing_extensions import Literal
|
|
66
67
|
|
|
67
|
-
|
|
68
68
|
__all__ = ("ConnectCasesClient",)
|
|
69
69
|
|
|
70
70
|
|
|
@@ -145,12 +145,13 @@ class ConnectCasesClient(BaseClient):
|
|
|
145
145
|
self,
|
|
146
146
|
*,
|
|
147
147
|
domainId: str,
|
|
148
|
-
fields: Sequence[
|
|
148
|
+
fields: Sequence[FieldValueExtraUnionTypeDef],
|
|
149
149
|
templateId: str,
|
|
150
|
-
clientToken: str =
|
|
150
|
+
clientToken: str = ...,
|
|
151
|
+
performedBy: UserUnionTypeDef = ...,
|
|
151
152
|
) -> CreateCaseResponseTypeDef:
|
|
152
153
|
"""
|
|
153
|
-
|
|
154
|
+
.
|
|
154
155
|
|
|
155
156
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.create_case)
|
|
156
157
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#create_case)
|
|
@@ -177,7 +178,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
177
178
|
"""
|
|
178
179
|
|
|
179
180
|
def create_layout(
|
|
180
|
-
self, *, content:
|
|
181
|
+
self, *, content: LayoutContentUnionTypeDef, domainId: str, name: str
|
|
181
182
|
) -> CreateLayoutResponseTypeDef:
|
|
182
183
|
"""
|
|
183
184
|
Creates a layout in the Cases domain.
|
|
@@ -193,7 +194,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
193
194
|
content: RelatedItemInputContentTypeDef,
|
|
194
195
|
domainId: str,
|
|
195
196
|
type: RelatedItemTypeType,
|
|
196
|
-
performedBy: UserUnionTypeDef =
|
|
197
|
+
performedBy: UserUnionTypeDef = ...,
|
|
197
198
|
) -> CreateRelatedItemResponseTypeDef:
|
|
198
199
|
"""
|
|
199
200
|
Creates a related item (comments, tasks, and contacts) and associates it with a
|
|
@@ -211,7 +212,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
211
212
|
description: str = ...,
|
|
212
213
|
layoutConfiguration: LayoutConfigurationTypeDef = ...,
|
|
213
214
|
requiredFields: Sequence[RequiredFieldTypeDef] = ...,
|
|
214
|
-
status: TemplateStatusType =
|
|
215
|
+
status: TemplateStatusType = ...,
|
|
215
216
|
) -> CreateTemplateResponseTypeDef:
|
|
216
217
|
"""
|
|
217
218
|
Creates a template in the Cases domain.
|
|
@@ -228,6 +229,30 @@ class ConnectCasesClient(BaseClient):
|
|
|
228
229
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#delete_domain)
|
|
229
230
|
"""
|
|
230
231
|
|
|
232
|
+
def delete_field(self, *, domainId: str, fieldId: str) -> Dict[str, Any]:
|
|
233
|
+
"""
|
|
234
|
+
Deletes a field from a cases template.
|
|
235
|
+
|
|
236
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.delete_field)
|
|
237
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#delete_field)
|
|
238
|
+
"""
|
|
239
|
+
|
|
240
|
+
def delete_layout(self, *, domainId: str, layoutId: str) -> Dict[str, Any]:
|
|
241
|
+
"""
|
|
242
|
+
Deletes a layout from a cases template.
|
|
243
|
+
|
|
244
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.delete_layout)
|
|
245
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#delete_layout)
|
|
246
|
+
"""
|
|
247
|
+
|
|
248
|
+
def delete_template(self, *, domainId: str, templateId: str) -> Dict[str, Any]:
|
|
249
|
+
"""
|
|
250
|
+
Deletes a cases template.
|
|
251
|
+
|
|
252
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.delete_template)
|
|
253
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#delete_template)
|
|
254
|
+
"""
|
|
255
|
+
|
|
231
256
|
def generate_presigned_url(
|
|
232
257
|
self,
|
|
233
258
|
ClientMethod: str,
|
|
@@ -248,7 +273,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
248
273
|
caseId: str,
|
|
249
274
|
domainId: str,
|
|
250
275
|
fields: Sequence[FieldIdentifierTypeDef],
|
|
251
|
-
nextToken: str =
|
|
276
|
+
nextToken: str = ...,
|
|
252
277
|
) -> GetCaseResponseTypeDef:
|
|
253
278
|
"""
|
|
254
279
|
Returns information about a specific case if it exists.
|
|
@@ -257,6 +282,16 @@ class ConnectCasesClient(BaseClient):
|
|
|
257
282
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#get_case)
|
|
258
283
|
"""
|
|
259
284
|
|
|
285
|
+
def get_case_audit_events(
|
|
286
|
+
self, *, caseId: str, domainId: str, maxResults: int = ..., nextToken: str = ...
|
|
287
|
+
) -> GetCaseAuditEventsResponseTypeDef:
|
|
288
|
+
"""
|
|
289
|
+
Returns the audit history about a specific case if it exists.
|
|
290
|
+
|
|
291
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.get_case_audit_events)
|
|
292
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#get_case_audit_events)
|
|
293
|
+
"""
|
|
294
|
+
|
|
260
295
|
def get_case_event_configuration(
|
|
261
296
|
self, *, domainId: str
|
|
262
297
|
) -> GetCaseEventConfigurationResponseTypeDef:
|
|
@@ -318,7 +353,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
318
353
|
fieldId: str,
|
|
319
354
|
maxResults: int = ...,
|
|
320
355
|
nextToken: str = ...,
|
|
321
|
-
values: Sequence[str] =
|
|
356
|
+
values: Sequence[str] = ...,
|
|
322
357
|
) -> ListFieldOptionsResponseTypeDef:
|
|
323
358
|
"""
|
|
324
359
|
Lists all of the field options for a field identifier in the domain.
|
|
@@ -361,7 +396,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
361
396
|
domainId: str,
|
|
362
397
|
maxResults: int = ...,
|
|
363
398
|
nextToken: str = ...,
|
|
364
|
-
status: Sequence[TemplateStatusType] =
|
|
399
|
+
status: Sequence[TemplateStatusType] = ...,
|
|
365
400
|
) -> ListTemplatesResponseTypeDef:
|
|
366
401
|
"""
|
|
367
402
|
Lists all of the templates in a Cases domain.
|
|
@@ -371,7 +406,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
371
406
|
"""
|
|
372
407
|
|
|
373
408
|
def put_case_event_configuration(
|
|
374
|
-
self, *, domainId: str, eventBridge:
|
|
409
|
+
self, *, domainId: str, eventBridge: EventBridgeConfigurationUnionTypeDef
|
|
375
410
|
) -> Dict[str, Any]:
|
|
376
411
|
"""
|
|
377
412
|
Adds case event publishing configuration.
|
|
@@ -389,7 +424,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
389
424
|
maxResults: int = ...,
|
|
390
425
|
nextToken: str = ...,
|
|
391
426
|
searchTerm: str = ...,
|
|
392
|
-
sorts: Sequence[SortTypeDef] =
|
|
427
|
+
sorts: Sequence[SortTypeDef] = ...,
|
|
393
428
|
) -> SearchCasesResponseTypeDef:
|
|
394
429
|
"""
|
|
395
430
|
Searches for cases within their associated Cases domain.
|
|
@@ -405,7 +440,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
405
440
|
domainId: str,
|
|
406
441
|
filters: Sequence[RelatedItemTypeFilterTypeDef] = ...,
|
|
407
442
|
maxResults: int = ...,
|
|
408
|
-
nextToken: str =
|
|
443
|
+
nextToken: str = ...,
|
|
409
444
|
) -> SearchRelatedItemsResponseTypeDef:
|
|
410
445
|
"""
|
|
411
446
|
Searches for related items that are associated with a case.
|
|
@@ -431,10 +466,15 @@ class ConnectCasesClient(BaseClient):
|
|
|
431
466
|
"""
|
|
432
467
|
|
|
433
468
|
def update_case(
|
|
434
|
-
self,
|
|
469
|
+
self,
|
|
470
|
+
*,
|
|
471
|
+
caseId: str,
|
|
472
|
+
domainId: str,
|
|
473
|
+
fields: Sequence[FieldValueExtraUnionTypeDef],
|
|
474
|
+
performedBy: UserUnionTypeDef = ...,
|
|
435
475
|
) -> Dict[str, Any]:
|
|
436
476
|
"""
|
|
437
|
-
|
|
477
|
+
.
|
|
438
478
|
|
|
439
479
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.update_case)
|
|
440
480
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#update_case)
|
|
@@ -451,7 +491,12 @@ class ConnectCasesClient(BaseClient):
|
|
|
451
491
|
"""
|
|
452
492
|
|
|
453
493
|
def update_layout(
|
|
454
|
-
self,
|
|
494
|
+
self,
|
|
495
|
+
*,
|
|
496
|
+
domainId: str,
|
|
497
|
+
layoutId: str,
|
|
498
|
+
content: LayoutContentUnionTypeDef = ...,
|
|
499
|
+
name: str = ...,
|
|
455
500
|
) -> Dict[str, Any]:
|
|
456
501
|
"""
|
|
457
502
|
Updates the attributes of an existing layout.
|
|
@@ -469,7 +514,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
469
514
|
layoutConfiguration: LayoutConfigurationTypeDef = ...,
|
|
470
515
|
name: str = ...,
|
|
471
516
|
requiredFields: Sequence[RequiredFieldTypeDef] = ...,
|
|
472
|
-
status: TemplateStatusType =
|
|
517
|
+
status: TemplateStatusType = ...,
|
|
473
518
|
) -> Dict[str, Any]:
|
|
474
519
|
"""
|
|
475
520
|
Updates the attributes of an existing template.
|
|
@@ -32,17 +32,18 @@ from .type_defs import (
|
|
|
32
32
|
CreateRelatedItemResponseTypeDef,
|
|
33
33
|
CreateTemplateResponseTypeDef,
|
|
34
34
|
EmptyResponseMetadataTypeDef,
|
|
35
|
-
|
|
35
|
+
EventBridgeConfigurationUnionTypeDef,
|
|
36
36
|
FieldIdentifierTypeDef,
|
|
37
37
|
FieldOptionTypeDef,
|
|
38
|
-
|
|
38
|
+
FieldValueExtraUnionTypeDef,
|
|
39
|
+
GetCaseAuditEventsResponseTypeDef,
|
|
39
40
|
GetCaseEventConfigurationResponseTypeDef,
|
|
40
41
|
GetCaseResponseTypeDef,
|
|
41
42
|
GetDomainResponseTypeDef,
|
|
42
43
|
GetLayoutResponseTypeDef,
|
|
43
44
|
GetTemplateResponseTypeDef,
|
|
44
45
|
LayoutConfigurationTypeDef,
|
|
45
|
-
|
|
46
|
+
LayoutContentUnionTypeDef,
|
|
46
47
|
ListCasesForContactResponseTypeDef,
|
|
47
48
|
ListDomainsResponseTypeDef,
|
|
48
49
|
ListFieldOptionsResponseTypeDef,
|
|
@@ -141,12 +142,13 @@ class ConnectCasesClient(BaseClient):
|
|
|
141
142
|
self,
|
|
142
143
|
*,
|
|
143
144
|
domainId: str,
|
|
144
|
-
fields: Sequence[
|
|
145
|
+
fields: Sequence[FieldValueExtraUnionTypeDef],
|
|
145
146
|
templateId: str,
|
|
146
|
-
clientToken: str =
|
|
147
|
+
clientToken: str = ...,
|
|
148
|
+
performedBy: UserUnionTypeDef = ...,
|
|
147
149
|
) -> CreateCaseResponseTypeDef:
|
|
148
150
|
"""
|
|
149
|
-
|
|
151
|
+
.
|
|
150
152
|
|
|
151
153
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.create_case)
|
|
152
154
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#create_case)
|
|
@@ -173,7 +175,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
173
175
|
"""
|
|
174
176
|
|
|
175
177
|
def create_layout(
|
|
176
|
-
self, *, content:
|
|
178
|
+
self, *, content: LayoutContentUnionTypeDef, domainId: str, name: str
|
|
177
179
|
) -> CreateLayoutResponseTypeDef:
|
|
178
180
|
"""
|
|
179
181
|
Creates a layout in the Cases domain.
|
|
@@ -189,7 +191,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
189
191
|
content: RelatedItemInputContentTypeDef,
|
|
190
192
|
domainId: str,
|
|
191
193
|
type: RelatedItemTypeType,
|
|
192
|
-
performedBy: UserUnionTypeDef =
|
|
194
|
+
performedBy: UserUnionTypeDef = ...,
|
|
193
195
|
) -> CreateRelatedItemResponseTypeDef:
|
|
194
196
|
"""
|
|
195
197
|
Creates a related item (comments, tasks, and contacts) and associates it with a
|
|
@@ -207,7 +209,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
207
209
|
description: str = ...,
|
|
208
210
|
layoutConfiguration: LayoutConfigurationTypeDef = ...,
|
|
209
211
|
requiredFields: Sequence[RequiredFieldTypeDef] = ...,
|
|
210
|
-
status: TemplateStatusType =
|
|
212
|
+
status: TemplateStatusType = ...,
|
|
211
213
|
) -> CreateTemplateResponseTypeDef:
|
|
212
214
|
"""
|
|
213
215
|
Creates a template in the Cases domain.
|
|
@@ -224,6 +226,30 @@ class ConnectCasesClient(BaseClient):
|
|
|
224
226
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#delete_domain)
|
|
225
227
|
"""
|
|
226
228
|
|
|
229
|
+
def delete_field(self, *, domainId: str, fieldId: str) -> Dict[str, Any]:
|
|
230
|
+
"""
|
|
231
|
+
Deletes a field from a cases template.
|
|
232
|
+
|
|
233
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.delete_field)
|
|
234
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#delete_field)
|
|
235
|
+
"""
|
|
236
|
+
|
|
237
|
+
def delete_layout(self, *, domainId: str, layoutId: str) -> Dict[str, Any]:
|
|
238
|
+
"""
|
|
239
|
+
Deletes a layout from a cases template.
|
|
240
|
+
|
|
241
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.delete_layout)
|
|
242
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#delete_layout)
|
|
243
|
+
"""
|
|
244
|
+
|
|
245
|
+
def delete_template(self, *, domainId: str, templateId: str) -> Dict[str, Any]:
|
|
246
|
+
"""
|
|
247
|
+
Deletes a cases template.
|
|
248
|
+
|
|
249
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.delete_template)
|
|
250
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#delete_template)
|
|
251
|
+
"""
|
|
252
|
+
|
|
227
253
|
def generate_presigned_url(
|
|
228
254
|
self,
|
|
229
255
|
ClientMethod: str,
|
|
@@ -244,7 +270,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
244
270
|
caseId: str,
|
|
245
271
|
domainId: str,
|
|
246
272
|
fields: Sequence[FieldIdentifierTypeDef],
|
|
247
|
-
nextToken: str =
|
|
273
|
+
nextToken: str = ...,
|
|
248
274
|
) -> GetCaseResponseTypeDef:
|
|
249
275
|
"""
|
|
250
276
|
Returns information about a specific case if it exists.
|
|
@@ -253,6 +279,16 @@ class ConnectCasesClient(BaseClient):
|
|
|
253
279
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#get_case)
|
|
254
280
|
"""
|
|
255
281
|
|
|
282
|
+
def get_case_audit_events(
|
|
283
|
+
self, *, caseId: str, domainId: str, maxResults: int = ..., nextToken: str = ...
|
|
284
|
+
) -> GetCaseAuditEventsResponseTypeDef:
|
|
285
|
+
"""
|
|
286
|
+
Returns the audit history about a specific case if it exists.
|
|
287
|
+
|
|
288
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.get_case_audit_events)
|
|
289
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#get_case_audit_events)
|
|
290
|
+
"""
|
|
291
|
+
|
|
256
292
|
def get_case_event_configuration(
|
|
257
293
|
self, *, domainId: str
|
|
258
294
|
) -> GetCaseEventConfigurationResponseTypeDef:
|
|
@@ -314,7 +350,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
314
350
|
fieldId: str,
|
|
315
351
|
maxResults: int = ...,
|
|
316
352
|
nextToken: str = ...,
|
|
317
|
-
values: Sequence[str] =
|
|
353
|
+
values: Sequence[str] = ...,
|
|
318
354
|
) -> ListFieldOptionsResponseTypeDef:
|
|
319
355
|
"""
|
|
320
356
|
Lists all of the field options for a field identifier in the domain.
|
|
@@ -357,7 +393,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
357
393
|
domainId: str,
|
|
358
394
|
maxResults: int = ...,
|
|
359
395
|
nextToken: str = ...,
|
|
360
|
-
status: Sequence[TemplateStatusType] =
|
|
396
|
+
status: Sequence[TemplateStatusType] = ...,
|
|
361
397
|
) -> ListTemplatesResponseTypeDef:
|
|
362
398
|
"""
|
|
363
399
|
Lists all of the templates in a Cases domain.
|
|
@@ -367,7 +403,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
367
403
|
"""
|
|
368
404
|
|
|
369
405
|
def put_case_event_configuration(
|
|
370
|
-
self, *, domainId: str, eventBridge:
|
|
406
|
+
self, *, domainId: str, eventBridge: EventBridgeConfigurationUnionTypeDef
|
|
371
407
|
) -> Dict[str, Any]:
|
|
372
408
|
"""
|
|
373
409
|
Adds case event publishing configuration.
|
|
@@ -385,7 +421,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
385
421
|
maxResults: int = ...,
|
|
386
422
|
nextToken: str = ...,
|
|
387
423
|
searchTerm: str = ...,
|
|
388
|
-
sorts: Sequence[SortTypeDef] =
|
|
424
|
+
sorts: Sequence[SortTypeDef] = ...,
|
|
389
425
|
) -> SearchCasesResponseTypeDef:
|
|
390
426
|
"""
|
|
391
427
|
Searches for cases within their associated Cases domain.
|
|
@@ -401,7 +437,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
401
437
|
domainId: str,
|
|
402
438
|
filters: Sequence[RelatedItemTypeFilterTypeDef] = ...,
|
|
403
439
|
maxResults: int = ...,
|
|
404
|
-
nextToken: str =
|
|
440
|
+
nextToken: str = ...,
|
|
405
441
|
) -> SearchRelatedItemsResponseTypeDef:
|
|
406
442
|
"""
|
|
407
443
|
Searches for related items that are associated with a case.
|
|
@@ -427,10 +463,15 @@ class ConnectCasesClient(BaseClient):
|
|
|
427
463
|
"""
|
|
428
464
|
|
|
429
465
|
def update_case(
|
|
430
|
-
self,
|
|
466
|
+
self,
|
|
467
|
+
*,
|
|
468
|
+
caseId: str,
|
|
469
|
+
domainId: str,
|
|
470
|
+
fields: Sequence[FieldValueExtraUnionTypeDef],
|
|
471
|
+
performedBy: UserUnionTypeDef = ...,
|
|
431
472
|
) -> Dict[str, Any]:
|
|
432
473
|
"""
|
|
433
|
-
|
|
474
|
+
.
|
|
434
475
|
|
|
435
476
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#ConnectCases.Client.update_case)
|
|
436
477
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#update_case)
|
|
@@ -447,7 +488,12 @@ class ConnectCasesClient(BaseClient):
|
|
|
447
488
|
"""
|
|
448
489
|
|
|
449
490
|
def update_layout(
|
|
450
|
-
self,
|
|
491
|
+
self,
|
|
492
|
+
*,
|
|
493
|
+
domainId: str,
|
|
494
|
+
layoutId: str,
|
|
495
|
+
content: LayoutContentUnionTypeDef = ...,
|
|
496
|
+
name: str = ...,
|
|
451
497
|
) -> Dict[str, Any]:
|
|
452
498
|
"""
|
|
453
499
|
Updates the attributes of an existing layout.
|
|
@@ -465,7 +511,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
465
511
|
layoutConfiguration: LayoutConfigurationTypeDef = ...,
|
|
466
512
|
name: str = ...,
|
|
467
513
|
requiredFields: Sequence[RequiredFieldTypeDef] = ...,
|
|
468
|
-
status: TemplateStatusType =
|
|
514
|
+
status: TemplateStatusType = ...,
|
|
469
515
|
) -> Dict[str, Any]:
|
|
470
516
|
"""
|
|
471
517
|
Updates the attributes of an existing template.
|
|
@@ -6,9 +6,9 @@ Type annotations for connectcases service literal definitions.
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
8
8
|
```python
|
|
9
|
-
from mypy_boto3_connectcases.literals import
|
|
9
|
+
from mypy_boto3_connectcases.literals import AuditEventTypeType
|
|
10
10
|
|
|
11
|
-
data:
|
|
11
|
+
data: AuditEventTypeType = "Case.Created"
|
|
12
12
|
```
|
|
13
13
|
"""
|
|
14
14
|
|
|
@@ -19,8 +19,8 @@ if sys.version_info >= (3, 12):
|
|
|
19
19
|
else:
|
|
20
20
|
from typing_extensions import Literal
|
|
21
21
|
|
|
22
|
-
|
|
23
22
|
__all__ = (
|
|
23
|
+
"AuditEventTypeType",
|
|
24
24
|
"CommentBodyTextTypeType",
|
|
25
25
|
"DomainStatusType",
|
|
26
26
|
"FieldNamespaceType",
|
|
@@ -37,11 +37,11 @@ __all__ = (
|
|
|
37
37
|
"RegionName",
|
|
38
38
|
)
|
|
39
39
|
|
|
40
|
-
|
|
40
|
+
AuditEventTypeType = Literal["Case.Created", "Case.Updated", "RelatedItem.Created"]
|
|
41
41
|
CommentBodyTextTypeType = Literal["Text/Plain"]
|
|
42
42
|
DomainStatusType = Literal["Active", "CreationFailed", "CreationInProgress"]
|
|
43
43
|
FieldNamespaceType = Literal["Custom", "System"]
|
|
44
|
-
FieldTypeType = Literal["Boolean", "DateTime", "Number", "SingleSelect", "Text", "Url"]
|
|
44
|
+
FieldTypeType = Literal["Boolean", "DateTime", "Number", "SingleSelect", "Text", "Url", "User"]
|
|
45
45
|
OrderType = Literal["Asc", "Desc"]
|
|
46
46
|
RelatedItemTypeType = Literal["Comment", "Contact"]
|
|
47
47
|
SearchCasesPaginatorName = Literal["search_cases"]
|
|
@@ -74,6 +74,7 @@ ServiceName = Literal[
|
|
|
74
74
|
"appstream",
|
|
75
75
|
"appsync",
|
|
76
76
|
"arc-zonal-shift",
|
|
77
|
+
"artifact",
|
|
77
78
|
"athena",
|
|
78
79
|
"auditmanager",
|
|
79
80
|
"autoscaling",
|
|
@@ -92,6 +93,7 @@ ServiceName = Literal[
|
|
|
92
93
|
"braket",
|
|
93
94
|
"budgets",
|
|
94
95
|
"ce",
|
|
96
|
+
"chatbot",
|
|
95
97
|
"chime",
|
|
96
98
|
"chime-sdk-identity",
|
|
97
99
|
"chime-sdk-media-pipelines",
|
|
@@ -117,6 +119,7 @@ ServiceName = Literal[
|
|
|
117
119
|
"codebuild",
|
|
118
120
|
"codecatalyst",
|
|
119
121
|
"codecommit",
|
|
122
|
+
"codeconnections",
|
|
120
123
|
"codedeploy",
|
|
121
124
|
"codeguru-reviewer",
|
|
122
125
|
"codeguru-security",
|
|
@@ -137,6 +140,7 @@ ServiceName = Literal[
|
|
|
137
140
|
"connectcampaigns",
|
|
138
141
|
"connectcases",
|
|
139
142
|
"connectparticipant",
|
|
143
|
+
"controlcatalog",
|
|
140
144
|
"controltower",
|
|
141
145
|
"cost-optimization-hub",
|
|
142
146
|
"cur",
|
|
@@ -147,6 +151,7 @@ ServiceName = Literal[
|
|
|
147
151
|
"datasync",
|
|
148
152
|
"datazone",
|
|
149
153
|
"dax",
|
|
154
|
+
"deadline",
|
|
150
155
|
"detective",
|
|
151
156
|
"devicefarm",
|
|
152
157
|
"devops-guru",
|
|
@@ -215,7 +220,6 @@ ServiceName = Literal[
|
|
|
215
220
|
"iot",
|
|
216
221
|
"iot-data",
|
|
217
222
|
"iot-jobs-data",
|
|
218
|
-
"iot-roborunner",
|
|
219
223
|
"iot1click-devices",
|
|
220
224
|
"iot1click-projects",
|
|
221
225
|
"iotanalytics",
|
|
@@ -299,6 +303,7 @@ ServiceName = Literal[
|
|
|
299
303
|
"neptunedata",
|
|
300
304
|
"network-firewall",
|
|
301
305
|
"networkmanager",
|
|
306
|
+
"networkmonitor",
|
|
302
307
|
"nimble",
|
|
303
308
|
"oam",
|
|
304
309
|
"omics",
|
|
@@ -351,6 +356,7 @@ ServiceName = Literal[
|
|
|
351
356
|
"route53-recovery-control-config",
|
|
352
357
|
"route53-recovery-readiness",
|
|
353
358
|
"route53domains",
|
|
359
|
+
"route53profiles",
|
|
354
360
|
"route53resolver",
|
|
355
361
|
"rum",
|
|
356
362
|
"s3",
|
|
@@ -396,11 +402,13 @@ ServiceName = Literal[
|
|
|
396
402
|
"stepfunctions",
|
|
397
403
|
"storagegateway",
|
|
398
404
|
"sts",
|
|
405
|
+
"supplychain",
|
|
399
406
|
"support",
|
|
400
407
|
"support-app",
|
|
401
408
|
"swf",
|
|
402
409
|
"synthetics",
|
|
403
410
|
"textract",
|
|
411
|
+
"timestream-influxdb",
|
|
404
412
|
"timestream-query",
|
|
405
413
|
"timestream-write",
|
|
406
414
|
"tnb",
|
|
@@ -6,9 +6,9 @@ Type annotations for connectcases service literal definitions.
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
8
8
|
```python
|
|
9
|
-
from mypy_boto3_connectcases.literals import
|
|
9
|
+
from mypy_boto3_connectcases.literals import AuditEventTypeType
|
|
10
10
|
|
|
11
|
-
data:
|
|
11
|
+
data: AuditEventTypeType = "Case.Created"
|
|
12
12
|
```
|
|
13
13
|
"""
|
|
14
14
|
|
|
@@ -20,6 +20,7 @@ else:
|
|
|
20
20
|
from typing_extensions import Literal
|
|
21
21
|
|
|
22
22
|
__all__ = (
|
|
23
|
+
"AuditEventTypeType",
|
|
23
24
|
"CommentBodyTextTypeType",
|
|
24
25
|
"DomainStatusType",
|
|
25
26
|
"FieldNamespaceType",
|
|
@@ -36,10 +37,11 @@ __all__ = (
|
|
|
36
37
|
"RegionName",
|
|
37
38
|
)
|
|
38
39
|
|
|
40
|
+
AuditEventTypeType = Literal["Case.Created", "Case.Updated", "RelatedItem.Created"]
|
|
39
41
|
CommentBodyTextTypeType = Literal["Text/Plain"]
|
|
40
42
|
DomainStatusType = Literal["Active", "CreationFailed", "CreationInProgress"]
|
|
41
43
|
FieldNamespaceType = Literal["Custom", "System"]
|
|
42
|
-
FieldTypeType = Literal["Boolean", "DateTime", "Number", "SingleSelect", "Text", "Url"]
|
|
44
|
+
FieldTypeType = Literal["Boolean", "DateTime", "Number", "SingleSelect", "Text", "Url", "User"]
|
|
43
45
|
OrderType = Literal["Asc", "Desc"]
|
|
44
46
|
RelatedItemTypeType = Literal["Comment", "Contact"]
|
|
45
47
|
SearchCasesPaginatorName = Literal["search_cases"]
|
|
@@ -72,6 +74,7 @@ ServiceName = Literal[
|
|
|
72
74
|
"appstream",
|
|
73
75
|
"appsync",
|
|
74
76
|
"arc-zonal-shift",
|
|
77
|
+
"artifact",
|
|
75
78
|
"athena",
|
|
76
79
|
"auditmanager",
|
|
77
80
|
"autoscaling",
|
|
@@ -90,6 +93,7 @@ ServiceName = Literal[
|
|
|
90
93
|
"braket",
|
|
91
94
|
"budgets",
|
|
92
95
|
"ce",
|
|
96
|
+
"chatbot",
|
|
93
97
|
"chime",
|
|
94
98
|
"chime-sdk-identity",
|
|
95
99
|
"chime-sdk-media-pipelines",
|
|
@@ -115,6 +119,7 @@ ServiceName = Literal[
|
|
|
115
119
|
"codebuild",
|
|
116
120
|
"codecatalyst",
|
|
117
121
|
"codecommit",
|
|
122
|
+
"codeconnections",
|
|
118
123
|
"codedeploy",
|
|
119
124
|
"codeguru-reviewer",
|
|
120
125
|
"codeguru-security",
|
|
@@ -135,6 +140,7 @@ ServiceName = Literal[
|
|
|
135
140
|
"connectcampaigns",
|
|
136
141
|
"connectcases",
|
|
137
142
|
"connectparticipant",
|
|
143
|
+
"controlcatalog",
|
|
138
144
|
"controltower",
|
|
139
145
|
"cost-optimization-hub",
|
|
140
146
|
"cur",
|
|
@@ -145,6 +151,7 @@ ServiceName = Literal[
|
|
|
145
151
|
"datasync",
|
|
146
152
|
"datazone",
|
|
147
153
|
"dax",
|
|
154
|
+
"deadline",
|
|
148
155
|
"detective",
|
|
149
156
|
"devicefarm",
|
|
150
157
|
"devops-guru",
|
|
@@ -213,7 +220,6 @@ ServiceName = Literal[
|
|
|
213
220
|
"iot",
|
|
214
221
|
"iot-data",
|
|
215
222
|
"iot-jobs-data",
|
|
216
|
-
"iot-roborunner",
|
|
217
223
|
"iot1click-devices",
|
|
218
224
|
"iot1click-projects",
|
|
219
225
|
"iotanalytics",
|
|
@@ -297,6 +303,7 @@ ServiceName = Literal[
|
|
|
297
303
|
"neptunedata",
|
|
298
304
|
"network-firewall",
|
|
299
305
|
"networkmanager",
|
|
306
|
+
"networkmonitor",
|
|
300
307
|
"nimble",
|
|
301
308
|
"oam",
|
|
302
309
|
"omics",
|
|
@@ -349,6 +356,7 @@ ServiceName = Literal[
|
|
|
349
356
|
"route53-recovery-control-config",
|
|
350
357
|
"route53-recovery-readiness",
|
|
351
358
|
"route53domains",
|
|
359
|
+
"route53profiles",
|
|
352
360
|
"route53resolver",
|
|
353
361
|
"rum",
|
|
354
362
|
"s3",
|
|
@@ -394,11 +402,13 @@ ServiceName = Literal[
|
|
|
394
402
|
"stepfunctions",
|
|
395
403
|
"storagegateway",
|
|
396
404
|
"sts",
|
|
405
|
+
"supplychain",
|
|
397
406
|
"support",
|
|
398
407
|
"support-app",
|
|
399
408
|
"swf",
|
|
400
409
|
"synthetics",
|
|
401
410
|
"textract",
|
|
411
|
+
"timestream-influxdb",
|
|
402
412
|
"timestream-query",
|
|
403
413
|
"timestream-write",
|
|
404
414
|
"tnb",
|