mypy-boto3-eks 1.35.57__py3-none-any.whl → 1.35.72__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.
@@ -57,6 +57,8 @@ Usage::
57
57
  list_pod_identity_associations_paginator: ListPodIdentityAssociationsPaginator = client.get_paginator("list_pod_identity_associations")
58
58
  list_updates_paginator: ListUpdatesPaginator = client.get_paginator("list_updates")
59
59
  ```
60
+
61
+ Copyright 2024 Vlad Emelianov
60
62
  """
61
63
 
62
64
  from .client import EKSClient
@@ -57,6 +57,8 @@ Usage::
57
57
  list_pod_identity_associations_paginator: ListPodIdentityAssociationsPaginator = client.get_paginator("list_pod_identity_associations")
58
58
  list_updates_paginator: ListUpdatesPaginator = client.get_paginator("list_updates")
59
59
  ```
60
+
61
+ Copyright 2024 Vlad Emelianov
60
62
  """
61
63
 
62
64
  from .client import EKSClient
@@ -1,5 +1,7 @@
1
1
  """
2
2
  Main CLI entrypoint.
3
+
4
+ Copyright 2024 Vlad Emelianov
3
5
  """
4
6
 
5
7
  import sys
@@ -10,11 +12,11 @@ def print_info() -> None:
10
12
  Print package info to stdout.
11
13
  """
12
14
  print(
13
- "Type annotations for boto3.EKS 1.35.57\n"
14
- "Version: 1.35.57\n"
15
- "Builder version: 8.2.1\n"
15
+ "Type annotations for boto3 EKS 1.35.72\n"
16
+ "Version: 1.35.72\n"
17
+ "Builder version: 8.5.0\n"
16
18
  "Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks//\n"
17
- "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS\n"
19
+ "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#eks\n"
18
20
  "Other services: https://pypi.org/project/boto3-stubs/\n"
19
21
  "Changelog: https://github.com/youtype/mypy_boto3_builder/releases"
20
22
  )
@@ -24,7 +26,7 @@ def print_version() -> None:
24
26
  """
25
27
  Print package version to stdout.
26
28
  """
27
- print("1.35.57")
29
+ print("1.35.72")
28
30
 
29
31
 
30
32
  def main() -> None: