mypy-boto3-connectcases 1.34.24__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/__main__.py +8 -7
- mypy_boto3_connectcases/client.py +37 -8
- mypy_boto3_connectcases/client.pyi +37 -8
- mypy_boto3_connectcases/literals.py +7 -1
- mypy_boto3_connectcases/literals.pyi +7 -1
- mypy_boto3_connectcases/type_defs.py +191 -52
- mypy_boto3_connectcases/type_defs.pyi +191 -52
- mypy_boto3_connectcases/version.py +1 -1
- {mypy_boto3_connectcases-1.34.24.dist-info → mypy_boto3_connectcases-1.34.94.dist-info}/METADATA +4 -4
- mypy_boto3_connectcases-1.34.94.dist-info/RECORD +18 -0
- {mypy_boto3_connectcases-1.34.24.dist-info → mypy_boto3_connectcases-1.34.94.dist-info}/WHEEL +1 -1
- mypy_boto3_connectcases-1.34.24.dist-info/RECORD +0 -18
- {mypy_boto3_connectcases-1.34.24.dist-info → mypy_boto3_connectcases-1.34.94.dist-info}/LICENSE +0 -0
- {mypy_boto3_connectcases-1.34.24.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,10 +32,10 @@ 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
39
|
GetCaseAuditEventsResponseTypeDef,
|
|
40
40
|
GetCaseEventConfigurationResponseTypeDef,
|
|
41
41
|
GetCaseResponseTypeDef,
|
|
@@ -43,7 +43,7 @@ from .type_defs import (
|
|
|
43
43
|
GetLayoutResponseTypeDef,
|
|
44
44
|
GetTemplateResponseTypeDef,
|
|
45
45
|
LayoutConfigurationTypeDef,
|
|
46
|
-
|
|
46
|
+
LayoutContentUnionTypeDef,
|
|
47
47
|
ListCasesForContactResponseTypeDef,
|
|
48
48
|
ListDomainsResponseTypeDef,
|
|
49
49
|
ListFieldOptionsResponseTypeDef,
|
|
@@ -145,7 +145,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
145
145
|
self,
|
|
146
146
|
*,
|
|
147
147
|
domainId: str,
|
|
148
|
-
fields: Sequence[
|
|
148
|
+
fields: Sequence[FieldValueExtraUnionTypeDef],
|
|
149
149
|
templateId: str,
|
|
150
150
|
clientToken: str = ...,
|
|
151
151
|
performedBy: UserUnionTypeDef = ...,
|
|
@@ -178,7 +178,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
178
178
|
"""
|
|
179
179
|
|
|
180
180
|
def create_layout(
|
|
181
|
-
self, *, content:
|
|
181
|
+
self, *, content: LayoutContentUnionTypeDef, domainId: str, name: str
|
|
182
182
|
) -> CreateLayoutResponseTypeDef:
|
|
183
183
|
"""
|
|
184
184
|
Creates a layout in the Cases domain.
|
|
@@ -229,6 +229,30 @@ class ConnectCasesClient(BaseClient):
|
|
|
229
229
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#delete_domain)
|
|
230
230
|
"""
|
|
231
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
|
+
|
|
232
256
|
def generate_presigned_url(
|
|
233
257
|
self,
|
|
234
258
|
ClientMethod: str,
|
|
@@ -382,7 +406,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
382
406
|
"""
|
|
383
407
|
|
|
384
408
|
def put_case_event_configuration(
|
|
385
|
-
self, *, domainId: str, eventBridge:
|
|
409
|
+
self, *, domainId: str, eventBridge: EventBridgeConfigurationUnionTypeDef
|
|
386
410
|
) -> Dict[str, Any]:
|
|
387
411
|
"""
|
|
388
412
|
Adds case event publishing configuration.
|
|
@@ -446,7 +470,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
446
470
|
*,
|
|
447
471
|
caseId: str,
|
|
448
472
|
domainId: str,
|
|
449
|
-
fields: Sequence[
|
|
473
|
+
fields: Sequence[FieldValueExtraUnionTypeDef],
|
|
450
474
|
performedBy: UserUnionTypeDef = ...,
|
|
451
475
|
) -> Dict[str, Any]:
|
|
452
476
|
"""
|
|
@@ -467,7 +491,12 @@ class ConnectCasesClient(BaseClient):
|
|
|
467
491
|
"""
|
|
468
492
|
|
|
469
493
|
def update_layout(
|
|
470
|
-
self,
|
|
494
|
+
self,
|
|
495
|
+
*,
|
|
496
|
+
domainId: str,
|
|
497
|
+
layoutId: str,
|
|
498
|
+
content: LayoutContentUnionTypeDef = ...,
|
|
499
|
+
name: str = ...,
|
|
471
500
|
) -> Dict[str, Any]:
|
|
472
501
|
"""
|
|
473
502
|
Updates the attributes of an existing layout.
|
|
@@ -32,10 +32,10 @@ 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
39
|
GetCaseAuditEventsResponseTypeDef,
|
|
40
40
|
GetCaseEventConfigurationResponseTypeDef,
|
|
41
41
|
GetCaseResponseTypeDef,
|
|
@@ -43,7 +43,7 @@ from .type_defs import (
|
|
|
43
43
|
GetLayoutResponseTypeDef,
|
|
44
44
|
GetTemplateResponseTypeDef,
|
|
45
45
|
LayoutConfigurationTypeDef,
|
|
46
|
-
|
|
46
|
+
LayoutContentUnionTypeDef,
|
|
47
47
|
ListCasesForContactResponseTypeDef,
|
|
48
48
|
ListDomainsResponseTypeDef,
|
|
49
49
|
ListFieldOptionsResponseTypeDef,
|
|
@@ -142,7 +142,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
142
142
|
self,
|
|
143
143
|
*,
|
|
144
144
|
domainId: str,
|
|
145
|
-
fields: Sequence[
|
|
145
|
+
fields: Sequence[FieldValueExtraUnionTypeDef],
|
|
146
146
|
templateId: str,
|
|
147
147
|
clientToken: str = ...,
|
|
148
148
|
performedBy: UserUnionTypeDef = ...,
|
|
@@ -175,7 +175,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
175
175
|
"""
|
|
176
176
|
|
|
177
177
|
def create_layout(
|
|
178
|
-
self, *, content:
|
|
178
|
+
self, *, content: LayoutContentUnionTypeDef, domainId: str, name: str
|
|
179
179
|
) -> CreateLayoutResponseTypeDef:
|
|
180
180
|
"""
|
|
181
181
|
Creates a layout in the Cases domain.
|
|
@@ -226,6 +226,30 @@ class ConnectCasesClient(BaseClient):
|
|
|
226
226
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/client/#delete_domain)
|
|
227
227
|
"""
|
|
228
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
|
+
|
|
229
253
|
def generate_presigned_url(
|
|
230
254
|
self,
|
|
231
255
|
ClientMethod: str,
|
|
@@ -379,7 +403,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
379
403
|
"""
|
|
380
404
|
|
|
381
405
|
def put_case_event_configuration(
|
|
382
|
-
self, *, domainId: str, eventBridge:
|
|
406
|
+
self, *, domainId: str, eventBridge: EventBridgeConfigurationUnionTypeDef
|
|
383
407
|
) -> Dict[str, Any]:
|
|
384
408
|
"""
|
|
385
409
|
Adds case event publishing configuration.
|
|
@@ -443,7 +467,7 @@ class ConnectCasesClient(BaseClient):
|
|
|
443
467
|
*,
|
|
444
468
|
caseId: str,
|
|
445
469
|
domainId: str,
|
|
446
|
-
fields: Sequence[
|
|
470
|
+
fields: Sequence[FieldValueExtraUnionTypeDef],
|
|
447
471
|
performedBy: UserUnionTypeDef = ...,
|
|
448
472
|
) -> Dict[str, Any]:
|
|
449
473
|
"""
|
|
@@ -464,7 +488,12 @@ class ConnectCasesClient(BaseClient):
|
|
|
464
488
|
"""
|
|
465
489
|
|
|
466
490
|
def update_layout(
|
|
467
|
-
self,
|
|
491
|
+
self,
|
|
492
|
+
*,
|
|
493
|
+
domainId: str,
|
|
494
|
+
layoutId: str,
|
|
495
|
+
content: LayoutContentUnionTypeDef = ...,
|
|
496
|
+
name: str = ...,
|
|
468
497
|
) -> Dict[str, Any]:
|
|
469
498
|
"""
|
|
470
499
|
Updates the attributes of an existing layout.
|
|
@@ -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",
|
|
@@ -352,6 +356,7 @@ ServiceName = Literal[
|
|
|
352
356
|
"route53-recovery-control-config",
|
|
353
357
|
"route53-recovery-readiness",
|
|
354
358
|
"route53domains",
|
|
359
|
+
"route53profiles",
|
|
355
360
|
"route53resolver",
|
|
356
361
|
"rum",
|
|
357
362
|
"s3",
|
|
@@ -403,6 +408,7 @@ ServiceName = Literal[
|
|
|
403
408
|
"swf",
|
|
404
409
|
"synthetics",
|
|
405
410
|
"textract",
|
|
411
|
+
"timestream-influxdb",
|
|
406
412
|
"timestream-query",
|
|
407
413
|
"timestream-write",
|
|
408
414
|
"tnb",
|
|
@@ -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",
|
|
@@ -352,6 +356,7 @@ ServiceName = Literal[
|
|
|
352
356
|
"route53-recovery-control-config",
|
|
353
357
|
"route53-recovery-readiness",
|
|
354
358
|
"route53domains",
|
|
359
|
+
"route53profiles",
|
|
355
360
|
"route53resolver",
|
|
356
361
|
"rum",
|
|
357
362
|
"s3",
|
|
@@ -403,6 +408,7 @@ ServiceName = Literal[
|
|
|
403
408
|
"swf",
|
|
404
409
|
"synthetics",
|
|
405
410
|
"textract",
|
|
411
|
+
"timestream-influxdb",
|
|
406
412
|
"timestream-query",
|
|
407
413
|
"timestream-write",
|
|
408
414
|
"tnb",
|