mypy-boto3-eks 1.40.3__py3-none-any.whl → 1.40.19__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.
@@ -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.40.3\n"
16
- "Version: 1.40.3\n"
15
+ "Type annotations for boto3 EKS 1.40.19\n"
16
+ "Version: 1.40.19\n"
17
17
  "Builder version: 8.11.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.40.3\n")
29
+ sys.stdout.write("1.40.19\n")
30
30
 
31
31
 
32
32
  def main() -> None:
mypy_boto3_eks/client.py CHANGED
@@ -97,6 +97,8 @@ from .type_defs import (
97
97
  DescribeIdentityProviderConfigResponseTypeDef,
98
98
  DescribeInsightRequestTypeDef,
99
99
  DescribeInsightResponseTypeDef,
100
+ DescribeInsightsRefreshRequestTypeDef,
101
+ DescribeInsightsRefreshResponseTypeDef,
100
102
  DescribeNodegroupRequestTypeDef,
101
103
  DescribeNodegroupResponseTypeDef,
102
104
  DescribePodIdentityAssociationRequestTypeDef,
@@ -134,6 +136,8 @@ from .type_defs import (
134
136
  ListUpdatesResponseTypeDef,
135
137
  RegisterClusterRequestTypeDef,
136
138
  RegisterClusterResponseTypeDef,
139
+ StartInsightsRefreshRequestTypeDef,
140
+ StartInsightsRefreshResponseTypeDef,
137
141
  TagResourceRequestTypeDef,
138
142
  UntagResourceRequestTypeDef,
139
143
  UpdateAccessEntryRequestTypeDef,
@@ -514,6 +518,16 @@ class EKSClient(BaseClient):
514
518
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#describe_insight)
515
519
  """
516
520
 
521
+ def describe_insights_refresh(
522
+ self, **kwargs: Unpack[DescribeInsightsRefreshRequestTypeDef]
523
+ ) -> DescribeInsightsRefreshResponseTypeDef:
524
+ """
525
+ Returns the status of the latest on-demand cluster insights refresh operation.
526
+
527
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/describe_insights_refresh.html)
528
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#describe_insights_refresh)
529
+ """
530
+
517
531
  def describe_nodegroup(
518
532
  self, **kwargs: Unpack[DescribeNodegroupRequestTypeDef]
519
533
  ) -> DescribeNodegroupResponseTypeDef:
@@ -706,6 +720,17 @@ class EKSClient(BaseClient):
706
720
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#register_cluster)
707
721
  """
708
722
 
723
+ def start_insights_refresh(
724
+ self, **kwargs: Unpack[StartInsightsRefreshRequestTypeDef]
725
+ ) -> StartInsightsRefreshResponseTypeDef:
726
+ """
727
+ Initiates an on-demand refresh operation for cluster insights, getting the
728
+ latest analysis outside of the standard refresh schedule.
729
+
730
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/start_insights_refresh.html)
731
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#start_insights_refresh)
732
+ """
733
+
709
734
  def tag_resource(self, **kwargs: Unpack[TagResourceRequestTypeDef]) -> Dict[str, Any]:
710
735
  """
711
736
  Associates the specified tags to an Amazon EKS resource with the specified
mypy_boto3_eks/client.pyi CHANGED
@@ -97,6 +97,8 @@ from .type_defs import (
97
97
  DescribeIdentityProviderConfigResponseTypeDef,
98
98
  DescribeInsightRequestTypeDef,
99
99
  DescribeInsightResponseTypeDef,
100
+ DescribeInsightsRefreshRequestTypeDef,
101
+ DescribeInsightsRefreshResponseTypeDef,
100
102
  DescribeNodegroupRequestTypeDef,
101
103
  DescribeNodegroupResponseTypeDef,
102
104
  DescribePodIdentityAssociationRequestTypeDef,
@@ -134,6 +136,8 @@ from .type_defs import (
134
136
  ListUpdatesResponseTypeDef,
135
137
  RegisterClusterRequestTypeDef,
136
138
  RegisterClusterResponseTypeDef,
139
+ StartInsightsRefreshRequestTypeDef,
140
+ StartInsightsRefreshResponseTypeDef,
137
141
  TagResourceRequestTypeDef,
138
142
  UntagResourceRequestTypeDef,
139
143
  UpdateAccessEntryRequestTypeDef,
@@ -511,6 +515,16 @@ class EKSClient(BaseClient):
511
515
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#describe_insight)
512
516
  """
513
517
 
518
+ def describe_insights_refresh(
519
+ self, **kwargs: Unpack[DescribeInsightsRefreshRequestTypeDef]
520
+ ) -> DescribeInsightsRefreshResponseTypeDef:
521
+ """
522
+ Returns the status of the latest on-demand cluster insights refresh operation.
523
+
524
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/describe_insights_refresh.html)
525
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#describe_insights_refresh)
526
+ """
527
+
514
528
  def describe_nodegroup(
515
529
  self, **kwargs: Unpack[DescribeNodegroupRequestTypeDef]
516
530
  ) -> DescribeNodegroupResponseTypeDef:
@@ -703,6 +717,17 @@ class EKSClient(BaseClient):
703
717
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#register_cluster)
704
718
  """
705
719
 
720
+ def start_insights_refresh(
721
+ self, **kwargs: Unpack[StartInsightsRefreshRequestTypeDef]
722
+ ) -> StartInsightsRefreshResponseTypeDef:
723
+ """
724
+ Initiates an on-demand refresh operation for cluster insights, getting the
725
+ latest analysis outside of the standard refresh schedule.
726
+
727
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/start_insights_refresh.html)
728
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#start_insights_refresh)
729
+ """
730
+
706
731
  def tag_resource(self, **kwargs: Unpack[TagResourceRequestTypeDef]) -> Dict[str, Any]:
707
732
  """
