types-boto3-eks 1.35.81__py3-none-any.whl → 1.35.86__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.
@@ -4,4 +4,4 @@ Source of truth for version.
4
4
  Copyright 2024 Vlad Emelianov
5
5
  """
6
6
 
7
- __version__ = "1.35.81"
7
+ __version__ = "1.35.86"
types_boto3_eks/waiter.py CHANGED
@@ -1,7 +1,7 @@
1
1
  """
2
2
  Type annotations for eks service client waiters.
3
3
 
4
- [Open documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/)
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/)
5
5
 
6
6
  Usage::
7
7
 
@@ -36,19 +36,17 @@ Usage::
36
36
  Copyright 2024 Vlad Emelianov
37
37
  """
38
38
 
39
+ from __future__ import annotations
40
+
39
41
  import sys
40
42
 
41
43
  from botocore.waiter import Waiter
42
44
 
43
45
  from .type_defs import (
44
- DescribeAddonRequestAddonActiveWaitTypeDef,
45
- DescribeAddonRequestAddonDeletedWaitTypeDef,
46
- DescribeClusterRequestClusterActiveWaitTypeDef,
47
- DescribeClusterRequestClusterDeletedWaitTypeDef,
48
- DescribeFargateProfileRequestFargateProfileActiveWaitTypeDef,
49
- DescribeFargateProfileRequestFargateProfileDeletedWaitTypeDef,
50
- DescribeNodegroupRequestNodegroupActiveWaitTypeDef,
51
- DescribeNodegroupRequestNodegroupDeletedWaitTypeDef,
46
+ DescribeAddonRequestWaitTypeDef,
47
+ DescribeClusterRequestWaitTypeDef,
48
+ DescribeFargateProfileRequestWaitTypeDef,
49
+ DescribeNodegroupRequestWaitTypeDef,
52
50
  )
53
51
 
54
52
  if sys.version_info >= (3, 12):
@@ -75,7 +73,9 @@ class AddonActiveWaiter(Waiter):
75
73
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#addonactivewaiter)
76
74
  """
77
75
 
78
- def wait(self, **kwargs: Unpack[DescribeAddonRequestAddonActiveWaitTypeDef]) -> None:
76
+ def wait( # type: ignore[override]
77
+ self, **kwargs: Unpack[DescribeAddonRequestWaitTypeDef]
78
+ ) -> None:
79
79
  """
80
80
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/AddonActive.html#EKS.Waiter.AddonActive.wait)
81
81
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#addonactivewaiter)
@@ -88,7 +88,9 @@ class AddonDeletedWaiter(Waiter):
88
88
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#addondeletedwaiter)
89
89
  """
90
90
 
91
- def wait(self, **kwargs: Unpack[DescribeAddonRequestAddonDeletedWaitTypeDef]) -> None:
91
+ def wait( # type: ignore[override]
92
+ self, **kwargs: Unpack[DescribeAddonRequestWaitTypeDef]
93
+ ) -> None:
92
94
  """
93
95
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/AddonDeleted.html#EKS.Waiter.AddonDeleted.wait)
94
96
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#addondeletedwaiter)
@@ -101,7 +103,9 @@ class ClusterActiveWaiter(Waiter):
101
103
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#clusteractivewaiter)
102
104
  """
103
105
 
104
- def wait(self, **kwargs: Unpack[DescribeClusterRequestClusterActiveWaitTypeDef]) -> None:
106
+ def wait( # type: ignore[override]
107
+ self, **kwargs: Unpack[DescribeClusterRequestWaitTypeDef]
108
+ ) -> None:
105
109
  """
106
110
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/ClusterActive.html#EKS.Waiter.ClusterActive.wait)
107
111
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#clusteractivewaiter)
@@ -114,7 +118,9 @@ class ClusterDeletedWaiter(Waiter):
114
118
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#clusterdeletedwaiter)
115
119
  """
116
120
 
117
- def wait(self, **kwargs: Unpack[DescribeClusterRequestClusterDeletedWaitTypeDef]) -> None:
121
+ def wait( # type: ignore[override]
122
+ self, **kwargs: Unpack[DescribeClusterRequestWaitTypeDef]
123
+ ) -> None:
118
124
  """
119
125
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/ClusterDeleted.html#EKS.Waiter.ClusterDeleted.wait)
120
126
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#clusterdeletedwaiter)
@@ -127,8 +133,8 @@ class FargateProfileActiveWaiter(Waiter):
127
133
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#fargateprofileactivewaiter)
128
134
  """
