mypy-boto3-eks 1.34.5__py3-none-any.whl → 1.34.53__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.
@@ -10,12 +10,13 @@ def print_info() -> None:
10
10
  Print package info to stdout.
11
11
  """
12
12
  print(
13
- "Type annotations for boto3.EKS 1.34.5\nVersion: 1.34.5\nBuilder version:"
14
- " 7.23.0\nDocs: "
15
- " https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks//\nBoto3 docs: "
16
- " https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS\nOther"
17
- " services: https://pypi.org/project/boto3-stubs/\nChangelog: "
18
- " https://github.com/youtype/mypy_boto3_builder/releases"
13
+ "Type annotations for boto3.EKS 1.34.53\n"
14
+ "Version: 1.34.53\n"
15
+ "Builder version: 7.23.2\n"
16
+ "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"
18
+ "Other services: https://pypi.org/project/boto3-stubs/\n"
19
+ "Changelog: https://github.com/youtype/mypy_boto3_builder/releases"
19
20
  )
20
21
 
21
22
 
@@ -23,7 +24,7 @@ def print_version() -> None:
23
24
  """
24
25
  Print package version to stdout.
25
26
  """
26
- print("1.34.5")
27
+ print("1.34.53")
27
28
 
28
29
 
29
30
  def main() -> None:
@@ -8,7 +8,7 @@ Usage::
8
8
  ```python
9
9
  from mypy_boto3_eks.literals import AMITypesType
10
10
 
11
- data: AMITypesType = "AL2_ARM_64"
11
+ data: AMITypesType = "AL2023_ARM_64_STANDARD"
12
12
  ```
13
13
  """
14
14
 
@@ -76,6 +76,8 @@ __all__ = (
76
76
  )
77
77
 
