mypy-boto3-connectcases 1.35.0__py3-none-any.whl → 1.36.15__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 +15 -2
- mypy_boto3_connectcases/__init__.pyi +14 -2
- mypy_boto3_connectcases/__main__.py +11 -8
- mypy_boto3_connectcases/client.py +234 -215
- mypy_boto3_connectcases/client.pyi +233 -214
- mypy_boto3_connectcases/literals.py +37 -12
- mypy_boto3_connectcases/literals.pyi +35 -12
- mypy_boto3_connectcases/paginator.py +60 -36
- mypy_boto3_connectcases/paginator.pyi +55 -38
- mypy_boto3_connectcases/type_defs.py +949 -951
- mypy_boto3_connectcases/type_defs.pyi +800 -939
- mypy_boto3_connectcases/version.py +3 -1
- {mypy_boto3_connectcases-1.35.0.dist-info → mypy_boto3_connectcases-1.36.15.dist-info}/LICENSE +1 -1
- {mypy_boto3_connectcases-1.35.0.dist-info → mypy_boto3_connectcases-1.36.15.dist-info}/METADATA +101 -28
- mypy_boto3_connectcases-1.36.15.dist-info/RECORD +18 -0
- {mypy_boto3_connectcases-1.35.0.dist-info → mypy_boto3_connectcases-1.36.15.dist-info}/WHEEL +1 -1
- mypy_boto3_connectcases-1.35.0.dist-info/RECORD +0 -18
- {mypy_boto3_connectcases-1.35.0.dist-info → mypy_boto3_connectcases-1.36.15.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Main interface for connectcases service.
|
|
3
3
|
|
|
4
|
+
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/)
|
|
5
|
+
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
4
8
|
Usage::
|
|
5
9
|
|
|
6
10
|
```python
|
|
@@ -8,6 +12,7 @@ Usage::
|
|
|
8
12
|
from mypy_boto3_connectcases import (
|
|
9
13
|
Client,
|
|
10
14
|
ConnectCasesClient,
|
|
15
|
+
ListCaseRulesPaginator,
|
|
11
16
|
SearchCasesPaginator,
|
|
12
17
|
SearchRelatedItemsPaginator,
|
|
13
18
|
)
|
|
@@ -15,14 +20,22 @@ Usage::
|
|
|
15
20
|
session = Session()
|
|
16
21
|
client: ConnectCasesClient = session.client("connectcases")
|
|
17
22
|
|
|
23
|
+
list_case_rules_paginator: ListCaseRulesPaginator = client.get_paginator("list_case_rules")
|
|
18
24
|
search_cases_paginator: SearchCasesPaginator = client.get_paginator("search_cases")
|
|
19
25
|
search_related_items_paginator: SearchRelatedItemsPaginator = client.get_paginator("search_related_items")
|
|
20
26
|
```
|
|
21
27
|
"""
|
|
22
28
|
|
|
23
29
|
from .client import ConnectCasesClient
|
|
24
|
-
from .paginator import SearchCasesPaginator, SearchRelatedItemsPaginator
|
|
30
|
+
from .paginator import ListCaseRulesPaginator, SearchCasesPaginator, SearchRelatedItemsPaginator
|
|
25
31
|
|
|
26
32
|
Client = ConnectCasesClient
|
|
27
33
|
|
|
28
|
-
|
|
34
|
+
|
|
35
|
+
__all__ = (
|
|
36
|
+
"Client",
|
|
37
|
+
"ConnectCasesClient",
|
|
38
|
+
"ListCaseRulesPaginator",
|
|
39
|
+
"SearchCasesPaginator",
|
|
40
|
+
"SearchRelatedItemsPaginator",
|
|
41
|
+
)
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Main interface for connectcases service.
|
|
3
3
|
|
|
4
|
+
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/)
|
|
5
|
+
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
4
8
|
Usage::
|
|
5
9
|
|
|
6
10
|
```python
|
|
@@ -8,6 +12,7 @@ Usage::
|
|
|
8
12
|
from mypy_boto3_connectcases import (
|
|
9
13
|
Client,
|
|
10
14
|
ConnectCasesClient,
|
|
15
|
+
ListCaseRulesPaginator,
|
|
11
16
|
SearchCasesPaginator,
|
|
12
17
|
SearchRelatedItemsPaginator,
|
|
13
18
|
)
|
|
@@ -15,14 +20,21 @@ Usage::
|
|
|
15
20
|
session = Session()
|
|
16
21
|
client: ConnectCasesClient = session.client("connectcases")
|
|
17
22
|
|
|
23
|
+
list_case_rules_paginator: ListCaseRulesPaginator = client.get_paginator("list_case_rules")
|
|
18
24
|
search_cases_paginator: SearchCasesPaginator = client.get_paginator("search_cases")
|
|
19
25
|
search_related_items_paginator: SearchRelatedItemsPaginator = client.get_paginator("search_related_items")
|
|
20
26
|
```
|
|
21
27
|
"""
|
|
22
28
|
|
|
23
29
|
from .client import ConnectCasesClient
|
|
24
|
-
from .paginator import SearchCasesPaginator, SearchRelatedItemsPaginator
|
|
30
|
+
from .paginator import ListCaseRulesPaginator, SearchCasesPaginator, SearchRelatedItemsPaginator
|
|
25
31
|
|
|
26
32
|
Client = ConnectCasesClient
|
|
27
33
|
|
|
28
|
-
__all__ = (
|
|
34
|
+
__all__ = (
|
|
35
|
+
"Client",
|
|
36
|
+
"ConnectCasesClient",
|
|
37
|
+
"ListCaseRulesPaginator",
|
|
38
|
+
"SearchCasesPaginator",
|
|
39
|
+
"SearchRelatedItemsPaginator",
|
|
40
|
+
)
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Main CLI entrypoint.
|
|
3
|
+
|
|
4
|
+
Copyright 2025 Vlad Emelianov
|
|
3
5
|
"""
|
|
4
6
|
|
|
5
7
|
import sys
|
|
@@ -9,14 +11,14 @@ def print_info() -> None:
|
|
|
9
11
|
"""
|
|
10
12
|
Print package info to stdout.
|
|
11
13
|
"""
|
|
12
|
-
|
|
13
|
-
"Type annotations for boto3
|
|
14
|
-
"Version: 1.
|
|
15
|
-
"Builder version:
|
|
14
|
+
sys.stdout.write(
|
|
15
|
+
"Type annotations for boto3 ConnectCases 1.36.15\n"
|
|
16
|
+
"Version: 1.36.15\n"
|
|
17
|
+
"Builder version: 8.9.0\n"
|
|
16
18
|
"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#
|
|
19
|
+
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases.html#connectcases\n"
|
|
18
20
|
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
19
|
-
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases"
|
|
21
|
+
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases\n"
|
|
20
22
|
)
|
|
21
23
|
|
|
22
24
|
|
|
@@ -24,7 +26,7 @@ def print_version() -> None:
|
|
|
24
26
|
"""
|
|
25
27
|
Print package version to stdout.
|
|
26
28
|
"""
|
|
27
|
-
|
|
29
|
+
sys.stdout.write("1.36.15\n")
|
|
28
30
|
|
|
29
31
|
|
|
30
32
|
def main() -> None:
|
|
@@ -32,7 +34,8 @@ def main() -> None:
|
|
|
32
34
|
Main CLI entrypoint.
|
|
33
35
|
"""
|
|
34
36
|
if "--version" in sys.argv:
|
|
35
|
-
|
|
37
|
+
print_version()
|
|
38
|
+
return
|
|
36
39
|
print_info()
|
|
37
40
|
|
|
38
41
|
|