types-boto3-connectcases 1.36.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.
- types_boto3_connectcases/__init__.py +14 -4
- types_boto3_connectcases/__init__.pyi +14 -4
- types_boto3_connectcases/__main__.py +4 -4
- types_boto3_connectcases/client.py +136 -83
- types_boto3_connectcases/client.pyi +136 -83
- types_boto3_connectcases/literals.py +7 -3
- types_boto3_connectcases/literals.pyi +7 -3
- types_boto3_connectcases/paginator.py +28 -3
- types_boto3_connectcases/paginator.pyi +25 -3
- types_boto3_connectcases/type_defs.py +329 -160
- types_boto3_connectcases/type_defs.pyi +299 -151
- types_boto3_connectcases/version.py +1 -1
- {types_boto3_connectcases-1.36.0.dist-info → types_boto3_connectcases-1.36.15.dist-info}/METADATA +13 -7
- types_boto3_connectcases-1.36.15.dist-info/RECORD +18 -0
- types_boto3_connectcases-1.36.0.dist-info/RECORD +0 -18
- {types_boto3_connectcases-1.36.0.dist-info → types_boto3_connectcases-1.36.15.dist-info}/LICENSE +0 -0
- {types_boto3_connectcases-1.36.0.dist-info → types_boto3_connectcases-1.36.15.dist-info}/WHEEL +0 -0
- {types_boto3_connectcases-1.36.0.dist-info → types_boto3_connectcases-1.36.15.dist-info}/top_level.txt +0 -0
{types_boto3_connectcases-1.36.0.dist-info → types_boto3_connectcases-1.36.15.dist-info}/METADATA
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: types-boto3-connectcases
|
|
3
|
-
Version: 1.36.
|
|
4
|
-
Summary: Type annotations for boto3 ConnectCases 1.36.
|
|
3
|
+
Version: 1.36.15
|
|
4
|
+
Summary: Type annotations for boto3 ConnectCases 1.36.15 service generated with mypy-boto3-builder 8.9.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
|
|
@@ -56,7 +56,7 @@ Dynamic: summary
|
|
|
56
56
|