78
78
  AMITypesType = Literal[
79
+ "AL2023_ARM_64_STANDARD",
80
+ "AL2023_x86_64_STANDARD",
79
81
  "AL2_ARM_64",
80
82
  "AL2_x86_64",
81
83
  "AL2_x86_64_GPU",
@@ -299,6 +301,7 @@ ServiceName = Literal[
299
301
  "appstream",
300
302
  "appsync",
301
303
  "arc-zonal-shift",
304
+ "artifact",
302
305
  "athena",
303
306
  "auditmanager",
304
307
  "autoscaling",
@@ -317,6 +320,7 @@ ServiceName = Literal[
317
320
  "braket",
318
321
  "budgets",
319
322
  "ce",
323
+ "chatbot",
320
324
  "chime",
321
325
  "chime-sdk-identity",
322
326
  "chime-sdk-media-pipelines",
@@ -524,6 +528,7 @@ ServiceName = Literal[
524
528
  "neptunedata",
525
529
  "network-firewall",
526
530
  "networkmanager",
531
+ "networkmonitor",
527
532
  "nimble",
528
533
  "oam",
529
534
  "omics",
@@ -621,6 +626,7 @@ ServiceName = Literal[
621
626
  "stepfunctions",
622
627
  "storagegateway",
623
628
  "sts",
629
+ "supplychain",
624
630
  "support",
625
631
  "support-app",
626
632
  "swf",
@@ -8,7 +8,7 @@ Usage::
8
8
  ```python
9
9
  from mypy_boto3_eks.literals import AMITypesType
10
10
 
11
- data: AMITypesType = "AL2_ARM_64"
11
+ data: AMITypesType = "AL2023_ARM_64_STANDARD"
12
12
  ```
13
13
  """
14
14
 
@@ -76,6 +76,8 @@ __all__ = (
76
76
  )
77
77
 
78
78
  AMITypesType = Literal[
79
+ "AL2023_ARM_64_STANDARD",
80
+ "AL2023_x86_64_STANDARD",
79
81
  "AL2_ARM_64",
80
82
  "AL2_x86_64",
81
83
  "AL2_x86_64_GPU",
@@ -299,6 +301,7 @@ ServiceName = Literal[
299
301
  "appstream",
300
302
  "appsync",
301
303
  "arc-zonal-shift",
304
+ "artifact",
302
305
  "athena",
303
306
  "auditmanager",
304
307
  "autoscaling",
@@ -317,6 +320,7 @@ ServiceName = Literal[
317
320
  "braket",
318
321
  "budgets",
319
322
  "ce",
323
+ "chatbot",
320
324
  "chime",
321
325
  "chime-sdk-identity",
322
326
  "chime-sdk-media-pipelines",
@@ -524,6 +528,7 @@ ServiceName = Literal[
524
528
  "neptunedata",
525
529
  "network-firewall",
526
530
  "networkmanager",
531
+ "networkmonitor",
527
532
  "nimble",
528
533
  "oam",
529
534
  "omics",
@@ -621,6 +626,7 @@ ServiceName = Literal[
621
626
  "stepfunctions",
622
627
  "storagegateway",
623
628
  "sts",
629
+ "supplychain",
624
630
  "support",
625
631
  "support-app",
626
632
  "swf",
@@ -329,10 +329,10 @@ ResponseMetadataTypeDef = TypedDict(
329
329
  "ResponseMetadataTypeDef",
330
330
  {
331
331
  "RequestId": str,
332
- "HostId": str,
333
332
  "HTTPStatusCode": int,
334
333
  "HTTPHeaders": Dict[str, str],
335
334
  "RetryAttempts": int,
335
+ "HostId": NotRequired[str],
336
336
  },
337
337
  )
338
338
  OidcIdentityProviderConfigRequestTypeDef = TypedDict(
@@ -329,10 +329,10 @@ ResponseMetadataTypeDef = TypedDict(
329
329
  "ResponseMetadataTypeDef",
330
330
  {
331
331
  "RequestId": str,
332
- "HostId": str,
333
332
  "HTTPStatusCode": int,
334
333
  "HTTPHeaders": Dict[str, str],
335
334
  "RetryAttempts": int,
335
+ "HostId": NotRequired[str],
336
336
  },
337
337
  )
338
338
  OidcIdentityProviderConfigRequestTypeDef = TypedDict(
mypy_boto3_eks/version.py CHANGED
@@ -2,4 +2,4 @@
2
2
  Source of truth for version.
3
3
  """
4
4
 
5
- __version__ = "1.34.5"
5
+ __version__ = "1.34.53"
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2023 Vlad Emelianov
3
+ Copyright (c) 2024 Vlad Emelianov
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mypy-boto3-eks
3
- Version: 1.34.5
4
- Summary: Type annotations for boto3.EKS 1.34.5 service generated with mypy-boto3-builder 7.23.0
3
+ Version: 1.34.53
4
+ Summary: Type annotations for boto3.EKS 1.34.53 service generated with mypy-boto3-builder 7.23.2
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
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
44
44
 
45
45
  Type annotations for
46
- [boto3.EKS 1.34.5](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS)
46
+ [boto3.EKS 1.34.53](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS)
47
47
  service 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 @@ service compatible with [VSCode](https://code.visualstudio.com/),
52
52
  [pyright](https://github.com/microsoft/pyright) and other tools.
53
53
 
54
54
  Generated by
55
- [mypy-boto3-builder 7.23.0](https://github.com/youtype/mypy_boto3_builder).
55
+ [mypy-boto3-builder 7.23.2](https://github.com/youtype/mypy_boto3_builder).
56
56
 
57
57
  More information can be found on
58
58
  [boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
@@ -0,0 +1,20 @@
1
+ mypy_boto3_eks/__init__.py,sha256=E0bo5I6kWoDlOCMzx0dtxdOWp03U82Zv5m7lkQCqFaw,4711
2
+ mypy_boto3_eks/__init__.pyi,sha256=E0bo5I6kWoDlOCMzx0dtxdOWp03U82Zv5m7lkQCqFaw,4711
3
+ mypy_boto3_eks/__main__.py,sha256=QJc4ImywRfPr85rPCX3n_qOzEuIjGtTmkwLUVWsuR1A,903
4
+ mypy_boto3_eks/client.py,sha256=FMo1XNnE5_2M8Cydjl-SLeXPy7ukdZSkaKIC1Dnf4qE,49134
5
+ mypy_boto3_eks/client.pyi,sha256=yPpILaOkgYdOQJJIXuE-pSRqK2BbScEeYMnFCl1mV6w,49131
6
+ mypy_boto3_eks/literals.py,sha256=iAqR19DA5iaezK889sGsfQn-LZ1CFnsiU-ii5ww11r8,17496
7
+ mypy_boto3_eks/literals.pyi,sha256=iAqR19DA5iaezK889sGsfQn-LZ1CFnsiU-ii5ww11r8,17496
8
+ mypy_boto3_eks/paginator.py,sha256=bk48EmEtJU-979VnAzVvf2pmuzskNvyChmPmCO6Dxxs,15336
9
+ mypy_boto3_eks/paginator.pyi,sha256=ZIMweU-6DWq0IOcL16gLTKQtILtPYSJexmHxWffuwbs,15322
10
+ mypy_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ mypy_boto3_eks/type_defs.py,sha256=wGAQk-X6uZZcB6MPzmPuGUu4fs6YVdb307aeSwMdEag,62636
12
+ mypy_boto3_eks/type_defs.pyi,sha256=wGAQk-X6uZZcB6MPzmPuGUu4fs6YVdb307aeSwMdEag,62636
13
+ mypy_boto3_eks/version.py,sha256=NwiAkwIupkrOwAQ9WkqA9EDob49YukQwfHwGKuPdEgs,62
14
+ mypy_boto3_eks/waiter.py,sha256=l2bUEk99tON1KtebRkH1naSDvzdKHt_IMvGnQW6qxR8,7687
15
+ mypy_boto3_eks/waiter.pyi,sha256=JCEUhwc2KS5UvHUoRYmySgrbIRGtXdDznPK37A-_yAI,7679
16
+ mypy_boto3_eks-1.34.53.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
17
+ mypy_boto3_eks-1.34.53.dist-info/METADATA,sha256=am-AGEwYZe1b7FPpwqLU5JzMH9RCWV8vpY4pJNs1PSQ,15624
18
+ mypy_boto3_eks-1.34.53.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
19
+ mypy_boto3_eks-1.34.53.dist-info/top_level.txt,sha256=WzyqlAH5WFvCFI-LKEMwG_Khgagcx_dFpnoibGYNbA0,15
20
+ mypy_boto3_eks-1.34.53.dist-info/RECORD,,
@@ -1,20 +0,0 @@
1
- mypy_boto3_eks/__init__.py,sha256=E0bo5I6kWoDlOCMzx0dtxdOWp03U82Zv5m7lkQCqFaw,4711
2
- mypy_boto3_eks/__init__.pyi,sha256=E0bo5I6kWoDlOCMzx0dtxdOWp03U82Zv5m7lkQCqFaw,4711
3
- mypy_boto3_eks/__main__.py,sha256=s7G9Y3SlnrAMvu2zbULt_ukcNryWYrWsY5TGW7viTQs,889
4
- mypy_boto3_eks/client.py,sha256=FMo1XNnE5_2M8Cydjl-SLeXPy7ukdZSkaKIC1Dnf4qE,49134
5
- mypy_boto3_eks/client.pyi,sha256=yPpILaOkgYdOQJJIXuE-pSRqK2BbScEeYMnFCl1mV6w,49131
6
- mypy_boto3_eks/literals.py,sha256=inJVWgQfaWsUzDoXVwsThQlTxaE-3yWr5FCMmSQ2LoE,17352
7
- mypy_boto3_eks/literals.pyi,sha256=inJVWgQfaWsUzDoXVwsThQlTxaE-3yWr5FCMmSQ2LoE,17352
8
- mypy_boto3_eks/paginator.py,sha256=bk48EmEtJU-979VnAzVvf2pmuzskNvyChmPmCO6Dxxs,15336
9
- mypy_boto3_eks/paginator.pyi,sha256=ZIMweU-6DWq0IOcL16gLTKQtILtPYSJexmHxWffuwbs,15322
10
- mypy_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- mypy_boto3_eks/type_defs.py,sha256=TgB-HLUjlYZVu6ZB78kIS7NILitmQzNxyjJiE3-Rexc,62623
12
- mypy_boto3_eks/type_defs.pyi,sha256=TgB-HLUjlYZVu6ZB78kIS7NILitmQzNxyjJiE3-Rexc,62623
13
- mypy_boto3_eks/version.py,sha256=0SIPMzRVMaVPoWhlzaBNyJ5f1X5Fy1vvjxjmIVjVT_g,61
14
- mypy_boto3_eks/waiter.py,sha256=l2bUEk99tON1KtebRkH1naSDvzdKHt_IMvGnQW6qxR8,7687
15
- mypy_boto3_eks/waiter.pyi,sha256=JCEUhwc2KS5UvHUoRYmySgrbIRGtXdDznPK37A-_yAI,7679
16
- mypy_boto3_eks-1.34.5.dist-info/LICENSE,sha256=v0rThCyxXzUO7rKg6RM8RmmNKO6EvsBx_mdNoXUPxAU,1070
17
- mypy_boto3_eks-1.34.5.dist-info/METADATA,sha256=2d7oFSxLjkSyB-36VTq7LO0k6welQ7HjzhaQdn-_bp0,15621
18
- mypy_boto3_eks-1.34.5.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
19
- mypy_boto3_eks-1.34.5.dist-info/top_level.txt,sha256=WzyqlAH5WFvCFI-LKEMwG_Khgagcx_dFpnoibGYNbA0,15
20
- mypy_boto3_eks-1.34.5.dist-info/RECORD,,