types-boto3-connectcases 1.40.42__py3-none-any.whl → 1.40.44__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 +9 -1
- types_boto3_connectcases/__init__.pyi +9 -1
- types_boto3_connectcases/__main__.py +3 -3
- types_boto3_connectcases/client.py +29 -1
- types_boto3_connectcases/client.pyi +29 -1
- types_boto3_connectcases/literals.py +7 -1
- types_boto3_connectcases/literals.pyi +7 -1
- types_boto3_connectcases/paginator.py +31 -1
- types_boto3_connectcases/paginator.pyi +28 -1
- types_boto3_connectcases/type_defs.py +44 -0
- types_boto3_connectcases/type_defs.pyi +40 -0
- types_boto3_connectcases/version.py +1 -1
- {types_boto3_connectcases-1.40.42.dist-info → types_boto3_connectcases-1.40.44.dist-info}/METADATA +8 -4
- types_boto3_connectcases-1.40.44.dist-info/RECORD +18 -0
- types_boto3_connectcases-1.40.42.dist-info/RECORD +0 -18
- {types_boto3_connectcases-1.40.42.dist-info → types_boto3_connectcases-1.40.44.dist-info}/WHEEL +0 -0
- {types_boto3_connectcases-1.40.42.dist-info → types_boto3_connectcases-1.40.44.dist-info}/licenses/LICENSE +0 -0
- {types_boto3_connectcases-1.40.42.dist-info → types_boto3_connectcases-1.40.44.dist-info}/top_level.txt +0 -0
|
@@ -13,6 +13,7 @@ Usage::
|
|
|
13
13
|
Client,
|
|
14
14
|
ConnectCasesClient,
|
|
15
15
|
ListCaseRulesPaginator,
|
|
16
|
+
SearchAllRelatedItemsPaginator,
|
|
16
17
|
SearchCasesPaginator,
|
|
17
18
|
SearchRelatedItemsPaginator,
|
|
18
19
|
)
|
|
@@ -21,13 +22,19 @@ Usage::
|
|
|
21
22
|
client: ConnectCasesClient = session.client("connectcases")
|
|
22
23
|
|
|
23
24
|
list_case_rules_paginator: ListCaseRulesPaginator = client.get_paginator("list_case_rules")
|
|
25
|
+
search_all_related_items_paginator: SearchAllRelatedItemsPaginator = client.get_paginator("search_all_related_items")
|
|
24
26
|
search_cases_paginator: SearchCasesPaginator = client.get_paginator("search_cases")
|
|
25
27
|
search_related_items_paginator: SearchRelatedItemsPaginator = client.get_paginator("search_related_items")
|
|
26
28
|
```
|
|
27
29
|
"""
|
|
28
30
|
|
|
29
31
|
from .client import ConnectCasesClient
|
|
30
|
-
from .paginator import
|
|
32
|
+
from .paginator import (
|
|
33
|
+
ListCaseRulesPaginator,
|
|
34
|
+
SearchAllRelatedItemsPaginator,
|
|
35
|
+
SearchCasesPaginator,
|
|
36
|
+
SearchRelatedItemsPaginator,
|
|
37
|
+
)
|
|
31
38
|
|
|
32
39
|
Client = ConnectCasesClient
|
|
33
40
|
|
|
@@ -36,6 +43,7 @@ __all__ = (
|
|
|
36
43
|
"Client",
|
|
37
44
|
"ConnectCasesClient",
|
|
38
45
|
"ListCaseRulesPaginator",
|
|
46
|
+
"SearchAllRelatedItemsPaginator",
|
|
39
47
|
"SearchCasesPaginator",
|
|
40
48
|
"SearchRelatedItemsPaginator",
|
|
41
49
|
)
|
|
@@ -13,6 +13,7 @@ Usage::
|
|
|
13
13
|
Client,
|
|
14
14
|
ConnectCasesClient,
|
|
15
15
|
ListCaseRulesPaginator,
|
|
16
|
+
SearchAllRelatedItemsPaginator,
|
|
16
17
|
SearchCasesPaginator,
|
|
17
18
|
SearchRelatedItemsPaginator,
|
|
18
19
|
)
|
|
@@ -21,13 +22,19 @@ Usage::
|
|
|
21
22
|
client: ConnectCasesClient = session.client("connectcases")
|
|
22
23
|
|
|
23
24
|
list_case_rules_paginator: ListCaseRulesPaginator = client.get_paginator("list_case_rules")
|
|
25
|
+
search_all_related_items_paginator: SearchAllRelatedItemsPaginator = client.get_paginator("search_all_related_items")
|
|
24
26
|
search_cases_paginator: SearchCasesPaginator = client.get_paginator("search_cases")
|
|
25
27
|
search_related_items_paginator: SearchRelatedItemsPaginator = client.get_paginator("search_related_items")
|
|
26
28
|
```
|
|
27
29
|
"""
|
|
28
30
|
|
|
29
31
|
from .client import ConnectCasesClient
|
|
30
|
-
from .paginator import
|
|
32
|
+
from .paginator import (
|
|
33
|
+
ListCaseRulesPaginator,
|
|
34
|
+
SearchAllRelatedItemsPaginator,
|
|
35
|
+
SearchCasesPaginator,
|
|
36
|
+
SearchRelatedItemsPaginator,
|
|
37
|
+
)
|
|
31
38
|
|
|
32
39
|
Client = ConnectCasesClient
|
|
33
40
|
|
|
@@ -35,6 +42,7 @@ __all__ = (
|
|
|
35
42
|
"Client",
|
|
36
43
|
"ConnectCasesClient",
|
|
37
44
|
"ListCaseRulesPaginator",
|
|
45
|
+
"SearchAllRelatedItemsPaginator",
|
|
38
46
|
"SearchCasesPaginator",
|
|
39
47
|
"SearchRelatedItemsPaginator",
|
|
40
48
|
)
|
|
@@ -12,8 +12,8 @@ def print_info() -> None:
|
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
14
|
sys.stdout.write(
|
|
15
|
-
"Type annotations for boto3 ConnectCases 1.40.
|
|
16
|
-
"Version: 1.40.
|
|
15
|
+
"Type annotations for boto3 ConnectCases 1.40.44\n"
|
|
16
|
+
"Version: 1.40.44\n"
|
|
17
17
|
"Builder version: 8.11.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"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
sys.stdout.write("1.40.
|
|
29
|
+
sys.stdout.write("1.40.44\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
|
@@ -25,7 +25,12 @@ from botocore.client import BaseClient, ClientMeta
|
|
|
25
25
|
from botocore.errorfactory import BaseClientExceptions
|
|
26
26
|
from botocore.exceptions import ClientError as BotocoreClientError
|
|
27
27
|
|
|
28
|
-
from .paginator import
|
|
28
|
+
from .paginator import (
|
|
29
|
+
ListCaseRulesPaginator,
|
|
30
|
+
SearchAllRelatedItemsPaginator,
|
|
31
|
+
SearchCasesPaginator,
|
|
32
|
+
SearchRelatedItemsPaginator,
|
|
33
|
+
)
|
|
29
34
|
from .type_defs import (
|
|
30
35
|
BatchGetCaseRuleRequestTypeDef,
|
|
31
36
|
BatchGetCaseRuleResponseTypeDef,
|
|
@@ -84,6 +89,8 @@ from .type_defs import (
|
|
|
84
89
|
ListTemplatesRequestTypeDef,
|
|
85
90
|
ListTemplatesResponseTypeDef,
|
|
86
91
|
PutCaseEventConfigurationRequestTypeDef,
|
|
92
|
+
SearchAllRelatedItemsRequestTypeDef,
|
|
93
|
+
SearchAllRelatedItemsResponseTypeDef,
|
|
87
94
|
SearchCasesRequestTypeDef,
|
|
88
95
|
SearchCasesResponseTypeDef,
|
|
89
96
|
SearchRelatedItemsRequestTypeDef,
|
|
@@ -463,6 +470,16 @@ class ConnectCasesClient(BaseClient):
|
|
|
463
470
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#put_case_event_configuration)
|
|
464
471
|
"""
|
|
465
472
|
|
|
473
|
+
def search_all_related_items(
|
|
474
|
+
self, **kwargs: Unpack[SearchAllRelatedItemsRequestTypeDef]
|
|
475
|
+
) -> SearchAllRelatedItemsResponseTypeDef:
|
|
476
|
+
"""
|
|
477
|
+
Searches for related items across all cases within a domain.
|
|
478
|
+
|
|
479
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases/client/search_all_related_items.html)
|
|
480
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#search_all_related_items)
|
|
481
|
+
"""
|
|
482
|
+
|
|
466
483
|
def search_cases(
|
|
467
484
|
self, **kwargs: Unpack[SearchCasesRequestTypeDef]
|
|
468
485
|
) -> SearchCasesResponseTypeDef:
|
|
@@ -557,6 +574,17 @@ class ConnectCasesClient(BaseClient):
|
|
|
557
574
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#get_paginator)
|
|
558
575
|
"""
|
|
559
576
|
|
|
577
|
+
@overload # type: ignore[override]
|
|
578
|
+
def get_paginator( # type: ignore[override]
|
|
579
|
+
self, operation_name: Literal["search_all_related_items"]
|
|
580
|
+
) -> SearchAllRelatedItemsPaginator:
|
|
581
|
+
"""
|
|
582
|
+
Create a paginator for an operation.
|
|
583
|
+
|
|
584
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases/client/get_paginator.html)
|
|
585
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#get_paginator)
|
|
586
|
+
"""
|
|
587
|
+
|
|
560
588
|
@overload # type: ignore[override]
|
|
561
589
|
def get_paginator( # type: ignore[override]
|
|
562
590
|
self, operation_name: Literal["search_cases"]
|
|
@@ -25,7 +25,12 @@ from botocore.client import BaseClient, ClientMeta
|
|
|
25
25
|
from botocore.errorfactory import BaseClientExceptions
|
|
26
26
|
from botocore.exceptions import ClientError as BotocoreClientError
|
|
27
27
|
|
|
28
|
-
from .paginator import
|
|
28
|
+
from .paginator import (
|
|
29
|
+
ListCaseRulesPaginator,
|
|
30
|
+
SearchAllRelatedItemsPaginator,
|
|
31
|
+
SearchCasesPaginator,
|
|
32
|
+
SearchRelatedItemsPaginator,
|
|
33
|
+
)
|
|
29
34
|
from .type_defs import (
|
|
30
35
|
BatchGetCaseRuleRequestTypeDef,
|
|
31
36
|
BatchGetCaseRuleResponseTypeDef,
|
|
@@ -84,6 +89,8 @@ from .type_defs import (
|
|
|
84
89
|
ListTemplatesRequestTypeDef,
|
|
85
90
|
ListTemplatesResponseTypeDef,
|
|
86
91
|
PutCaseEventConfigurationRequestTypeDef,
|
|
92
|
+
SearchAllRelatedItemsRequestTypeDef,
|
|
93
|
+
SearchAllRelatedItemsResponseTypeDef,
|
|
87
94
|
SearchCasesRequestTypeDef,
|
|
88
95
|
SearchCasesResponseTypeDef,
|
|
89
96
|
SearchRelatedItemsRequestTypeDef,
|
|
@@ -460,6 +467,16 @@ class ConnectCasesClient(BaseClient):
|
|
|
460
467
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#put_case_event_configuration)
|
|
461
468
|
"""
|
|
462
469
|
|
|
470
|
+
def search_all_related_items(
|
|
471
|
+
self, **kwargs: Unpack[SearchAllRelatedItemsRequestTypeDef]
|
|
472
|
+
) -> SearchAllRelatedItemsResponseTypeDef:
|
|
473
|
+
"""
|
|
474
|
+
Searches for related items across all cases within a domain.
|
|
475
|
+
|
|
476
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases/client/search_all_related_items.html)
|
|
477
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#search_all_related_items)
|
|
478
|
+
"""
|
|
479
|
+
|
|
463
480
|
def search_cases(
|
|
464
481
|
self, **kwargs: Unpack[SearchCasesRequestTypeDef]
|
|
465
482
|
) -> SearchCasesResponseTypeDef:
|
|
@@ -554,6 +571,17 @@ class ConnectCasesClient(BaseClient):
|
|
|
554
571
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#get_paginator)
|
|
555
572
|
"""
|
|
556
573
|
|
|
574
|
+
@overload # type: ignore[override]
|
|
575
|
+
def get_paginator( # type: ignore[override]
|
|
576
|
+
self, operation_name: Literal["search_all_related_items"]
|
|
577
|
+
) -> SearchAllRelatedItemsPaginator:
|
|
578
|
+
"""
|
|
579
|
+
Create a paginator for an operation.
|
|
580
|
+
|
|
581
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases/client/get_paginator.html)
|
|
582
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/client/#get_paginator)
|
|
583
|
+
"""
|
|
584
|
+
|
|
557
585
|
@overload # type: ignore[override]
|
|
558
586
|
def get_paginator( # type: ignore[override]
|
|
559
587
|
self, operation_name: Literal["search_cases"]
|
|
@@ -36,6 +36,8 @@ __all__ = (
|
|
|
36
36
|
"RelatedItemTypeType",
|
|
37
37
|
"ResourceServiceName",
|
|
38
38
|
"RuleTypeType",
|
|
39
|
+
"SearchAllRelatedItemsPaginatorName",
|
|
40
|
+
"SearchAllRelatedItemsSortPropertyType",
|
|
39
41
|
"SearchCasesPaginatorName",
|
|
40
42
|
"SearchRelatedItemsPaginatorName",
|
|
41
43
|
"ServiceName",
|
|
@@ -54,6 +56,8 @@ ListCaseRulesPaginatorName = Literal["list_case_rules"]
|
|
|
54
56
|
OrderType = Literal["Asc", "Desc"]
|
|
55
57
|
RelatedItemTypeType = Literal["Comment", "ConnectCase", "Contact", "Custom", "File", "Sla"]
|
|
56
58
|
RuleTypeType = Literal["Required"]
|
|
59
|
+
SearchAllRelatedItemsPaginatorName = Literal["search_all_related_items"]
|
|
60
|
+
SearchAllRelatedItemsSortPropertyType = Literal["AssociationTime", "CaseId"]
|
|
57
61
|
SearchCasesPaginatorName = Literal["search_cases"]
|
|
58
62
|
SearchRelatedItemsPaginatorName = Literal["search_related_items"]
|
|
59
63
|
SlaStatusType = Literal["Active", "Met", "NotMet", "Overdue"]
|
|
@@ -477,7 +481,9 @@ ServiceName = Literal[
|
|
|
477
481
|
ResourceServiceName = Literal[
|
|
478
482
|
"cloudformation", "cloudwatch", "dynamodb", "ec2", "glacier", "iam", "s3", "sns", "sqs"
|
|
479
483
|
]
|
|
480
|
-
PaginatorName = Literal[
|
|
484
|
+
PaginatorName = Literal[
|
|
485
|
+
"list_case_rules", "search_all_related_items", "search_cases", "search_related_items"
|
|
486
|
+
]
|
|
481
487
|
RegionName = Literal[
|
|
482
488
|
"ap-northeast-1",
|
|
483
489
|
"ap-northeast-2",
|
|
@@ -35,6 +35,8 @@ __all__ = (
|
|
|
35
35
|
"RelatedItemTypeType",
|
|
36
36
|
"ResourceServiceName",
|
|
37
37
|
"RuleTypeType",
|
|
38
|
+
"SearchAllRelatedItemsPaginatorName",
|
|
39
|
+
"SearchAllRelatedItemsSortPropertyType",
|
|
38
40
|
"SearchCasesPaginatorName",
|
|
39
41
|
"SearchRelatedItemsPaginatorName",
|
|
40
42
|
"ServiceName",
|
|
@@ -52,6 +54,8 @@ ListCaseRulesPaginatorName = Literal["list_case_rules"]
|
|
|
52
54
|
OrderType = Literal["Asc", "Desc"]
|
|
53
55
|
RelatedItemTypeType = Literal["Comment", "ConnectCase", "Contact", "Custom", "File", "Sla"]
|
|
54
56
|
RuleTypeType = Literal["Required"]
|
|
57
|
+
SearchAllRelatedItemsPaginatorName = Literal["search_all_related_items"]
|
|
58
|
+
SearchAllRelatedItemsSortPropertyType = Literal["AssociationTime", "CaseId"]
|
|
55
59
|
SearchCasesPaginatorName = Literal["search_cases"]
|
|
56
60
|
SearchRelatedItemsPaginatorName = Literal["search_related_items"]
|
|
57
61
|
SlaStatusType = Literal["Active", "Met", "NotMet", "Overdue"]
|
|
@@ -475,7 +479,9 @@ ServiceName = Literal[
|
|
|
475
479
|
ResourceServiceName = Literal[
|
|
476
480
|
"cloudformation", "cloudwatch", "dynamodb", "ec2", "glacier", "iam", "s3", "sns", "sqs"
|
|
477
481
|
]
|
|
478
|
-
PaginatorName = Literal[
|
|
482
|
+
PaginatorName = Literal[
|
|
483
|
+
"list_case_rules", "search_all_related_items", "search_cases", "search_related_items"
|
|
484
|
+
]
|
|
479
485
|
RegionName = Literal[
|
|
480
486
|
"ap-northeast-1",
|
|
481
487
|
"ap-northeast-2",
|
|
@@ -13,6 +13,7 @@ Usage::
|
|
|
13
13
|
from types_boto3_connectcases.client import ConnectCasesClient
|
|
14
14
|
from types_boto3_connectcases.paginator import (
|
|
15
15
|
ListCaseRulesPaginator,
|
|
16
|
+
SearchAllRelatedItemsPaginator,
|
|
16
17
|
SearchCasesPaginator,
|
|
17
18
|
SearchRelatedItemsPaginator,
|
|
18
19
|
)
|
|
@@ -21,6 +22,7 @@ Usage::
|
|
|
21
22
|
client: ConnectCasesClient = session.client("connectcases")
|
|
22
23
|
|
|
23
24
|
list_case_rules_paginator: ListCaseRulesPaginator = client.get_paginator("list_case_rules")
|
|
25
|
+
search_all_related_items_paginator: SearchAllRelatedItemsPaginator = client.get_paginator("search_all_related_items")
|
|
24
26
|
search_cases_paginator: SearchCasesPaginator = client.get_paginator("search_cases")
|
|
25
27
|
search_related_items_paginator: SearchRelatedItemsPaginator = client.get_paginator("search_related_items")
|
|
26
28
|
```
|
|
@@ -36,6 +38,8 @@ from botocore.paginate import PageIterator, Paginator
|
|
|
36
38
|
from .type_defs import (
|
|
37
39
|
ListCaseRulesRequestPaginateTypeDef,
|
|
38
40
|
ListCaseRulesResponseTypeDef,
|
|
41
|
+
SearchAllRelatedItemsRequestPaginateTypeDef,
|
|
42
|
+
SearchAllRelatedItemsResponseTypeDef,
|
|
39
43
|
SearchCasesRequestPaginateTypeDef,
|
|
40
44
|
SearchCasesResponseTypeDef,
|
|
41
45
|
SearchRelatedItemsRequestPaginateTypeDef,
|
|
@@ -48,7 +52,12 @@ else:
|
|
|
48
52
|
from typing_extensions import Unpack
|
|
49
53
|
|
|
50
54
|
|
|
51
|
-
__all__ = (
|
|
55
|
+
__all__ = (
|
|
56
|
+
"ListCaseRulesPaginator",
|
|
57
|
+
"SearchAllRelatedItemsPaginator",
|
|
58
|
+
"SearchCasesPaginator",
|
|
59
|
+
"SearchRelatedItemsPaginator",
|
|
60
|
+
)
|
|
52
61
|
|
|
53
62
|
|
|
54
63
|
if TYPE_CHECKING:
|
|
@@ -72,6 +81,27 @@ class ListCaseRulesPaginator(_ListCaseRulesPaginatorBase):
|
|
|
72
81
|
"""
|
|
73
82
|
|
|
74
83
|
|
|
84
|
+
if TYPE_CHECKING:
|
|
85
|
+
_SearchAllRelatedItemsPaginatorBase = Paginator[SearchAllRelatedItemsResponseTypeDef]
|
|
86
|
+
else:
|
|
87
|
+
_SearchAllRelatedItemsPaginatorBase = Paginator # type: ignore[assignment]
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
class SearchAllRelatedItemsPaginator(_SearchAllRelatedItemsPaginatorBase):
|
|
91
|
+
"""
|
|
92
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases/paginator/SearchAllRelatedItems.html#ConnectCases.Paginator.SearchAllRelatedItems)
|
|
93
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/paginators/#searchallrelateditemspaginator)
|
|
94
|
+
"""
|
|
95
|
+
|
|
96
|
+
def paginate( # type: ignore[override]
|
|
97
|
+
self, **kwargs: Unpack[SearchAllRelatedItemsRequestPaginateTypeDef]
|
|
98
|
+
) -> PageIterator[SearchAllRelatedItemsResponseTypeDef]:
|
|
99
|
+
"""
|
|
100
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases/paginator/SearchAllRelatedItems.html#ConnectCases.Paginator.SearchAllRelatedItems.paginate)
|
|
101
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/paginators/#searchallrelateditemspaginator)
|
|
102
|
+
"""
|
|
103
|
+
|
|
104
|
+
|
|
75
105
|
if TYPE_CHECKING:
|
|
76
106
|
_SearchCasesPaginatorBase = Paginator[SearchCasesResponseTypeDef]
|
|
77
107
|
else:
|
|
@@ -13,6 +13,7 @@ Usage::
|
|
|
13
13
|
from types_boto3_connectcases.client import ConnectCasesClient
|
|
14
14
|
from types_boto3_connectcases.paginator import (
|
|
15
15
|
ListCaseRulesPaginator,
|
|
16
|
+
SearchAllRelatedItemsPaginator,
|
|
16
17
|
SearchCasesPaginator,
|
|
17
18
|
SearchRelatedItemsPaginator,
|
|
18
19
|
)
|
|
@@ -21,6 +22,7 @@ Usage::
|
|
|
21
22
|
client: ConnectCasesClient = session.client("connectcases")
|
|
22
23
|
|
|
23
24
|
list_case_rules_paginator: ListCaseRulesPaginator = client.get_paginator("list_case_rules")
|
|
25
|
+
search_all_related_items_paginator: SearchAllRelatedItemsPaginator = client.get_paginator("search_all_related_items")
|
|
24
26
|
search_cases_paginator: SearchCasesPaginator = client.get_paginator("search_cases")
|
|
25
27
|
search_related_items_paginator: SearchRelatedItemsPaginator = client.get_paginator("search_related_items")
|
|
26
28
|
```
|
|
@@ -36,6 +38,8 @@ from botocore.paginate import PageIterator, Paginator
|
|
|
36
38
|
from .type_defs import (
|
|
37
39
|
ListCaseRulesRequestPaginateTypeDef,
|
|
38
40
|
ListCaseRulesResponseTypeDef,
|
|
41
|
+
SearchAllRelatedItemsRequestPaginateTypeDef,
|
|
42
|
+
SearchAllRelatedItemsResponseTypeDef,
|
|
39
43
|
SearchCasesRequestPaginateTypeDef,
|
|
40
44
|
SearchCasesResponseTypeDef,
|
|
41
45
|
SearchRelatedItemsRequestPaginateTypeDef,
|
|
@@ -47,7 +51,12 @@ if sys.version_info >= (3, 12):
|
|
|
47
51
|
else:
|
|
48
52
|
from typing_extensions import Unpack
|
|
49
53
|
|
|
50
|
-
__all__ = (
|
|
54
|
+
__all__ = (
|
|
55
|
+
"ListCaseRulesPaginator",
|
|
56
|
+
"SearchAllRelatedItemsPaginator",
|
|
57
|
+
"SearchCasesPaginator",
|
|
58
|
+
"SearchRelatedItemsPaginator",
|
|
59
|
+
)
|
|
51
60
|
|
|
52
61
|
if TYPE_CHECKING:
|
|
53
62
|
_ListCaseRulesPaginatorBase = Paginator[ListCaseRulesResponseTypeDef]
|
|
@@ -67,6 +76,24 @@ class ListCaseRulesPaginator(_ListCaseRulesPaginatorBase):
|
|
|
67
76
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/paginators/#listcaserulespaginator)
|
|
68
77
|
"""
|
|
69
78
|
|
|
79
|
+
if TYPE_CHECKING:
|
|
80
|
+
_SearchAllRelatedItemsPaginatorBase = Paginator[SearchAllRelatedItemsResponseTypeDef]
|
|
81
|
+
else:
|
|
82
|
+
_SearchAllRelatedItemsPaginatorBase = Paginator # type: ignore[assignment]
|
|
83
|
+
|
|
84
|
+
class SearchAllRelatedItemsPaginator(_SearchAllRelatedItemsPaginatorBase):
|
|
85
|
+
"""
|
|
86
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases/paginator/SearchAllRelatedItems.html#ConnectCases.Paginator.SearchAllRelatedItems)
|
|
87
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/paginators/#searchallrelateditemspaginator)
|
|
88
|
+
"""
|
|
89
|
+
def paginate( # type: ignore[override]
|
|
90
|
+
self, **kwargs: Unpack[SearchAllRelatedItemsRequestPaginateTypeDef]
|
|
91
|
+
) -> PageIterator[SearchAllRelatedItemsResponseTypeDef]:
|
|
92
|
+
"""
|
|
93
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/connectcases/paginator/SearchAllRelatedItems.html#ConnectCases.Paginator.SearchAllRelatedItems.paginate)
|
|
94
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_connectcases/paginators/#searchallrelateditemspaginator)
|
|
95
|
+
"""
|
|
96
|
+
|
|
70
97
|
if TYPE_CHECKING:
|
|
71
98
|
_SearchCasesPaginatorBase = Paginator[SearchCasesResponseTypeDef]
|
|
72
99
|
else:
|
|
@@ -27,6 +27,7 @@ from .literals import (
|
|
|
27
27
|
FieldTypeType,
|
|
28
28
|
OrderType,
|
|
29
29
|
RelatedItemTypeType,
|
|
30
|
+
SearchAllRelatedItemsSortPropertyType,
|
|
30
31
|
SlaStatusType,
|
|
31
32
|
TemplateStatusType,
|
|
32
33
|
)
|
|
@@ -181,6 +182,11 @@ __all__ = (
|
|
|
181
182
|
"RequiredCaseRuleTypeDef",
|
|
182
183
|
"RequiredFieldTypeDef",
|
|
183
184
|
"ResponseMetadataTypeDef",
|
|
185
|
+
"SearchAllRelatedItemsRequestPaginateTypeDef",
|
|
186
|
+
"SearchAllRelatedItemsRequestTypeDef",
|
|
187
|
+
"SearchAllRelatedItemsResponseItemTypeDef",
|
|
188
|
+
"SearchAllRelatedItemsResponseTypeDef",
|
|
189
|
+
"SearchAllRelatedItemsSortTypeDef",
|
|
184
190
|
"SearchCasesRequestPaginateTypeDef",
|
|
185
191
|
"SearchCasesRequestTypeDef",
|
|
186
192
|
"SearchCasesResponseItemTypeDef",
|
|
@@ -566,6 +572,11 @@ class SlaFilterTypeDef(TypedDict):
|
|
|
566
572
|
status: NotRequired[SlaStatusType]
|
|
567
573
|
|
|
568
574
|
|
|
575
|
+
class SearchAllRelatedItemsSortTypeDef(TypedDict):
|
|
576
|
+
sortProperty: SearchAllRelatedItemsSortPropertyType
|
|
577
|
+
sortOrder: OrderType
|
|
578
|
+
|
|
579
|
+
|
|
569
580
|
class SortTypeDef(TypedDict):
|
|
570
581
|
fieldId: str
|
|
571
582
|
sortOrder: OrderType
|
|
@@ -998,6 +1009,18 @@ class BasicLayoutTypeDef(TypedDict):
|
|
|
998
1009
|
moreInfo: NotRequired[LayoutSectionsTypeDef]
|
|
999
1010
|
|
|
1000
1011
|
|
|
1012
|
+
SearchAllRelatedItemsResponseItemTypeDef = TypedDict(
|
|
1013
|
+
"SearchAllRelatedItemsResponseItemTypeDef",
|
|
1014
|
+
{
|
|
1015
|
+
"relatedItemId": str,
|
|
1016
|
+
"caseId": str,
|
|
1017
|
+
"type": RelatedItemTypeType,
|
|
1018
|
+
"associationTime": datetime,
|
|
1019
|
+
"content": RelatedItemContentTypeDef,
|
|
1020
|
+
"performedBy": NotRequired[UserUnionTypeDef],
|
|
1021
|
+
"tags": NotRequired[Dict[str, str]],
|
|
1022
|
+
},
|
|
1023
|
+
)
|
|
1001
1024
|
SearchRelatedItemsResponseItemTypeDef = TypedDict(
|
|
1002
1025
|
"SearchRelatedItemsResponseItemTypeDef",
|
|
1003
1026
|
{
|
|
@@ -1067,6 +1090,12 @@ class LayoutContentTypeDef(TypedDict):
|
|
|
1067
1090
|
basic: NotRequired[BasicLayoutTypeDef]
|
|
1068
1091
|
|
|
1069
1092
|
|
|
1093
|
+
class SearchAllRelatedItemsResponseTypeDef(TypedDict):
|
|
1094
|
+
relatedItems: List[SearchAllRelatedItemsResponseItemTypeDef]
|
|
1095
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1096
|
+
nextToken: NotRequired[str]
|
|
1097
|
+
|
|
1098
|
+
|
|
1070
1099
|
class SearchRelatedItemsResponseTypeDef(TypedDict):
|
|
1071
1100
|
relatedItems: List[SearchRelatedItemsResponseItemTypeDef]
|
|
1072
1101
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -1228,6 +1257,13 @@ class RelatedItemTypeFilterTypeDef(TypedDict):
|
|
|
1228
1257
|
custom: NotRequired[CustomFilterTypeDef]
|
|
1229
1258
|
|
|
1230
1259
|
|
|
1260
|
+
class SearchAllRelatedItemsRequestPaginateTypeDef(TypedDict):
|
|
1261
|
+
domainId: str
|
|
1262
|
+
filters: NotRequired[Sequence[RelatedItemTypeFilterPaginatorTypeDef]]
|
|
1263
|
+
sorts: NotRequired[Sequence[SearchAllRelatedItemsSortTypeDef]]
|
|
1264
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1265
|
+
|
|
1266
|
+
|
|
1231
1267
|
class SearchRelatedItemsRequestPaginateTypeDef(TypedDict):
|
|
1232
1268
|
domainId: str
|
|
1233
1269
|
caseId: str
|
|
@@ -1235,6 +1271,14 @@ class SearchRelatedItemsRequestPaginateTypeDef(TypedDict):
|
|
|
1235
1271
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1236
1272
|
|
|
1237
1273
|
|
|
1274
|
+
class SearchAllRelatedItemsRequestTypeDef(TypedDict):
|
|
1275
|
+
domainId: str
|
|
1276
|
+
maxResults: NotRequired[int]
|
|
1277
|
+
nextToken: NotRequired[str]
|
|
1278
|
+
filters: NotRequired[Sequence[RelatedItemTypeFilterTypeDef]]
|
|
1279
|
+
sorts: NotRequired[Sequence[SearchAllRelatedItemsSortTypeDef]]
|
|
1280
|
+
|
|
1281
|
+
|
|
1238
1282
|
class SearchRelatedItemsRequestTypeDef(TypedDict):
|
|
1239
1283
|
domainId: str
|
|
1240
1284
|
caseId: str
|
|
@@ -27,6 +27,7 @@ from .literals import (
|
|
|
27
27
|
FieldTypeType,
|
|
28
28
|
OrderType,
|
|
29
29
|
RelatedItemTypeType,
|
|
30
|
+
SearchAllRelatedItemsSortPropertyType,
|
|
30
31
|
SlaStatusType,
|
|
31
32
|
TemplateStatusType,
|
|
32
33
|
)
|
|
@@ -180,6 +181,11 @@ __all__ = (
|
|
|
180
181
|
"RequiredCaseRuleTypeDef",
|
|
181
182
|
"RequiredFieldTypeDef",
|
|
182
183
|
"ResponseMetadataTypeDef",
|
|
184
|
+
"SearchAllRelatedItemsRequestPaginateTypeDef",
|
|
185
|
+
"SearchAllRelatedItemsRequestTypeDef",
|
|
186
|
+
"SearchAllRelatedItemsResponseItemTypeDef",
|
|
187
|
+
"SearchAllRelatedItemsResponseTypeDef",
|
|
188
|
+
"SearchAllRelatedItemsSortTypeDef",
|
|
183
189
|
"SearchCasesRequestPaginateTypeDef",
|
|
184
190
|
"SearchCasesRequestTypeDef",
|
|
185
191
|
"SearchCasesResponseItemTypeDef",
|
|
@@ -509,6 +515,10 @@ class SlaFilterTypeDef(TypedDict):
|
|
|
509
515
|
name: NotRequired[str]
|
|
510
516
|
status: NotRequired[SlaStatusType]
|
|
511
517
|
|
|
518
|
+
class SearchAllRelatedItemsSortTypeDef(TypedDict):
|
|
519
|
+
sortProperty: SearchAllRelatedItemsSortPropertyType
|
|
520
|
+
sortOrder: OrderType
|
|
521
|
+
|
|
512
522
|
class SortTypeDef(TypedDict):
|
|
513
523
|
fieldId: str
|
|
514
524
|
sortOrder: OrderType
|
|
@@ -872,6 +882,18 @@ class BasicLayoutTypeDef(TypedDict):
|
|
|
872
882
|
topPanel: NotRequired[LayoutSectionsTypeDef]
|
|
873
883
|
moreInfo: NotRequired[LayoutSectionsTypeDef]
|
|
874
884
|
|
|
885
|
+
SearchAllRelatedItemsResponseItemTypeDef = TypedDict(
|
|
886
|
+
"SearchAllRelatedItemsResponseItemTypeDef",
|
|
887
|
+
{
|
|
888
|
+
"relatedItemId": str,
|
|
889
|
+
"caseId": str,
|
|
890
|
+
"type": RelatedItemTypeType,
|
|
891
|
+
"associationTime": datetime,
|
|
892
|
+
"content": RelatedItemContentTypeDef,
|
|
893
|
+
"performedBy": NotRequired[UserUnionTypeDef],
|
|
894
|
+
"tags": NotRequired[Dict[str, str]],
|
|
895
|
+
},
|
|
896
|
+
)
|
|
875
897
|
SearchRelatedItemsResponseItemTypeDef = TypedDict(
|
|
876
898
|
"SearchRelatedItemsResponseItemTypeDef",
|
|
877
899
|
{
|
|
@@ -931,6 +953,11 @@ class LayoutContentOutputTypeDef(TypedDict):
|
|
|
931
953
|
class LayoutContentTypeDef(TypedDict):
|
|
932
954
|
basic: NotRequired[BasicLayoutTypeDef]
|
|
933
955
|
|
|
956
|
+
class SearchAllRelatedItemsResponseTypeDef(TypedDict):
|
|
957
|
+
relatedItems: List[SearchAllRelatedItemsResponseItemTypeDef]
|
|
958
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
959
|
+
nextToken: NotRequired[str]
|
|
960
|
+
|
|
934
961
|
class SearchRelatedItemsResponseTypeDef(TypedDict):
|
|
935
962
|
relatedItems: List[SearchRelatedItemsResponseItemTypeDef]
|
|
936
963
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -1078,12 +1105,25 @@ class RelatedItemTypeFilterTypeDef(TypedDict):
|
|
|
1078
1105
|
connectCase: NotRequired[ConnectCaseFilterTypeDef]
|
|
1079
1106
|
custom: NotRequired[CustomFilterTypeDef]
|
|
1080
1107
|
|
|
1108
|
+
class SearchAllRelatedItemsRequestPaginateTypeDef(TypedDict):
|
|
1109
|
+
domainId: str
|
|
1110
|
+
filters: NotRequired[Sequence[RelatedItemTypeFilterPaginatorTypeDef]]
|
|
1111
|
+
sorts: NotRequired[Sequence[SearchAllRelatedItemsSortTypeDef]]
|
|
1112
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1113
|
+
|
|
1081
1114
|
class SearchRelatedItemsRequestPaginateTypeDef(TypedDict):
|
|
1082
1115
|
domainId: str
|
|
1083
1116
|
caseId: str
|
|
1084
1117
|
filters: NotRequired[Sequence[RelatedItemTypeFilterPaginatorTypeDef]]
|
|
1085
1118
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1086
1119
|
|
|
1120
|
+
class SearchAllRelatedItemsRequestTypeDef(TypedDict):
|
|
1121
|
+
domainId: str
|
|
1122
|
+
maxResults: NotRequired[int]
|
|
1123
|
+
nextToken: NotRequired[str]
|
|
1124
|
+
filters: NotRequired[Sequence[RelatedItemTypeFilterTypeDef]]
|
|
1125
|
+
sorts: NotRequired[Sequence[SearchAllRelatedItemsSortTypeDef]]
|
|
1126
|
+
|
|
1087
1127
|
class SearchRelatedItemsRequestTypeDef(TypedDict):
|
|
1088
1128
|
domainId: str
|
|
1089
1129
|
caseId: str
|
{types_boto3_connectcases-1.40.42.dist-info → types_boto3_connectcases-1.40.44.dist-info}/METADATA
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: types-boto3-connectcases
|
|
3
|
-
Version: 1.40.
|
|
4
|
-
Summary: Type annotations for boto3 ConnectCases 1.40.
|
|
3
|
+
Version: 1.40.44
|
|
4
|
+
Summary: Type annotations for boto3 ConnectCases 1.40.44 service generated with mypy-boto3-builder 8.11.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
|
|
@@ -57,7 +57,7 @@ Dynamic: summary
|
|
|
57
57
|

|
|
58
58
|
|
|
59
59
|
Type annotations for
|
|
60
|
-
[boto3 ConnectCases 1.40.
|
|
60
|
+
[boto3 ConnectCases 1.40.44](https://pypi.org/project/boto3/) compatible with
|
|
61
61
|
[VSCode](https://code.visualstudio.com/),
|
|
62
62
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
63
63
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -119,7 +119,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
119
119
|
isolation.
|
|
120
120
|
|
|
121
121
|
1. Run mypy-boto3-builder in your package root directory:
|
|
122
|
-
`uvx --with 'boto3==1.40.
|
|
122
|
+
`uvx --with 'boto3==1.40.44' mypy-boto3-builder`
|
|
123
123
|
2. Select `boto3` AWS SDK.
|
|
124
124
|
3. Add `ConnectCases` service.
|
|
125
125
|
4. Use provided commands to install generated packages.
|
|
@@ -355,6 +355,7 @@ from boto3.session import Session
|
|
|
355
355
|
from types_boto3_connectcases import ConnectCasesClient
|
|
356
356
|
from types_boto3_connectcases.paginator import (
|
|
357
357
|
ListCaseRulesPaginator,
|
|
358
|
+
SearchAllRelatedItemsPaginator,
|
|
358
359
|
SearchCasesPaginator,
|
|
359
360
|
SearchRelatedItemsPaginator,
|
|
360
361
|
)
|
|
@@ -364,6 +365,9 @@ client: ConnectCasesClient = Session().client("connectcases")
|
|
|
364
365
|
# Explicit type annotations are optional here
|
|
365
366
|
# Types should be correctly discovered by mypy and IDEs
|
|
366
367
|
list_case_rules_paginator: ListCaseRulesPaginator = client.get_paginator("list_case_rules")
|
|
368
|
+
search_all_related_items_paginator: SearchAllRelatedItemsPaginator = client.get_paginator(
|
|
369
|
+
"search_all_related_items"
|
|
370
|
+
)
|
|
367
371
|
search_cases_paginator: SearchCasesPaginator = client.get_paginator("search_cases")
|
|
368
372
|
search_related_items_paginator: SearchRelatedItemsPaginator = client.get_paginator(
|
|
369
373
|
"search_related_items"
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
types_boto3_connectcases/__init__.py,sha256=bgJCgG0Je2qZ-ic3KMFF7UrcqNhhY93lddEqzA_JMRM,1382
|
|
2
|
+
types_boto3_connectcases/__init__.pyi,sha256=MPvW-UNuFAHTmftlAmT_A8Lk4Ewtbi_7DgN-hrTzZkQ,1381
|
|
3
|
+
types_boto3_connectcases/__main__.py,sha256=7W_cWM4EAG1vuUt4pFIYxky298V2BcuGyUhMLSuvcyM,1005
|
|
4
|
+
types_boto3_connectcases/client.py,sha256=aAi9Mar4kJ6fm1eYkQmkMf-NAq6bfSOCSpjx2p9FHII,28697
|
|
5
|
+
types_boto3_connectcases/client.pyi,sha256=oE0VXxotfmEU_6qNfhwa0m1yQdEfKJUD4RVshiAHRHg,28694
|
|
6
|
+
types_boto3_connectcases/literals.py,sha256=5yRPM0Zg26UVEGj6QavQSdpwWvfmIa6nZvhP25PTWL4,10733
|
|
7
|
+
types_boto3_connectcases/literals.pyi,sha256=CoJZ795XnE0M4isEtI5uC4I-iNHZoWvVgMV1yIQ4xbg,10731
|
|
8
|
+
types_boto3_connectcases/paginator.py,sha256=u2pcPwmMB43ghOEOXOghNdtt-oWClMSoXYvevEOv2YI,6367
|
|
9
|
+
types_boto3_connectcases/paginator.pyi,sha256=l3WeV-So0WnjWw0DPYSw21-pAL0G8rGL1Ae7h-PxlAs,6354
|
|
10
|
+
types_boto3_connectcases/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
types_boto3_connectcases/type_defs.py,sha256=dZ9kIFVGV0bP9kjW0SoXlpIulEoR68zc7QHisT2xAT4,33674
|
|
12
|
+
types_boto3_connectcases/type_defs.pyi,sha256=rFR944VbO2f0KP5M9cJ4yRTN-jKr7NCYsyT3XT_vO4Y,33519
|
|
13
|
+
types_boto3_connectcases/version.py,sha256=kDJi5wcZffHeBX55FGelufMNO-0sItJghTklsU0sljA,93
|
|
14
|
+
types_boto3_connectcases-1.40.44.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
+
types_boto3_connectcases-1.40.44.dist-info/METADATA,sha256=3EKnolXVESjDf-262Gt6pQ4uDUUQbiBleezF8qYr6WU,15655
|
|
16
|
+
types_boto3_connectcases-1.40.44.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
17
|
+
types_boto3_connectcases-1.40.44.dist-info/top_level.txt,sha256=0H6UGzWA8k7lNFFkG_vDlg1gCNSXEHI49EQW8-HFCT4,25
|
|
18
|
+
types_boto3_connectcases-1.40.44.dist-info/RECORD,,
|
|
@@ -1,18 +0,0 @@
|
|
|
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=37PDjYTr-AX_stis58Eyas38LLIxcRJetguIdKAZm1c,1005
|
|
4
|
-
types_boto3_connectcases/client.py,sha256=6sKT0pSD4ZVcmvC--aw1J9IhnGEEOrgbG89T5AzjJe4,27464
|
|
5
|
-
types_boto3_connectcases/client.pyi,sha256=GSO6sZnvc6-l7fFTV-GljvFtQ2BQfdVUu9g8jPWNXQA,27461
|
|
6
|
-
types_boto3_connectcases/literals.py,sha256=Gn-GSC5p074ik7f0HXVu59UoqydOYb1waq9uHf49Pa0,10462
|
|
7
|
-
types_boto3_connectcases/literals.pyi,sha256=-KQrTlGMuNXtPXrvB-zADCVyDGPJ1rnUQfP4l-HE70Y,10460
|
|
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=oXsNXThTBSBfrBtXeVY96Clyq30KS59p0lL5x0P77EI,32130
|
|
12
|
-
types_boto3_connectcases/type_defs.pyi,sha256=aGKRBaIuxLeEMdU7iiANHh-ArVdjW3NzOrizs2EmoQw,31979
|
|
13
|
-
types_boto3_connectcases/version.py,sha256=R9HamMveou_4lecqgl6mHA9FekTdZgAg6T3HkeIuj30,93
|
|
14
|
-
types_boto3_connectcases-1.40.42.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
-
types_boto3_connectcases-1.40.42.dist-info/METADATA,sha256=SP9hoqo8b6_uHKZplkY8xIEbHgLmn8Q4ofqIV_8jBlw,15495
|
|
16
|
-
types_boto3_connectcases-1.40.42.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
17
|
-
types_boto3_connectcases-1.40.42.dist-info/top_level.txt,sha256=0H6UGzWA8k7lNFFkG_vDlg1gCNSXEHI49EQW8-HFCT4,25
|
|
18
|
-
types_boto3_connectcases-1.40.42.dist-info/RECORD,,
|
{types_boto3_connectcases-1.40.42.dist-info → types_boto3_connectcases-1.40.44.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|