|
|
57
57
|
|
|
58
58
|
Type annotations for
|
|
59
|
-
[boto3 ConnectCases 1.36.
|
|
59
|
+
[boto3 ConnectCases 1.36.15](https://pypi.org/project/boto3/) compatible with
|
|
60
60
|
[VSCode](https://code.visualstudio.com/),
|
|
61
61
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
62
62
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -65,7 +65,7 @@ Type annotations for
|
|
|
65
65
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
66
66
|
|
|
67
67
|
Generated with
|
|
68
|
-
[mypy-boto3-builder 8.
|
|
68
|
+
[mypy-boto3-builder 8.9.0](https://github.com/youtype/mypy_boto3_builder).
|
|
69
69
|
|
|
70
70
|
More information can be found on
|
|
71
71
|
[types-boto3](https://pypi.org/project/types-boto3/) page and in
|
|
@@ -118,7 +118,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
118
118
|
isolation.
|
|
119
119
|
|
|
120
120
|
1. Run mypy-boto3-builder in your package root directory:
|
|
121
|
-
`uvx --with 'boto3==1.36.
|
|
121
|
+
`uvx --with 'boto3==1.36.15' mypy_boto3_builder`
|
|
122
122
|
2. Select `boto3` AWS SDK.
|
|
123
123
|
3. Add `ConnectCases` service.
|
|
124
124
|
4. Use provided commands to install generated packages.
|
|
@@ -352,12 +352,17 @@ paginators.
|
|
|
352
352
|
from boto3.session import Session
|
|
353
353
|
|
|
354
354
|
from types_boto3_connectcases import ConnectCasesClient
|
|
355
|
-
from types_boto3_connectcases.paginator import
|
|
355
|
+
from types_boto3_connectcases.paginator import (
|
|
356
|
+
ListCaseRulesPaginator,
|
|
357
|
+
SearchCasesPaginator,
|
|
358
|
+
SearchRelatedItemsPaginator,
|
|
359
|
+
)
|
|
356
360
|
|
|
357
361
|
client: ConnectCasesClient = Session().client("connectcases")
|
|
358
362
|
|
|
359
363
|
# Explicit type annotations are optional here
|
|
360
364
|
# Types should be correctly discovered by mypy and IDEs
|
|
365
|
+
list_case_rules_paginator: ListCaseRulesPaginator = client.get_paginator("list_case_rules")
|
|
361
366
|
search_cases_paginator: SearchCasesPaginator = client.get_paginator("search_cases")
|
|
362
367
|
search_related_items_paginator: SearchRelatedItemsPaginator = client.get_paginator(
|
|
363
368
|
"search_related_items"
|
|
@@ -450,7 +455,8 @@ Builder changelog can be found in
|
|
|
450
455
|
## Versioning
|
|
451
456
|
|
|
452
457
|
`types-boto3-connectcases` version is the same as related `boto3` version and
|
|
453
|
-
follows
|
|
458
|
+
follows
|
|
459
|
+
[Python Packaging version specifiers](https://packaging.python.org/en/latest/specifications/version-specifiers/).
|
|
454
460
|
|
|
455
461
|
<a id="thank-you"></a>
|
|
456
462
|
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
types_boto3_connectcases/__init__.py,sha256=sB9ozxjf19mxYEz3IjaZylVEl6IoWQ2n7pTkgHcXog0,1129
|
|
2
|
+
types_boto3_connectcases/__init__.pyi,sha256=mVuL26WwWxDdcnRuHN7vGgIkoVjdriyshM2w4EUNmnI,1128
|
|
3
|
+
types_boto3_connectcases/__main__.py,sha256=6zI5-ubsfTmgNewIP6cbHBBl9X7Y4CnSakR91l6mbDM,1004
|
|
4
|
+
types_boto3_connectcases/client.py,sha256=_EYvYiiGcoSFd5QjOyYGWEZAtG2JfUbsxhAChwAuL-Q,26368
|
|
5
|
+
types_boto3_connectcases/client.pyi,sha256=KB0iZu4OObq4FRIdzPLwZz29Ueoh60kxol5sOYWVxmo,26365
|
|
6
|
+
types_boto3_connectcases/literals.py,sha256=-QnQleGREz7zg5WgL6sILGBKewnR5dPM4CKD75jSN98,10124
|
|
7
|
+
types_boto3_connectcases/literals.pyi,sha256=2CdHeC7LyneaZQcYdAimzak2-nPSVhbPLzwcKi0uTbI,10122
|
|
8
|
+
types_boto3_connectcases/paginator.py,sha256=FLo06hxmlQd5WOuFKNUETD_w2l4cqjs-5tz5Tm6sEYQ,4847
|
|
9
|
+
types_boto3_connectcases/paginator.pyi,sha256=nRQcco1-MVD8wqS1724Bbc3WZons4N02_Bf18x-pt-M,4837
|
|
10
|
+
types_boto3_connectcases/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
types_boto3_connectcases/type_defs.py,sha256=r4vpDNQrvTAftthkE30uQikDdz33aPDJygWg0rY0xvU,28358
|
|
12
|
+
types_boto3_connectcases/type_defs.pyi,sha256=sEkYDEXanLTU4UV4GvXX2rzDRwS7OCOCxw_42z2g68A,28221
|
|
13
|
+
types_boto3_connectcases/version.py,sha256=8yWG2U9LwYXH4fEieEJFKx1KiPmJTaQv9GzXduOcq74,93
|
|
14
|
+
types_boto3_connectcases-1.36.15.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
+
types_boto3_connectcases-1.36.15.dist-info/METADATA,sha256=0ivhg8QpVW_eZABCea1AZKcvpovowf0SsuMlmds75z4,15415
|
|
16
|
+
types_boto3_connectcases-1.36.15.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
17
|
+
types_boto3_connectcases-1.36.15.dist-info/top_level.txt,sha256=0H6UGzWA8k7lNFFkG_vDlg1gCNSXEHI49EQW8-HFCT4,25
|
|
18
|
+
types_boto3_connectcases-1.36.15.dist-info/RECORD,,
|
|
@@ -1,18 +0,0 @@
|
|
|
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=umNcEYZv_XZb8w87D3flfOMAxPF2JlgGuYZUsDiiZnc,1001
|
|
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=3Kee1G7O6qHIS5KgzRzlO8bZIo6_mQbRZ2s6yrqfkdo,9960
|
|
7
|
-
types_boto3_connectcases/literals.pyi,sha256=U6mzHZcB-oiX8ZktHfQjbeao21TmuvLh0oSuMO3EKVo,9958
|
|
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=XqBLww9Ajk9GRr5oc1Ak2757Fsir4zxoRCWswSKh8Ro,92
|
|
14
|
-
types_boto3_connectcases-1.36.0.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
-
types_boto3_connectcases-1.36.0.dist-info/METADATA,sha256=Oq7CKhHDktbyT0FmwjdhJ_Mno2HffuCPbx8I9Z3dlxo,15225
|
|
16
|
-
types_boto3_connectcases-1.36.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
17
|
-
types_boto3_connectcases-1.36.0.dist-info/top_level.txt,sha256=0H6UGzWA8k7lNFFkG_vDlg1gCNSXEHI49EQW8-HFCT4,25
|
|
18
|
-
types_boto3_connectcases-1.36.0.dist-info/RECORD,,
|
{types_boto3_connectcases-1.36.0.dist-info → types_boto3_connectcases-1.36.15.dist-info}/LICENSE
RENAMED
|
File without changes
|
{types_boto3_connectcases-1.36.0.dist-info → types_boto3_connectcases-1.36.15.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|