708
733
  Associates the specified tags to an Amazon EKS resource with the specified
@@ -51,6 +51,7 @@ __all__ = (
51
51
  "FargateProfileIssueCodeType",
52
52
  "FargateProfileStatusType",
53
53
  "InsightStatusValueType",
54
+ "InsightsRefreshStatusType",
54
55
  "IpFamilyType",
55
56
  "ListAccessEntriesPaginatorName",
56
57
  "ListAccessPoliciesPaginatorName",
@@ -198,6 +199,7 @@ FargateProfileStatusType = Literal[
198
199
  "ACTIVE", "CREATE_FAILED", "CREATING", "DELETE_FAILED", "DELETING"
199
200
  ]
200
201
  InsightStatusValueType = Literal["ERROR", "PASSING", "UNKNOWN", "WARNING"]
202
+ InsightsRefreshStatusType = Literal["COMPLETED", "FAILED", "IN_PROGRESS"]
201
203
  IpFamilyType = Literal["ipv4", "ipv6"]
202
204
  ListAccessEntriesPaginatorName = Literal["list_access_entries"]
203
205
  ListAccessPoliciesPaginatorName = Literal["list_access_policies"]
@@ -357,8 +359,10 @@ ServiceName = Literal[
357
359
  "backup-gateway",
358
360
  "backupsearch",
359
361
  "batch",
362
+ "bcm-dashboards",
360
363
  "bcm-data-exports",
361
364
  "bcm-pricing-calculator",
365
+ "bcm-recommended-actions",
362
366
  "bedrock",
363
367
  "bedrock-agent",
364
368
  "bedrock-agent-runtime",
@@ -600,8 +604,6 @@ ServiceName = Literal[
600
604
  "omics",
601
605
  "opensearch",
602
606
  "opensearchserverless",
603
- "opsworks",
604
- "opsworkscm",
605
607
  "organizations",
606
608
  "osis",
607
609
  "outposts",
@@ -734,16 +736,7 @@ ServiceName = Literal[
734
736
  "xray",
735
737
  ]
736
738
  ResourceServiceName = Literal[
737
- "cloudformation",
738
- "cloudwatch",
739
- "dynamodb",
740
- "ec2",
741
- "glacier",
742
- "iam",
743
- "opsworks",
744
- "s3",
745
- "sns",
746
- "sqs",
739
+ "cloudformation", "cloudwatch", "dynamodb", "ec2", "glacier", "iam", "s3", "sns", "sqs"
747
740
  ]
748
741
  PaginatorName = Literal[
749
742
  "describe_addon_versions",
@@ -50,6 +50,7 @@ __all__ = (
50
50
  "FargateProfileIssueCodeType",
51
51
  "FargateProfileStatusType",
52
52
  "InsightStatusValueType",
53
+ "InsightsRefreshStatusType",
53
54
  "IpFamilyType",
54
55
  "ListAccessEntriesPaginatorName",
55
56
  "ListAccessPoliciesPaginatorName",
@@ -196,6 +197,7 @@ FargateProfileStatusType = Literal[
196
197
  "ACTIVE", "CREATE_FAILED", "CREATING", "DELETE_FAILED", "DELETING"
197
198
  ]
198
199
  InsightStatusValueType = Literal["ERROR", "PASSING", "UNKNOWN", "WARNING"]
200
+ InsightsRefreshStatusType = Literal["COMPLETED", "FAILED", "IN_PROGRESS"]
199
201
  IpFamilyType = Literal["ipv4", "ipv6"]
200
202
  ListAccessEntriesPaginatorName = Literal["list_access_entries"]
201
203
  ListAccessPoliciesPaginatorName = Literal["list_access_policies"]
@@ -355,8 +357,10 @@ ServiceName = Literal[
355
357
  "backup-gateway",
356
358
  "backupsearch",
357
359
  "batch",
360
+ "bcm-dashboards",
358
361
  "bcm-data-exports",
359
362
  "bcm-pricing-calculator",
363
+ "bcm-recommended-actions",
360
364
  "bedrock",
361
365
  "bedrock-agent",
362
366
  "bedrock-agent-runtime",
@@ -598,8 +602,6 @@ ServiceName = Literal[
598
602
  "omics",
599
603
  "opensearch",
600
604
  "opensearchserverless",
601
- "opsworks",
602
- "opsworkscm",
603
605
  "organizations",
604
606
  "osis",
605
607
  "outposts",
@@ -732,16 +734,7 @@ ServiceName = Literal[
732
734
  "xray",
733
735
  ]
734
736
  ResourceServiceName = Literal[
735
- "cloudformation",
736
- "cloudwatch",
737
- "dynamodb",
738
- "ec2",
739
- "glacier",
740
- "iam",
741
- "opsworks",
742
- "s3",
743
- "sns",
744
- "sqs",
737
+ "cloudformation", "cloudwatch", "dynamodb", "ec2", "glacier", "iam", "s3", "sns", "sqs"
745
738
  ]
746
739
  PaginatorName = Literal[
747
740
  "describe_addon_versions",
@@ -37,6 +37,7 @@ from .literals import (
37
37
  ErrorCodeType,
38
38
  FargateProfileIssueCodeType,
39
39
  FargateProfileStatusType,
40
+ InsightsRefreshStatusType,
40
41
  InsightStatusValueType,
41
42
  IpFamilyType,
42
43
  LogTypeType,
@@ -75,6 +76,8 @@ __all__ = (
75
76
  "AddonHealthTypeDef",
76
77
  "AddonInfoTypeDef",
77
78
  "AddonIssueTypeDef",
79
+ "AddonNamespaceConfigRequestTypeDef",
80
+ "AddonNamespaceConfigResponseTypeDef",
78
81
  "AddonPodIdentityAssociationsTypeDef",
79
82
  "AddonPodIdentityConfigurationTypeDef",
80
83
  "AddonTypeDef",
@@ -160,6 +163,8 @@ __all__ = (
160
163
  "DescribeIdentityProviderConfigResponseTypeDef",
161
164
  "DescribeInsightRequestTypeDef",
162
165
  "DescribeInsightResponseTypeDef",
166
+ "DescribeInsightsRefreshRequestTypeDef",
167
+ "DescribeInsightsRefreshResponseTypeDef",
163
168
  "DescribeNodegroupRequestTypeDef",
164
169
  "DescribeNodegroupRequestWaitExtraTypeDef",
165
170
  "DescribeNodegroupRequestWaitTypeDef",
@@ -271,6 +276,8 @@ __all__ = (
271
276
  "RemotePodNetworkTypeDef",
272
277
  "RemotePodNetworkUnionTypeDef",
273
278
  "ResponseMetadataTypeDef",
279
+ "StartInsightsRefreshRequestTypeDef",
280
+ "StartInsightsRefreshResponseTypeDef",
274
281
  "StorageConfigRequestTypeDef",
275
282
  "StorageConfigResponseTypeDef",
276
283
  "TagResourceRequestTypeDef",
@@ -365,6 +372,14 @@ class MarketplaceInformationTypeDef(TypedDict):
365
372
  productUrl: NotRequired[str]
366
373
 
367
374
 
375
+ class AddonNamespaceConfigRequestTypeDef(TypedDict):
376
+ namespace: NotRequired[str]
377
+
378
+
379
+ class AddonNamespaceConfigResponseTypeDef(TypedDict):
380
+ namespace: NotRequired[str]
381
+
382
+
368
383
  class AddonPodIdentityAssociationsTypeDef(TypedDict):
369
384
  serviceAccount: str
370
385
  roleArn: str
@@ -713,6 +728,10 @@ DescribeInsightRequestTypeDef = TypedDict(
713
728
  )
714
729
 
715
730
 
731
+ class DescribeInsightsRefreshRequestTypeDef(TypedDict):
732
+ clusterName: str
733
+
734
+
716
735
  class DescribeNodegroupRequestTypeDef(TypedDict):
717
736
  clusterName: str
718
737
  nodegroupName: str
@@ -937,6 +956,10 @@ class RemotePodNetworkTypeDef(TypedDict):
937
956
  cidrs: NotRequired[Sequence[str]]
938
957
 
939
958
 
959
+ class StartInsightsRefreshRequestTypeDef(TypedDict):
960
+ clusterName: str
961
+
962
+
940
963
  class TagResourceRequestTypeDef(TypedDict):
941
964
  resourceArn: str
942
965
  tags: Mapping[str, str]
@@ -1023,6 +1046,7 @@ class CreateAddonRequestTypeDef(TypedDict):
1023
1046
  tags: NotRequired[Mapping[str, str]]
1024
1047
  configurationValues: NotRequired[str]
1025
1048
  podIdentityAssociations: NotRequired[Sequence[AddonPodIdentityAssociationsTypeDef]]
1049
+ namespaceConfig: NotRequired[AddonNamespaceConfigRequestTypeDef]
1026
1050
 
1027
1051
 
1028
1052
  class UpdateAddonRequestTypeDef(TypedDict):
@@ -1063,6 +1087,14 @@ class DescribeAddonConfigurationResponseTypeDef(TypedDict):
1063
1087
  ResponseMetadata: ResponseMetadataTypeDef
1064
1088
 
1065
1089
 
1090
+ class DescribeInsightsRefreshResponseTypeDef(TypedDict):
1091
+ message: str
1092
+ status: InsightsRefreshStatusType
1093
+ startedAt: datetime
1094
+ endedAt: datetime
1095
+ ResponseMetadata: ResponseMetadataTypeDef
1096
+
1097
+
1066
1098
  class ListAccessEntriesResponseTypeDef(TypedDict):
1067
1099
  accessEntries: List[str]
1068
1100
  ResponseMetadata: ResponseMetadataTypeDef
@@ -1110,6 +1142,12 @@ class ListUpdatesResponseTypeDef(TypedDict):
1110
1142
  nextToken: NotRequired[str]
1111
1143
 
1112
1144
 
1145
+ class StartInsightsRefreshResponseTypeDef(TypedDict):
1146
+ message: str
1147
+ status: InsightsRefreshStatusType
1148
+ ResponseMetadata: ResponseMetadataTypeDef
1149
+
1150
+
1113
1151
  class UpdateAccessEntryResponseTypeDef(TypedDict):
1114
1152
  accessEntry: AccessEntryTypeDef
1115
1153
  ResponseMetadata: ResponseMetadataTypeDef
@@ -1540,6 +1578,7 @@ class AddonTypeDef(TypedDict):
1540
1578
  marketplaceInformation: NotRequired[MarketplaceInformationTypeDef]
1541
1579
  configurationValues: NotRequired[str]
1542
1580
  podIdentityAssociations: NotRequired[List[str]]
1581
+ namespaceConfig: NotRequired[AddonNamespaceConfigResponseTypeDef]
1543
1582
 
1544
1583
 
1545
1584
  AddonInfoTypeDef = TypedDict(
@@ -1551,6 +1590,7 @@ AddonInfoTypeDef = TypedDict(
1551
1590
  "publisher": NotRequired[str],
1552
1591
  "owner": NotRequired[str],
1553
1592
  "marketplaceInformation": NotRequired[MarketplaceInformationTypeDef],
1593
+ "defaultNamespace": NotRequired[str],
1554
1594
  },
1555
1595
  )
1556
1596
 
@@ -37,6 +37,7 @@ from .literals import (
37
37
  ErrorCodeType,
38
38
  FargateProfileIssueCodeType,
39
39
  FargateProfileStatusType,
40
+ InsightsRefreshStatusType,
40
41
  InsightStatusValueType,
41
42
  IpFamilyType,
42
43
  LogTypeType,
@@ -74,6 +75,8 @@ __all__ = (
74
75
  "AddonHealthTypeDef",
75
76
  "AddonInfoTypeDef",
76
77
  "AddonIssueTypeDef",
78
+ "AddonNamespaceConfigRequestTypeDef",
79
+ "AddonNamespaceConfigResponseTypeDef",
77
80
  "AddonPodIdentityAssociationsTypeDef",
78
81
  "AddonPodIdentityConfigurationTypeDef",
79
82
  "AddonTypeDef",
@@ -159,6 +162,8 @@ __all__ = (
159
162
  "DescribeIdentityProviderConfigResponseTypeDef",
160
163
  "DescribeInsightRequestTypeDef",
161
164
  "DescribeInsightResponseTypeDef",
165
+ "DescribeInsightsRefreshRequestTypeDef",
166
+ "DescribeInsightsRefreshResponseTypeDef",
162
167
  "DescribeNodegroupRequestTypeDef",
163
168
  "DescribeNodegroupRequestWaitExtraTypeDef",
164
169
  "DescribeNodegroupRequestWaitTypeDef",
@@ -270,6 +275,8 @@ __all__ = (
270
275
  "RemotePodNetworkTypeDef",
271
276
  "RemotePodNetworkUnionTypeDef",
272
277
  "ResponseMetadataTypeDef",
278
+ "StartInsightsRefreshRequestTypeDef",
279
+ "StartInsightsRefreshResponseTypeDef",
273
280
  "StorageConfigRequestTypeDef",
274
281
  "StorageConfigResponseTypeDef",
275
282
  "TagResourceRequestTypeDef",
@@ -356,6 +363,12 @@ class MarketplaceInformationTypeDef(TypedDict):
356
363
  productId: NotRequired[str]
357
364
  productUrl: NotRequired[str]
358
365
 
366
+ class AddonNamespaceConfigRequestTypeDef(TypedDict):
367
+ namespace: NotRequired[str]
368
+
369
+ class AddonNamespaceConfigResponseTypeDef(TypedDict):
370
+ namespace: NotRequired[str]
371
+
359
372
  class AddonPodIdentityAssociationsTypeDef(TypedDict):
360
373
  serviceAccount: str
361
374
  roleArn: str
@@ -652,6 +665,9 @@ DescribeInsightRequestTypeDef = TypedDict(
652
665
  },
653
666
  )
654
667
 
668
+ class DescribeInsightsRefreshRequestTypeDef(TypedDict):
669
+ clusterName: str
670
+
655
671
  class DescribeNodegroupRequestTypeDef(TypedDict):
656
672
  clusterName: str
657
673
  nodegroupName: str
@@ -840,6 +856,9 @@ class RemoteNodeNetworkTypeDef(TypedDict):
840
856
  class RemotePodNetworkTypeDef(TypedDict):
841
857
  cidrs: NotRequired[Sequence[str]]
842
858
 
859
+ class StartInsightsRefreshRequestTypeDef(TypedDict):
860
+ clusterName: str
861
+
843
862
  class TagResourceRequestTypeDef(TypedDict):
844
863
  resourceArn: str
845
864
  tags: Mapping[str, str]
@@ -914,6 +933,7 @@ class CreateAddonRequestTypeDef(TypedDict):
914
933
  tags: NotRequired[Mapping[str, str]]
915
934
  configurationValues: NotRequired[str]
916
935
  podIdentityAssociations: NotRequired[Sequence[AddonPodIdentityAssociationsTypeDef]]
936
+ namespaceConfig: NotRequired[AddonNamespaceConfigRequestTypeDef]
917
937
 
918
938
  class UpdateAddonRequestTypeDef(TypedDict):
919
939
  clusterName: str
@@ -948,6 +968,13 @@ class DescribeAddonConfigurationResponseTypeDef(TypedDict):
948
968
  podIdentityConfiguration: List[AddonPodIdentityConfigurationTypeDef]
949
969
  ResponseMetadata: ResponseMetadataTypeDef
950
970
 
971
+ class DescribeInsightsRefreshResponseTypeDef(TypedDict):
972
+ message: str
973
+ status: InsightsRefreshStatusType
974
+ startedAt: datetime
975
+ endedAt: datetime
976
+ ResponseMetadata: ResponseMetadataTypeDef
977
+
951
978
  class ListAccessEntriesResponseTypeDef(TypedDict):
952
979
  accessEntries: List[str]
953
980
  ResponseMetadata: ResponseMetadataTypeDef
@@ -987,6 +1014,11 @@ class ListUpdatesResponseTypeDef(TypedDict):
987
1014
  ResponseMetadata: ResponseMetadataTypeDef
988
1015
  nextToken: NotRequired[str]
989
1016
 
1017
+ class StartInsightsRefreshResponseTypeDef(TypedDict):
1018
+ message: str
1019
+ status: InsightsRefreshStatusType
1020
+ ResponseMetadata: ResponseMetadataTypeDef
1021
+
990
1022
  class UpdateAccessEntryResponseTypeDef(TypedDict):
991
1023
  accessEntry: AccessEntryTypeDef
992
1024
  ResponseMetadata: ResponseMetadataTypeDef
@@ -1354,6 +1386,7 @@ class AddonTypeDef(TypedDict):
1354
1386
  marketplaceInformation: NotRequired[MarketplaceInformationTypeDef]
1355
1387
  configurationValues: NotRequired[str]
1356
1388
  podIdentityAssociations: NotRequired[List[str]]
1389
+ namespaceConfig: NotRequired[AddonNamespaceConfigResponseTypeDef]
1357
1390
 
1358
1391
  AddonInfoTypeDef = TypedDict(
1359
1392
  "AddonInfoTypeDef",
@@ -1364,6 +1397,7 @@ AddonInfoTypeDef = TypedDict(
1364
1397
  "publisher": NotRequired[str],
1365
1398
  "owner": NotRequired[str],
1366
1399
  "marketplaceInformation": NotRequired[MarketplaceInformationTypeDef],
1400
+ "defaultNamespace": NotRequired[str],
1367
1401
  },
1368
1402
  )
1369
1403
 
mypy_boto3_eks/version.py CHANGED
@@ -4,4 +4,4 @@ Source of truth for version.
4
4
  Copyright 2025 Vlad Emelianov
5
5
  """
6
6
 
7
- __version__ = "1.40.3"
7
+ __version__ = "1.40.19"
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mypy-boto3-eks
3
- Version: 1.40.3
4
- Summary: Type annotations for boto3 EKS 1.40.3 service generated with mypy-boto3-builder 8.11.0
3
+ Version: 1.40.19
4
+ Summary: Type annotations for boto3 EKS 1.40.19 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
@@ -56,7 +56,7 @@ Dynamic: summary
56
56
 
57
57
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
58
58
 
59
- Type annotations for [boto3 EKS 1.40.3](https://pypi.org/project/boto3/)
59
+ Type annotations for [boto3 EKS 1.40.19](https://pypi.org/project/boto3/)
60
60
  compatible with [VSCode](https://code.visualstudio.com/),
61
61
  [PyCharm](https://www.jetbrains.com/pycharm/),
62
62
  [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.3' mypy-boto3-builder`
122
+ `uvx --with 'boto3==1.40.19' mypy-boto3-builder`
123
123
  2. Select `boto3-stubs` AWS SDK.
124
124
  3. Add `EKS` service.
125
125
  4. Use provided commands to install generated packages.
@@ -0,0 +1,20 @@
1
+ mypy_boto3_eks/__init__.py,sha256=2ny7DX2h2EqSXWmXoLROuwapCrk5WWG82Cytg9gBFoA,5066
2
+ mypy_boto3_eks/__init__.pyi,sha256=Vn_LcRXy2FU1PJjnQvnE8BMRwPFC8_X1P1UnZbFY2Zs,5065
3
+ mypy_boto3_eks/__main__.py,sha256=IGBq0i3om52h8f5ULL7LeJsh237xCJG5vjsaj30m0Hw,968
4
+ mypy_boto3_eks/client.py,sha256=6f3T0PMpvadHJc5d8LoI4sMtASANaHTzG2fqdrBJNb8,50749
5
+ mypy_boto3_eks/client.pyi,sha256=oL5qRC4OThaaPUq2trSllIo7scPxJacfiDk1DEkRmpg,50746
6
+ mypy_boto3_eks/literals.py,sha256=dWsvC0heojyQqdVTuCrXRXS4ft8T1uGn6fYjj-Z4oAI,19910
7
+ mypy_boto3_eks/literals.pyi,sha256=fSd1etLL_m8K5uxhRq4G2zPDYXF5yE4k9LayeY5sWn8,19908
8
+ mypy_boto3_eks/paginator.py,sha256=3yFhQFg-bh-hJOlMggBZeCd-xonLBWmXnBG1HRNiDL4,20481
9
+ mypy_boto3_eks/paginator.pyi,sha256=cn674ie8pGurK1SRRoZERdTd56gF2t7NGEOYhzN8Vp4,20438
10
+ mypy_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ mypy_boto3_eks/type_defs.py,sha256=-ZrsxYDC6Giz8okrAWVf8GCzcKCtFJZN3efHD-QkHGo,58128
12
+ mypy_boto3_eks/type_defs.pyi,sha256=sSmuBLOKAX9TsFeud5WqffvSWc6QhgGbY313KW_D-NE,57889
13
+ mypy_boto3_eks/version.py,sha256=cgjcciUPO8vyG6_ppiRSDc0Bm315Iv78OxYh5Mgno_g,93
14
+ mypy_boto3_eks/waiter.py,sha256=2vJjiTIw6nY3Kx4O2YIUk9MmTiHrf5ZZtPP8bOy_jd4,8664
15
+ mypy_boto3_eks/waiter.pyi,sha256=ZkIrAD-cdgf6kBhiCJShJLpjHyVyzZrxjBQ2yI3cVJ0,8647
16
+ mypy_boto3_eks-1.40.19.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
17
+ mypy_boto3_eks-1.40.19.dist-info/METADATA,sha256=WytkVVKDynWUFZht_LUmPtTyR4O1LqVwk1vGJbj_ZmU,18038
18
+ mypy_boto3_eks-1.40.19.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
19
+ mypy_boto3_eks-1.40.19.dist-info/top_level.txt,sha256=WzyqlAH5WFvCFI-LKEMwG_Khgagcx_dFpnoibGYNbA0,15
20
+ mypy_boto3_eks-1.40.19.dist-info/RECORD,,
@@ -1,20 +0,0 @@
1
- mypy_boto3_eks/__init__.py,sha256=2ny7DX2h2EqSXWmXoLROuwapCrk5WWG82Cytg9gBFoA,5066
2
- mypy_boto3_eks/__init__.pyi,sha256=Vn_LcRXy2FU1PJjnQvnE8BMRwPFC8_X1P1UnZbFY2Zs,5065
3
- mypy_boto3_eks/__main__.py,sha256=gzUwDbjvziMQjp0W11qxhJrqJ-rmbVJbSLwu5cvHGdk,965
4
- mypy_boto3_eks/client.py,sha256=NqhtmiaelO6gPDGNJUkv8Ds8537TWfOPVk9nbImqpao,49426
5
- mypy_boto3_eks/client.pyi,sha256=ycr-tlt3fZCCNh4th9TuOm7ZI2mYqaehpN7UaRl7_Qk,49423
6
- mypy_boto3_eks/literals.py,sha256=3MHDV-By_elF3Y8VcAXZulRNEyLLaMhm6o86lucBxlI,19833
7
- mypy_boto3_eks/literals.pyi,sha256=kcnqqxQiBO6Q6bXPAkburTfInvGnxdMaYK18UUaLyyg,19831
8
- mypy_boto3_eks/paginator.py,sha256=3yFhQFg-bh-hJOlMggBZeCd-xonLBWmXnBG1HRNiDL4,20481
9
- mypy_boto3_eks/paginator.pyi,sha256=cn674ie8pGurK1SRRoZERdTd56gF2t7NGEOYhzN8Vp4,20438
10
- mypy_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- mypy_boto3_eks/type_defs.py,sha256=uflx_ia-Uw_xv6sbxyAe7Bp363NCxkH4MaMq-DQuFVY,56958
12
- mypy_boto3_eks/type_defs.pyi,sha256=LsR7HOn1iW8FUiGxWvFGpNj8UZdAugPJB9Aef21Yx_Q,56725
13
- mypy_boto3_eks/version.py,sha256=ZaA0naREa9WFnH-K5V-P-k3aAPEqNIuS6J9mLa1hDFk,92
14
- mypy_boto3_eks/waiter.py,sha256=2vJjiTIw6nY3Kx4O2YIUk9MmTiHrf5ZZtPP8bOy_jd4,8664
15
- mypy_boto3_eks/waiter.pyi,sha256=ZkIrAD-cdgf6kBhiCJShJLpjHyVyzZrxjBQ2yI3cVJ0,8647
16
- mypy_boto3_eks-1.40.3.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
17
- mypy_boto3_eks-1.40.3.dist-info/METADATA,sha256=3QaWVav5XSSdaUoLVuFSV7Pf1kVk815HNcnkjsUyocU,18034
18
- mypy_boto3_eks-1.40.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
19
- mypy_boto3_eks-1.40.3.dist-info/top_level.txt,sha256=WzyqlAH5WFvCFI-LKEMwG_Khgagcx_dFpnoibGYNbA0,15
20
- mypy_boto3_eks-1.40.3.dist-info/RECORD,,