129
135
 
130
- def wait(
131
- self, **kwargs: Unpack[DescribeFargateProfileRequestFargateProfileActiveWaitTypeDef]
136
+ def wait( # type: ignore[override]
137
+ self, **kwargs: Unpack[DescribeFargateProfileRequestWaitTypeDef]
132
138
  ) -> None:
133
139
  """
134
140
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/FargateProfileActive.html#EKS.Waiter.FargateProfileActive.wait)
@@ -142,8 +148,8 @@ class FargateProfileDeletedWaiter(Waiter):
142
148
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#fargateprofiledeletedwaiter)
143
149
  """
144
150
 
145
- def wait(
146
- self, **kwargs: Unpack[DescribeFargateProfileRequestFargateProfileDeletedWaitTypeDef]
151
+ def wait( # type: ignore[override]
152
+ self, **kwargs: Unpack[DescribeFargateProfileRequestWaitTypeDef]
147
153
  ) -> None:
148
154
  """
149
155
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/FargateProfileDeleted.html#EKS.Waiter.FargateProfileDeleted.wait)
@@ -157,7 +163,9 @@ class NodegroupActiveWaiter(Waiter):
157
163
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#nodegroupactivewaiter)
158
164
  """
159
165
 
160
- def wait(self, **kwargs: Unpack[DescribeNodegroupRequestNodegroupActiveWaitTypeDef]) -> None:
166
+ def wait( # type: ignore[override]
167
+ self, **kwargs: Unpack[DescribeNodegroupRequestWaitTypeDef]
168
+ ) -> None:
161
169
  """
162
170
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/NodegroupActive.html#EKS.Waiter.NodegroupActive.wait)
163
171
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#nodegroupactivewaiter)
@@ -170,7 +178,9 @@ class NodegroupDeletedWaiter(Waiter):
170
178
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#nodegroupdeletedwaiter)
171
179
  """
172
180
 
173
- def wait(self, **kwargs: Unpack[DescribeNodegroupRequestNodegroupDeletedWaitTypeDef]) -> None:
181
+ def wait( # type: ignore[override]
182
+ self, **kwargs: Unpack[DescribeNodegroupRequestWaitTypeDef]
183
+ ) -> None:
174
184
  """
175
185
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/NodegroupDeleted.html#EKS.Waiter.NodegroupDeleted.wait)
176
186
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#nodegroupdeletedwaiter)
@@ -1,7 +1,7 @@
1
1
  """
2
2
  Type annotations for eks service client waiters.
3
3
 
4
- [Open documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/)
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/)
5
5
 
6
6
  Usage::
7
7
 
@@ -36,19 +36,17 @@ Usage::
36
36
  Copyright 2024 Vlad Emelianov
37
37
  """
38
38
 
39
+ from __future__ import annotations
40
+
39
41
  import sys
40
42
 
41
43
  from botocore.waiter import Waiter
42
44
 
43
45
  from .type_defs import (
44
- DescribeAddonRequestAddonActiveWaitTypeDef,
45
- DescribeAddonRequestAddonDeletedWaitTypeDef,
46
- DescribeClusterRequestClusterActiveWaitTypeDef,
47
- DescribeClusterRequestClusterDeletedWaitTypeDef,
48
- DescribeFargateProfileRequestFargateProfileActiveWaitTypeDef,
49
- DescribeFargateProfileRequestFargateProfileDeletedWaitTypeDef,
50
- DescribeNodegroupRequestNodegroupActiveWaitTypeDef,
51
- DescribeNodegroupRequestNodegroupDeletedWaitTypeDef,
46
+ DescribeAddonRequestWaitTypeDef,
47
+ DescribeClusterRequestWaitTypeDef,
48
+ DescribeFargateProfileRequestWaitTypeDef,
49
+ DescribeNodegroupRequestWaitTypeDef,
52
50
  )
53
51
 
54
52
  if sys.version_info >= (3, 12):
@@ -72,7 +70,9 @@ class AddonActiveWaiter(Waiter):
72
70
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/AddonActive.html#EKS.Waiter.AddonActive)
73
71
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#addonactivewaiter)
74
72
  """
75
- def wait(self, **kwargs: Unpack[DescribeAddonRequestAddonActiveWaitTypeDef]) -> None:
73
+ def wait( # type: ignore[override]
74
+ self, **kwargs: Unpack[DescribeAddonRequestWaitTypeDef]
75
+ ) -> None:
76
76
  """
77
77
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/AddonActive.html#EKS.Waiter.AddonActive.wait)
78
78
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#addonactivewaiter)
@@ -83,7 +83,9 @@ class AddonDeletedWaiter(Waiter):
83
83
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/AddonDeleted.html#EKS.Waiter.AddonDeleted)
84
84
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#addondeletedwaiter)
85
85
  """
86
- def wait(self, **kwargs: Unpack[DescribeAddonRequestAddonDeletedWaitTypeDef]) -> None:
86
+ def wait( # type: ignore[override]
87
+ self, **kwargs: Unpack[DescribeAddonRequestWaitTypeDef]
88
+ ) -> None:
87
89
  """
88
90
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/AddonDeleted.html#EKS.Waiter.AddonDeleted.wait)
89
91
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#addondeletedwaiter)
@@ -94,7 +96,9 @@ class ClusterActiveWaiter(Waiter):
94
96
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/ClusterActive.html#EKS.Waiter.ClusterActive)
95
97
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#clusteractivewaiter)
96
98
  """
97
- def wait(self, **kwargs: Unpack[DescribeClusterRequestClusterActiveWaitTypeDef]) -> None:
99
+ def wait( # type: ignore[override]
100
+ self, **kwargs: Unpack[DescribeClusterRequestWaitTypeDef]
101
+ ) -> None:
98
102
  """
99
103
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/ClusterActive.html#EKS.Waiter.ClusterActive.wait)
100
104
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#clusteractivewaiter)
@@ -105,7 +109,9 @@ class ClusterDeletedWaiter(Waiter):
105
109
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/ClusterDeleted.html#EKS.Waiter.ClusterDeleted)
106
110
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#clusterdeletedwaiter)
107
111
  """
108
- def wait(self, **kwargs: Unpack[DescribeClusterRequestClusterDeletedWaitTypeDef]) -> None:
112
+ def wait( # type: ignore[override]
113
+ self, **kwargs: Unpack[DescribeClusterRequestWaitTypeDef]
114
+ ) -> None:
109
115
  """
110
116
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/ClusterDeleted.html#EKS.Waiter.ClusterDeleted.wait)
111
117
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#clusterdeletedwaiter)
@@ -116,8 +122,8 @@ class FargateProfileActiveWaiter(Waiter):
116
122
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/FargateProfileActive.html#EKS.Waiter.FargateProfileActive)
117
123
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#fargateprofileactivewaiter)
118
124
  """
119
- def wait(
120
- self, **kwargs: Unpack[DescribeFargateProfileRequestFargateProfileActiveWaitTypeDef]
125
+ def wait( # type: ignore[override]
126
+ self, **kwargs: Unpack[DescribeFargateProfileRequestWaitTypeDef]
121
127
  ) -> None:
122
128
  """
123
129
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/FargateProfileActive.html#EKS.Waiter.FargateProfileActive.wait)
@@ -129,8 +135,8 @@ class FargateProfileDeletedWaiter(Waiter):
129
135
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/FargateProfileDeleted.html#EKS.Waiter.FargateProfileDeleted)
130
136
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#fargateprofiledeletedwaiter)
131
137
  """
132
- def wait(
133
- self, **kwargs: Unpack[DescribeFargateProfileRequestFargateProfileDeletedWaitTypeDef]
138
+ def wait( # type: ignore[override]
139
+ self, **kwargs: Unpack[DescribeFargateProfileRequestWaitTypeDef]
134
140
  ) -> None:
135
141
  """
136
142
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/FargateProfileDeleted.html#EKS.Waiter.FargateProfileDeleted.wait)
@@ -142,7 +148,9 @@ class NodegroupActiveWaiter(Waiter):
142
148
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/NodegroupActive.html#EKS.Waiter.NodegroupActive)
143
149
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#nodegroupactivewaiter)
144
150
  """
145
- def wait(self, **kwargs: Unpack[DescribeNodegroupRequestNodegroupActiveWaitTypeDef]) -> None:
151
+ def wait( # type: ignore[override]
152
+ self, **kwargs: Unpack[DescribeNodegroupRequestWaitTypeDef]
153
+ ) -> None:
146
154
  """
147
155
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/NodegroupActive.html#EKS.Waiter.NodegroupActive.wait)
148
156
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#nodegroupactivewaiter)
@@ -153,7 +161,9 @@ class NodegroupDeletedWaiter(Waiter):
153
161
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/NodegroupDeleted.html#EKS.Waiter.NodegroupDeleted)
154
162
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#nodegroupdeletedwaiter)
155
163
  """
156
- def wait(self, **kwargs: Unpack[DescribeNodegroupRequestNodegroupDeletedWaitTypeDef]) -> None:
164
+ def wait( # type: ignore[override]
165
+ self, **kwargs: Unpack[DescribeNodegroupRequestWaitTypeDef]
166
+ ) -> None:
157
167
  """
158
168
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/NodegroupDeleted.html#EKS.Waiter.NodegroupDeleted.wait)
159
169
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#nodegroupdeletedwaiter)
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: types-boto3-eks
3
- Version: 1.35.81
4
- Summary: Type annotations for boto3 EKS 1.35.81 service generated with mypy-boto3-builder 8.6.3
3
+ Version: 1.35.86
4
+ Summary: Type annotations for boto3 EKS 1.35.86 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
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
45
45
 
46
- Type annotations for [boto3 EKS 1.35.81](https://pypi.org/project/boto3/)
46
+ Type annotations for [boto3 EKS 1.35.86](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/),
@@ -52,7 +52,7 @@ compatible with [VSCode](https://code.visualstudio.com/),
52
52
  [pyright](https://github.com/microsoft/pyright) and other tools.
53
53
 
54
54
  Generated with
55
- [mypy-boto3-builder 8.6.3](https://github.com/youtype/mypy_boto3_builder).
55
+ [mypy-boto3-builder 8.7.0](https://github.com/youtype/mypy_boto3_builder).
56
56
 
57
57
  More information can be found on
58
58
  [types-boto3](https://pypi.org/project/types-boto3/) page and in
@@ -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.81' mypy_boto3_builder`
109
+ `uvx --with 'boto3==1.35.86' mypy_boto3_builder`
110
110
  2. Select `boto3` AWS SDK.
111
111
  3. Add `EKS` service.
112
112
  4. Use provided commands to install generated packages.
@@ -0,0 +1,20 @@
1
+ types_boto3_eks/__init__.py,sha256=SmC93edEdUadznWdF8mLCazlD24F2BV1hRVSplPto0A,4744
2
+ types_boto3_eks/__init__.pyi,sha256=Pjk7LgEl2-h-GrRHSIs7LtLb-2QAe4TYfU4TRbAxFYA,4743
3
+ types_boto3_eks/__main__.py,sha256=avxMBUMo0mk1fBnOn8BSKa5VeLXnnuVSwASmiH0YHxo,968
4
+ types_boto3_eks/client.py,sha256=2MEjYNBQXD7W01kM_6_oJSfIK3kP2MGsldkjOWn2QiM,48836
5
+ types_boto3_eks/client.pyi,sha256=zBBvXmhgSzP9V9jGbOW4wLCnkdOho8SEyQRe9Y4aG7w,48833
6
+ types_boto3_eks/literals.py,sha256=TN5aDXn2Dp2NnVPkPZwRoqkBlnx6gShkFjdSYIUZJfo,18885
7
+ types_boto3_eks/literals.pyi,sha256=p_2esFslNckRksgtwBJtoTRmL5OmWzGhQ2q40QLpwg4,18883
8
+ types_boto3_eks/paginator.py,sha256=YPryo-86UGN9aXwMNwulR5BQ1yJn7PRLMxCPjzTrfVc,19023
9
+ types_boto3_eks/paginator.pyi,sha256=OXEGq_q9OpG3ffmFeEydxy3TQWVZ3gGQv78okxb0_gI,18983
10
+ types_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ types_boto3_eks/type_defs.py,sha256=tGiRDs_fGBWYEwlK5a0r2feB1qIXuvqz2vy7eShUEi8,54087
12
+ types_boto3_eks/type_defs.pyi,sha256=QG2KXdlDBlWXWBJ-nT1nfCcX8_hT4gjamdKyEiyTCQo,53865
13
+ types_boto3_eks/version.py,sha256=R7ca4mwTpgac6S4rPbB0dyM2ChqlwVrwpVhiVVMCC_k,93
14
+ types_boto3_eks/waiter.py,sha256=erpkLRTNWP-4lKabqHbPX4QeudOdXd1IAcn-mHG88a4,8480
15
+ types_boto3_eks/waiter.pyi,sha256=timHXPuRYObG5yPUmvuGuy4xNYRBLt2XqXHK7AWJSxE,8463
16
+ types_boto3_eks-1.35.86.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
17
+ types_boto3_eks-1.35.86.dist-info/METADATA,sha256=Jc7mPKgyeueuKtNQVtfwgGQMC_KGK8ZpU6GQS9S-bOw,17495
18
+ types_boto3_eks-1.35.86.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
19
+ types_boto3_eks-1.35.86.dist-info/top_level.txt,sha256=ZLKgic1D7dd5TUGtlRhAq-FEsE6DYeQws3VEG7aRhp4,16
20
+ types_boto3_eks-1.35.86.dist-info/RECORD,,
@@ -1,20 +0,0 @@
1
- types_boto3_eks/__init__.py,sha256=SmC93edEdUadznWdF8mLCazlD24F2BV1hRVSplPto0A,4744
2
- types_boto3_eks/__init__.pyi,sha256=Pjk7LgEl2-h-GrRHSIs7LtLb-2QAe4TYfU4TRbAxFYA,4743
3
- types_boto3_eks/__main__.py,sha256=9-9TQquNt0xGJWArwZaFbwQvBCIRrJY7ELHCCWj035I,934
4
- types_boto3_eks/client.py,sha256=q4XHnw3RB3_Y4L8NwgF3Cxq7VHxiz2oUbqEc5sc_fQE,47951
5
- types_boto3_eks/client.pyi,sha256=5sHAMEkAZMnFmpt5i7Jd8FJ6CPzMeb2DYfd7a1X7AE0,47947
6
- types_boto3_eks/literals.py,sha256=iSd9LMCwkvzX0IxdLyGv1zNQ01U7TmHiV721ccAu8xw,18870
7
- types_boto3_eks/literals.pyi,sha256=Y21xWphrkQQlL_x1Cd6Pl9HtLf6m_HLTJthV9O4PP-g,18868
8
- types_boto3_eks/paginator.py,sha256=dp4DqsqkA8PWVq3hhFTs2t15w_NXSaeEwGrTZTBZbCc,16693
9
- types_boto3_eks/paginator.pyi,sha256=Z1xA134bDE4_SEPMaAEXxE2NBablx8l4QbkIe5i3DWk,16664
10
- types_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- types_boto3_eks/type_defs.py,sha256=Lx3ladvjDan9xggxW6hd72r4UvOK2gWxy10ptoEcQB0,55331
12
- types_boto3_eks/type_defs.pyi,sha256=Cu-Gc5ilsQphHA-CTtUPADd9S1dcYDbg9oYHVXmzE1o,55106
13
- types_boto3_eks/version.py,sha256=43YQ076woionZM0aB5UwdorEF0QPSwqFdL8sU1y7tgU,93
14
- types_boto3_eks/waiter.py,sha256=0Rng0PIZ4ndd-_ATeNAjPQ9e_tNVShPEMAKEDnM_KHA,8564
15
- types_boto3_eks/waiter.pyi,sha256=my2xn08iZ0aiMdFmToDCdjXnQSovfA5MU9cp2jceu1w,8547
16
- types_boto3_eks-1.35.81.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
17
- types_boto3_eks-1.35.81.dist-info/METADATA,sha256=MrgooYJ_ZGf2WvoM7D0A1DXwpOLWn3vBO0Gyj1yAc58,17495
18
- types_boto3_eks-1.35.81.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
19
- types_boto3_eks-1.35.81.dist-info/top_level.txt,sha256=ZLKgic1D7dd5TUGtlRhAq-FEsE6DYeQws3VEG7aRhp4,16
20
- types_boto3_eks-1.35.81.dist-info/RECORD,,