types-boto3-connectcases 1.35.71__py3-none-any.whl → 1.35.93__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.
- types_boto3_connectcases/__init__.py +1 -1
- types_boto3_connectcases/__init__.pyi +1 -1
- types_boto3_connectcases/__main__.py +9 -8
- types_boto3_connectcases/client.py +21 -23
- types_boto3_connectcases/client.pyi +21 -22
- types_boto3_connectcases/literals.py +10 -2
- types_boto3_connectcases/literals.pyi +10 -2
- types_boto3_connectcases/paginator.py +25 -21
- types_boto3_connectcases/paginator.pyi +24 -20
- types_boto3_connectcases/type_defs.py +20 -12
- types_boto3_connectcases/type_defs.pyi +20 -12
- types_boto3_connectcases/version.py +2 -2
- {types_boto3_connectcases-1.35.71.dist-info → types_boto3_connectcases-1.35.93.dist-info}/LICENSE +1 -1
- {types_boto3_connectcases-1.35.71.dist-info → types_boto3_connectcases-1.35.93.dist-info}/METADATA +50 -10
- types_boto3_connectcases-1.35.93.dist-info/RECORD +18 -0
- {types_boto3_connectcases-1.35.71.dist-info → types_boto3_connectcases-1.35.93.dist-info}/WHEEL +1 -1
- types_boto3_connectcases-1.35.71.dist-info/RECORD +0 -18
- {types_boto3_connectcases-1.35.71.dist-info → types_boto3_connectcases-1.35.93.dist-info}/top_level.txt +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Main CLI entrypoint.
|
|
3
3
|
|
|
4
|
-
Copyright
|
|
4
|
+
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
7
|
import sys
|
|
@@ -11,14 +11,14 @@ def print_info() -> None:
|
|
|
11
11
|
"""
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
|
-
|
|
15
|
-
"Type annotations for boto3 ConnectCases 1.35.
|
|
16
|
-
"Version: 1.35.
|
|
17
|
-
"Builder version: 8.
|
|
14
|
+
sys.stdout.write(
|
|
15
|
+
"Type annotations for boto3 ConnectCases 1.35.93\n"
|
|
16
|
+
"Version: 1.35.93\n"
|
|
17
|
+
"Builder version: 8.8.0\n"
|
|
18
18
|
"Docs: https://youtype.github.io/types_boto3_docs/types_boto3_connectcases//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#connectcases\n"
|
|
20
20
|
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
21
|
-
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases"
|
|
21
|
+
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases\n"
|
|
22
22
|
)
|
|
23
23
|
|
|
24
24
|
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
|
|
29
|
+
sys.stdout.write("1.35.93\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
|
@@ -34,7 +34,8 @@ def main() -> None:
|
|
|
34
34
|
Main CLI entrypoint.
|
|
35
35
|
"""
|
|
36
36
|
if "--version" in sys.argv:
|
|
37
|
-
|
|
37
|
+
print_version()
|
|
38
|
+
return
|
|
38
39
|
print_info()
|
|
39
40
|
|
|
40
41
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
|
-
Type annotations for connectcases service
|
|
2
|
+
Type annotations for connectcases service Client.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -13,13 +13,17 @@ Usage::
|
|
|
13
13
|
client: ConnectCasesClient = session.client("connectcases")
|
|
14
14
|
```
|
|
15
15
|
|
|
16
|
-
Copyright
|
|
16
|
+
Copyright 2025 Vlad Emelianov
|
|
17
17
|
"""
|
|
18
18
|
|
|
19
|
+
from __future__ import annotations
|
|
20
|
+
|
|
19
21
|
import sys
|
|
20
|
-
from typing import Any,
|
|
22
|
+
from typing import Any, overload
|
|
21
23
|
|
|
22
24
|
from botocore.client import BaseClient, ClientMeta
|
|
25
|
+
from botocore.errorfactory import BaseClientExceptions
|
|
26
|
+
from botocore.exceptions import ClientError as BotocoreClientError
|
|
23
27
|
|
|
24
28
|
from .paginator import SearchCasesPaginator, SearchRelatedItemsPaginator
|
|
25
29
|
from .type_defs import (
|
|
@@ -83,6 +87,12 @@ from .type_defs import (
|
|
|
83
87
|
UpdateTemplateRequestRequestTypeDef,
|
|
84
88
|
)
|
|
85
89
|
|
|
90
|
+
if sys.version_info >= (3, 9):
|
|
91
|
+
from builtins import dict as Dict
|
|
92
|
+
from builtins import type as Type
|
|
93
|
+
from collections.abc import Mapping
|
|
94
|
+
else:
|
|
95
|
+
from typing import Dict, Mapping, Type
|
|
86
96
|
if sys.version_info >= (3, 12):
|
|
87
97
|
from typing import Literal, Unpack
|
|
88
98
|
else:
|
|
@@ -92,15 +102,7 @@ else:
|
|
|
92
102
|
__all__ = ("ConnectCasesClient",)
|
|
93
103
|
|
|
94
104
|
|
|
95
|
-
class
|
|
96
|
-
MSG_TEMPLATE: str
|
|
97
|
-
|
|
98
|
-
def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
|
|
99
|
-
self.response: Dict[str, Any]
|
|
100
|
-
self.operation_name: str
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
class Exceptions:
|
|
105
|
+
class Exceptions(BaseClientExceptions):
|
|
104
106
|
AccessDeniedException: Type[BotocoreClientError]
|
|
105
107
|
ClientError: Type[BotocoreClientError]
|
|
106
108
|
ConflictException: Type[BotocoreClientError]
|
|
@@ -146,12 +148,6 @@ class ConnectCasesClient(BaseClient):
|
|
|
146
148
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#generate_presigned_url)
|
|
147
149
|
"""
|
|
148
150
|
|
|
149
|
-
def close(self) -> None:
|
|
150
|
-
"""
|
|
151
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases/client/close.html)
|
|
152
|
-
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#close)
|
|
153
|
-
"""
|
|
154
|
-
|
|
155
151
|
def batch_get_field(
|
|
156
152
|
self, **kwargs: Unpack[BatchGetFieldRequestRequestTypeDef]
|
|
157
153
|
) -> BatchGetFieldResponseTypeDef:
|
|
@@ -487,8 +483,10 @@ class ConnectCasesClient(BaseClient):
|
|
|
487
483
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#update_template)
|
|
488
484
|
"""
|
|
489
485
|
|
|
490
|
-
@overload
|
|
491
|
-
def get_paginator(
|
|
486
|
+
@overload # type: ignore[override]
|
|
487
|
+
def get_paginator( # type: ignore[override]
|
|
488
|
+
self, operation_name: Literal["search_cases"]
|
|
489
|
+
) -> SearchCasesPaginator:
|
|
492
490
|
"""
|
|
493
491
|
Create a paginator for an operation.
|
|
494
492
|
|
|
@@ -496,8 +494,8 @@ class ConnectCasesClient(BaseClient):
|
|
|
496
494
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#get_paginator)
|
|
497
495
|
"""
|
|
498
496
|
|
|
499
|
-
@overload
|
|
500
|
-
def get_paginator(
|
|
497
|
+
@overload # type: ignore[override]
|
|
498
|
+
def get_paginator( # type: ignore[override]
|
|
501
499
|
self, operation_name: Literal["search_related_items"]
|
|
502
500
|
) -> SearchRelatedItemsPaginator:
|
|
503
501
|
"""
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
|
-
Type annotations for connectcases service
|
|
2
|
+
Type annotations for connectcases service Client.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -13,13 +13,17 @@ Usage::
|
|
|
13
13
|
client: ConnectCasesClient = session.client("connectcases")
|
|
14
14
|
```
|
|
15
15
|
|
|
16
|
-
Copyright
|
|
16
|
+
Copyright 2025 Vlad Emelianov
|
|
17
17
|
"""
|
|
18
18
|
|
|
19
|
+
from __future__ import annotations
|
|
20
|
+
|
|
19
21
|
import sys
|
|
20
|
-
from typing import Any,
|
|
22
|
+
from typing import Any, overload
|
|
21
23
|
|
|
22
24
|
from botocore.client import BaseClient, ClientMeta
|
|
25
|
+
from botocore.errorfactory import BaseClientExceptions
|
|
26
|
+
from botocore.exceptions import ClientError as BotocoreClientError
|
|
23
27
|
|
|
24
28
|
from .paginator import SearchCasesPaginator, SearchRelatedItemsPaginator
|
|
25
29
|
from .type_defs import (
|
|
@@ -83,6 +87,12 @@ from .type_defs import (
|
|
|
83
87
|
UpdateTemplateRequestRequestTypeDef,
|
|
84
88
|
)
|
|
85
89
|
|
|
90
|
+
if sys.version_info >= (3, 9):
|
|
91
|
+
from builtins import dict as Dict
|
|
92
|
+
from builtins import type as Type
|
|
93
|
+
from collections.abc import Mapping
|
|
94
|
+
else:
|
|
95
|
+
from typing import Dict, Mapping, Type
|
|
86
96
|
if sys.version_info >= (3, 12):
|
|
87
97
|
from typing import Literal, Unpack
|
|
88
98
|
else:
|
|
@@ -90,14 +100,7 @@ else:
|
|
|
90
100
|
|
|
91
101
|
__all__ = ("ConnectCasesClient",)
|
|
92
102
|
|
|
93
|
-
class
|
|
94
|
-
MSG_TEMPLATE: str
|
|
95
|
-
|
|
96
|
-
def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
|
|
97
|
-
self.response: Dict[str, Any]
|
|
98
|
-
self.operation_name: str
|
|
99
|
-
|
|
100
|
-
class Exceptions:
|
|
103
|
+
class Exceptions(BaseClientExceptions):
|
|
101
104
|
AccessDeniedException: Type[BotocoreClientError]
|
|
102
105
|
ClientError: Type[BotocoreClientError]
|
|
103
106
|
ConflictException: Type[BotocoreClientError]
|
|
@@ -142,12 +145,6 @@ class ConnectCasesClient(BaseClient):
|
|
|
142
145
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#generate_presigned_url)
|
|
143
146
|
"""
|
|
144
147
|
|
|
145
|
-
def close(self) -> None:
|
|
146
|
-
"""
|
|
147
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases/client/close.html)
|
|
148
|
-
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#close)
|
|
149
|
-
"""
|
|
150
|
-
|
|
151
148
|
def batch_get_field(
|
|
152
149
|
self, **kwargs: Unpack[BatchGetFieldRequestRequestTypeDef]
|
|
153
150
|
) -> BatchGetFieldResponseTypeDef:
|
|
@@ -483,8 +480,10 @@ class ConnectCasesClient(BaseClient):
|
|
|
483
480
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#update_template)
|
|
484
481
|
"""
|
|
485
482
|
|
|
486
|
-
@overload
|
|
487
|
-
def get_paginator(
|
|
483
|
+
@overload # type: ignore[override]
|
|
484
|
+
def get_paginator( # type: ignore[override]
|
|
485
|
+
self, operation_name: Literal["search_cases"]
|
|
486
|
+
) -> SearchCasesPaginator:
|
|
488
487
|
"""
|
|
489
488
|
Create a paginator for an operation.
|
|
490
489
|
|
|
@@ -492,8 +491,8 @@ class ConnectCasesClient(BaseClient):
|
|
|
492
491
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#get_paginator)
|
|
493
492
|
"""
|
|
494
493
|
|
|
495
|
-
@overload
|
|
496
|
-
def get_paginator(
|
|
494
|
+
@overload # type: ignore[override]
|
|
495
|
+
def get_paginator( # type: ignore[override]
|
|
497
496
|
self, operation_name: Literal["search_related_items"]
|
|
498
497
|
) -> SearchRelatedItemsPaginator:
|
|
499
498
|
"""
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for connectcases service literal definitions.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/literals/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -11,7 +11,7 @@ Usage::
|
|
|
11
11
|
data: AuditEventTypeType = "Case.Created"
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
-
Copyright
|
|
14
|
+
Copyright 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
import sys
|
|
@@ -87,12 +87,15 @@ ServiceName = Literal[
|
|
|
87
87
|
"b2bi",
|
|
88
88
|
"backup",
|
|
89
89
|
"backup-gateway",
|
|
90
|
+
"backupsearch",
|
|
90
91
|
"batch",
|
|
91
92
|
"bcm-data-exports",
|
|
92
93
|
"bcm-pricing-calculator",
|
|
93
94
|
"bedrock",
|
|
94
95
|
"bedrock-agent",
|
|
95
96
|
"bedrock-agent-runtime",
|
|
97
|
+
"bedrock-data-automation",
|
|
98
|
+
"bedrock-data-automation-runtime",
|
|
96
99
|
"bedrock-runtime",
|
|
97
100
|
"billing",
|
|
98
101
|
"billingconductor",
|
|
@@ -170,6 +173,7 @@ ServiceName = Literal[
|
|
|
170
173
|
"drs",
|
|
171
174
|
"ds",
|
|
172
175
|
"ds-data",
|
|
176
|
+
"dsql",
|
|
173
177
|
"dynamodb",
|
|
174
178
|
"dynamodbstreams",
|
|
175
179
|
"ebs",
|
|
@@ -226,6 +230,7 @@ ServiceName = Literal[
|
|
|
226
230
|
"inspector-scan",
|
|
227
231
|
"inspector2",
|
|
228
232
|
"internetmonitor",
|
|
233
|
+
"invoicing",
|
|
229
234
|
"iot",
|
|
230
235
|
"iot-data",
|
|
231
236
|
"iot-jobs-data",
|
|
@@ -312,6 +317,7 @@ ServiceName = Literal[
|
|
|
312
317
|
"neptune-graph",
|
|
313
318
|
"neptunedata",
|
|
314
319
|
"network-firewall",
|
|
320
|
+
"networkflowmonitor",
|
|
315
321
|
"networkmanager",
|
|
316
322
|
"networkmonitor",
|
|
317
323
|
"notifications",
|
|
@@ -378,6 +384,7 @@ ServiceName = Literal[
|
|
|
378
384
|
"s3",
|
|
379
385
|
"s3control",
|
|
380
386
|
"s3outposts",
|
|
387
|
+
"s3tables",
|
|
381
388
|
"sagemaker",
|
|
382
389
|
"sagemaker-a2i-runtime",
|
|
383
390
|
"sagemaker-edge",
|
|
@@ -390,6 +397,7 @@ ServiceName = Literal[
|
|
|
390
397
|
"schemas",
|
|
391
398
|
"sdb",
|
|
392
399
|
"secretsmanager",
|
|
400
|
+
"security-ir",
|
|
393
401
|
"securityhub",
|
|
394
402
|
"securitylake",
|
|
395
403
|
"serverlessrepo",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for connectcases service literal definitions.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/literals/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -11,7 +11,7 @@ Usage::
|
|
|
11
11
|
data: AuditEventTypeType = "Case.Created"
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
-
Copyright
|
|
14
|
+
Copyright 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
import sys
|
|
@@ -85,12 +85,15 @@ ServiceName = Literal[
|
|
|
85
85
|
"b2bi",
|
|
86
86
|
"backup",
|
|
87
87
|
"backup-gateway",
|
|
88
|
+
"backupsearch",
|
|
88
89
|
"batch",
|
|
89
90
|
"bcm-data-exports",
|
|
90
91
|
"bcm-pricing-calculator",
|
|
91
92
|
"bedrock",
|
|
92
93
|
"bedrock-agent",
|
|
93
94
|
"bedrock-agent-runtime",
|
|
95
|
+
"bedrock-data-automation",
|
|
96
|
+
"bedrock-data-automation-runtime",
|
|
94
97
|
"bedrock-runtime",
|
|
95
98
|
"billing",
|
|
96
99
|
"billingconductor",
|
|
@@ -168,6 +171,7 @@ ServiceName = Literal[
|
|
|
168
171
|
"drs",
|
|
169
172
|
"ds",
|
|
170
173
|
"ds-data",
|
|
174
|
+
"dsql",
|
|
171
175
|
"dynamodb",
|
|
172
176
|
"dynamodbstreams",
|
|
173
177
|
"ebs",
|
|
@@ -224,6 +228,7 @@ ServiceName = Literal[
|
|
|
224
228
|
"inspector-scan",
|
|
225
229
|
"inspector2",
|
|
226
230
|
"internetmonitor",
|
|
231
|
+
"invoicing",
|
|
227
232
|
"iot",
|
|
228
233
|
"iot-data",
|
|
229
234
|
"iot-jobs-data",
|
|
@@ -310,6 +315,7 @@ ServiceName = Literal[
|
|
|
310
315
|
"neptune-graph",
|
|
311
316
|
"neptunedata",
|
|
312
317
|
"network-firewall",
|
|
318
|
+
"networkflowmonitor",
|
|
313
319
|
"networkmanager",
|
|
314
320
|
"networkmonitor",
|
|
315
321
|
"notifications",
|
|
@@ -376,6 +382,7 @@ ServiceName = Literal[
|
|
|
376
382
|
"s3",
|
|
377
383
|
"s3control",
|
|
378
384
|
"s3outposts",
|
|
385
|
+
"s3tables",
|
|
379
386
|
"sagemaker",
|
|
380
387
|
"sagemaker-a2i-runtime",
|
|
381
388
|
"sagemaker-edge",
|
|
@@ -388,6 +395,7 @@ ServiceName = Literal[
|
|
|
388
395
|
"schemas",
|
|
389
396
|
"sdb",
|
|
390
397
|
"secretsmanager",
|
|
398
|
+
"security-ir",
|
|
391
399
|
"securityhub",
|
|
392
400
|
"securitylake",
|
|
393
401
|
"serverlessrepo",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for connectcases service client paginators.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/paginators/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -21,18 +21,20 @@ Usage::
|
|
|
21
21
|
search_related_items_paginator: SearchRelatedItemsPaginator = client.get_paginator("search_related_items")
|
|
22
22
|
```
|
|
23
23
|
|
|
24
|
-
Copyright
|
|
24
|
+
Copyright 2025 Vlad Emelianov
|
|
25
25
|
"""
|
|
26
26
|
|
|
27
|
+
from __future__ import annotations
|
|
28
|
+
|
|
27
29
|
import sys
|
|
28
|
-
from typing import
|
|
30
|
+
from typing import TYPE_CHECKING
|
|
29
31
|
|
|
30
32
|
from botocore.paginate import PageIterator, Paginator
|
|
31
33
|
|
|
32
34
|
from .type_defs import (
|
|
33
|
-
|
|
35
|
+
SearchCasesRequestPaginateTypeDef,
|
|
34
36
|
SearchCasesResponseTypeDef,
|
|
35
|
-
|
|
37
|
+
SearchRelatedItemsRequestPaginateTypeDef,
|
|
36
38
|
SearchRelatedItemsResponseTypeDef,
|
|
37
39
|
)
|
|
38
40
|
|
|
@@ -45,40 +47,42 @@ else:
|
|
|
45
47
|
__all__ = ("SearchCasesPaginator", "SearchRelatedItemsPaginator")
|
|
46
48
|
|
|
47
49
|
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
def __iter__(self) -> Iterator[_ItemTypeDef]:
|
|
53
|
-
"""
|
|
54
|
-
Proxy method to specify iterator item type.
|
|
55
|
-
"""
|
|
50
|
+
if TYPE_CHECKING:
|
|
51
|
+
_SearchCasesPaginatorBase = Paginator[SearchCasesResponseTypeDef]
|
|
52
|
+
else:
|
|
53
|
+
_SearchCasesPaginatorBase = Paginator # type: ignore[assignment]
|
|
56
54
|
|
|
57
55
|
|
|
58
|
-
class SearchCasesPaginator(
|
|
56
|
+
class SearchCasesPaginator(_SearchCasesPaginatorBase):
|
|
59
57
|
"""
|
|
60
58
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases/paginator/SearchCases.html#ConnectCases.Paginator.SearchCases)
|
|
61
59
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/paginators/#searchcasespaginator)
|
|
62
60
|
"""
|
|
63
61
|
|
|
64
|
-
def paginate(
|
|
65
|
-
self, **kwargs: Unpack[
|
|
66
|
-
) ->
|
|
62
|
+
def paginate( # type: ignore[override]
|
|
63
|
+
self, **kwargs: Unpack[SearchCasesRequestPaginateTypeDef]
|
|
64
|
+
) -> PageIterator[SearchCasesResponseTypeDef]:
|
|
67
65
|
"""
|
|
68
66
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases/paginator/SearchCases.html#ConnectCases.Paginator.SearchCases.paginate)
|
|
69
67
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/paginators/#searchcasespaginator)
|
|
70
68
|
"""
|
|
71
69
|
|
|
72
70
|
|
|
73
|
-
|
|
71
|
+
if TYPE_CHECKING:
|
|
72
|
+
_SearchRelatedItemsPaginatorBase = Paginator[SearchRelatedItemsResponseTypeDef]
|
|
73
|
+
else:
|
|
74
|
+
_SearchRelatedItemsPaginatorBase = Paginator # type: ignore[assignment]
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
class SearchRelatedItemsPaginator(_SearchRelatedItemsPaginatorBase):
|
|
74
78
|
"""
|
|
75
79
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases/paginator/SearchRelatedItems.html#ConnectCases.Paginator.SearchRelatedItems)
|
|
76
80
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/paginators/#searchrelateditemspaginator)
|
|
77
81
|
"""
|
|
78
82
|
|
|
79
|
-
def paginate(
|
|
80
|
-
self, **kwargs: Unpack[
|
|
81
|
-
) ->
|
|
83
|
+
def paginate( # type: ignore[override]
|
|
84
|
+
self, **kwargs: Unpack[SearchRelatedItemsRequestPaginateTypeDef]
|
|
85
|
+
) -> PageIterator[SearchRelatedItemsResponseTypeDef]:
|
|
82
86
|
"""
|
|
83
87
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases/paginator/SearchRelatedItems.html#ConnectCases.Paginator.SearchRelatedItems.paginate)
|
|
84
88
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/paginators/#searchrelateditemspaginator)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for connectcases service client paginators.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/paginators/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -21,18 +21,20 @@ Usage::
|
|
|
21
21
|
search_related_items_paginator: SearchRelatedItemsPaginator = client.get_paginator("search_related_items")
|
|
22
22
|
```
|
|
23
23
|
|
|
24
|
-
Copyright
|
|
24
|
+
Copyright 2025 Vlad Emelianov
|
|
25
25
|
"""
|
|
26
26
|
|
|
27
|
+
from __future__ import annotations
|
|
28
|
+
|
|
27
29
|
import sys
|
|
28
|
-
from typing import
|
|
30
|
+
from typing import TYPE_CHECKING
|
|
29
31
|
|
|
30
32
|
from botocore.paginate import PageIterator, Paginator
|
|
31
33
|
|
|
32
34
|
from .type_defs import (
|
|
33
|
-
|
|
35
|
+
SearchCasesRequestPaginateTypeDef,
|
|
34
36
|
SearchCasesResponseTypeDef,
|
|
35
|
-
|
|
37
|
+
SearchRelatedItemsRequestPaginateTypeDef,
|
|
36
38
|
SearchRelatedItemsResponseTypeDef,
|
|
37
39
|
)
|
|
38
40
|
|
|
@@ -43,35 +45,37 @@ else:
|
|
|
43
45
|
|
|
44
46
|
__all__ = ("SearchCasesPaginator", "SearchRelatedItemsPaginator")
|
|
45
47
|
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
"""
|
|
51
|
-
Proxy method to specify iterator item type.
|
|
52
|
-
"""
|
|
48
|
+
if TYPE_CHECKING:
|
|
49
|
+
_SearchCasesPaginatorBase = Paginator[SearchCasesResponseTypeDef]
|
|
50
|
+
else:
|
|
51
|
+
_SearchCasesPaginatorBase = Paginator # type: ignore[assignment]
|
|
53
52
|
|
|
54
|
-
class SearchCasesPaginator(
|
|
53
|
+
class SearchCasesPaginator(_SearchCasesPaginatorBase):
|
|
55
54
|
"""
|
|
56
55
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases/paginator/SearchCases.html#ConnectCases.Paginator.SearchCases)
|
|
57
56
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/paginators/#searchcasespaginator)
|
|
58
57
|
"""
|
|
59
|
-
def paginate(
|
|
60
|
-
self, **kwargs: Unpack[
|
|
61
|
-
) ->
|
|
58
|
+
def paginate( # type: ignore[override]
|
|
59
|
+
self, **kwargs: Unpack[SearchCasesRequestPaginateTypeDef]
|
|
60
|
+
) -> PageIterator[SearchCasesResponseTypeDef]:
|
|
62
61
|
"""
|
|
63
62
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases/paginator/SearchCases.html#ConnectCases.Paginator.SearchCases.paginate)
|
|
64
63
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/paginators/#searchcasespaginator)
|
|
65
64
|
"""
|
|
66
65
|
|
|
67
|
-
|
|
66
|
+
if TYPE_CHECKING:
|
|
67
|
+
_SearchRelatedItemsPaginatorBase = Paginator[SearchRelatedItemsResponseTypeDef]
|
|
68
|
+
else:
|
|
69
|
+
_SearchRelatedItemsPaginatorBase = Paginator # type: ignore[assignment]
|
|
70
|
+
|
|
71
|
+
class SearchRelatedItemsPaginator(_SearchRelatedItemsPaginatorBase):
|
|
68
72
|
"""
|
|
69
73
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases/paginator/SearchRelatedItems.html#ConnectCases.Paginator.SearchRelatedItems)
|
|
70
74
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/paginators/#searchrelateditemspaginator)
|
|
71
75
|
"""
|
|
72
|
-
def paginate(
|
|
73
|
-
self, **kwargs: Unpack[
|
|
74
|
-
) ->
|
|
76
|
+
def paginate( # type: ignore[override]
|
|
77
|
+
self, **kwargs: Unpack[SearchRelatedItemsRequestPaginateTypeDef]
|
|
78
|
+
) -> PageIterator[SearchRelatedItemsResponseTypeDef]:
|
|
75
79
|
"""
|
|
76
80
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases/paginator/SearchRelatedItems.html#ConnectCases.Paginator.SearchRelatedItems.paginate)
|
|
77
81
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/paginators/#searchrelateditemspaginator)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for connectcases service type definitions.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/type_defs/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -11,12 +11,14 @@ Usage::
|
|
|
11
11
|
data: AuditEventFieldValueUnionTypeDef = ...
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
-
Copyright
|
|
14
|
+
Copyright 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
|
+
from __future__ import annotations
|
|
18
|
+
|
|
17
19
|
import sys
|
|
18
20
|
from datetime import datetime
|
|
19
|
-
from typing import Any,
|
|
21
|
+
from typing import Any, Union
|
|
20
22
|
|
|
21
23
|
from .literals import (
|
|
22
24
|
AuditEventTypeType,
|
|
@@ -28,6 +30,12 @@ from .literals import (
|
|
|
28
30
|
TemplateStatusType,
|
|
29
31
|
)
|
|
30
32
|
|
|
33
|
+
if sys.version_info >= (3, 9):
|
|
34
|
+
from builtins import dict as Dict
|
|
35
|
+
from builtins import list as List
|
|
36
|
+
from collections.abc import Mapping, Sequence
|
|
37
|
+
else:
|
|
38
|
+
from typing import Dict, List, Mapping, Sequence
|
|
31
39
|
if sys.version_info >= (3, 12):
|
|
32
40
|
from typing import Literal, NotRequired, TypedDict
|
|
33
41
|
else:
|
|
@@ -139,12 +147,12 @@ __all__ = (
|
|
|
139
147
|
"RelatedItemTypeFilterTypeDef",
|
|
140
148
|
"RequiredFieldTypeDef",
|
|
141
149
|
"ResponseMetadataTypeDef",
|
|
150
|
+
"SearchCasesRequestPaginateTypeDef",
|
|
142
151
|
"SearchCasesRequestRequestTypeDef",
|
|
143
|
-
"SearchCasesRequestSearchCasesPaginateTypeDef",
|
|
144
152
|
"SearchCasesResponseItemTypeDef",
|
|
145
153
|
"SearchCasesResponseTypeDef",
|
|
154
|
+
"SearchRelatedItemsRequestPaginateTypeDef",
|
|
146
155
|
"SearchRelatedItemsRequestRequestTypeDef",
|
|
147
|
-
"SearchRelatedItemsRequestSearchRelatedItemsPaginateTypeDef",
|
|
148
156
|
"SearchRelatedItemsResponseItemTypeDef",
|
|
149
157
|
"SearchRelatedItemsResponseTypeDef",
|
|
150
158
|
"SectionOutputTypeDef",
|
|
@@ -740,19 +748,19 @@ CreateRelatedItemRequestRequestTypeDef = TypedDict(
|
|
|
740
748
|
)
|
|
741
749
|
|
|
742
750
|
|
|
743
|
-
class
|
|
751
|
+
class SearchRelatedItemsRequestPaginateTypeDef(TypedDict):
|
|
744
752
|
caseId: str
|
|
745
753
|
domainId: str
|
|
746
754
|
filters: NotRequired[Sequence[RelatedItemTypeFilterTypeDef]]
|
|
747
|
-
|
|
748
|
-
nextToken: NotRequired[str]
|
|
755
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
749
756
|
|
|
750
757
|
|
|
751
|
-
class
|
|
758
|
+
class SearchRelatedItemsRequestRequestTypeDef(TypedDict):
|
|
752
759
|
caseId: str
|
|
753
760
|
domainId: str
|
|
754
761
|
filters: NotRequired[Sequence[RelatedItemTypeFilterTypeDef]]
|
|
755
|
-
|
|
762
|
+
maxResults: NotRequired[int]
|
|
763
|
+
nextToken: NotRequired[str]
|
|
756
764
|
|
|
757
765
|
|
|
758
766
|
class GetCaseAuditEventsResponseTypeDef(TypedDict):
|
|
@@ -885,8 +893,8 @@ class GetLayoutResponseTypeDef(TypedDict):
|
|
|
885
893
|
|
|
886
894
|
|
|
887
895
|
LayoutSectionsUnionTypeDef = Union[LayoutSectionsTypeDef, LayoutSectionsOutputTypeDef]
|
|
888
|
-
|
|
889
|
-
"
|
|
896
|
+
SearchCasesRequestPaginateTypeDef = TypedDict(
|
|
897
|
+
"SearchCasesRequestPaginateTypeDef",
|
|
890
898
|
{
|
|
891
899
|
"domainId": str,
|
|
892
900
|
"fields": NotRequired[Sequence[FieldIdentifierTypeDef]],
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for connectcases service type definitions.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/type_defs/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -11,12 +11,14 @@ Usage::
|
|
|
11
11
|
data: AuditEventFieldValueUnionTypeDef = ...
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
-
Copyright
|
|
14
|
+
Copyright 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
|
+
from __future__ import annotations
|
|
18
|
+
|
|
17
19
|
import sys
|
|
18
20
|
from datetime import datetime
|
|
19
|
-
from typing import Any,
|
|
21
|
+
from typing import Any, Union
|
|
20
22
|
|
|
21
23
|
from .literals import (
|
|
22
24
|
AuditEventTypeType,
|
|
@@ -28,6 +30,12 @@ from .literals import (
|
|
|
28
30
|
TemplateStatusType,
|
|
29
31
|
)
|
|
30
32
|
|
|
33
|
+
if sys.version_info >= (3, 9):
|
|
34
|
+
from builtins import dict as Dict
|
|
35
|
+
from builtins import list as List
|
|
36
|
+
from collections.abc import Mapping, Sequence
|
|
37
|
+
else:
|
|
38
|
+
from typing import Dict, List, Mapping, Sequence
|
|
31
39
|
if sys.version_info >= (3, 12):
|
|
32
40
|
from typing import Literal, NotRequired, TypedDict
|
|
33
41
|
else:
|
|
@@ -138,12 +146,12 @@ __all__ = (
|
|
|
138
146
|
"RelatedItemTypeFilterTypeDef",
|
|
139
147
|
"RequiredFieldTypeDef",
|
|
140
148
|
"ResponseMetadataTypeDef",
|
|
149
|
+
"SearchCasesRequestPaginateTypeDef",
|
|
141
150
|
"SearchCasesRequestRequestTypeDef",
|
|
142
|
-
"SearchCasesRequestSearchCasesPaginateTypeDef",
|
|
143
151
|
"SearchCasesResponseItemTypeDef",
|
|
144
152
|
"SearchCasesResponseTypeDef",
|
|
153
|
+
"SearchRelatedItemsRequestPaginateTypeDef",
|
|
145
154
|
"SearchRelatedItemsRequestRequestTypeDef",
|
|
146
|
-
"SearchRelatedItemsRequestSearchRelatedItemsPaginateTypeDef",
|
|
147
155
|
"SearchRelatedItemsResponseItemTypeDef",
|
|
148
156
|
"SearchRelatedItemsResponseTypeDef",
|
|
149
157
|
"SectionOutputTypeDef",
|
|
@@ -652,18 +660,18 @@ CreateRelatedItemRequestRequestTypeDef = TypedDict(
|
|
|
652
660
|
},
|
|
653
661
|
)
|
|
654
662
|
|
|
655
|
-
class
|
|
663
|
+
class SearchRelatedItemsRequestPaginateTypeDef(TypedDict):
|
|
656
664
|
caseId: str
|
|
657
665
|
domainId: str
|
|
658
666
|
filters: NotRequired[Sequence[RelatedItemTypeFilterTypeDef]]
|
|
659
|
-
|
|
660
|
-
nextToken: NotRequired[str]
|
|
667
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
661
668
|
|
|
662
|
-
class
|
|
669
|
+
class SearchRelatedItemsRequestRequestTypeDef(TypedDict):
|
|
663
670
|
caseId: str
|
|
664
671
|
domainId: str
|
|
665
672
|
filters: NotRequired[Sequence[RelatedItemTypeFilterTypeDef]]
|
|
666
|
-
|
|
673
|
+
maxResults: NotRequired[int]
|
|
674
|
+
nextToken: NotRequired[str]
|
|
667
675
|
|
|
668
676
|
class GetCaseAuditEventsResponseTypeDef(TypedDict):
|
|
669
677
|
auditEvents: List[AuditEventTypeDef]
|
|
@@ -774,8 +782,8 @@ class GetLayoutResponseTypeDef(TypedDict):
|
|
|
774
782
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
775
783
|
|
|
776
784
|
LayoutSectionsUnionTypeDef = Union[LayoutSectionsTypeDef, LayoutSectionsOutputTypeDef]
|
|
777
|
-
|
|
778
|
-
"
|
|
785
|
+
SearchCasesRequestPaginateTypeDef = TypedDict(
|
|
786
|
+
"SearchCasesRequestPaginateTypeDef",
|
|
779
787
|
{
|
|
780
788
|
"domainId": str,
|
|
781
789
|
"fields": NotRequired[Sequence[FieldIdentifierTypeDef]],
|
{types_boto3_connectcases-1.35.71.dist-info → types_boto3_connectcases-1.35.93.dist-info}/METADATA
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: types-boto3-connectcases
|
|
3
|
-
Version: 1.35.
|
|
4
|
-
Summary: Type annotations for boto3 ConnectCases 1.35.
|
|
3
|
+
Version: 1.35.93
|
|
4
|
+
Summary: Type annotations for boto3 ConnectCases 1.35.93 service generated with mypy-boto3-builder 8.8.0
|
|
5
5
|
Home-page: https://github.com/youtype/mypy_boto3_builder
|
|
6
6
|
Author: Vlad Emelianov
|
|
7
7
|
Author-email: vlad.emelianov.nz@gmail.com
|
|
@@ -9,7 +9,7 @@ License: MIT License
|
|
|
9
9
|
Project-URL: Documentation, https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/
|
|
10
10
|
Project-URL: Source, https://github.com/youtype/mypy_boto3_builder
|
|
11
11
|
Project-URL: Tracker, https://github.com/youtype/mypy_boto3_builder/issues
|
|
12
|
-
Keywords: boto3 connectcases type-annotations
|
|
12
|
+
Keywords: boto3 connectcases boto3-stubs type-annotations mypy typeshed autocomplete
|
|
13
13
|
Classifier: Development Status :: 5 - Production/Stable
|
|
14
14
|
Classifier: Intended Audience :: Developers
|
|
15
15
|
Classifier: Environment :: Console
|
|
@@ -30,7 +30,7 @@ Classifier: Typing :: Stubs Only
|
|
|
30
30
|
Requires-Python: >=3.8
|
|
31
31
|
Description-Content-Type: text/markdown
|
|
32
32
|
License-File: LICENSE
|
|
33
|
-
Requires-Dist: typing-extensions
|
|
33
|
+
Requires-Dist: typing-extensions; python_version < "3.12"
|
|
34
34
|
|
|
35
35
|
<a id="types-boto3-connectcases"></a>
|
|
36
36
|
|
|
@@ -44,7 +44,7 @@ Requires-Dist: typing-extensions>=4.1.0; python_version < "3.12"
|
|
|
44
44
|

|
|
45
45
|
|
|
46
46
|
Type annotations for
|
|
47
|
-
[boto3 ConnectCases 1.35.
|
|
47
|
+
[boto3 ConnectCases 1.35.93](https://pypi.org/project/boto3/) compatible with
|
|
48
48
|
[VSCode](https://code.visualstudio.com/),
|
|
49
49
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
50
50
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -52,8 +52,8 @@ Type annotations for
|
|
|
52
52
|
[mypy](https://github.com/python/mypy),
|
|
53
53
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
54
54
|
|
|
55
|
-
Generated
|
|
56
|
-
[mypy-boto3-builder 8.
|
|
55
|
+
Generated with
|
|
56
|
+
[mypy-boto3-builder 8.8.0](https://github.com/youtype/mypy_boto3_builder).
|
|
57
57
|
|
|
58
58
|
More information can be found on
|
|
59
59
|
[types-boto3](https://pypi.org/project/types-boto3/) page and in
|
|
@@ -61,10 +61,11 @@ More information can be found on
|
|
|
61
61
|
|
|
62
62
|
See how it helps you find and fix potential bugs:
|
|
63
63
|
|
|
64
|
-

|
|
65
65
|
|
|
66
66
|
- [types-boto3-connectcases](#types-boto3-connectcases)
|
|
67
67
|
- [How to install](#how-to-install)
|
|
68
|
+
- [Generate locally (recommended)](<#generate-locally-(recommended)>)
|
|
68
69
|
- [VSCode extension](#vscode-extension)
|
|
69
70
|
- [From PyPI with pip](#from-pypi-with-pip)
|
|
70
71
|
- [How to uninstall](#how-to-uninstall)
|
|
@@ -76,6 +77,7 @@ See how it helps you find and fix potential bugs:
|
|
|
76
77
|
- [Other IDEs](#other-ides)
|
|
77
78
|
- [mypy](#mypy)
|
|
78
79
|
- [pyright](#pyright)
|
|
80
|
+
- [Pylint compatibility](#pylint-compatibility)
|
|
79
81
|
- [Explicit type annotations](#explicit-type-annotations)
|
|
80
82
|
- [Client annotations](#client-annotations)
|
|
81
83
|
- [Paginators annotations](#paginators-annotations)
|
|
@@ -94,6 +96,21 @@ See how it helps you find and fix potential bugs:
|
|
|
94
96
|
|
|
95
97
|
## How to install
|
|
96
98
|
|
|
99
|
+
<a id="generate-locally-(recommended)"></a>
|
|
100
|
+
|
|
101
|
+
### Generate locally (recommended)
|
|
102
|
+
|
|
103
|
+
You can generate type annotations for `boto3` package locally with
|
|
104
|
+
`mypy_boto3_builder`. Use
|
|
105
|
+
[uv](https://docs.astral.sh/uv/getting-started/installation/) for build
|
|
106
|
+
isolation.
|
|
107
|
+
|
|
108
|
+
1. Run mypy-boto3-builder in your package root directory:
|
|
109
|
+
`uvx --with 'boto3==1.35.93' mypy_boto3_builder`
|
|
110
|
+
2. Select `boto3` AWS SDK.
|
|
111
|
+
3. Add `ConnectCases` service.
|
|
112
|
+
4. Use provided commands to install generated packages.
|
|
113
|
+
|
|
97
114
|
<a id="vscode-extension"></a>
|
|
98
115
|
|
|
99
116
|
### VSCode extension
|
|
@@ -114,12 +131,10 @@ Install `types-boto3` for `ConnectCases` service.
|
|
|
114
131
|
# install with boto3 type annotations
|
|
115
132
|
python -m pip install 'types-boto3[connectcases]'
|
|
116
133
|
|
|
117
|
-
|
|
118
134
|
# Lite version does not provide session.client/resource overloads
|
|
119
135
|
# it is more RAM-friendly, but requires explicit type annotations
|
|
120
136
|
python -m pip install 'types-boto3-lite[connectcases]'
|
|
121
137
|
|
|
122
|
-
|
|
123
138
|
# standalone installation
|
|
124
139
|
python -m pip install types-boto3-connectcases
|
|
125
140
|
```
|
|
@@ -269,6 +284,31 @@ Optionally, you can install `types-boto3` to `typings` directory.
|
|
|
269
284
|
Type checking should now work. No explicit type annotations required, write
|
|
270
285
|
your `boto3` code as usual.
|
|
271
286
|
|
|
287
|
+
<a id="pylint-compatibility"></a>
|
|
288
|
+
|
|
289
|
+
### Pylint compatibility
|
|
290
|
+
|
|
291
|
+
It is totally safe to use `TYPE_CHECKING` flag in order to avoid
|
|
292
|
+
`types-boto3-connectcases` dependency in production. However, there is an issue
|
|
293
|
+
in `pylint` that it complains about undefined variables. To fix it, set all
|
|
294
|
+
types to `object` in non-`TYPE_CHECKING` mode.
|
|
295
|
+
|
|
296
|
+
```python
|
|
297
|
+
from typing import TYPE_CHECKING
|
|
298
|
+
|
|
299
|
+
if TYPE_CHECKING:
|
|
300
|
+
from types_boto3_ec2 import EC2Client, EC2ServiceResource
|
|
301
|
+
from types_boto3_ec2.waiters import BundleTaskCompleteWaiter
|
|
302
|
+
from types_boto3_ec2.paginators import DescribeVolumesPaginator
|
|
303
|
+
else:
|
|
304
|
+
EC2Client = object
|
|
305
|
+
EC2ServiceResource = object
|
|
306
|
+
BundleTaskCompleteWaiter = object
|
|
307
|
+
DescribeVolumesPaginator = object
|
|
308
|
+
|
|
309
|
+
...
|
|
310
|
+
```
|
|
311
|
+
|
|
272
312
|
<a id="explicit-type-annotations"></a>
|
|
273
313
|
|
|
274
314
|
## Explicit type annotations
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
types_boto3_connectcases/__init__.py,sha256=LD6tjMvj-4sqRbzGP4P4_3yloK5WkYrSWRXDHGGvoIE,841
|
|
2
|
+
types_boto3_connectcases/__init__.pyi,sha256=gDj2RgaDerqxF1i90L4k9OnINs39m_jBFbZPtrtjNrg,840
|
|
3
|
+
types_boto3_connectcases/__main__.py,sha256=vS8iQZU8tI7-U6BCAP4CjfQKWmpN_Tw9ZRrloYEdABg,1004
|
|
4
|
+
types_boto3_connectcases/client.py,sha256=rflZQvjIFhCs1O5PpGKFuNj7bsk95r2-WUG52IRcR3w,23765
|
|
5
|
+
types_boto3_connectcases/client.pyi,sha256=B4l7WycfK1zjL6oey-DbsxJJbyyvcf8gVi3b8Owgf0k,23762
|
|
6
|
+
types_boto3_connectcases/literals.py,sha256=A0GA5zxfg_1KraK078tnzD41rMXU2JjLHwzsp-RBLdE,10011
|
|
7
|
+
types_boto3_connectcases/literals.pyi,sha256=KhUe6cEGfKk_kPIKDAZ1L_Uw-Gilk-2p0Fyotdhf3jM,10009
|
|
8
|
+
types_boto3_connectcases/paginator.py,sha256=qxl9gNUD9ARVCo7jGJ2EQalq9JukHSK2WLkS-fAFotg,3508
|
|
9
|
+
types_boto3_connectcases/paginator.pyi,sha256=D8H5CgMklWWjF5Ygv_5z2TxuZT6PUvj-S5Md8vxo4p0,3501
|
|
10
|
+
types_boto3_connectcases/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
types_boto3_connectcases/type_defs.py,sha256=Xddr07PVEn2ds6iAcYQtejibb4cnLJnt7gPQNnRGTXE,24573
|
|
12
|
+
types_boto3_connectcases/type_defs.pyi,sha256=wRPgoLYmYJGbaDTGJp-Aok2XsE3LWI4ec7fe4aiEo9U,24457
|
|
13
|
+
types_boto3_connectcases/version.py,sha256=n6wyMBvI3Tp0INYol4fUJ84y0BqM9ti-SkLRGfsif5s,93
|
|
14
|
+
types_boto3_connectcases-1.35.93.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
+
types_boto3_connectcases-1.35.93.dist-info/METADATA,sha256=MYZEgd9DXFZj1YPPhvTcXJThSviaYRtpwKLVuZwuaXk,14976
|
|
16
|
+
types_boto3_connectcases-1.35.93.dist-info/WHEEL,sha256=A3WOREP4zgxI0fKrHUG8DC8013e3dK3n7a6HDbcEIwE,91
|
|
17
|
+
types_boto3_connectcases-1.35.93.dist-info/top_level.txt,sha256=0H6UGzWA8k7lNFFkG_vDlg1gCNSXEHI49EQW8-HFCT4,25
|
|
18
|
+
types_boto3_connectcases-1.35.93.dist-info/RECORD,,
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
types_boto3_connectcases/__init__.py,sha256=9-NgF02SlHZz4qO7SzAgSt3BoECxFmgB8lP9n7vPwRc,841
|
|
2
|
-
types_boto3_connectcases/__init__.pyi,sha256=J-JMI5tLwrKwQR9zNik7lm_YA09vpHVnhlHCt_W1b4o,840
|
|
3
|
-
types_boto3_connectcases/__main__.py,sha256=NqrBmR9aZ6pjQrr_jiZaSd4vUWRHvScWq1-9dB5qSaM,970
|
|
4
|
-
types_boto3_connectcases/client.py,sha256=_75Yjy97K87jqhs7lauufmEVMCq0JRlN9V7FWAmH7QM,23839
|
|
5
|
-
types_boto3_connectcases/client.pyi,sha256=18pxH9sSkQVrGbZ6tOXNSM6a0fpf5IyVTzlBMBi6eiA,23835
|
|
6
|
-
types_boto3_connectcases/literals.py,sha256=lBy0YTGAYIPgWEinIwXL2hGS8TT40kbL4fwgnlHQgsc,9836
|
|
7
|
-
types_boto3_connectcases/literals.pyi,sha256=pP1EZc6w6gih23yBIqagIiiK3Yaa58S4HaVj_T4A6ZU,9834
|
|
8
|
-
types_boto3_connectcases/paginator.py,sha256=VAGU2l1kTbWC9Hg1VYP2Fk_atxlctpqVfOUI2BCtaQg,3333
|
|
9
|
-
types_boto3_connectcases/paginator.pyi,sha256=GIEEMrITxWsJKaqV7Lx3q5yp6nNx-r8PykhRsNqO6HU,3326
|
|
10
|
-
types_boto3_connectcases/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
types_boto3_connectcases/type_defs.py,sha256=28eFVbosUDmuFzEBgs3SafAJfa5oMeq00i3CXZjwGU4,24426
|
|
12
|
-
types_boto3_connectcases/type_defs.pyi,sha256=4z2fH7bLAL5zUKfts2FAhTH9Vbc_HlaKWgyAJAELkhQ,24310
|
|
13
|
-
types_boto3_connectcases/version.py,sha256=eIS36a5iw2-mD_eS7zeepUtx_w_DQOn6RiPaBDeB7EQ,93
|
|
14
|
-
types_boto3_connectcases-1.35.71.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
15
|
-
types_boto3_connectcases-1.35.71.dist-info/METADATA,sha256=jRqELdj9xq2Ifl5J2L2d3tbAxkN5b6QdHtCYdtDx2oE,13637
|
|
16
|
-
types_boto3_connectcases-1.35.71.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
17
|
-
types_boto3_connectcases-1.35.71.dist-info/top_level.txt,sha256=0H6UGzWA8k7lNFFkG_vDlg1gCNSXEHI49EQW8-HFCT4,25
|
|
18
|
-
types_boto3_connectcases-1.35.71.dist-info/RECORD,,
|
|
File without changes
|