pulumi-eks 3.9.0a1742626547__py3-none-any.whl → 4.2.0__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.
pulumi_eks/__init__.py CHANGED
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by pulumi-gen-eks. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  from . import _utilities
6
7
  import typing
7
8
  # Export this package's modules as members:
pulumi_eks/_enums.py CHANGED
@@ -2,6 +2,8 @@
2
2
  # *** WARNING: this file was generated by pulumi-gen-eks. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
6
+ import pulumi
5
7
  from enum import Enum
6
8
 
7
9
  __all__ = [
@@ -15,7 +17,8 @@ __all__ = [
15
17
  ]
16
18
 
17
19
 
18
- class AccessEntryType(str, Enum):
20
+ @pulumi.type_token("eks:index:AccessEntryType")
21
+ class AccessEntryType(builtins.str, Enum):
19
22
  """
20
23
  The type of the new access entry. Valid values are STANDARD, FARGATE_LINUX, EC2_LINUX, and EC2_WINDOWS.
21
24
  Defaults to STANDARD which provides the standard workflow. EC2_LINUX and EC2_WINDOWS types disallow users to input a kubernetesGroup, and prevent associating access policies.
@@ -42,7 +45,8 @@ class AccessEntryType(str, Enum):
42
45
  """
43
46
 
44
47
 
45
- class AmiType(str, Enum):
48
+ @pulumi.type_token("eks:index:AmiType")
49
+ class AmiType(builtins.str, Enum):
46
50
  """
47
51
  Predefined AMI types for EKS optimized AMIs. Can be used to select the latest EKS optimized AMI for a node group.
48
52
  """
@@ -58,7 +62,8 @@ class AmiType(str, Enum):
58
62
  BOTTLEROCKET_X86_64_NVIDIA = "BOTTLEROCKET_x86_64_NVIDIA"
59
63
 
60
64
 
61
- class AuthenticationMode(str, Enum):
65
+ @pulumi.type_token("eks:index:AuthenticationMode")
66
+ class AuthenticationMode(builtins.str, Enum):
62
67
  """
63
68
  The authentication mode of the cluster. Valid values are `CONFIG_MAP`, `API` or `API_AND_CONFIG_MAP`.
64
69
 
@@ -79,7 +84,8 @@ class AuthenticationMode(str, Enum):
79
84
  """
80
85
 
81
86
 
82
- class ClusterNodePools(str, Enum):
87
+ @pulumi.type_token("eks:index:ClusterNodePools")
88
+ class ClusterNodePools(builtins.str, Enum):
83
89
  """
84
90
  Built-in node pools of EKS Auto Mode. For more details see: https://docs.aws.amazon.com/eks/latest/userguide/set-builtin-node-pools.html
85
91
  """
@@ -93,7 +99,8 @@ class ClusterNodePools(str, Enum):
93
99
  """
94
100
 
95
101
 
96
- class OperatingSystem(str, Enum):
102
+ @pulumi.type_token("eks:index:OperatingSystem")
103
+ class OperatingSystem(builtins.str, Enum):
97
104
  """
98
105
  The type of EKS optimized Operating System to use for node groups.
99
106
 
@@ -123,7 +130,8 @@ class OperatingSystem(str, Enum):
123
130
  """
124
131
 
125
132
 
126
- class ResolveConflictsOnCreate(str, Enum):
133
+ @pulumi.type_token("eks:index:ResolveConflictsOnCreate")
134
+ class ResolveConflictsOnCreate(builtins.str, Enum):
127
135
  """
128
136
  How to resolve field value conflicts when migrating a self-managed add-on to an Amazon EKS add-on. Valid values are `NONE` and `OVERWRITE`. For more details see the [CreateAddon](https://docs.aws.amazon.com/eks/latest/APIReference/API_CreateAddon.html) API Docs.
129
137
  """
@@ -137,7 +145,8 @@ class ResolveConflictsOnCreate(str, Enum):
137
145
  """
138
146
 
139
147
 
140
- class ResolveConflictsOnUpdate(str, Enum):
148
+ @pulumi.type_token("eks:index:ResolveConflictsOnUpdate")
149
+ class ResolveConflictsOnUpdate(builtins.str, Enum):
141
150
  """
142
151
  How to resolve field value conflicts for an Amazon EKS add-on if you've changed a value from the Amazon EKS default value. Valid values are `NONE`, `OVERWRITE`, and `PRESERVE`. For more details see the [UpdateAddon](https://docs.aws.amazon.com/eks/latest/APIReference/API_UpdateAddon.html) API Docs.
143
152
  """