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
|
@@ -3,6 +3,8 @@ 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
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
@@ -10,6 +12,7 @@ Usage::
|
|
|
10
12
|
|
|
11
13
|
from types_boto3_connectcases.client import ConnectCasesClient
|
|
12
14
|
from types_boto3_connectcases.paginator import (
|
|
15
|
+
ListCaseRulesPaginator,
|
|
13
16
|
SearchCasesPaginator,
|
|
14
17
|
SearchRelatedItemsPaginator,
|
|
15
18
|
)
|
|
@@ -17,11 +20,10 @@ Usage::
|
|
|
17
20
|
session = Session()
|
|
18
21
|
client: ConnectCasesClient = session.client("connectcases")
|
|
19
22
|
|
|
23
|
+
list_case_rules_paginator: ListCaseRulesPaginator = client.get_paginator("list_case_rules")
|
|
20
24
|
search_cases_paginator: SearchCasesPaginator = client.get_paginator("search_cases")
|
|
21
25
|
search_related_items_paginator: SearchRelatedItemsPaginator = client.get_paginator("search_related_items")
|
|
22
26
|
```
|
|
23
|
-
|
|
24
|
-
Copyright 2025 Vlad Emelianov
|
|
25
27
|
"""
|
|
26
28
|
|
|
27
29
|
from __future__ import annotations
|
|
@@ -32,6 +34,8 @@ from typing import TYPE_CHECKING
|
|
|
32
34
|
from botocore.paginate import PageIterator, Paginator
|
|
33
35
|
|
|
34
36
|
from .type_defs import (
|
|
37
|
+
ListCaseRulesRequestPaginateTypeDef,
|
|
38
|
+
ListCaseRulesResponseTypeDef,
|
|
35
39
|
SearchCasesRequestPaginateTypeDef,
|
|
36
40
|
SearchCasesResponseTypeDef,
|
|
37
41
|
SearchRelatedItemsRequestPaginateTypeDef,
|
|
@@ -43,7 +47,25 @@ if sys.version_info >= (3, 12):
|
|
|
43
47
|
else:
|
|
44
48
|
from typing_extensions import Unpack
|
|
45
49
|
|
|
46
|
-
__all__ = ("SearchCasesPaginator", "SearchRelatedItemsPaginator")
|
|
50
|
+
__all__ = ("ListCaseRulesPaginator", "SearchCasesPaginator", "SearchRelatedItemsPaginator")
|
|
51
|
+
|
|
52
|
+
if TYPE_CHECKING:
|
|
53
|
+
_ListCaseRulesPaginatorBase = Paginator[ListCaseRulesResponseTypeDef]
|
|
54
|
+
else:
|
|
55
|
+
_ListCaseRulesPaginatorBase = Paginator # type: ignore[assignment]
|
|
56
|
+
|
|
57
|
+
class ListCaseRulesPaginator(_ListCaseRulesPaginatorBase):
|
|
58
|
+
"""
|
|
59
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases/paginator/ListCaseRules.html#ConnectCases.Paginator.ListCaseRules)
|
|
60
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/paginators/#listcaserulespaginator)
|
|
61
|
+
"""
|
|
62
|
+
def paginate( # type: ignore[override]
|
|
63
|
+
self, **kwargs: Unpack[ListCaseRulesRequestPaginateTypeDef]
|
|
64
|
+
) -> PageIterator[ListCaseRulesResponseTypeDef]:
|
|
65
|
+
"""
|
|
66
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases/paginator/ListCaseRules.html#ConnectCases.Paginator.ListCaseRules.paginate)
|
|
67
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/paginators/#listcaserulespaginator)
|
|
68
|
+
"""
|
|
47
69
|
|
|
48
70
|
if TYPE_CHECKING:
|
|
49
71
|
_SearchCasesPaginatorBase = Paginator[SearchCasesResponseTypeDef]
|