types-boto3-connectcases 1.35.93__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 -5
- types_boto3_connectcases/literals.pyi +7 -5
- 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.35.93.dist-info → types_boto3_connectcases-1.36.15.dist-info}/METADATA +26 -8
- types_boto3_connectcases-1.36.15.dist-info/RECORD +18 -0
- {types_boto3_connectcases-1.35.93.dist-info → types_boto3_connectcases-1.36.15.dist-info}/WHEEL +1 -1
- types_boto3_connectcases-1.35.93.dist-info/RECORD +0 -18
- {types_boto3_connectcases-1.35.93.dist-info → types_boto3_connectcases-1.36.15.dist-info}/LICENSE +0 -0
- {types_boto3_connectcases-1.35.93.dist-info → types_boto3_connectcases-1.36.15.dist-info}/top_level.txt +0 -0
{types_boto3_connectcases-1.35.93.dist-info → types_boto3_connectcases-1.36.15.dist-info}/METADATA
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: types-boto3-connectcases
|
|
3
|
-
Version: 1.
|
|
4
|
-
Summary: Type annotations for boto3 ConnectCases 1.
|
|
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
|
|
@@ -31,6 +31,18 @@ Requires-Python: >=3.8
|
|
|
31
31
|
Description-Content-Type: text/markdown
|
|
32
32
|
License-File: LICENSE
|
|
33
33
|
Requires-Dist: typing-extensions; python_version < "3.12"
|
|
34
|
+
Dynamic: author
|
|
35
|
+
Dynamic: author-email
|
|
36
|
+
Dynamic: classifier
|
|
37
|
+
Dynamic: description
|
|
38
|
+
Dynamic: description-content-type
|
|
39
|
+
Dynamic: home-page
|
|
40
|
+
Dynamic: keywords
|
|
41
|
+
Dynamic: license
|
|
42
|
+
Dynamic: project-url
|
|
43
|
+
Dynamic: requires-dist
|
|
44
|
+
Dynamic: requires-python
|
|
45
|
+
Dynamic: summary
|
|
34
46
|
|
|
35
47
|
<a id="types-boto3-connectcases"></a>
|
|
36
48
|
|
|
@@ -44,7 +56,7 @@ Requires-Dist: typing-extensions; python_version < "3.12"
|
|
|
44
56
|

|
|
45
57
|
|
|
46
58
|
Type annotations for
|
|
47
|
-
[boto3 ConnectCases 1.
|
|
59
|
+
[boto3 ConnectCases 1.36.15](https://pypi.org/project/boto3/) compatible with
|
|
48
60
|
[VSCode](https://code.visualstudio.com/),
|
|
49
61
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
50
62
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -53,7 +65,7 @@ Type annotations for
|
|
|
53
65
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
54
66
|
|
|
55
67
|
Generated with
|
|
56
|
-
[mypy-boto3-builder 8.
|
|
68
|
+
[mypy-boto3-builder 8.9.0](https://github.com/youtype/mypy_boto3_builder).
|
|
57
69
|
|
|
58
70
|
More information can be found on
|
|
59
71
|
[types-boto3](https://pypi.org/project/types-boto3/) page and in
|
|
@@ -106,7 +118,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
106
118
|
isolation.
|
|
107
119
|
|
|
108
120
|
1. Run mypy-boto3-builder in your package root directory:
|
|
109
|
-
`uvx --with 'boto3==1.
|
|
121
|
+
`uvx --with 'boto3==1.36.15' mypy_boto3_builder`
|
|
110
122
|
2. Select `boto3` AWS SDK.
|
|
111
123
|
3. Add `ConnectCases` service.
|
|
112
124
|
4. Use provided commands to install generated packages.
|
|
@@ -340,12 +352,17 @@ paginators.
|
|
|
340
352
|
from boto3.session import Session
|
|
341
353
|
|
|
342
354
|
from types_boto3_connectcases import ConnectCasesClient
|
|
343
|
-
from types_boto3_connectcases.paginator import
|
|
355
|
+
from types_boto3_connectcases.paginator import (
|
|
356
|
+
ListCaseRulesPaginator,
|
|
357
|
+
SearchCasesPaginator,
|
|
358
|
+
SearchRelatedItemsPaginator,
|
|
359
|
+
)
|
|
344
360
|
|
|
345
361
|
client: ConnectCasesClient = Session().client("connectcases")
|
|
346
362
|
|
|
347
363
|
# Explicit type annotations are optional here
|
|
348
364
|
# Types should be correctly discovered by mypy and IDEs
|
|
365
|
+
list_case_rules_paginator: ListCaseRulesPaginator = client.get_paginator("list_case_rules")
|
|
349
366
|
search_cases_paginator: SearchCasesPaginator = client.get_paginator("search_cases")
|
|
350
367
|
search_related_items_paginator: SearchRelatedItemsPaginator = client.get_paginator(
|
|
351
368
|
"search_related_items"
|
|
@@ -438,7 +455,8 @@ Builder changelog can be found in
|
|
|
438
455
|
## Versioning
|
|
439
456
|
|
|
440
457
|
`types-boto3-connectcases` version is the same as related `boto3` version and
|
|
441
|
-
follows
|
|
458
|
+
follows
|
|
459
|
+
[Python Packaging version specifiers](https://packaging.python.org/en/latest/specifications/version-specifiers/).
|
|
442
460
|
|
|
443
461
|
<a id="thank-you"></a>
|
|
444
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=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,,
|
{types_boto3_connectcases-1.35.93.dist-info → types_boto3_connectcases-1.36.15.dist-info}/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|