mypy-boto3-eks 1.35.86__py3-none-any.whl → 1.35.87__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_eks/__init__.py +4 -0
- mypy_boto3_eks/__init__.pyi +4 -0
- mypy_boto3_eks/__main__.py +3 -3
- mypy_boto3_eks/client.py +24 -0
- mypy_boto3_eks/client.pyi +24 -0
- mypy_boto3_eks/literals.py +5 -0
- mypy_boto3_eks/literals.pyi +5 -0
- mypy_boto3_eks/paginator.py +26 -0
- mypy_boto3_eks/paginator.pyi +23 -0
- mypy_boto3_eks/type_defs.py +42 -0
- mypy_boto3_eks/type_defs.pyi +38 -0
- mypy_boto3_eks/version.py +1 -1
- {mypy_boto3_eks-1.35.86.dist-info → mypy_boto3_eks-1.35.87.dist-info}/METADATA +8 -4
- mypy_boto3_eks-1.35.87.dist-info/RECORD +20 -0
- mypy_boto3_eks-1.35.86.dist-info/RECORD +0 -20
- {mypy_boto3_eks-1.35.86.dist-info → mypy_boto3_eks-1.35.87.dist-info}/LICENSE +0 -0
- {mypy_boto3_eks-1.35.86.dist-info → mypy_boto3_eks-1.35.87.dist-info}/WHEEL +0 -0
- {mypy_boto3_eks-1.35.86.dist-info → mypy_boto3_eks-1.35.87.dist-info}/top_level.txt +0 -0
mypy_boto3_eks/__init__.py
CHANGED
|
@@ -12,6 +12,7 @@ Usage::
|
|
|
12
12
|
ClusterActiveWaiter,
|
|
13
13
|
ClusterDeletedWaiter,
|
|
14
14
|
DescribeAddonVersionsPaginator,
|
|
15
|
+
DescribeClusterVersionsPaginator,
|
|
15
16
|
EKSClient,
|
|
16
17
|
FargateProfileActiveWaiter,
|
|
17
18
|
FargateProfileDeletedWaiter,
|
|
@@ -44,6 +45,7 @@ Usage::
|
|
|
44
45
|
nodegroup_deleted_waiter: NodegroupDeletedWaiter = client.get_waiter("nodegroup_deleted")
|
|
45
46
|
|
|
46
47
|
describe_addon_versions_paginator: DescribeAddonVersionsPaginator = client.get_paginator("describe_addon_versions")
|
|
48
|
+
describe_cluster_versions_paginator: DescribeClusterVersionsPaginator = client.get_paginator("describe_cluster_versions")
|
|
47
49
|
list_access_entries_paginator: ListAccessEntriesPaginator = client.get_paginator("list_access_entries")
|
|
48
50
|
list_access_policies_paginator: ListAccessPoliciesPaginator = client.get_paginator("list_access_policies")
|
|
49
51
|
list_addons_paginator: ListAddonsPaginator = client.get_paginator("list_addons")
|
|
@@ -64,6 +66,7 @@ Copyright 2024 Vlad Emelianov
|
|
|
64
66
|
from .client import EKSClient
|
|
65
67
|
from .paginator import (
|
|
66
68
|
DescribeAddonVersionsPaginator,
|
|
69
|
+
DescribeClusterVersionsPaginator,
|
|
67
70
|
ListAccessEntriesPaginator,
|
|
68
71
|
ListAccessPoliciesPaginator,
|
|
69
72
|
ListAddonsPaginator,
|
|
@@ -98,6 +101,7 @@ __all__ = (
|
|
|
98
101
|
"ClusterActiveWaiter",
|
|
99
102
|
"ClusterDeletedWaiter",
|
|
100
103
|
"DescribeAddonVersionsPaginator",
|
|
104
|
+
"DescribeClusterVersionsPaginator",
|
|
101
105
|
"EKSClient",
|
|
102
106
|
"FargateProfileActiveWaiter",
|
|
103
107
|
"FargateProfileDeletedWaiter",
|
mypy_boto3_eks/__init__.pyi
CHANGED
|
@@ -12,6 +12,7 @@ Usage::
|
|
|
12
12
|
ClusterActiveWaiter,
|
|
13
13
|
ClusterDeletedWaiter,
|
|
14
14
|
DescribeAddonVersionsPaginator,
|
|
15
|
+
DescribeClusterVersionsPaginator,
|
|
15
16
|
EKSClient,
|
|
16
17
|
FargateProfileActiveWaiter,
|
|
17
18
|
FargateProfileDeletedWaiter,
|
|
@@ -44,6 +45,7 @@ Usage::
|
|
|
44
45
|
nodegroup_deleted_waiter: NodegroupDeletedWaiter = client.get_waiter("nodegroup_deleted")
|
|
45
46
|
|
|
46
47
|
describe_addon_versions_paginator: DescribeAddonVersionsPaginator = client.get_paginator("describe_addon_versions")
|
|
48
|
+
describe_cluster_versions_paginator: DescribeClusterVersionsPaginator = client.get_paginator("describe_cluster_versions")
|
|
47
49
|
list_access_entries_paginator: ListAccessEntriesPaginator = client.get_paginator("list_access_entries")
|
|
48
50
|
list_access_policies_paginator: ListAccessPoliciesPaginator = client.get_paginator("list_access_policies")
|
|
49
51
|
list_addons_paginator: ListAddonsPaginator = client.get_paginator("list_addons")
|
|
@@ -64,6 +66,7 @@ Copyright 2024 Vlad Emelianov
|
|
|
64
66
|
from .client import EKSClient
|
|
65
67
|
from .paginator import (
|
|
66
68
|
DescribeAddonVersionsPaginator,
|
|
69
|
+
DescribeClusterVersionsPaginator,
|
|
67
70
|
ListAccessEntriesPaginator,
|
|
68
71
|
ListAccessPoliciesPaginator,
|
|
69
72
|
ListAddonsPaginator,
|
|
@@ -97,6 +100,7 @@ __all__ = (
|
|
|
97
100
|
"ClusterActiveWaiter",
|
|
98
101
|
"ClusterDeletedWaiter",
|
|
99
102
|
"DescribeAddonVersionsPaginator",
|
|
103
|
+
"DescribeClusterVersionsPaginator",
|
|
100
104
|
"EKSClient",
|
|
101
105
|
"FargateProfileActiveWaiter",
|
|
102
106
|
"FargateProfileDeletedWaiter",
|
mypy_boto3_eks/__main__.py
CHANGED
|
@@ -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 EKS 1.35.
|
|
16
|
-
"Version: 1.35.
|
|
15
|
+
"Type annotations for boto3 EKS 1.35.87\n"
|
|
16
|
+
"Version: 1.35.87\n"
|
|
17
17
|
"Builder version: 8.7.0\n"
|
|
18
18
|
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#eks\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.35.
|
|
29
|
+
sys.stdout.write("1.35.87\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
mypy_boto3_eks/client.py
CHANGED
|
@@ -27,6 +27,7 @@ from botocore.exceptions import ClientError as BotocoreClientError
|
|
|
27
27
|
|
|
28
28
|
from .paginator import (
|
|
29
29
|
DescribeAddonVersionsPaginator,
|
|
30
|
+
DescribeClusterVersionsPaginator,
|
|
30
31
|
ListAccessEntriesPaginator,
|
|
31
32
|
ListAccessPoliciesPaginator,
|
|
32
33
|
ListAddonsPaginator,
|
|
@@ -86,6 +87,8 @@ from .type_defs import (
|
|
|
86
87
|
DescribeAddonVersionsResponseTypeDef,
|
|
87
88
|
DescribeClusterRequestRequestTypeDef,
|
|
88
89
|
DescribeClusterResponseTypeDef,
|
|
90
|
+
DescribeClusterVersionsRequestRequestTypeDef,
|
|
91
|
+
DescribeClusterVersionsResponseTypeDef,
|
|
89
92
|
DescribeEksAnywhereSubscriptionRequestRequestTypeDef,
|
|
90
93
|
DescribeEksAnywhereSubscriptionResponseTypeDef,
|
|
91
94
|
DescribeFargateProfileRequestRequestTypeDef,
|
|
@@ -453,6 +456,16 @@ class EKSClient(BaseClient):
|
|
|
453
456
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#describe_cluster)
|
|
454
457
|
"""
|
|
455
458
|
|
|
459
|
+
def describe_cluster_versions(
|
|
460
|
+
self, **kwargs: Unpack[DescribeClusterVersionsRequestRequestTypeDef]
|
|
461
|
+
) -> DescribeClusterVersionsResponseTypeDef:
|
|
462
|
+
"""
|
|
463
|
+
Lists available Kubernetes versions for Amazon EKS clusters.
|
|
464
|
+
|
|
465
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/describe_cluster_versions.html)
|
|
466
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#describe_cluster_versions)
|
|
467
|
+
"""
|
|
468
|
+
|
|
456
469
|
def describe_eks_anywhere_subscription(
|
|
457
470
|
self, **kwargs: Unpack[DescribeEksAnywhereSubscriptionRequestRequestTypeDef]
|
|
458
471
|
) -> DescribeEksAnywhereSubscriptionResponseTypeDef:
|
|
@@ -798,6 +811,17 @@ class EKSClient(BaseClient):
|
|
|
798
811
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#get_paginator)
|
|
799
812
|
"""
|
|
800
813
|
|
|
814
|
+
@overload # type: ignore[override]
|
|
815
|
+
def get_paginator( # type: ignore[override]
|
|
816
|
+
self, operation_name: Literal["describe_cluster_versions"]
|
|
817
|
+
) -> DescribeClusterVersionsPaginator:
|
|
818
|
+
"""
|
|
819
|
+
Create a paginator for an operation.
|
|
820
|
+
|
|
821
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/get_paginator.html)
|
|
822
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#get_paginator)
|
|
823
|
+
"""
|
|
824
|
+
|
|
801
825
|
@overload # type: ignore[override]
|
|
802
826
|
def get_paginator( # type: ignore[override]
|
|
803
827
|
self, operation_name: Literal["list_access_entries"]
|
mypy_boto3_eks/client.pyi
CHANGED
|
@@ -27,6 +27,7 @@ from botocore.exceptions import ClientError as BotocoreClientError
|
|
|
27
27
|
|
|
28
28
|
from .paginator import (
|
|
29
29
|
DescribeAddonVersionsPaginator,
|
|
30
|
+
DescribeClusterVersionsPaginator,
|
|
30
31
|
ListAccessEntriesPaginator,
|
|
31
32
|
ListAccessPoliciesPaginator,
|
|
32
33
|
ListAddonsPaginator,
|
|
@@ -86,6 +87,8 @@ from .type_defs import (
|
|
|
86
87
|
DescribeAddonVersionsResponseTypeDef,
|
|
87
88
|
DescribeClusterRequestRequestTypeDef,
|
|
88
89
|
DescribeClusterResponseTypeDef,
|
|
90
|
+
DescribeClusterVersionsRequestRequestTypeDef,
|
|
91
|
+
DescribeClusterVersionsResponseTypeDef,
|
|
89
92
|
DescribeEksAnywhereSubscriptionRequestRequestTypeDef,
|
|
90
93
|
DescribeEksAnywhereSubscriptionResponseTypeDef,
|
|
91
94
|
DescribeFargateProfileRequestRequestTypeDef,
|
|
@@ -450,6 +453,16 @@ class EKSClient(BaseClient):
|
|
|
450
453
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#describe_cluster)
|
|
451
454
|
"""
|
|
452
455
|
|
|
456
|
+
def describe_cluster_versions(
|
|
457
|
+
self, **kwargs: Unpack[DescribeClusterVersionsRequestRequestTypeDef]
|
|
458
|
+
) -> DescribeClusterVersionsResponseTypeDef:
|
|
459
|
+
"""
|
|
460
|
+
Lists available Kubernetes versions for Amazon EKS clusters.
|
|
461
|
+
|
|
462
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/describe_cluster_versions.html)
|
|
463
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#describe_cluster_versions)
|
|
464
|
+
"""
|
|
465
|
+
|
|
453
466
|
def describe_eks_anywhere_subscription(
|
|
454
467
|
self, **kwargs: Unpack[DescribeEksAnywhereSubscriptionRequestRequestTypeDef]
|
|
455
468
|
) -> DescribeEksAnywhereSubscriptionResponseTypeDef:
|
|
@@ -795,6 +808,17 @@ class EKSClient(BaseClient):
|
|
|
795
808
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#get_paginator)
|
|
796
809
|
"""
|
|
797
810
|
|
|
811
|
+
@overload # type: ignore[override]
|
|
812
|
+
def get_paginator( # type: ignore[override]
|
|
813
|
+
self, operation_name: Literal["describe_cluster_versions"]
|
|
814
|
+
) -> DescribeClusterVersionsPaginator:
|
|
815
|
+
"""
|
|
816
|
+
Create a paginator for an operation.
|
|
817
|
+
|
|
818
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/get_paginator.html)
|
|
819
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#get_paginator)
|
|
820
|
+
"""
|
|
821
|
+
|
|
798
822
|
@overload # type: ignore[override]
|
|
799
823
|
def get_paginator( # type: ignore[override]
|
|
800
824
|
self, operation_name: Literal["list_access_entries"]
|
mypy_boto3_eks/literals.py
CHANGED
|
@@ -36,9 +36,11 @@ __all__ = (
|
|
|
36
36
|
"ClusterDeletedWaiterName",
|
|
37
37
|
"ClusterIssueCodeType",
|
|
38
38
|
"ClusterStatusType",
|
|
39
|
+
"ClusterVersionStatusType",
|
|
39
40
|
"ConfigStatusType",
|
|
40
41
|
"ConnectorConfigProviderType",
|
|
41
42
|
"DescribeAddonVersionsPaginatorName",
|
|
43
|
+
"DescribeClusterVersionsPaginatorName",
|
|
42
44
|
"EKSServiceName",
|
|
43
45
|
"EksAnywhereSubscriptionLicenseTypeType",
|
|
44
46
|
"EksAnywhereSubscriptionStatusType",
|
|
@@ -151,11 +153,13 @@ ClusterIssueCodeType = Literal[
|
|
|
151
153
|
"VpcNotFound",
|
|
152
154
|
]
|
|
153
155
|
ClusterStatusType = Literal["ACTIVE", "CREATING", "DELETING", "FAILED", "PENDING", "UPDATING"]
|
|
156
|
+
ClusterVersionStatusType = Literal["extended-support", "standard-support", "unsupported"]
|
|
154
157
|
ConfigStatusType = Literal["ACTIVE", "CREATING", "DELETING"]
|
|
155
158
|
ConnectorConfigProviderType = Literal[
|
|
156
159
|
"AKS", "ANTHOS", "EC2", "EKS_ANYWHERE", "GKE", "OPENSHIFT", "OTHER", "RANCHER", "TANZU"
|
|
157
160
|
]
|
|
158
161
|
DescribeAddonVersionsPaginatorName = Literal["describe_addon_versions"]
|
|
162
|
+
DescribeClusterVersionsPaginatorName = Literal["describe_cluster_versions"]
|
|
159
163
|
EksAnywhereSubscriptionLicenseTypeType = Literal["Cluster"]
|
|
160
164
|
EksAnywhereSubscriptionStatusType = Literal[
|
|
161
165
|
"ACTIVE", "CREATING", "DELETING", "EXPIRED", "EXPIRING", "UPDATING"
|
|
@@ -723,6 +727,7 @@ ResourceServiceName = Literal[
|
|
|
723
727
|
]
|
|
724
728
|
PaginatorName = Literal[
|
|
725
729
|
"describe_addon_versions",
|
|
730
|
+
"describe_cluster_versions",
|
|
726
731
|
"list_access_entries",
|
|
727
732
|
"list_access_policies",
|
|
728
733
|
"list_addons",
|
mypy_boto3_eks/literals.pyi
CHANGED
|
@@ -35,9 +35,11 @@ __all__ = (
|
|
|
35
35
|
"ClusterDeletedWaiterName",
|
|
36
36
|
"ClusterIssueCodeType",
|
|
37
37
|
"ClusterStatusType",
|
|
38
|
+
"ClusterVersionStatusType",
|
|
38
39
|
"ConfigStatusType",
|
|
39
40
|
"ConnectorConfigProviderType",
|
|
40
41
|
"DescribeAddonVersionsPaginatorName",
|
|
42
|
+
"DescribeClusterVersionsPaginatorName",
|
|
41
43
|
"EKSServiceName",
|
|
42
44
|
"EksAnywhereSubscriptionLicenseTypeType",
|
|
43
45
|
"EksAnywhereSubscriptionStatusType",
|
|
@@ -149,11 +151,13 @@ ClusterIssueCodeType = Literal[
|
|
|
149
151
|
"VpcNotFound",
|
|
150
152
|
]
|
|
151
153
|
ClusterStatusType = Literal["ACTIVE", "CREATING", "DELETING", "FAILED", "PENDING", "UPDATING"]
|
|
154
|
+
ClusterVersionStatusType = Literal["extended-support", "standard-support", "unsupported"]
|
|
152
155
|
ConfigStatusType = Literal["ACTIVE", "CREATING", "DELETING"]
|
|
153
156
|
ConnectorConfigProviderType = Literal[
|
|
154
157
|
"AKS", "ANTHOS", "EC2", "EKS_ANYWHERE", "GKE", "OPENSHIFT", "OTHER", "RANCHER", "TANZU"
|
|
155
158
|
]
|
|
156
159
|
DescribeAddonVersionsPaginatorName = Literal["describe_addon_versions"]
|
|
160
|
+
DescribeClusterVersionsPaginatorName = Literal["describe_cluster_versions"]
|
|
157
161
|
EksAnywhereSubscriptionLicenseTypeType = Literal["Cluster"]
|
|
158
162
|
EksAnywhereSubscriptionStatusType = Literal[
|
|
159
163
|
"ACTIVE", "CREATING", "DELETING", "EXPIRED", "EXPIRING", "UPDATING"
|
|
@@ -721,6 +725,7 @@ ResourceServiceName = Literal[
|
|
|
721
725
|
]
|
|
722
726
|
PaginatorName = Literal[
|
|
723
727
|
"describe_addon_versions",
|
|
728
|
+
"describe_cluster_versions",
|
|
724
729
|
"list_access_entries",
|
|
725
730
|
"list_access_policies",
|
|
726
731
|
"list_addons",
|
mypy_boto3_eks/paginator.py
CHANGED
|
@@ -11,6 +11,7 @@ Usage::
|
|
|
11
11
|
from mypy_boto3_eks.client import EKSClient
|
|
12
12
|
from mypy_boto3_eks.paginator import (
|
|
13
13
|
DescribeAddonVersionsPaginator,
|
|
14
|
+
DescribeClusterVersionsPaginator,
|
|
14
15
|
ListAccessEntriesPaginator,
|
|
15
16
|
ListAccessPoliciesPaginator,
|
|
16
17
|
ListAddonsPaginator,
|
|
@@ -29,6 +30,7 @@ Usage::
|
|
|
29
30
|
client: EKSClient = session.client("eks")
|
|
30
31
|
|
|
31
32
|
describe_addon_versions_paginator: DescribeAddonVersionsPaginator = client.get_paginator("describe_addon_versions")
|
|
33
|
+
describe_cluster_versions_paginator: DescribeClusterVersionsPaginator = client.get_paginator("describe_cluster_versions")
|
|
32
34
|
list_access_entries_paginator: ListAccessEntriesPaginator = client.get_paginator("list_access_entries")
|
|
33
35
|
list_access_policies_paginator: ListAccessPoliciesPaginator = client.get_paginator("list_access_policies")
|
|
34
36
|
list_addons_paginator: ListAddonsPaginator = client.get_paginator("list_addons")
|
|
@@ -56,6 +58,8 @@ from botocore.paginate import PageIterator, Paginator
|
|
|
56
58
|
from .type_defs import (
|
|
57
59
|
DescribeAddonVersionsRequestPaginateTypeDef,
|
|
58
60
|
DescribeAddonVersionsResponseTypeDef,
|
|
61
|
+
DescribeClusterVersionsRequestPaginateTypeDef,
|
|
62
|
+
DescribeClusterVersionsResponseTypeDef,
|
|
59
63
|
ListAccessEntriesRequestPaginateTypeDef,
|
|
60
64
|
ListAccessEntriesResponseTypeDef,
|
|
61
65
|
ListAccessPoliciesRequestPaginateTypeDef,
|
|
@@ -90,6 +94,7 @@ else:
|
|
|
90
94
|
|
|
91
95
|
__all__ = (
|
|
92
96
|
"DescribeAddonVersionsPaginator",
|
|
97
|
+
"DescribeClusterVersionsPaginator",
|
|
93
98
|
"ListAccessEntriesPaginator",
|
|
94
99
|
"ListAccessPoliciesPaginator",
|
|
95
100
|
"ListAddonsPaginator",
|
|
@@ -126,6 +131,27 @@ class DescribeAddonVersionsPaginator(_DescribeAddonVersionsPaginatorBase):
|
|
|
126
131
|
"""
|
|
127
132
|
|
|
128
133
|
|
|
134
|
+
if TYPE_CHECKING:
|
|
135
|
+
_DescribeClusterVersionsPaginatorBase = Paginator[DescribeClusterVersionsResponseTypeDef]
|
|
136
|
+
else:
|
|
137
|
+
_DescribeClusterVersionsPaginatorBase = Paginator # type: ignore[assignment]
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
class DescribeClusterVersionsPaginator(_DescribeClusterVersionsPaginatorBase):
|
|
141
|
+
"""
|
|
142
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/DescribeClusterVersions.html#EKS.Paginator.DescribeClusterVersions)
|
|
143
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#describeclusterversionspaginator)
|
|
144
|
+
"""
|
|
145
|
+
|
|
146
|
+
def paginate( # type: ignore[override]
|
|
147
|
+
self, **kwargs: Unpack[DescribeClusterVersionsRequestPaginateTypeDef]
|
|
148
|
+
) -> PageIterator[DescribeClusterVersionsResponseTypeDef]:
|
|
149
|
+
"""
|
|
150
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/DescribeClusterVersions.html#EKS.Paginator.DescribeClusterVersions.paginate)
|
|
151
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#describeclusterversionspaginator)
|
|
152
|
+
"""
|
|
153
|
+
|
|
154
|
+
|
|
129
155
|
if TYPE_CHECKING:
|
|
130
156
|
_ListAccessEntriesPaginatorBase = Paginator[ListAccessEntriesResponseTypeDef]
|
|
131
157
|
else:
|
mypy_boto3_eks/paginator.pyi
CHANGED
|
@@ -11,6 +11,7 @@ Usage::
|
|
|
11
11
|
from mypy_boto3_eks.client import EKSClient
|
|
12
12
|
from mypy_boto3_eks.paginator import (
|
|
13
13
|
DescribeAddonVersionsPaginator,
|
|
14
|
+
DescribeClusterVersionsPaginator,
|
|
14
15
|
ListAccessEntriesPaginator,
|
|
15
16
|
ListAccessPoliciesPaginator,
|
|
16
17
|
ListAddonsPaginator,
|
|
@@ -29,6 +30,7 @@ Usage::
|
|
|
29
30
|
client: EKSClient = session.client("eks")
|
|
30
31
|
|
|
31
32
|
describe_addon_versions_paginator: DescribeAddonVersionsPaginator = client.get_paginator("describe_addon_versions")
|
|
33
|
+
describe_cluster_versions_paginator: DescribeClusterVersionsPaginator = client.get_paginator("describe_cluster_versions")
|
|
32
34
|
list_access_entries_paginator: ListAccessEntriesPaginator = client.get_paginator("list_access_entries")
|
|
33
35
|
list_access_policies_paginator: ListAccessPoliciesPaginator = client.get_paginator("list_access_policies")
|
|
34
36
|
list_addons_paginator: ListAddonsPaginator = client.get_paginator("list_addons")
|
|
@@ -56,6 +58,8 @@ from botocore.paginate import PageIterator, Paginator
|
|
|
56
58
|
from .type_defs import (
|
|
57
59
|
DescribeAddonVersionsRequestPaginateTypeDef,
|
|
58
60
|
DescribeAddonVersionsResponseTypeDef,
|
|
61
|
+
DescribeClusterVersionsRequestPaginateTypeDef,
|
|
62
|
+
DescribeClusterVersionsResponseTypeDef,
|
|
59
63
|
ListAccessEntriesRequestPaginateTypeDef,
|
|
60
64
|
ListAccessEntriesResponseTypeDef,
|
|
61
65
|
ListAccessPoliciesRequestPaginateTypeDef,
|
|
@@ -89,6 +93,7 @@ else:
|
|
|
89
93
|
|
|
90
94
|
__all__ = (
|
|
91
95
|
"DescribeAddonVersionsPaginator",
|
|
96
|
+
"DescribeClusterVersionsPaginator",
|
|
92
97
|
"ListAccessEntriesPaginator",
|
|
93
98
|
"ListAccessPoliciesPaginator",
|
|
94
99
|
"ListAddonsPaginator",
|
|
@@ -121,6 +126,24 @@ class DescribeAddonVersionsPaginator(_DescribeAddonVersionsPaginatorBase):
|
|
|
121
126
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#describeaddonversionspaginator)
|
|
122
127
|
"""
|
|
123
128
|
|
|
129
|
+
if TYPE_CHECKING:
|
|
130
|
+
_DescribeClusterVersionsPaginatorBase = Paginator[DescribeClusterVersionsResponseTypeDef]
|
|
131
|
+
else:
|
|
132
|
+
_DescribeClusterVersionsPaginatorBase = Paginator # type: ignore[assignment]
|
|
133
|
+
|
|
134
|
+
class DescribeClusterVersionsPaginator(_DescribeClusterVersionsPaginatorBase):
|
|
135
|
+
"""
|
|
136
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/DescribeClusterVersions.html#EKS.Paginator.DescribeClusterVersions)
|
|
137
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#describeclusterversionspaginator)
|
|
138
|
+
"""
|
|
139
|
+
def paginate( # type: ignore[override]
|
|
140
|
+
self, **kwargs: Unpack[DescribeClusterVersionsRequestPaginateTypeDef]
|
|
141
|
+
) -> PageIterator[DescribeClusterVersionsResponseTypeDef]:
|
|
142
|
+
"""
|
|
143
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/DescribeClusterVersions.html#EKS.Paginator.DescribeClusterVersions.paginate)
|
|
144
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#describeclusterversionspaginator)
|
|
145
|
+
"""
|
|
146
|
+
|
|
124
147
|
if TYPE_CHECKING:
|
|
125
148
|
_ListAccessEntriesPaginatorBase = Paginator[ListAccessEntriesResponseTypeDef]
|
|
126
149
|
else:
|
mypy_boto3_eks/type_defs.py
CHANGED
|
@@ -29,6 +29,7 @@ from .literals import (
|
|
|
29
29
|
CapacityTypesType,
|
|
30
30
|
ClusterIssueCodeType,
|
|
31
31
|
ClusterStatusType,
|
|
32
|
+
ClusterVersionStatusType,
|
|
32
33
|
ConfigStatusType,
|
|
33
34
|
ConnectorConfigProviderType,
|
|
34
35
|
EksAnywhereSubscriptionStatusType,
|
|
@@ -82,6 +83,7 @@ __all__ = (
|
|
|
82
83
|
"ClusterHealthTypeDef",
|
|
83
84
|
"ClusterIssueTypeDef",
|
|
84
85
|
"ClusterTypeDef",
|
|
86
|
+
"ClusterVersionInformationTypeDef",
|
|
85
87
|
"CompatibilityTypeDef",
|
|
86
88
|
"ComputeConfigRequestTypeDef",
|
|
87
89
|
"ComputeConfigResponseTypeDef",
|
|
@@ -133,6 +135,9 @@ __all__ = (
|
|
|
133
135
|
"DescribeClusterRequestRequestTypeDef",
|
|
134
136
|
"DescribeClusterRequestWaitTypeDef",
|
|
135
137
|
"DescribeClusterResponseTypeDef",
|
|
138
|
+
"DescribeClusterVersionsRequestPaginateTypeDef",
|
|
139
|
+
"DescribeClusterVersionsRequestRequestTypeDef",
|
|
140
|
+
"DescribeClusterVersionsResponseTypeDef",
|
|
136
141
|
"DescribeEksAnywhereSubscriptionRequestRequestTypeDef",
|
|
137
142
|
"DescribeEksAnywhereSubscriptionResponseTypeDef",
|
|
138
143
|
"DescribeFargateProfileRequestRequestTypeDef",
|
|
@@ -435,6 +440,18 @@ class ZonalShiftConfigResponseTypeDef(TypedDict):
|
|
|
435
440
|
enabled: NotRequired[bool]
|
|
436
441
|
|
|
437
442
|
|
|
443
|
+
class ClusterVersionInformationTypeDef(TypedDict):
|
|
444
|
+
clusterVersion: NotRequired[str]
|
|
445
|
+
clusterType: NotRequired[str]
|
|
446
|
+
defaultPlatformVersion: NotRequired[str]
|
|
447
|
+
defaultVersion: NotRequired[bool]
|
|
448
|
+
releaseDate: NotRequired[datetime]
|
|
449
|
+
endOfStandardSupportDate: NotRequired[datetime]
|
|
450
|
+
endOfExtendedSupportDate: NotRequired[datetime]
|
|
451
|
+
status: NotRequired[ClusterVersionStatusType]
|
|
452
|
+
kubernetesPatchVersion: NotRequired[str]
|
|
453
|
+
|
|
454
|
+
|
|
438
455
|
class ComputeConfigRequestTypeDef(TypedDict):
|
|
439
456
|
enabled: NotRequired[bool]
|
|
440
457
|
nodePools: NotRequired[Sequence[str]]
|
|
@@ -638,6 +655,16 @@ class DescribeClusterRequestRequestTypeDef(TypedDict):
|
|
|
638
655
|
name: str
|
|
639
656
|
|
|
640
657
|
|
|
658
|
+
class DescribeClusterVersionsRequestRequestTypeDef(TypedDict):
|
|
659
|
+
clusterType: NotRequired[str]
|
|
660
|
+
maxResults: NotRequired[int]
|
|
661
|
+
nextToken: NotRequired[str]
|
|
662
|
+
defaultOnly: NotRequired[bool]
|
|
663
|
+
includeAll: NotRequired[bool]
|
|
664
|
+
clusterVersions: NotRequired[Sequence[str]]
|
|
665
|
+
status: NotRequired[ClusterVersionStatusType]
|
|
666
|
+
|
|
667
|
+
|
|
641
668
|
DescribeEksAnywhereSubscriptionRequestRequestTypeDef = TypedDict(
|
|
642
669
|
"DescribeEksAnywhereSubscriptionRequestRequestTypeDef",
|
|
643
670
|
{
|
|
@@ -1088,6 +1115,12 @@ class ClusterHealthTypeDef(TypedDict):
|
|
|
1088
1115
|
issues: NotRequired[list[ClusterIssueTypeDef]]
|
|
1089
1116
|
|
|
1090
1117
|
|
|
1118
|
+
class DescribeClusterVersionsResponseTypeDef(TypedDict):
|
|
1119
|
+
clusterVersions: list[ClusterVersionInformationTypeDef]
|
|
1120
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1121
|
+
nextToken: NotRequired[str]
|
|
1122
|
+
|
|
1123
|
+
|
|
1091
1124
|
class RegisterClusterRequestRequestTypeDef(TypedDict):
|
|
1092
1125
|
name: str
|
|
1093
1126
|
connectorConfig: ConnectorConfigRequestTypeDef
|
|
@@ -1229,6 +1262,15 @@ DescribeAddonVersionsRequestPaginateTypeDef = TypedDict(
|
|
|
1229
1262
|
)
|
|
1230
1263
|
|
|
1231
1264
|
|
|
1265
|
+
class DescribeClusterVersionsRequestPaginateTypeDef(TypedDict):
|
|
1266
|
+
clusterType: NotRequired[str]
|
|
1267
|
+
defaultOnly: NotRequired[bool]
|
|
1268
|
+
includeAll: NotRequired[bool]
|
|
1269
|
+
clusterVersions: NotRequired[Sequence[str]]
|
|
1270
|
+
status: NotRequired[ClusterVersionStatusType]
|
|
1271
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1272
|
+
|
|
1273
|
+
|
|
1232
1274
|
class ListAccessEntriesRequestPaginateTypeDef(TypedDict):
|
|
1233
1275
|
clusterName: str
|
|
1234
1276
|
associatedPolicyArn: NotRequired[str]
|
mypy_boto3_eks/type_defs.pyi
CHANGED
|
@@ -29,6 +29,7 @@ from .literals import (
|
|
|
29
29
|
CapacityTypesType,
|
|
30
30
|
ClusterIssueCodeType,
|
|
31
31
|
ClusterStatusType,
|
|
32
|
+
ClusterVersionStatusType,
|
|
32
33
|
ConfigStatusType,
|
|
33
34
|
ConnectorConfigProviderType,
|
|
34
35
|
EksAnywhereSubscriptionStatusType,
|
|
@@ -81,6 +82,7 @@ __all__ = (
|
|
|
81
82
|
"ClusterHealthTypeDef",
|
|
82
83
|
"ClusterIssueTypeDef",
|
|
83
84
|
"ClusterTypeDef",
|
|
85
|
+
"ClusterVersionInformationTypeDef",
|
|
84
86
|
"CompatibilityTypeDef",
|
|
85
87
|
"ComputeConfigRequestTypeDef",
|
|
86
88
|
"ComputeConfigResponseTypeDef",
|
|
@@ -132,6 +134,9 @@ __all__ = (
|
|
|
132
134
|
"DescribeClusterRequestRequestTypeDef",
|
|
133
135
|
"DescribeClusterRequestWaitTypeDef",
|
|
134
136
|
"DescribeClusterResponseTypeDef",
|
|
137
|
+
"DescribeClusterVersionsRequestPaginateTypeDef",
|
|
138
|
+
"DescribeClusterVersionsRequestRequestTypeDef",
|
|
139
|
+
"DescribeClusterVersionsResponseTypeDef",
|
|
135
140
|
"DescribeEksAnywhereSubscriptionRequestRequestTypeDef",
|
|
136
141
|
"DescribeEksAnywhereSubscriptionResponseTypeDef",
|
|
137
142
|
"DescribeFargateProfileRequestRequestTypeDef",
|
|
@@ -411,6 +416,17 @@ class VpcConfigResponseTypeDef(TypedDict):
|
|
|
411
416
|
class ZonalShiftConfigResponseTypeDef(TypedDict):
|
|
412
417
|
enabled: NotRequired[bool]
|
|
413
418
|
|
|
419
|
+
class ClusterVersionInformationTypeDef(TypedDict):
|
|
420
|
+
clusterVersion: NotRequired[str]
|
|
421
|
+
clusterType: NotRequired[str]
|
|
422
|
+
defaultPlatformVersion: NotRequired[str]
|
|
423
|
+
defaultVersion: NotRequired[bool]
|
|
424
|
+
releaseDate: NotRequired[datetime]
|
|
425
|
+
endOfStandardSupportDate: NotRequired[datetime]
|
|
426
|
+
endOfExtendedSupportDate: NotRequired[datetime]
|
|
427
|
+
status: NotRequired[ClusterVersionStatusType]
|
|
428
|
+
kubernetesPatchVersion: NotRequired[str]
|
|
429
|
+
|
|
414
430
|
class ComputeConfigRequestTypeDef(TypedDict):
|
|
415
431
|
enabled: NotRequired[bool]
|
|
416
432
|
nodePools: NotRequired[Sequence[str]]
|
|
@@ -581,6 +597,15 @@ DescribeAddonVersionsRequestRequestTypeDef = TypedDict(
|
|
|
581
597
|
class DescribeClusterRequestRequestTypeDef(TypedDict):
|
|
582
598
|
name: str
|
|
583
599
|
|
|
600
|
+
class DescribeClusterVersionsRequestRequestTypeDef(TypedDict):
|
|
601
|
+
clusterType: NotRequired[str]
|
|
602
|
+
maxResults: NotRequired[int]
|
|
603
|
+
nextToken: NotRequired[str]
|
|
604
|
+
defaultOnly: NotRequired[bool]
|
|
605
|
+
includeAll: NotRequired[bool]
|
|
606
|
+
clusterVersions: NotRequired[Sequence[str]]
|
|
607
|
+
status: NotRequired[ClusterVersionStatusType]
|
|
608
|
+
|
|
584
609
|
DescribeEksAnywhereSubscriptionRequestRequestTypeDef = TypedDict(
|
|
585
610
|
"DescribeEksAnywhereSubscriptionRequestRequestTypeDef",
|
|
586
611
|
{
|
|
@@ -961,6 +986,11 @@ class DeprecationDetailTypeDef(TypedDict):
|
|
|
961
986
|
class ClusterHealthTypeDef(TypedDict):
|
|
962
987
|
issues: NotRequired[list[ClusterIssueTypeDef]]
|
|
963
988
|
|
|
989
|
+
class DescribeClusterVersionsResponseTypeDef(TypedDict):
|
|
990
|
+
clusterVersions: list[ClusterVersionInformationTypeDef]
|
|
991
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
992
|
+
nextToken: NotRequired[str]
|
|
993
|
+
|
|
964
994
|
class RegisterClusterRequestRequestTypeDef(TypedDict):
|
|
965
995
|
name: str
|
|
966
996
|
connectorConfig: ConnectorConfigRequestTypeDef
|
|
@@ -1085,6 +1115,14 @@ DescribeAddonVersionsRequestPaginateTypeDef = TypedDict(
|
|
|
1085
1115
|
},
|
|
1086
1116
|
)
|
|
1087
1117
|
|
|
1118
|
+
class DescribeClusterVersionsRequestPaginateTypeDef(TypedDict):
|
|
1119
|
+
clusterType: NotRequired[str]
|
|
1120
|
+
defaultOnly: NotRequired[bool]
|
|
1121
|
+
includeAll: NotRequired[bool]
|
|
1122
|
+
clusterVersions: NotRequired[Sequence[str]]
|
|
1123
|
+
status: NotRequired[ClusterVersionStatusType]
|
|
1124
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1125
|
+
|
|
1088
1126
|
class ListAccessEntriesRequestPaginateTypeDef(TypedDict):
|
|
1089
1127
|
clusterName: str
|
|
1090
1128
|
associatedPolicyArn: NotRequired[str]
|
mypy_boto3_eks/version.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mypy-boto3-eks
|
|
3
|
-
Version: 1.35.
|
|
4
|
-
Summary: Type annotations for boto3 EKS 1.35.
|
|
3
|
+
Version: 1.35.87
|
|
4
|
+
Summary: Type annotations for boto3 EKS 1.35.87 service generated with mypy-boto3-builder 8.7.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
|
|
@@ -43,7 +43,7 @@ Requires-Dist: typing-extensions>=4.1.0; python_version < "3.12"
|
|
|
43
43
|
|
|
44
44
|

|
|
45
45
|
|
|
46
|
-
Type annotations for [boto3 EKS 1.35.
|
|
46
|
+
Type annotations for [boto3 EKS 1.35.87](https://pypi.org/project/boto3/)
|
|
47
47
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
48
48
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
49
49
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -106,7 +106,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
106
106
|
isolation.
|
|
107
107
|
|
|
108
108
|
1. Run mypy-boto3-builder in your package root directory:
|
|
109
|
-
`uvx --with 'boto3==1.35.
|
|
109
|
+
`uvx --with 'boto3==1.35.87' mypy_boto3_builder`
|
|
110
110
|
2. Select `boto3-stubs` AWS SDK.
|
|
111
111
|
3. Add `EKS` service.
|
|
112
112
|
4. Use provided commands to install generated packages.
|
|
@@ -340,6 +340,7 @@ from boto3.session import Session
|
|
|
340
340
|
from mypy_boto3_eks import EKSClient
|
|
341
341
|
from mypy_boto3_eks.paginator import (
|
|
342
342
|
DescribeAddonVersionsPaginator,
|
|
343
|
+
DescribeClusterVersionsPaginator,
|
|
343
344
|
ListAccessEntriesPaginator,
|
|
344
345
|
ListAccessPoliciesPaginator,
|
|
345
346
|
ListAddonsPaginator,
|
|
@@ -361,6 +362,9 @@ client: EKSClient = Session().client("eks")
|
|
|
361
362
|
describe_addon_versions_paginator: DescribeAddonVersionsPaginator = client.get_paginator(
|
|
362
363
|
"describe_addon_versions"
|
|
363
364
|
)
|
|
365
|
+
describe_cluster_versions_paginator: DescribeClusterVersionsPaginator = client.get_paginator(
|
|
366
|
+
"describe_cluster_versions"
|
|
367
|
+
)
|
|
364
368
|
list_access_entries_paginator: ListAccessEntriesPaginator = client.get_paginator(
|
|
365
369
|
"list_access_entries"
|
|
366
370
|
)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
mypy_boto3_eks/__init__.py,sha256=BJxWwZMf3_mckreWS9llc6DssHcP8954L9IRnQEUEN8,4989
|
|
2
|
+
mypy_boto3_eks/__init__.pyi,sha256=lIDjDX7nwJ-PSzKE6Vtdv0r18BdRet8WLiw8Tm60Cpc,4988
|
|
3
|
+
mypy_boto3_eks/__main__.py,sha256=LccrMk5OPdJY2plLnHmzgsobVYNd1cXpjHlR6TnqOrU,967
|
|
4
|
+
mypy_boto3_eks/client.py,sha256=X8XFKNLjOMVtXMDn5eHhdWMK2RNhKzCVBUme1EghAuw,49961
|
|
5
|
+
mypy_boto3_eks/client.pyi,sha256=Z1ITE0fqnmwOqHoae-8Uoa8Ssu56nV4BNPSqAJQBhh8,49958
|
|
6
|
+
mypy_boto3_eks/literals.py,sha256=loKQUnVEMhwmbw0wJleTW7ukRgJlzUo6E-Qgkik-_ks,19158
|
|
7
|
+
mypy_boto3_eks/literals.pyi,sha256=Q3ySKw4vYWhpuW6tUhiI1jGUv1quDDl_Nv-2Ln9roLQ,19156
|
|
8
|
+
mypy_boto3_eks/paginator.py,sha256=6w5ztf948YrIHwoFIZkQNnbhVlDVwpNESVC-bu3MOwU,20481
|
|
9
|
+
mypy_boto3_eks/paginator.pyi,sha256=QR-sFh3tKoBaFBIqzn7eCVnkAwcm_uXgzGNy0uW2sHc,20438
|
|
10
|
+
mypy_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_eks/type_defs.py,sha256=VU4TOVKZaUosgUm85xKD12WU52gxNxjRejJEQzW0fS8,55604
|
|
12
|
+
mypy_boto3_eks/type_defs.pyi,sha256=8PdvAA2GkC0DGSoYBK_K-7UycaGx7sFWq3dZakDEUQ0,55378
|
|
13
|
+
mypy_boto3_eks/version.py,sha256=llkYdzVL-lBS7MVa7Af7LmykMnhfk_q9S4EthMGyjco,93
|
|
14
|
+
mypy_boto3_eks/waiter.py,sha256=b2JbfeXUPoIMzoIrQddfoXz5E_1_koI6cAKqs8PK6Do,8461
|
|
15
|
+
mypy_boto3_eks/waiter.pyi,sha256=KmQ0V-iy-S1kj_l_SX5daw-KyIkqALGZQMzMYavWTC4,8444
|
|
16
|
+
mypy_boto3_eks-1.35.87.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
17
|
+
mypy_boto3_eks-1.35.87.dist-info/METADATA,sha256=aNTy7z4q1TrMj0HzDb8QsXUkKWIV4ooNfK-W9E8mWRs,17631
|
|
18
|
+
mypy_boto3_eks-1.35.87.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
19
|
+
mypy_boto3_eks-1.35.87.dist-info/top_level.txt,sha256=WzyqlAH5WFvCFI-LKEMwG_Khgagcx_dFpnoibGYNbA0,15
|
|
20
|
+
mypy_boto3_eks-1.35.87.dist-info/RECORD,,
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
mypy_boto3_eks/__init__.py,sha256=jFVUXeLoad7MEcujD_IzbWsthXmaDeDIHTMXeiBEnus,4743
|
|
2
|
-
mypy_boto3_eks/__init__.pyi,sha256=FZEpmKxAATrcpUAICEJ3rOJMJADPR7MZWMgXZ2Fnk_g,4742
|
|
3
|
-
mypy_boto3_eks/__main__.py,sha256=dnbOCDFWY-VdIlShDLGw12bazazclgFUNvAO7db_ltI,967
|
|
4
|
-
mypy_boto3_eks/client.py,sha256=sjrGK-eUdGOxFQXQLP4KdaepUuG-nBq2h9GMf-uO0Ag,48753
|
|
5
|
-
mypy_boto3_eks/client.pyi,sha256=ejQE_kbDxQUAUuLXbcgTLhakWO0-rYwhlJGP-pfUgoI,48750
|
|
6
|
-
mypy_boto3_eks/literals.py,sha256=hQ_OHXR1GBzSDNTTPXQyfgik35emgoTKVNh9Gi0ZSPc,18883
|
|
7
|
-
mypy_boto3_eks/literals.pyi,sha256=NO3FczjuJbTT0uFmSc5lADevKpsoAFWDif5daHJtPFk,18881
|
|
8
|
-
mypy_boto3_eks/paginator.py,sha256=czW6iVnPyp1gDzICwGUzCWVprYnAgevn54UIWaZUdNU,18994
|
|
9
|
-
mypy_boto3_eks/paginator.pyi,sha256=WIGPNDTQvmr6tbMjooznD239-6_aOp073uwSHpNMxb4,18954
|
|
10
|
-
mypy_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_eks/type_defs.py,sha256=-2ejQY47jXlNE2UQem6vcM9i80Im3G22A_D0O323ubA,54085
|
|
12
|
-
mypy_boto3_eks/type_defs.pyi,sha256=nEB3BVXNRYE75yLe4Vf6ciO-kJVEnJHnlNnfmhfGyY8,53863
|
|
13
|
-
mypy_boto3_eks/version.py,sha256=R7ca4mwTpgac6S4rPbB0dyM2ChqlwVrwpVhiVVMCC_k,93
|
|
14
|
-
mypy_boto3_eks/waiter.py,sha256=b2JbfeXUPoIMzoIrQddfoXz5E_1_koI6cAKqs8PK6Do,8461
|
|
15
|
-
mypy_boto3_eks/waiter.pyi,sha256=KmQ0V-iy-S1kj_l_SX5daw-KyIkqALGZQMzMYavWTC4,8444
|
|
16
|
-
mypy_boto3_eks-1.35.86.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
17
|
-
mypy_boto3_eks-1.35.86.dist-info/METADATA,sha256=uB-ZjQyzcKNjWbsCI9gqvSM10x4C-JwgQgGTSlIvvgA,17465
|
|
18
|
-
mypy_boto3_eks-1.35.86.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
19
|
-
mypy_boto3_eks-1.35.86.dist-info/top_level.txt,sha256=WzyqlAH5WFvCFI-LKEMwG_Khgagcx_dFpnoibGYNbA0,15
|
|
20
|
-
mypy_boto3_eks-1.35.86.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|