pulumi-spotinst 3.124.0a1753339288__py3-none-any.whl → 3.124.0a1753511976__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.
Potentially problematic release.
This version of pulumi-spotinst might be problematic. Click here for more details.
- pulumi_spotinst/__init__.py +1 -1
- pulumi_spotinst/_inputs.py +1616 -1617
- pulumi_spotinst/account.py +18 -19
- pulumi_spotinst/aws/__init__.py +1 -1
- pulumi_spotinst/aws/_inputs.py +3654 -3655
- pulumi_spotinst/aws/account.py +18 -19
- pulumi_spotinst/aws/beanstalk.py +176 -177
- pulumi_spotinst/aws/credentials.py +35 -36
- pulumi_spotinst/aws/elastigroup.py +936 -937
- pulumi_spotinst/aws/managed_instance.py +505 -506
- pulumi_spotinst/aws/mr_scalar.py +652 -653
- pulumi_spotinst/aws/ocean.py +531 -532
- pulumi_spotinst/aws/ocean_extended_resource_definition.py +35 -36
- pulumi_spotinst/aws/ocean_launch_spec.py +302 -303
- pulumi_spotinst/aws/outputs.py +2392 -2393
- pulumi_spotinst/aws/suspension.py +21 -22
- pulumi_spotinst/azure/__init__.py +1 -1
- pulumi_spotinst/azure/_inputs.py +606 -607
- pulumi_spotinst/azure/ocean_np.py +385 -386
- pulumi_spotinst/azure/ocean_np_virtual_node_group.py +321 -322
- pulumi_spotinst/azure/outputs.py +410 -411
- pulumi_spotinst/config/__init__.py +1 -1
- pulumi_spotinst/config/__init__.pyi +1 -2
- pulumi_spotinst/config/vars.py +5 -6
- pulumi_spotinst/credentials_azure.py +103 -104
- pulumi_spotinst/credentials_gcp.py +188 -189
- pulumi_spotinst/data_integration.py +38 -39
- pulumi_spotinst/ecs/__init__.py +1 -1
- pulumi_spotinst/ecs/_inputs.py +583 -584
- pulumi_spotinst/ecs/ocean.py +414 -415
- pulumi_spotinst/ecs/ocean_launch_spec.py +195 -196
- pulumi_spotinst/ecs/outputs.py +393 -394
- pulumi_spotinst/elastigroup_azure_v3.py +324 -325
- pulumi_spotinst/gcp/__init__.py +1 -1
- pulumi_spotinst/gcp/_inputs.py +505 -506
- pulumi_spotinst/gcp/elastigroup.py +481 -482
- pulumi_spotinst/gcp/outputs.py +335 -336
- pulumi_spotinst/gke/__init__.py +1 -1
- pulumi_spotinst/gke/_inputs.py +917 -918
- pulumi_spotinst/gke/elastigroup.py +339 -340
- pulumi_spotinst/gke/ocean_import.py +202 -203
- pulumi_spotinst/gke/ocean_launch_spec.py +210 -211
- pulumi_spotinst/gke/ocean_launch_spec_import.py +35 -36
- pulumi_spotinst/gke/outputs.py +597 -598
- pulumi_spotinst/health_check.py +64 -65
- pulumi_spotinst/notification_center.py +62 -63
- pulumi_spotinst/ocean_right_sizing_rule.py +74 -75
- pulumi_spotinst/oceancd/__init__.py +1 -1
- pulumi_spotinst/oceancd/_inputs.py +763 -764
- pulumi_spotinst/oceancd/outputs.py +525 -526
- pulumi_spotinst/oceancd/rollout_spec.py +33 -34
- pulumi_spotinst/oceancd/strategy.py +20 -21
- pulumi_spotinst/oceancd/verification_provider.py +50 -51
- pulumi_spotinst/oceancd/verification_template.py +24 -25
- pulumi_spotinst/organization/__init__.py +1 -1
- pulumi_spotinst/organization/_inputs.py +67 -68
- pulumi_spotinst/organization/outputs.py +45 -46
- pulumi_spotinst/organization/policy.py +38 -39
- pulumi_spotinst/organization/programmatic_user.py +58 -59
- pulumi_spotinst/organization/user.py +106 -107
- pulumi_spotinst/organization/user_group.py +55 -56
- pulumi_spotinst/outputs.py +990 -991
- pulumi_spotinst/provider.py +40 -41
- pulumi_spotinst/pulumi-plugin.json +1 -1
- pulumi_spotinst/spark/__init__.py +1 -1
- pulumi_spotinst/spark/_inputs.py +103 -104
- pulumi_spotinst/spark/ocean.py +36 -37
- pulumi_spotinst/spark/ocean_virtual_node_group.py +27 -28
- pulumi_spotinst/spark/outputs.py +71 -72
- pulumi_spotinst/stateful_node_azure.py +304 -305
- pulumi_spotinst/subscription.py +86 -87
- {pulumi_spotinst-3.124.0a1753339288.dist-info → pulumi_spotinst-3.124.0a1753511976.dist-info}/METADATA +1 -1
- pulumi_spotinst-3.124.0a1753511976.dist-info/RECORD +77 -0
- pulumi_spotinst-3.124.0a1753339288.dist-info/RECORD +0 -77
- {pulumi_spotinst-3.124.0a1753339288.dist-info → pulumi_spotinst-3.124.0a1753511976.dist-info}/WHEEL +0 -0
- {pulumi_spotinst-3.124.0a1753339288.dist-info → pulumi_spotinst-3.124.0a1753511976.dist-info}/top_level.txt +0 -0
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
-
import builtins
|
|
6
|
-
import copy
|
|
5
|
+
import builtins as _builtins
|
|
7
6
|
import warnings
|
|
8
7
|
import sys
|
|
9
8
|
import pulumi
|
|
@@ -22,8 +21,8 @@ __all__ = ['OceanLaunchSpecArgs', 'OceanLaunchSpec']
|
|
|
22
21
|
@pulumi.input_type
|
|
23
22
|
class OceanLaunchSpecArgs:
|
|
24
23
|
def __init__(__self__, *,
|
|
25
|
-
ocean_id: pulumi.Input[
|
|
26
|
-
associate_public_ip_address: Optional[pulumi.Input[
|
|
24
|
+
ocean_id: pulumi.Input[_builtins.str],
|
|
25
|
+
associate_public_ip_address: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
27
26
|
autoscale_downs: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecAutoscaleDownArgs']]]] = None,
|
|
28
27
|
autoscale_headrooms: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecAutoscaleHeadroomArgs']]]] = None,
|
|
29
28
|
autoscale_headrooms_automatics: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecAutoscaleHeadroomsAutomaticArgs']]]] = None,
|
|
@@ -32,64 +31,64 @@ class OceanLaunchSpecArgs:
|
|
|
32
31
|
delete_options: Optional[pulumi.Input['OceanLaunchSpecDeleteOptionsArgs']] = None,
|
|
33
32
|
elastic_ip_pools: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecElasticIpPoolArgs']]]] = None,
|
|
34
33
|
ephemeral_storages: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecEphemeralStorageArgs']]]] = None,
|
|
35
|
-
iam_instance_profile: Optional[pulumi.Input[
|
|
36
|
-
image_id: Optional[pulumi.Input[
|
|
34
|
+
iam_instance_profile: Optional[pulumi.Input[_builtins.str]] = None,
|
|
35
|
+
image_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
37
36
|
images: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecImageArgs']]]] = None,
|
|
38
37
|
instance_metadata_options: Optional[pulumi.Input['OceanLaunchSpecInstanceMetadataOptionsArgs']] = None,
|
|
39
38
|
instance_store_policy: Optional[pulumi.Input['OceanLaunchSpecInstanceStorePolicyArgs']] = None,
|
|
40
|
-
instance_types: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
39
|
+
instance_types: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
41
40
|
instance_types_filters: Optional[pulumi.Input['OceanLaunchSpecInstanceTypesFiltersArgs']] = None,
|
|
42
41
|
labels: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecLabelArgs']]]] = None,
|
|
43
|
-
name: Optional[pulumi.Input[
|
|
44
|
-
preferred_od_types: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
45
|
-
preferred_spot_types: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
46
|
-
reserved_enis: Optional[pulumi.Input[
|
|
42
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
43
|
+
preferred_od_types: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
44
|
+
preferred_spot_types: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
45
|
+
reserved_enis: Optional[pulumi.Input[_builtins.int]] = None,
|
|
47
46
|
resource_limits: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecResourceLimitArgs']]]] = None,
|
|
48
|
-
restrict_scale_down: Optional[pulumi.Input[
|
|
49
|
-
root_volume_size: Optional[pulumi.Input[
|
|
47
|
+
restrict_scale_down: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
48
|
+
root_volume_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
50
49
|
scheduling_shutdown_hours: Optional[pulumi.Input['OceanLaunchSpecSchedulingShutdownHoursArgs']] = None,
|
|
51
50
|
scheduling_tasks: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecSchedulingTaskArgs']]]] = None,
|
|
52
|
-
security_groups: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
51
|
+
security_groups: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
53
52
|
startup_taints: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecStartupTaintArgs']]]] = None,
|
|
54
53
|
strategies: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecStrategyArgs']]]] = None,
|
|
55
|
-
subnet_ids: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
54
|
+
subnet_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
56
55
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecTagArgs']]]] = None,
|
|
57
56
|
taints: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecTaintArgs']]]] = None,
|
|
58
57
|
update_policy: Optional[pulumi.Input['OceanLaunchSpecUpdatePolicyArgs']] = None,
|
|
59
|
-
user_data: Optional[pulumi.Input[
|
|
58
|
+
user_data: Optional[pulumi.Input[_builtins.str]] = None):
|
|
60
59
|
"""
|
|
61
60
|
The set of arguments for constructing a OceanLaunchSpec resource.
|
|
62
|
-
:param pulumi.Input[
|
|
63
|
-
:param pulumi.Input[
|
|
61
|
+
:param pulumi.Input[_builtins.str] ocean_id: The ID of the Ocean cluster.
|
|
62
|
+
:param pulumi.Input[_builtins.bool] associate_public_ip_address: Configure public IP address allocation.
|
|
64
63
|
:param pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecAutoscaleDownArgs']]] autoscale_downs: Auto Scaling scale down operations.
|
|
65
64
|
:param pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecAutoscaleHeadroomArgs']]] autoscale_headrooms: Set custom headroom per Virtual Node Group. Provide a list of headrooms object.
|
|
66
65
|
:param pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecAutoscaleHeadroomsAutomaticArgs']]] autoscale_headrooms_automatics: Set automatic headroom per launch spec.
|
|
67
66
|
:param pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecBlockDeviceMappingArgs']]] block_device_mappings: Object. Array list of block devices that are exposed to the instance, specify either virtual devices and EBS volumes.
|
|
68
67
|
:param pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecElasticIpPoolArgs']]] elastic_ip_pools: Assign an Elastic IP to the instances spun by the Virtual Node Group. Can be null.
|
|
69
|
-
:param pulumi.Input[
|
|
70
|
-
:param pulumi.Input[
|
|
68
|
+
:param pulumi.Input[_builtins.str] iam_instance_profile: The ARN or name of an IAM instance profile to associate with launched instances.
|
|
69
|
+
:param pulumi.Input[_builtins.str] image_id: ID of the image used to launch the instances.
|
|
71
70
|
:param pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecImageArgs']]] images: Array of objects (Image object, containing the id of the image used to launch instances.) You can configure VNG with either the imageId or images objects, but not both simultaneously.
|
|
72
71
|
For each architecture type (amd64, arm64) only one AMI is allowed. Valid values: null, or an array with at least one element.
|
|
73
72
|
:param pulumi.Input['OceanLaunchSpecInstanceMetadataOptionsArgs'] instance_metadata_options: Ocean instance metadata options object for IMDSv2.
|
|
74
73
|
:param pulumi.Input['OceanLaunchSpecInstanceStorePolicyArgs'] instance_store_policy: Determines the utilization of instance store volumes. If not defined, instance store volumes will not be used.
|
|
75
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
74
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] instance_types: A list of instance types allowed to be provisioned for pods pending under the specified launch specification. The list overrides the list defined for the cluster.
|
|
76
75
|
:param pulumi.Input['OceanLaunchSpecInstanceTypesFiltersArgs'] instance_types_filters: The instance types that match with all filters compose the Virtual Node Group's instanceTypes parameter.
|
|
77
76
|
The architectures that come from the Virtual Node Group's images will be taken into account when using this parameter. Cannot be configured together with Virtual Node Group's instanceTypes and with the Cluster's whitelist/blacklist/filters.
|
|
78
77
|
:param pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecLabelArgs']]] labels: Optionally adds labels to instances launched in the cluster.
|
|
79
|
-
:param pulumi.Input[
|
|
80
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
81
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
82
|
-
:param pulumi.Input[
|
|
83
|
-
:param pulumi.Input[
|
|
84
|
-
:param pulumi.Input[
|
|
78
|
+
:param pulumi.Input[_builtins.str] name: The name of the Virtual Node Group.
|
|
79
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] preferred_od_types: A list of instance types. Takes the preferred types into consideration while maintaining a variety of machine types running for optimized distribution.
|
|
80
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] preferred_spot_types: A list of instance types. Takes the preferred types into consideration while maintaining a variety of machine types running for optimized distribution.
|
|
81
|
+
:param pulumi.Input[_builtins.int] reserved_enis: Specifies the count of ENIs to reserve per instance type for scaling purposes.
|
|
82
|
+
:param pulumi.Input[_builtins.bool] restrict_scale_down: Boolean. When set to `true`, nodes will be treated as if all pods running have the restrict-scale-down label. Therefore, Ocean will not scale nodes down unless empty.
|
|
83
|
+
:param pulumi.Input[_builtins.int] root_volume_size: Set root volume size (in GB).
|
|
85
84
|
:param pulumi.Input['OceanLaunchSpecSchedulingShutdownHoursArgs'] scheduling_shutdown_hours: Used to specify times that the nodes in the virtual node group will be taken down.
|
|
86
85
|
:param pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecSchedulingTaskArgs']]] scheduling_tasks: Used to define scheduled tasks such as a manual headroom update.
|
|
87
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
86
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] security_groups: Optionally adds security group IDs.
|
|
88
87
|
:param pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecStartupTaintArgs']]] startup_taints: Temporary taints applied to a node during its initialization phase. For a startup taint to work, it must also be set as a regular taint in the userData for the cluster.
|
|
89
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
88
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] subnet_ids: A list of subnet IDs.
|
|
90
89
|
:param pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecTagArgs']]] tags: A key/value mapping of tags to assign to the resource.
|
|
91
90
|
:param pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecTaintArgs']]] taints: Optionally adds labels to instances launched in the cluster.
|
|
92
|
-
:param pulumi.Input[
|
|
91
|
+
:param pulumi.Input[_builtins.str] user_data: Base64-encoded MIME user data to make available to the instances.
|
|
93
92
|
"""
|
|
94
93
|
pulumi.set(__self__, "ocean_id", ocean_id)
|
|
95
94
|
if associate_public_ip_address is not None:
|
|
@@ -161,31 +160,31 @@ class OceanLaunchSpecArgs:
|
|
|
161
160
|
if user_data is not None:
|
|
162
161
|
pulumi.set(__self__, "user_data", user_data)
|
|
163
162
|
|
|
164
|
-
@property
|
|
163
|
+
@_builtins.property
|
|
165
164
|
@pulumi.getter(name="oceanId")
|
|
166
|
-
def ocean_id(self) -> pulumi.Input[
|
|
165
|
+
def ocean_id(self) -> pulumi.Input[_builtins.str]:
|
|
167
166
|
"""
|
|
168
167
|
The ID of the Ocean cluster.
|
|
169
168
|
"""
|
|
170
169
|
return pulumi.get(self, "ocean_id")
|
|
171
170
|
|
|
172
171
|
@ocean_id.setter
|
|
173
|
-
def ocean_id(self, value: pulumi.Input[
|
|
172
|
+
def ocean_id(self, value: pulumi.Input[_builtins.str]):
|
|
174
173
|
pulumi.set(self, "ocean_id", value)
|
|
175
174
|
|
|
176
|
-
@property
|
|
175
|
+
@_builtins.property
|
|
177
176
|
@pulumi.getter(name="associatePublicIpAddress")
|
|
178
|
-
def associate_public_ip_address(self) -> Optional[pulumi.Input[
|
|
177
|
+
def associate_public_ip_address(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
179
178
|
"""
|
|
180
179
|
Configure public IP address allocation.
|
|
181
180
|
"""
|
|
182
181
|
return pulumi.get(self, "associate_public_ip_address")
|
|
183
182
|
|
|
184
183
|
@associate_public_ip_address.setter
|
|
185
|
-
def associate_public_ip_address(self, value: Optional[pulumi.Input[
|
|
184
|
+
def associate_public_ip_address(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
186
185
|
pulumi.set(self, "associate_public_ip_address", value)
|
|
187
186
|
|
|
188
|
-
@property
|
|
187
|
+
@_builtins.property
|
|
189
188
|
@pulumi.getter(name="autoscaleDowns")
|
|
190
189
|
def autoscale_downs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecAutoscaleDownArgs']]]]:
|
|
191
190
|
"""
|
|
@@ -197,7 +196,7 @@ class OceanLaunchSpecArgs:
|
|
|
197
196
|
def autoscale_downs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecAutoscaleDownArgs']]]]):
|
|
198
197
|
pulumi.set(self, "autoscale_downs", value)
|
|
199
198
|
|
|
200
|
-
@property
|
|
199
|
+
@_builtins.property
|
|
201
200
|
@pulumi.getter(name="autoscaleHeadrooms")
|
|
202
201
|
def autoscale_headrooms(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecAutoscaleHeadroomArgs']]]]:
|
|
203
202
|
"""
|
|
@@ -209,7 +208,7 @@ class OceanLaunchSpecArgs:
|
|
|
209
208
|
def autoscale_headrooms(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecAutoscaleHeadroomArgs']]]]):
|
|
210
209
|
pulumi.set(self, "autoscale_headrooms", value)
|
|
211
210
|
|
|
212
|
-
@property
|
|
211
|
+
@_builtins.property
|
|
213
212
|
@pulumi.getter(name="autoscaleHeadroomsAutomatics")
|
|
214
213
|
def autoscale_headrooms_automatics(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecAutoscaleHeadroomsAutomaticArgs']]]]:
|
|
215
214
|
"""
|
|
@@ -221,7 +220,7 @@ class OceanLaunchSpecArgs:
|
|
|
221
220
|
def autoscale_headrooms_automatics(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecAutoscaleHeadroomsAutomaticArgs']]]]):
|
|
222
221
|
pulumi.set(self, "autoscale_headrooms_automatics", value)
|
|
223
222
|
|
|
224
|
-
@property
|
|
223
|
+
@_builtins.property
|
|
225
224
|
@pulumi.getter(name="blockDeviceMappings")
|
|
226
225
|
def block_device_mappings(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecBlockDeviceMappingArgs']]]]:
|
|
227
226
|
"""
|
|
@@ -233,7 +232,7 @@ class OceanLaunchSpecArgs:
|
|
|
233
232
|
def block_device_mappings(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecBlockDeviceMappingArgs']]]]):
|
|
234
233
|
pulumi.set(self, "block_device_mappings", value)
|
|
235
234
|
|
|
236
|
-
@property
|
|
235
|
+
@_builtins.property
|
|
237
236
|
@pulumi.getter(name="createOptions")
|
|
238
237
|
def create_options(self) -> Optional[pulumi.Input['OceanLaunchSpecCreateOptionsArgs']]:
|
|
239
238
|
return pulumi.get(self, "create_options")
|
|
@@ -242,7 +241,7 @@ class OceanLaunchSpecArgs:
|
|
|
242
241
|
def create_options(self, value: Optional[pulumi.Input['OceanLaunchSpecCreateOptionsArgs']]):
|
|
243
242
|
pulumi.set(self, "create_options", value)
|
|
244
243
|
|
|
245
|
-
@property
|
|
244
|
+
@_builtins.property
|
|
246
245
|
@pulumi.getter(name="deleteOptions")
|
|
247
246
|
def delete_options(self) -> Optional[pulumi.Input['OceanLaunchSpecDeleteOptionsArgs']]:
|
|
248
247
|
return pulumi.get(self, "delete_options")
|
|
@@ -251,7 +250,7 @@ class OceanLaunchSpecArgs:
|
|
|
251
250
|
def delete_options(self, value: Optional[pulumi.Input['OceanLaunchSpecDeleteOptionsArgs']]):
|
|
252
251
|
pulumi.set(self, "delete_options", value)
|
|
253
252
|
|
|
254
|
-
@property
|
|
253
|
+
@_builtins.property
|
|
255
254
|
@pulumi.getter(name="elasticIpPools")
|
|
256
255
|
def elastic_ip_pools(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecElasticIpPoolArgs']]]]:
|
|
257
256
|
"""
|
|
@@ -263,7 +262,7 @@ class OceanLaunchSpecArgs:
|
|
|
263
262
|
def elastic_ip_pools(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecElasticIpPoolArgs']]]]):
|
|
264
263
|
pulumi.set(self, "elastic_ip_pools", value)
|
|
265
264
|
|
|
266
|
-
@property
|
|
265
|
+
@_builtins.property
|
|
267
266
|
@pulumi.getter(name="ephemeralStorages")
|
|
268
267
|
def ephemeral_storages(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecEphemeralStorageArgs']]]]:
|
|
269
268
|
return pulumi.get(self, "ephemeral_storages")
|
|
@@ -272,31 +271,31 @@ class OceanLaunchSpecArgs:
|
|
|
272
271
|
def ephemeral_storages(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecEphemeralStorageArgs']]]]):
|
|
273
272
|
pulumi.set(self, "ephemeral_storages", value)
|
|
274
273
|
|
|
275
|
-
@property
|
|
274
|
+
@_builtins.property
|
|
276
275
|
@pulumi.getter(name="iamInstanceProfile")
|
|
277
|
-
def iam_instance_profile(self) -> Optional[pulumi.Input[
|
|
276
|
+
def iam_instance_profile(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
278
277
|
"""
|
|
279
278
|
The ARN or name of an IAM instance profile to associate with launched instances.
|
|
280
279
|
"""
|
|
281
280
|
return pulumi.get(self, "iam_instance_profile")
|
|
282
281
|
|
|
283
282
|
@iam_instance_profile.setter
|
|
284
|
-
def iam_instance_profile(self, value: Optional[pulumi.Input[
|
|
283
|
+
def iam_instance_profile(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
285
284
|
pulumi.set(self, "iam_instance_profile", value)
|
|
286
285
|
|
|
287
|
-
@property
|
|
286
|
+
@_builtins.property
|
|
288
287
|
@pulumi.getter(name="imageId")
|
|
289
|
-
def image_id(self) -> Optional[pulumi.Input[
|
|
288
|
+
def image_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
290
289
|
"""
|
|
291
290
|
ID of the image used to launch the instances.
|
|
292
291
|
"""
|
|
293
292
|
return pulumi.get(self, "image_id")
|
|
294
293
|
|
|
295
294
|
@image_id.setter
|
|
296
|
-
def image_id(self, value: Optional[pulumi.Input[
|
|
295
|
+
def image_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
297
296
|
pulumi.set(self, "image_id", value)
|
|
298
297
|
|
|
299
|
-
@property
|
|
298
|
+
@_builtins.property
|
|
300
299
|
@pulumi.getter
|
|
301
300
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecImageArgs']]]]:
|
|
302
301
|
"""
|
|
@@ -309,7 +308,7 @@ class OceanLaunchSpecArgs:
|
|
|
309
308
|
def images(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecImageArgs']]]]):
|
|
310
309
|
pulumi.set(self, "images", value)
|
|
311
310
|
|
|
312
|
-
@property
|
|
311
|
+
@_builtins.property
|
|
313
312
|
@pulumi.getter(name="instanceMetadataOptions")
|
|
314
313
|
def instance_metadata_options(self) -> Optional[pulumi.Input['OceanLaunchSpecInstanceMetadataOptionsArgs']]:
|
|
315
314
|
"""
|
|
@@ -321,7 +320,7 @@ class OceanLaunchSpecArgs:
|
|
|
321
320
|
def instance_metadata_options(self, value: Optional[pulumi.Input['OceanLaunchSpecInstanceMetadataOptionsArgs']]):
|
|
322
321
|
pulumi.set(self, "instance_metadata_options", value)
|
|
323
322
|
|
|
324
|
-
@property
|
|
323
|
+
@_builtins.property
|
|
325
324
|
@pulumi.getter(name="instanceStorePolicy")
|
|
326
325
|
def instance_store_policy(self) -> Optional[pulumi.Input['OceanLaunchSpecInstanceStorePolicyArgs']]:
|
|
327
326
|
"""
|
|
@@ -333,19 +332,19 @@ class OceanLaunchSpecArgs:
|
|
|
333
332
|
def instance_store_policy(self, value: Optional[pulumi.Input['OceanLaunchSpecInstanceStorePolicyArgs']]):
|
|
334
333
|
pulumi.set(self, "instance_store_policy", value)
|
|
335
334
|
|
|
336
|
-
@property
|
|
335
|
+
@_builtins.property
|
|
337
336
|
@pulumi.getter(name="instanceTypes")
|
|
338
|
-
def instance_types(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
337
|
+
def instance_types(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
339
338
|
"""
|
|
340
339
|
A list of instance types allowed to be provisioned for pods pending under the specified launch specification. The list overrides the list defined for the cluster.
|
|
341
340
|
"""
|
|
342
341
|
return pulumi.get(self, "instance_types")
|
|
343
342
|
|
|
344
343
|
@instance_types.setter
|
|
345
|
-
def instance_types(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
344
|
+
def instance_types(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
346
345
|
pulumi.set(self, "instance_types", value)
|
|
347
346
|
|
|
348
|
-
@property
|
|
347
|
+
@_builtins.property
|
|
349
348
|
@pulumi.getter(name="instanceTypesFilters")
|
|
350
349
|
def instance_types_filters(self) -> Optional[pulumi.Input['OceanLaunchSpecInstanceTypesFiltersArgs']]:
|
|
351
350
|
"""
|
|
@@ -358,7 +357,7 @@ class OceanLaunchSpecArgs:
|
|
|
358
357
|
def instance_types_filters(self, value: Optional[pulumi.Input['OceanLaunchSpecInstanceTypesFiltersArgs']]):
|
|
359
358
|
pulumi.set(self, "instance_types_filters", value)
|
|
360
359
|
|
|
361
|
-
@property
|
|
360
|
+
@_builtins.property
|
|
362
361
|
@pulumi.getter
|
|
363
362
|
def labels(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecLabelArgs']]]]:
|
|
364
363
|
"""
|
|
@@ -370,55 +369,55 @@ class OceanLaunchSpecArgs:
|
|
|
370
369
|
def labels(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecLabelArgs']]]]):
|
|
371
370
|
pulumi.set(self, "labels", value)
|
|
372
371
|
|
|
373
|
-
@property
|
|
372
|
+
@_builtins.property
|
|
374
373
|
@pulumi.getter
|
|
375
|
-
def name(self) -> Optional[pulumi.Input[
|
|
374
|
+
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
376
375
|
"""
|
|
377
376
|
The name of the Virtual Node Group.
|
|
378
377
|
"""
|
|
379
378
|
return pulumi.get(self, "name")
|
|
380
379
|
|
|
381
380
|
@name.setter
|
|
382
|
-
def name(self, value: Optional[pulumi.Input[
|
|
381
|
+
def name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
383
382
|
pulumi.set(self, "name", value)
|
|
384
383
|
|
|
385
|
-
@property
|
|
384
|
+
@_builtins.property
|
|
386
385
|
@pulumi.getter(name="preferredOdTypes")
|
|
387
|
-
def preferred_od_types(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
386
|
+
def preferred_od_types(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
388
387
|
"""
|
|
389
388
|
A list of instance types. Takes the preferred types into consideration while maintaining a variety of machine types running for optimized distribution.
|
|
390
389
|
"""
|
|
391
390
|
return pulumi.get(self, "preferred_od_types")
|
|
392
391
|
|
|
393
392
|
@preferred_od_types.setter
|
|
394
|
-
def preferred_od_types(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
393
|
+
def preferred_od_types(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
395
394
|
pulumi.set(self, "preferred_od_types", value)
|
|
396
395
|
|
|
397
|
-
@property
|
|
396
|
+
@_builtins.property
|
|
398
397
|
@pulumi.getter(name="preferredSpotTypes")
|
|
399
|
-
def preferred_spot_types(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
398
|
+
def preferred_spot_types(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
400
399
|
"""
|
|
401
400
|
A list of instance types. Takes the preferred types into consideration while maintaining a variety of machine types running for optimized distribution.
|
|
402
401
|
"""
|
|
403
402
|
return pulumi.get(self, "preferred_spot_types")
|
|
404
403
|
|
|
405
404
|
@preferred_spot_types.setter
|
|
406
|
-
def preferred_spot_types(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
405
|
+
def preferred_spot_types(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
407
406
|
pulumi.set(self, "preferred_spot_types", value)
|
|
408
407
|
|
|
409
|
-
@property
|
|
408
|
+
@_builtins.property
|
|
410
409
|
@pulumi.getter(name="reservedEnis")
|
|
411
|
-
def reserved_enis(self) -> Optional[pulumi.Input[
|
|
410
|
+
def reserved_enis(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
412
411
|
"""
|
|
413
412
|
Specifies the count of ENIs to reserve per instance type for scaling purposes.
|
|
414
413
|
"""
|
|
415
414
|
return pulumi.get(self, "reserved_enis")
|
|
416
415
|
|
|
417
416
|
@reserved_enis.setter
|
|
418
|
-
def reserved_enis(self, value: Optional[pulumi.Input[
|
|
417
|
+
def reserved_enis(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
419
418
|
pulumi.set(self, "reserved_enis", value)
|
|
420
419
|
|
|
421
|
-
@property
|
|
420
|
+
@_builtins.property
|
|
422
421
|
@pulumi.getter(name="resourceLimits")
|
|
423
422
|
def resource_limits(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecResourceLimitArgs']]]]:
|
|
424
423
|
return pulumi.get(self, "resource_limits")
|
|
@@ -427,31 +426,31 @@ class OceanLaunchSpecArgs:
|
|
|
427
426
|
def resource_limits(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecResourceLimitArgs']]]]):
|
|
428
427
|
pulumi.set(self, "resource_limits", value)
|
|
429
428
|
|
|
430
|
-
@property
|
|
429
|
+
@_builtins.property
|
|
431
430
|
@pulumi.getter(name="restrictScaleDown")
|
|
432
|
-
def restrict_scale_down(self) -> Optional[pulumi.Input[
|
|
431
|
+
def restrict_scale_down(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
433
432
|
"""
|
|
434
433
|
Boolean. When set to `true`, nodes will be treated as if all pods running have the restrict-scale-down label. Therefore, Ocean will not scale nodes down unless empty.
|
|
435
434
|
"""
|
|
436
435
|
return pulumi.get(self, "restrict_scale_down")
|
|
437
436
|
|
|
438
437
|
@restrict_scale_down.setter
|
|
439
|
-
def restrict_scale_down(self, value: Optional[pulumi.Input[
|
|
438
|
+
def restrict_scale_down(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
440
439
|
pulumi.set(self, "restrict_scale_down", value)
|
|
441
440
|
|
|
442
|
-
@property
|
|
441
|
+
@_builtins.property
|
|
443
442
|
@pulumi.getter(name="rootVolumeSize")
|
|
444
|
-
def root_volume_size(self) -> Optional[pulumi.Input[
|
|
443
|
+
def root_volume_size(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
445
444
|
"""
|
|
446
445
|
Set root volume size (in GB).
|
|
447
446
|
"""
|
|
448
447
|
return pulumi.get(self, "root_volume_size")
|
|
449
448
|
|
|
450
449
|
@root_volume_size.setter
|
|
451
|
-
def root_volume_size(self, value: Optional[pulumi.Input[
|
|
450
|
+
def root_volume_size(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
452
451
|
pulumi.set(self, "root_volume_size", value)
|
|
453
452
|
|
|
454
|
-
@property
|
|
453
|
+
@_builtins.property
|
|
455
454
|
@pulumi.getter(name="schedulingShutdownHours")
|
|
456
455
|
def scheduling_shutdown_hours(self) -> Optional[pulumi.Input['OceanLaunchSpecSchedulingShutdownHoursArgs']]:
|
|
457
456
|
"""
|
|
@@ -463,7 +462,7 @@ class OceanLaunchSpecArgs:
|
|
|
463
462
|
def scheduling_shutdown_hours(self, value: Optional[pulumi.Input['OceanLaunchSpecSchedulingShutdownHoursArgs']]):
|
|
464
463
|
pulumi.set(self, "scheduling_shutdown_hours", value)
|
|
465
464
|
|
|
466
|
-
@property
|
|
465
|
+
@_builtins.property
|
|
467
466
|
@pulumi.getter(name="schedulingTasks")
|
|
468
467
|
def scheduling_tasks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecSchedulingTaskArgs']]]]:
|
|
469
468
|
"""
|
|
@@ -475,19 +474,19 @@ class OceanLaunchSpecArgs:
|
|
|
475
474
|
def scheduling_tasks(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecSchedulingTaskArgs']]]]):
|
|
476
475
|
pulumi.set(self, "scheduling_tasks", value)
|
|
477
476
|
|
|
478
|
-
@property
|
|
477
|
+
@_builtins.property
|
|
479
478
|
@pulumi.getter(name="securityGroups")
|
|
480
|
-
def security_groups(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
479
|
+
def security_groups(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
481
480
|
"""
|
|
482
481
|
Optionally adds security group IDs.
|
|
483
482
|
"""
|
|
484
483
|
return pulumi.get(self, "security_groups")
|
|
485
484
|
|
|
486
485
|
@security_groups.setter
|
|
487
|
-
def security_groups(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
486
|
+
def security_groups(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
488
487
|
pulumi.set(self, "security_groups", value)
|
|
489
488
|
|
|
490
|
-
@property
|
|
489
|
+
@_builtins.property
|
|
491
490
|
@pulumi.getter(name="startupTaints")
|
|
492
491
|
def startup_taints(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecStartupTaintArgs']]]]:
|
|
493
492
|
"""
|
|
@@ -499,7 +498,7 @@ class OceanLaunchSpecArgs:
|
|
|
499
498
|
def startup_taints(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecStartupTaintArgs']]]]):
|
|
500
499
|
pulumi.set(self, "startup_taints", value)
|
|
501
500
|
|
|
502
|
-
@property
|
|
501
|
+
@_builtins.property
|
|
503
502
|
@pulumi.getter
|
|
504
503
|
def strategies(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecStrategyArgs']]]]:
|
|
505
504
|
return pulumi.get(self, "strategies")
|
|
@@ -508,19 +507,19 @@ class OceanLaunchSpecArgs:
|
|
|
508
507
|
def strategies(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecStrategyArgs']]]]):
|
|
509
508
|
pulumi.set(self, "strategies", value)
|
|
510
509
|
|
|
511
|
-
@property
|
|
510
|
+
@_builtins.property
|
|
512
511
|
@pulumi.getter(name="subnetIds")
|
|
513
|
-
def subnet_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
512
|
+
def subnet_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
514
513
|
"""
|
|
515
514
|
A list of subnet IDs.
|
|
516
515
|
"""
|
|
517
516
|
return pulumi.get(self, "subnet_ids")
|
|
518
517
|
|
|
519
518
|
@subnet_ids.setter
|
|
520
|
-
def subnet_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
519
|
+
def subnet_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
521
520
|
pulumi.set(self, "subnet_ids", value)
|
|
522
521
|
|
|
523
|
-
@property
|
|
522
|
+
@_builtins.property
|
|
524
523
|
@pulumi.getter
|
|
525
524
|
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecTagArgs']]]]:
|
|
526
525
|
"""
|
|
@@ -532,7 +531,7 @@ class OceanLaunchSpecArgs:
|
|
|
532
531
|
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecTagArgs']]]]):
|
|
533
532
|
pulumi.set(self, "tags", value)
|
|
534
533
|
|
|
535
|
-
@property
|
|
534
|
+
@_builtins.property
|
|
536
535
|
@pulumi.getter
|
|
537
536
|
def taints(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecTaintArgs']]]]:
|
|
538
537
|
"""
|
|
@@ -544,7 +543,7 @@ class OceanLaunchSpecArgs:
|
|
|
544
543
|
def taints(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecTaintArgs']]]]):
|
|
545
544
|
pulumi.set(self, "taints", value)
|
|
546
545
|
|
|
547
|
-
@property
|
|
546
|
+
@_builtins.property
|
|
548
547
|
@pulumi.getter(name="updatePolicy")
|
|
549
548
|
def update_policy(self) -> Optional[pulumi.Input['OceanLaunchSpecUpdatePolicyArgs']]:
|
|
550
549
|
return pulumi.get(self, "update_policy")
|
|
@@ -553,23 +552,23 @@ class OceanLaunchSpecArgs:
|
|
|
553
552
|
def update_policy(self, value: Optional[pulumi.Input['OceanLaunchSpecUpdatePolicyArgs']]):
|
|
554
553
|
pulumi.set(self, "update_policy", value)
|
|
555
554
|
|
|
556
|
-
@property
|
|
555
|
+
@_builtins.property
|
|
557
556
|
@pulumi.getter(name="userData")
|
|
558
|
-
def user_data(self) -> Optional[pulumi.Input[
|
|
557
|
+
def user_data(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
559
558
|
"""
|
|
560
559
|
Base64-encoded MIME user data to make available to the instances.
|
|
561
560
|
"""
|
|
562
561
|
return pulumi.get(self, "user_data")
|
|
563
562
|
|
|
564
563
|
@user_data.setter
|
|
565
|
-
def user_data(self, value: Optional[pulumi.Input[
|
|
564
|
+
def user_data(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
566
565
|
pulumi.set(self, "user_data", value)
|
|
567
566
|
|
|
568
567
|
|
|
569
568
|
@pulumi.input_type
|
|
570
569
|
class _OceanLaunchSpecState:
|
|
571
570
|
def __init__(__self__, *,
|
|
572
|
-
associate_public_ip_address: Optional[pulumi.Input[
|
|
571
|
+
associate_public_ip_address: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
573
572
|
autoscale_downs: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecAutoscaleDownArgs']]]] = None,
|
|
574
573
|
autoscale_headrooms: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecAutoscaleHeadroomArgs']]]] = None,
|
|
575
574
|
autoscale_headrooms_automatics: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecAutoscaleHeadroomsAutomaticArgs']]]] = None,
|
|
@@ -578,65 +577,65 @@ class _OceanLaunchSpecState:
|
|
|
578
577
|
delete_options: Optional[pulumi.Input['OceanLaunchSpecDeleteOptionsArgs']] = None,
|
|
579
578
|
elastic_ip_pools: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecElasticIpPoolArgs']]]] = None,
|
|
580
579
|
ephemeral_storages: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecEphemeralStorageArgs']]]] = None,
|
|
581
|
-
iam_instance_profile: Optional[pulumi.Input[
|
|
582
|
-
image_id: Optional[pulumi.Input[
|
|
580
|
+
iam_instance_profile: Optional[pulumi.Input[_builtins.str]] = None,
|
|
581
|
+
image_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
583
582
|
images: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecImageArgs']]]] = None,
|
|
584
583
|
instance_metadata_options: Optional[pulumi.Input['OceanLaunchSpecInstanceMetadataOptionsArgs']] = None,
|
|
585
584
|
instance_store_policy: Optional[pulumi.Input['OceanLaunchSpecInstanceStorePolicyArgs']] = None,
|
|
586
|
-
instance_types: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
585
|
+
instance_types: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
587
586
|
instance_types_filters: Optional[pulumi.Input['OceanLaunchSpecInstanceTypesFiltersArgs']] = None,
|
|
588
587
|
labels: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecLabelArgs']]]] = None,
|
|
589
|
-
name: Optional[pulumi.Input[
|
|
590
|
-
ocean_id: Optional[pulumi.Input[
|
|
591
|
-
preferred_od_types: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
592
|
-
preferred_spot_types: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
593
|
-
reserved_enis: Optional[pulumi.Input[
|
|
588
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
589
|
+
ocean_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
590
|
+
preferred_od_types: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
591
|
+
preferred_spot_types: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
592
|
+
reserved_enis: Optional[pulumi.Input[_builtins.int]] = None,
|
|
594
593
|
resource_limits: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecResourceLimitArgs']]]] = None,
|
|
595
|
-
restrict_scale_down: Optional[pulumi.Input[
|
|
596
|
-
root_volume_size: Optional[pulumi.Input[
|
|
594
|
+
restrict_scale_down: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
595
|
+
root_volume_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
597
596
|
scheduling_shutdown_hours: Optional[pulumi.Input['OceanLaunchSpecSchedulingShutdownHoursArgs']] = None,
|
|
598
597
|
scheduling_tasks: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecSchedulingTaskArgs']]]] = None,
|
|
599
|
-
security_groups: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
598
|
+
security_groups: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
600
599
|
startup_taints: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecStartupTaintArgs']]]] = None,
|
|
601
600
|
strategies: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecStrategyArgs']]]] = None,
|
|
602
|
-
subnet_ids: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
601
|
+
subnet_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
603
602
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecTagArgs']]]] = None,
|
|
604
603
|
taints: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecTaintArgs']]]] = None,
|
|
605
604
|
update_policy: Optional[pulumi.Input['OceanLaunchSpecUpdatePolicyArgs']] = None,
|
|
606
|
-
user_data: Optional[pulumi.Input[
|
|
605
|
+
user_data: Optional[pulumi.Input[_builtins.str]] = None):
|
|
607
606
|
"""
|
|
608
607
|
Input properties used for looking up and filtering OceanLaunchSpec resources.
|
|
609
|
-
:param pulumi.Input[
|
|
608
|
+
:param pulumi.Input[_builtins.bool] associate_public_ip_address: Configure public IP address allocation.
|
|
610
609
|
:param pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecAutoscaleDownArgs']]] autoscale_downs: Auto Scaling scale down operations.
|
|
611
610
|
:param pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecAutoscaleHeadroomArgs']]] autoscale_headrooms: Set custom headroom per Virtual Node Group. Provide a list of headrooms object.
|
|
612
611
|
:param pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecAutoscaleHeadroomsAutomaticArgs']]] autoscale_headrooms_automatics: Set automatic headroom per launch spec.
|
|
613
612
|
:param pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecBlockDeviceMappingArgs']]] block_device_mappings: Object. Array list of block devices that are exposed to the instance, specify either virtual devices and EBS volumes.
|
|
614
613
|
:param pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecElasticIpPoolArgs']]] elastic_ip_pools: Assign an Elastic IP to the instances spun by the Virtual Node Group. Can be null.
|
|
615
|
-
:param pulumi.Input[
|
|
616
|
-
:param pulumi.Input[
|
|
614
|
+
:param pulumi.Input[_builtins.str] iam_instance_profile: The ARN or name of an IAM instance profile to associate with launched instances.
|
|
615
|
+
:param pulumi.Input[_builtins.str] image_id: ID of the image used to launch the instances.
|
|
617
616
|
:param pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecImageArgs']]] images: Array of objects (Image object, containing the id of the image used to launch instances.) You can configure VNG with either the imageId or images objects, but not both simultaneously.
|
|
618
617
|
For each architecture type (amd64, arm64) only one AMI is allowed. Valid values: null, or an array with at least one element.
|
|
619
618
|
:param pulumi.Input['OceanLaunchSpecInstanceMetadataOptionsArgs'] instance_metadata_options: Ocean instance metadata options object for IMDSv2.
|
|
620
619
|
:param pulumi.Input['OceanLaunchSpecInstanceStorePolicyArgs'] instance_store_policy: Determines the utilization of instance store volumes. If not defined, instance store volumes will not be used.
|
|
621
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
620
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] instance_types: A list of instance types allowed to be provisioned for pods pending under the specified launch specification. The list overrides the list defined for the cluster.
|
|
622
621
|
:param pulumi.Input['OceanLaunchSpecInstanceTypesFiltersArgs'] instance_types_filters: The instance types that match with all filters compose the Virtual Node Group's instanceTypes parameter.
|
|
623
622
|
The architectures that come from the Virtual Node Group's images will be taken into account when using this parameter. Cannot be configured together with Virtual Node Group's instanceTypes and with the Cluster's whitelist/blacklist/filters.
|
|
624
623
|
:param pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecLabelArgs']]] labels: Optionally adds labels to instances launched in the cluster.
|
|
625
|
-
:param pulumi.Input[
|
|
626
|
-
:param pulumi.Input[
|
|
627
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
628
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
629
|
-
:param pulumi.Input[
|
|
630
|
-
:param pulumi.Input[
|
|
631
|
-
:param pulumi.Input[
|
|
624
|
+
:param pulumi.Input[_builtins.str] name: The name of the Virtual Node Group.
|
|
625
|
+
:param pulumi.Input[_builtins.str] ocean_id: The ID of the Ocean cluster.
|
|
626
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] preferred_od_types: A list of instance types. Takes the preferred types into consideration while maintaining a variety of machine types running for optimized distribution.
|
|
627
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] preferred_spot_types: A list of instance types. Takes the preferred types into consideration while maintaining a variety of machine types running for optimized distribution.
|
|
628
|
+
:param pulumi.Input[_builtins.int] reserved_enis: Specifies the count of ENIs to reserve per instance type for scaling purposes.
|
|
629
|
+
:param pulumi.Input[_builtins.bool] restrict_scale_down: Boolean. When set to `true`, nodes will be treated as if all pods running have the restrict-scale-down label. Therefore, Ocean will not scale nodes down unless empty.
|
|
630
|
+
:param pulumi.Input[_builtins.int] root_volume_size: Set root volume size (in GB).
|
|
632
631
|
:param pulumi.Input['OceanLaunchSpecSchedulingShutdownHoursArgs'] scheduling_shutdown_hours: Used to specify times that the nodes in the virtual node group will be taken down.
|
|
633
632
|
:param pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecSchedulingTaskArgs']]] scheduling_tasks: Used to define scheduled tasks such as a manual headroom update.
|
|
634
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
633
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] security_groups: Optionally adds security group IDs.
|
|
635
634
|
:param pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecStartupTaintArgs']]] startup_taints: Temporary taints applied to a node during its initialization phase. For a startup taint to work, it must also be set as a regular taint in the userData for the cluster.
|
|
636
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
635
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] subnet_ids: A list of subnet IDs.
|
|
637
636
|
:param pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecTagArgs']]] tags: A key/value mapping of tags to assign to the resource.
|
|
638
637
|
:param pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecTaintArgs']]] taints: Optionally adds labels to instances launched in the cluster.
|
|
639
|
-
:param pulumi.Input[
|
|
638
|
+
:param pulumi.Input[_builtins.str] user_data: Base64-encoded MIME user data to make available to the instances.
|
|
640
639
|
"""
|
|
641
640
|
if associate_public_ip_address is not None:
|
|
642
641
|
pulumi.set(__self__, "associate_public_ip_address", associate_public_ip_address)
|
|
@@ -709,19 +708,19 @@ class _OceanLaunchSpecState:
|
|
|
709
708
|
if user_data is not None:
|
|
710
709
|
pulumi.set(__self__, "user_data", user_data)
|
|
711
710
|
|
|
712
|
-
@property
|
|
711
|
+
@_builtins.property
|
|
713
712
|
@pulumi.getter(name="associatePublicIpAddress")
|
|
714
|
-
def associate_public_ip_address(self) -> Optional[pulumi.Input[
|
|
713
|
+
def associate_public_ip_address(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
715
714
|
"""
|
|
716
715
|
Configure public IP address allocation.
|
|
717
716
|
"""
|
|
718
717
|
return pulumi.get(self, "associate_public_ip_address")
|
|
719
718
|
|
|
720
719
|
@associate_public_ip_address.setter
|
|
721
|
-
def associate_public_ip_address(self, value: Optional[pulumi.Input[
|
|
720
|
+
def associate_public_ip_address(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
722
721
|
pulumi.set(self, "associate_public_ip_address", value)
|
|
723
722
|
|
|
724
|
-
@property
|
|
723
|
+
@_builtins.property
|
|
725
724
|
@pulumi.getter(name="autoscaleDowns")
|
|
726
725
|
def autoscale_downs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecAutoscaleDownArgs']]]]:
|
|
727
726
|
"""
|
|
@@ -733,7 +732,7 @@ class _OceanLaunchSpecState:
|
|
|
733
732
|
def autoscale_downs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecAutoscaleDownArgs']]]]):
|
|
734
733
|
pulumi.set(self, "autoscale_downs", value)
|
|
735
734
|
|
|
736
|
-
@property
|
|
735
|
+
@_builtins.property
|
|
737
736
|
@pulumi.getter(name="autoscaleHeadrooms")
|
|
738
737
|
def autoscale_headrooms(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecAutoscaleHeadroomArgs']]]]:
|
|
739
738
|
"""
|
|
@@ -745,7 +744,7 @@ class _OceanLaunchSpecState:
|
|
|
745
744
|
def autoscale_headrooms(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecAutoscaleHeadroomArgs']]]]):
|
|
746
745
|
pulumi.set(self, "autoscale_headrooms", value)
|
|
747
746
|
|
|
748
|
-
@property
|
|
747
|
+
@_builtins.property
|
|
749
748
|
@pulumi.getter(name="autoscaleHeadroomsAutomatics")
|
|
750
749
|
def autoscale_headrooms_automatics(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecAutoscaleHeadroomsAutomaticArgs']]]]:
|
|
751
750
|
"""
|
|
@@ -757,7 +756,7 @@ class _OceanLaunchSpecState:
|
|
|
757
756
|
def autoscale_headrooms_automatics(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecAutoscaleHeadroomsAutomaticArgs']]]]):
|
|
758
757
|
pulumi.set(self, "autoscale_headrooms_automatics", value)
|
|
759
758
|
|
|
760
|
-
@property
|
|
759
|
+
@_builtins.property
|
|
761
760
|
@pulumi.getter(name="blockDeviceMappings")
|
|
762
761
|
def block_device_mappings(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecBlockDeviceMappingArgs']]]]:
|
|
763
762
|
"""
|
|
@@ -769,7 +768,7 @@ class _OceanLaunchSpecState:
|
|
|
769
768
|
def block_device_mappings(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecBlockDeviceMappingArgs']]]]):
|
|
770
769
|
pulumi.set(self, "block_device_mappings", value)
|
|
771
770
|
|
|
772
|
-
@property
|
|
771
|
+
@_builtins.property
|
|
773
772
|
@pulumi.getter(name="createOptions")
|
|
774
773
|
def create_options(self) -> Optional[pulumi.Input['OceanLaunchSpecCreateOptionsArgs']]:
|
|
775
774
|
return pulumi.get(self, "create_options")
|
|
@@ -778,7 +777,7 @@ class _OceanLaunchSpecState:
|
|
|
778
777
|
def create_options(self, value: Optional[pulumi.Input['OceanLaunchSpecCreateOptionsArgs']]):
|
|
779
778
|
pulumi.set(self, "create_options", value)
|
|
780
779
|
|
|
781
|
-
@property
|
|
780
|
+
@_builtins.property
|
|
782
781
|
@pulumi.getter(name="deleteOptions")
|
|
783
782
|
def delete_options(self) -> Optional[pulumi.Input['OceanLaunchSpecDeleteOptionsArgs']]:
|
|
784
783
|
return pulumi.get(self, "delete_options")
|
|
@@ -787,7 +786,7 @@ class _OceanLaunchSpecState:
|
|
|
787
786
|
def delete_options(self, value: Optional[pulumi.Input['OceanLaunchSpecDeleteOptionsArgs']]):
|
|
788
787
|
pulumi.set(self, "delete_options", value)
|
|
789
788
|
|
|
790
|
-
@property
|
|
789
|
+
@_builtins.property
|
|
791
790
|
@pulumi.getter(name="elasticIpPools")
|
|
792
791
|
def elastic_ip_pools(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecElasticIpPoolArgs']]]]:
|
|
793
792
|
"""
|
|
@@ -799,7 +798,7 @@ class _OceanLaunchSpecState:
|
|
|
799
798
|
def elastic_ip_pools(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecElasticIpPoolArgs']]]]):
|
|
800
799
|
pulumi.set(self, "elastic_ip_pools", value)
|
|
801
800
|
|
|
802
|
-
@property
|
|
801
|
+
@_builtins.property
|
|
803
802
|
@pulumi.getter(name="ephemeralStorages")
|
|
804
803
|
def ephemeral_storages(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecEphemeralStorageArgs']]]]:
|
|
805
804
|
return pulumi.get(self, "ephemeral_storages")
|
|
@@ -808,31 +807,31 @@ class _OceanLaunchSpecState:
|
|
|
808
807
|
def ephemeral_storages(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecEphemeralStorageArgs']]]]):
|
|
809
808
|
pulumi.set(self, "ephemeral_storages", value)
|
|
810
809
|
|
|
811
|
-
@property
|
|
810
|
+
@_builtins.property
|
|
812
811
|
@pulumi.getter(name="iamInstanceProfile")
|
|
813
|
-
def iam_instance_profile(self) -> Optional[pulumi.Input[
|
|
812
|
+
def iam_instance_profile(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
814
813
|
"""
|
|
815
814
|
The ARN or name of an IAM instance profile to associate with launched instances.
|
|
816
815
|
"""
|
|
817
816
|
return pulumi.get(self, "iam_instance_profile")
|
|
818
817
|
|
|
819
818
|
@iam_instance_profile.setter
|
|
820
|
-
def iam_instance_profile(self, value: Optional[pulumi.Input[
|
|
819
|
+
def iam_instance_profile(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
821
820
|
pulumi.set(self, "iam_instance_profile", value)
|
|
822
821
|
|
|
823
|
-
@property
|
|
822
|
+
@_builtins.property
|
|
824
823
|
@pulumi.getter(name="imageId")
|
|
825
|
-
def image_id(self) -> Optional[pulumi.Input[
|
|
824
|
+
def image_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
826
825
|
"""
|
|
827
826
|
ID of the image used to launch the instances.
|
|
828
827
|
"""
|
|
829
828
|
return pulumi.get(self, "image_id")
|
|
830
829
|
|
|
831
830
|
@image_id.setter
|
|
832
|
-
def image_id(self, value: Optional[pulumi.Input[
|
|
831
|
+
def image_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
833
832
|
pulumi.set(self, "image_id", value)
|
|
834
833
|
|
|
835
|
-
@property
|
|
834
|
+
@_builtins.property
|
|
836
835
|
@pulumi.getter
|
|
837
836
|
def images(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecImageArgs']]]]:
|
|
838
837
|
"""
|
|
@@ -845,7 +844,7 @@ class _OceanLaunchSpecState:
|
|
|
845
844
|
def images(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecImageArgs']]]]):
|
|
846
845
|
pulumi.set(self, "images", value)
|
|
847
846
|
|
|
848
|
-
@property
|
|
847
|
+
@_builtins.property
|
|
849
848
|
@pulumi.getter(name="instanceMetadataOptions")
|
|
850
849
|
def instance_metadata_options(self) -> Optional[pulumi.Input['OceanLaunchSpecInstanceMetadataOptionsArgs']]:
|
|
851
850
|
"""
|
|
@@ -857,7 +856,7 @@ class _OceanLaunchSpecState:
|
|
|
857
856
|
def instance_metadata_options(self, value: Optional[pulumi.Input['OceanLaunchSpecInstanceMetadataOptionsArgs']]):
|
|
858
857
|
pulumi.set(self, "instance_metadata_options", value)
|
|
859
858
|
|
|
860
|
-
@property
|
|
859
|
+
@_builtins.property
|
|
861
860
|
@pulumi.getter(name="instanceStorePolicy")
|
|
862
861
|
def instance_store_policy(self) -> Optional[pulumi.Input['OceanLaunchSpecInstanceStorePolicyArgs']]:
|
|
863
862
|
"""
|
|
@@ -869,19 +868,19 @@ class _OceanLaunchSpecState:
|
|
|
869
868
|
def instance_store_policy(self, value: Optional[pulumi.Input['OceanLaunchSpecInstanceStorePolicyArgs']]):
|
|
870
869
|
pulumi.set(self, "instance_store_policy", value)
|
|
871
870
|
|
|
872
|
-
@property
|
|
871
|
+
@_builtins.property
|
|
873
872
|
@pulumi.getter(name="instanceTypes")
|
|
874
|
-
def instance_types(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
873
|
+
def instance_types(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
875
874
|
"""
|
|
876
875
|
A list of instance types allowed to be provisioned for pods pending under the specified launch specification. The list overrides the list defined for the cluster.
|
|
877
876
|
"""
|
|
878
877
|
return pulumi.get(self, "instance_types")
|
|
879
878
|
|
|
880
879
|
@instance_types.setter
|
|
881
|
-
def instance_types(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
880
|
+
def instance_types(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
882
881
|
pulumi.set(self, "instance_types", value)
|
|
883
882
|
|
|
884
|
-
@property
|
|
883
|
+
@_builtins.property
|
|
885
884
|
@pulumi.getter(name="instanceTypesFilters")
|
|
886
885
|
def instance_types_filters(self) -> Optional[pulumi.Input['OceanLaunchSpecInstanceTypesFiltersArgs']]:
|
|
887
886
|
"""
|
|
@@ -894,7 +893,7 @@ class _OceanLaunchSpecState:
|
|
|
894
893
|
def instance_types_filters(self, value: Optional[pulumi.Input['OceanLaunchSpecInstanceTypesFiltersArgs']]):
|
|
895
894
|
pulumi.set(self, "instance_types_filters", value)
|
|
896
895
|
|
|
897
|
-
@property
|
|
896
|
+
@_builtins.property
|
|
898
897
|
@pulumi.getter
|
|
899
898
|
def labels(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecLabelArgs']]]]:
|
|
900
899
|
"""
|
|
@@ -906,67 +905,67 @@ class _OceanLaunchSpecState:
|
|
|
906
905
|
def labels(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecLabelArgs']]]]):
|
|
907
906
|
pulumi.set(self, "labels", value)
|
|
908
907
|
|
|
909
|
-
@property
|
|
908
|
+
@_builtins.property
|
|
910
909
|
@pulumi.getter
|
|
911
|
-
def name(self) -> Optional[pulumi.Input[
|
|
910
|
+
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
912
911
|
"""
|
|
913
912
|
The name of the Virtual Node Group.
|
|
914
913
|
"""
|
|
915
914
|
return pulumi.get(self, "name")
|
|
916
915
|
|
|
917
916
|
@name.setter
|
|
918
|
-
def name(self, value: Optional[pulumi.Input[
|
|
917
|
+
def name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
919
918
|
pulumi.set(self, "name", value)
|
|
920
919
|
|
|
921
|
-
@property
|
|
920
|
+
@_builtins.property
|
|
922
921
|
@pulumi.getter(name="oceanId")
|
|
923
|
-
def ocean_id(self) -> Optional[pulumi.Input[
|
|
922
|
+
def ocean_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
924
923
|
"""
|
|
925
924
|
The ID of the Ocean cluster.
|
|
926
925
|
"""
|
|
927
926
|
return pulumi.get(self, "ocean_id")
|
|
928
927
|
|
|
929
928
|
@ocean_id.setter
|
|
930
|
-
def ocean_id(self, value: Optional[pulumi.Input[
|
|
929
|
+
def ocean_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
931
930
|
pulumi.set(self, "ocean_id", value)
|
|
932
931
|
|
|
933
|
-
@property
|
|
932
|
+
@_builtins.property
|
|
934
933
|
@pulumi.getter(name="preferredOdTypes")
|
|
935
|
-
def preferred_od_types(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
934
|
+
def preferred_od_types(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
936
935
|
"""
|
|
937
936
|
A list of instance types. Takes the preferred types into consideration while maintaining a variety of machine types running for optimized distribution.
|
|
938
937
|
"""
|
|
939
938
|
return pulumi.get(self, "preferred_od_types")
|
|
940
939
|
|
|
941
940
|
@preferred_od_types.setter
|
|
942
|
-
def preferred_od_types(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
941
|
+
def preferred_od_types(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
943
942
|
pulumi.set(self, "preferred_od_types", value)
|
|
944
943
|
|
|
945
|
-
@property
|
|
944
|
+
@_builtins.property
|
|
946
945
|
@pulumi.getter(name="preferredSpotTypes")
|
|
947
|
-
def preferred_spot_types(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
946
|
+
def preferred_spot_types(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
948
947
|
"""
|
|
949
948
|
A list of instance types. Takes the preferred types into consideration while maintaining a variety of machine types running for optimized distribution.
|
|
950
949
|
"""
|
|
951
950
|
return pulumi.get(self, "preferred_spot_types")
|
|
952
951
|
|
|
953
952
|
@preferred_spot_types.setter
|
|
954
|
-
def preferred_spot_types(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
953
|
+
def preferred_spot_types(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
955
954
|
pulumi.set(self, "preferred_spot_types", value)
|
|
956
955
|
|
|
957
|
-
@property
|
|
956
|
+
@_builtins.property
|
|
958
957
|
@pulumi.getter(name="reservedEnis")
|
|
959
|
-
def reserved_enis(self) -> Optional[pulumi.Input[
|
|
958
|
+
def reserved_enis(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
960
959
|
"""
|
|
961
960
|
Specifies the count of ENIs to reserve per instance type for scaling purposes.
|
|
962
961
|
"""
|
|
963
962
|
return pulumi.get(self, "reserved_enis")
|
|
964
963
|
|
|
965
964
|
@reserved_enis.setter
|
|
966
|
-
def reserved_enis(self, value: Optional[pulumi.Input[
|
|
965
|
+
def reserved_enis(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
967
966
|
pulumi.set(self, "reserved_enis", value)
|
|
968
967
|
|
|
969
|
-
@property
|
|
968
|
+
@_builtins.property
|
|
970
969
|
@pulumi.getter(name="resourceLimits")
|
|
971
970
|
def resource_limits(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecResourceLimitArgs']]]]:
|
|
972
971
|
return pulumi.get(self, "resource_limits")
|
|
@@ -975,31 +974,31 @@ class _OceanLaunchSpecState:
|
|
|
975
974
|
def resource_limits(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecResourceLimitArgs']]]]):
|
|
976
975
|
pulumi.set(self, "resource_limits", value)
|
|
977
976
|
|
|
978
|
-
@property
|
|
977
|
+
@_builtins.property
|
|
979
978
|
@pulumi.getter(name="restrictScaleDown")
|
|
980
|
-
def restrict_scale_down(self) -> Optional[pulumi.Input[
|
|
979
|
+
def restrict_scale_down(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
981
980
|
"""
|
|
982
981
|
Boolean. When set to `true`, nodes will be treated as if all pods running have the restrict-scale-down label. Therefore, Ocean will not scale nodes down unless empty.
|
|
983
982
|
"""
|
|
984
983
|
return pulumi.get(self, "restrict_scale_down")
|
|
985
984
|
|
|
986
985
|
@restrict_scale_down.setter
|
|
987
|
-
def restrict_scale_down(self, value: Optional[pulumi.Input[
|
|
986
|
+
def restrict_scale_down(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
988
987
|
pulumi.set(self, "restrict_scale_down", value)
|
|
989
988
|
|
|
990
|
-
@property
|
|
989
|
+
@_builtins.property
|
|
991
990
|
@pulumi.getter(name="rootVolumeSize")
|
|
992
|
-
def root_volume_size(self) -> Optional[pulumi.Input[
|
|
991
|
+
def root_volume_size(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
993
992
|
"""
|
|
994
993
|
Set root volume size (in GB).
|
|
995
994
|
"""
|
|
996
995
|
return pulumi.get(self, "root_volume_size")
|
|
997
996
|
|
|
998
997
|
@root_volume_size.setter
|
|
999
|
-
def root_volume_size(self, value: Optional[pulumi.Input[
|
|
998
|
+
def root_volume_size(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
1000
999
|
pulumi.set(self, "root_volume_size", value)
|
|
1001
1000
|
|
|
1002
|
-
@property
|
|
1001
|
+
@_builtins.property
|
|
1003
1002
|
@pulumi.getter(name="schedulingShutdownHours")
|
|
1004
1003
|
def scheduling_shutdown_hours(self) -> Optional[pulumi.Input['OceanLaunchSpecSchedulingShutdownHoursArgs']]:
|
|
1005
1004
|
"""
|
|
@@ -1011,7 +1010,7 @@ class _OceanLaunchSpecState:
|
|
|
1011
1010
|
def scheduling_shutdown_hours(self, value: Optional[pulumi.Input['OceanLaunchSpecSchedulingShutdownHoursArgs']]):
|
|
1012
1011
|
pulumi.set(self, "scheduling_shutdown_hours", value)
|
|
1013
1012
|
|
|
1014
|
-
@property
|
|
1013
|
+
@_builtins.property
|
|
1015
1014
|
@pulumi.getter(name="schedulingTasks")
|
|
1016
1015
|
def scheduling_tasks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecSchedulingTaskArgs']]]]:
|
|
1017
1016
|
"""
|
|
@@ -1023,19 +1022,19 @@ class _OceanLaunchSpecState:
|
|
|
1023
1022
|
def scheduling_tasks(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecSchedulingTaskArgs']]]]):
|
|
1024
1023
|
pulumi.set(self, "scheduling_tasks", value)
|
|
1025
1024
|
|
|
1026
|
-
@property
|
|
1025
|
+
@_builtins.property
|
|
1027
1026
|
@pulumi.getter(name="securityGroups")
|
|
1028
|
-
def security_groups(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
1027
|
+
def security_groups(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
1029
1028
|
"""
|
|
1030
1029
|
Optionally adds security group IDs.
|
|
1031
1030
|
"""
|
|
1032
1031
|
return pulumi.get(self, "security_groups")
|
|
1033
1032
|
|
|
1034
1033
|
@security_groups.setter
|
|
1035
|
-
def security_groups(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
1034
|
+
def security_groups(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
1036
1035
|
pulumi.set(self, "security_groups", value)
|
|
1037
1036
|
|
|
1038
|
-
@property
|
|
1037
|
+
@_builtins.property
|
|
1039
1038
|
@pulumi.getter(name="startupTaints")
|
|
1040
1039
|
def startup_taints(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecStartupTaintArgs']]]]:
|
|
1041
1040
|
"""
|
|
@@ -1047,7 +1046,7 @@ class _OceanLaunchSpecState:
|
|
|
1047
1046
|
def startup_taints(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecStartupTaintArgs']]]]):
|
|
1048
1047
|
pulumi.set(self, "startup_taints", value)
|
|
1049
1048
|
|
|
1050
|
-
@property
|
|
1049
|
+
@_builtins.property
|
|
1051
1050
|
@pulumi.getter
|
|
1052
1051
|
def strategies(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecStrategyArgs']]]]:
|
|
1053
1052
|
return pulumi.get(self, "strategies")
|
|
@@ -1056,19 +1055,19 @@ class _OceanLaunchSpecState:
|
|
|
1056
1055
|
def strategies(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecStrategyArgs']]]]):
|
|
1057
1056
|
pulumi.set(self, "strategies", value)
|
|
1058
1057
|
|
|
1059
|
-
@property
|
|
1058
|
+
@_builtins.property
|
|
1060
1059
|
@pulumi.getter(name="subnetIds")
|
|
1061
|
-
def subnet_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
1060
|
+
def subnet_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
1062
1061
|
"""
|
|
1063
1062
|
A list of subnet IDs.
|
|
1064
1063
|
"""
|
|
1065
1064
|
return pulumi.get(self, "subnet_ids")
|
|
1066
1065
|
|
|
1067
1066
|
@subnet_ids.setter
|
|
1068
|
-
def subnet_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
1067
|
+
def subnet_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
1069
1068
|
pulumi.set(self, "subnet_ids", value)
|
|
1070
1069
|
|
|
1071
|
-
@property
|
|
1070
|
+
@_builtins.property
|
|
1072
1071
|
@pulumi.getter
|
|
1073
1072
|
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecTagArgs']]]]:
|
|
1074
1073
|
"""
|
|
@@ -1080,7 +1079,7 @@ class _OceanLaunchSpecState:
|
|
|
1080
1079
|
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecTagArgs']]]]):
|
|
1081
1080
|
pulumi.set(self, "tags", value)
|
|
1082
1081
|
|
|
1083
|
-
@property
|
|
1082
|
+
@_builtins.property
|
|
1084
1083
|
@pulumi.getter
|
|
1085
1084
|
def taints(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecTaintArgs']]]]:
|
|
1086
1085
|
"""
|
|
@@ -1092,7 +1091,7 @@ class _OceanLaunchSpecState:
|
|
|
1092
1091
|
def taints(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OceanLaunchSpecTaintArgs']]]]):
|
|
1093
1092
|
pulumi.set(self, "taints", value)
|
|
1094
1093
|
|
|
1095
|
-
@property
|
|
1094
|
+
@_builtins.property
|
|
1096
1095
|
@pulumi.getter(name="updatePolicy")
|
|
1097
1096
|
def update_policy(self) -> Optional[pulumi.Input['OceanLaunchSpecUpdatePolicyArgs']]:
|
|
1098
1097
|
return pulumi.get(self, "update_policy")
|
|
@@ -1101,16 +1100,16 @@ class _OceanLaunchSpecState:
|
|
|
1101
1100
|
def update_policy(self, value: Optional[pulumi.Input['OceanLaunchSpecUpdatePolicyArgs']]):
|
|
1102
1101
|
pulumi.set(self, "update_policy", value)
|
|
1103
1102
|
|
|
1104
|
-
@property
|
|
1103
|
+
@_builtins.property
|
|
1105
1104
|
@pulumi.getter(name="userData")
|
|
1106
|
-
def user_data(self) -> Optional[pulumi.Input[
|
|
1105
|
+
def user_data(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1107
1106
|
"""
|
|
1108
1107
|
Base64-encoded MIME user data to make available to the instances.
|
|
1109
1108
|
"""
|
|
1110
1109
|
return pulumi.get(self, "user_data")
|
|
1111
1110
|
|
|
1112
1111
|
@user_data.setter
|
|
1113
|
-
def user_data(self, value: Optional[pulumi.Input[
|
|
1112
|
+
def user_data(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
1114
1113
|
pulumi.set(self, "user_data", value)
|
|
1115
1114
|
|
|
1116
1115
|
|
|
@@ -1120,7 +1119,7 @@ class OceanLaunchSpec(pulumi.CustomResource):
|
|
|
1120
1119
|
def __init__(__self__,
|
|
1121
1120
|
resource_name: str,
|
|
1122
1121
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
1123
|
-
associate_public_ip_address: Optional[pulumi.Input[
|
|
1122
|
+
associate_public_ip_address: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
1124
1123
|
autoscale_downs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecAutoscaleDownArgs', 'OceanLaunchSpecAutoscaleDownArgsDict']]]]] = None,
|
|
1125
1124
|
autoscale_headrooms: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecAutoscaleHeadroomArgs', 'OceanLaunchSpecAutoscaleHeadroomArgsDict']]]]] = None,
|
|
1126
1125
|
autoscale_headrooms_automatics: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecAutoscaleHeadroomsAutomaticArgs', 'OceanLaunchSpecAutoscaleHeadroomsAutomaticArgsDict']]]]] = None,
|
|
@@ -1129,32 +1128,32 @@ class OceanLaunchSpec(pulumi.CustomResource):
|
|
|
1129
1128
|
delete_options: Optional[pulumi.Input[Union['OceanLaunchSpecDeleteOptionsArgs', 'OceanLaunchSpecDeleteOptionsArgsDict']]] = None,
|
|
1130
1129
|
elastic_ip_pools: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecElasticIpPoolArgs', 'OceanLaunchSpecElasticIpPoolArgsDict']]]]] = None,
|
|
1131
1130
|
ephemeral_storages: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecEphemeralStorageArgs', 'OceanLaunchSpecEphemeralStorageArgsDict']]]]] = None,
|
|
1132
|
-
iam_instance_profile: Optional[pulumi.Input[
|
|
1133
|
-
image_id: Optional[pulumi.Input[
|
|
1131
|
+
iam_instance_profile: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1132
|
+
image_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1134
1133
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecImageArgs', 'OceanLaunchSpecImageArgsDict']]]]] = None,
|
|
1135
1134
|
instance_metadata_options: Optional[pulumi.Input[Union['OceanLaunchSpecInstanceMetadataOptionsArgs', 'OceanLaunchSpecInstanceMetadataOptionsArgsDict']]] = None,
|
|
1136
1135
|
instance_store_policy: Optional[pulumi.Input[Union['OceanLaunchSpecInstanceStorePolicyArgs', 'OceanLaunchSpecInstanceStorePolicyArgsDict']]] = None,
|
|
1137
|
-
instance_types: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
1136
|
+
instance_types: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
1138
1137
|
instance_types_filters: Optional[pulumi.Input[Union['OceanLaunchSpecInstanceTypesFiltersArgs', 'OceanLaunchSpecInstanceTypesFiltersArgsDict']]] = None,
|
|
1139
1138
|
labels: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecLabelArgs', 'OceanLaunchSpecLabelArgsDict']]]]] = None,
|
|
1140
|
-
name: Optional[pulumi.Input[
|
|
1141
|
-
ocean_id: Optional[pulumi.Input[
|
|
1142
|
-
preferred_od_types: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
1143
|
-
preferred_spot_types: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
1144
|
-
reserved_enis: Optional[pulumi.Input[
|
|
1139
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1140
|
+
ocean_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1141
|
+
preferred_od_types: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
1142
|
+
preferred_spot_types: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
1143
|
+
reserved_enis: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1145
1144
|
resource_limits: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecResourceLimitArgs', 'OceanLaunchSpecResourceLimitArgsDict']]]]] = None,
|
|
1146
|
-
restrict_scale_down: Optional[pulumi.Input[
|
|
1147
|
-
root_volume_size: Optional[pulumi.Input[
|
|
1145
|
+
restrict_scale_down: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
1146
|
+
root_volume_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1148
1147
|
scheduling_shutdown_hours: Optional[pulumi.Input[Union['OceanLaunchSpecSchedulingShutdownHoursArgs', 'OceanLaunchSpecSchedulingShutdownHoursArgsDict']]] = None,
|
|
1149
1148
|
scheduling_tasks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecSchedulingTaskArgs', 'OceanLaunchSpecSchedulingTaskArgsDict']]]]] = None,
|
|
1150
|
-
security_groups: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
1149
|
+
security_groups: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
1151
1150
|
startup_taints: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecStartupTaintArgs', 'OceanLaunchSpecStartupTaintArgsDict']]]]] = None,
|
|
1152
1151
|
strategies: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecStrategyArgs', 'OceanLaunchSpecStrategyArgsDict']]]]] = None,
|
|
1153
|
-
subnet_ids: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
1152
|
+
subnet_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
1154
1153
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecTagArgs', 'OceanLaunchSpecTagArgsDict']]]]] = None,
|
|
1155
1154
|
taints: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecTaintArgs', 'OceanLaunchSpecTaintArgsDict']]]]] = None,
|
|
1156
1155
|
update_policy: Optional[pulumi.Input[Union['OceanLaunchSpecUpdatePolicyArgs', 'OceanLaunchSpecUpdatePolicyArgsDict']]] = None,
|
|
1157
|
-
user_data: Optional[pulumi.Input[
|
|
1156
|
+
user_data: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1158
1157
|
__props__=None):
|
|
1159
1158
|
"""
|
|
1160
1159
|
Manages a Spotinst Ocean AWS [Virtual Node Group](https://docs.spot.io/ocean/features/launch-specifications) resource.
|
|
@@ -1171,37 +1170,37 @@ class OceanLaunchSpec(pulumi.CustomResource):
|
|
|
1171
1170
|
|
|
1172
1171
|
:param str resource_name: The name of the resource.
|
|
1173
1172
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
1174
|
-
:param pulumi.Input[
|
|
1173
|
+
:param pulumi.Input[_builtins.bool] associate_public_ip_address: Configure public IP address allocation.
|
|
1175
1174
|
:param pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecAutoscaleDownArgs', 'OceanLaunchSpecAutoscaleDownArgsDict']]]] autoscale_downs: Auto Scaling scale down operations.
|
|
1176
1175
|
:param pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecAutoscaleHeadroomArgs', 'OceanLaunchSpecAutoscaleHeadroomArgsDict']]]] autoscale_headrooms: Set custom headroom per Virtual Node Group. Provide a list of headrooms object.
|
|
1177
1176
|
:param pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecAutoscaleHeadroomsAutomaticArgs', 'OceanLaunchSpecAutoscaleHeadroomsAutomaticArgsDict']]]] autoscale_headrooms_automatics: Set automatic headroom per launch spec.
|
|
1178
1177
|
:param pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecBlockDeviceMappingArgs', 'OceanLaunchSpecBlockDeviceMappingArgsDict']]]] block_device_mappings: Object. Array list of block devices that are exposed to the instance, specify either virtual devices and EBS volumes.
|
|
1179
1178
|
:param pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecElasticIpPoolArgs', 'OceanLaunchSpecElasticIpPoolArgsDict']]]] elastic_ip_pools: Assign an Elastic IP to the instances spun by the Virtual Node Group. Can be null.
|
|
1180
|
-
:param pulumi.Input[
|
|
1181
|
-
:param pulumi.Input[
|
|
1179
|
+
:param pulumi.Input[_builtins.str] iam_instance_profile: The ARN or name of an IAM instance profile to associate with launched instances.
|
|
1180
|
+
:param pulumi.Input[_builtins.str] image_id: ID of the image used to launch the instances.
|
|
1182
1181
|
:param pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecImageArgs', 'OceanLaunchSpecImageArgsDict']]]] images: Array of objects (Image object, containing the id of the image used to launch instances.) You can configure VNG with either the imageId or images objects, but not both simultaneously.
|
|
1183
1182
|
For each architecture type (amd64, arm64) only one AMI is allowed. Valid values: null, or an array with at least one element.
|
|
1184
1183
|
:param pulumi.Input[Union['OceanLaunchSpecInstanceMetadataOptionsArgs', 'OceanLaunchSpecInstanceMetadataOptionsArgsDict']] instance_metadata_options: Ocean instance metadata options object for IMDSv2.
|
|
1185
1184
|
:param pulumi.Input[Union['OceanLaunchSpecInstanceStorePolicyArgs', 'OceanLaunchSpecInstanceStorePolicyArgsDict']] instance_store_policy: Determines the utilization of instance store volumes. If not defined, instance store volumes will not be used.
|
|
1186
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
1185
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] instance_types: A list of instance types allowed to be provisioned for pods pending under the specified launch specification. The list overrides the list defined for the cluster.
|
|
1187
1186
|
:param pulumi.Input[Union['OceanLaunchSpecInstanceTypesFiltersArgs', 'OceanLaunchSpecInstanceTypesFiltersArgsDict']] instance_types_filters: The instance types that match with all filters compose the Virtual Node Group's instanceTypes parameter.
|
|
1188
1187
|
The architectures that come from the Virtual Node Group's images will be taken into account when using this parameter. Cannot be configured together with Virtual Node Group's instanceTypes and with the Cluster's whitelist/blacklist/filters.
|
|
1189
1188
|
:param pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecLabelArgs', 'OceanLaunchSpecLabelArgsDict']]]] labels: Optionally adds labels to instances launched in the cluster.
|
|
1190
|
-
:param pulumi.Input[
|
|
1191
|
-
:param pulumi.Input[
|
|
1192
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
1193
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
1194
|
-
:param pulumi.Input[
|
|
1195
|
-
:param pulumi.Input[
|
|
1196
|
-
:param pulumi.Input[
|
|
1189
|
+
:param pulumi.Input[_builtins.str] name: The name of the Virtual Node Group.
|
|
1190
|
+
:param pulumi.Input[_builtins.str] ocean_id: The ID of the Ocean cluster.
|
|
1191
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] preferred_od_types: A list of instance types. Takes the preferred types into consideration while maintaining a variety of machine types running for optimized distribution.
|
|
1192
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] preferred_spot_types: A list of instance types. Takes the preferred types into consideration while maintaining a variety of machine types running for optimized distribution.
|
|
1193
|
+
:param pulumi.Input[_builtins.int] reserved_enis: Specifies the count of ENIs to reserve per instance type for scaling purposes.
|
|
1194
|
+
:param pulumi.Input[_builtins.bool] restrict_scale_down: Boolean. When set to `true`, nodes will be treated as if all pods running have the restrict-scale-down label. Therefore, Ocean will not scale nodes down unless empty.
|
|
1195
|
+
:param pulumi.Input[_builtins.int] root_volume_size: Set root volume size (in GB).
|
|
1197
1196
|
:param pulumi.Input[Union['OceanLaunchSpecSchedulingShutdownHoursArgs', 'OceanLaunchSpecSchedulingShutdownHoursArgsDict']] scheduling_shutdown_hours: Used to specify times that the nodes in the virtual node group will be taken down.
|
|
1198
1197
|
:param pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecSchedulingTaskArgs', 'OceanLaunchSpecSchedulingTaskArgsDict']]]] scheduling_tasks: Used to define scheduled tasks such as a manual headroom update.
|
|
1199
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
1198
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] security_groups: Optionally adds security group IDs.
|
|
1200
1199
|
:param pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecStartupTaintArgs', 'OceanLaunchSpecStartupTaintArgsDict']]]] startup_taints: Temporary taints applied to a node during its initialization phase. For a startup taint to work, it must also be set as a regular taint in the userData for the cluster.
|
|
1201
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
1200
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] subnet_ids: A list of subnet IDs.
|
|
1202
1201
|
:param pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecTagArgs', 'OceanLaunchSpecTagArgsDict']]]] tags: A key/value mapping of tags to assign to the resource.
|
|
1203
1202
|
:param pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecTaintArgs', 'OceanLaunchSpecTaintArgsDict']]]] taints: Optionally adds labels to instances launched in the cluster.
|
|
1204
|
-
:param pulumi.Input[
|
|
1203
|
+
:param pulumi.Input[_builtins.str] user_data: Base64-encoded MIME user data to make available to the instances.
|
|
1205
1204
|
"""
|
|
1206
1205
|
...
|
|
1207
1206
|
@overload
|
|
@@ -1237,7 +1236,7 @@ class OceanLaunchSpec(pulumi.CustomResource):
|
|
|
1237
1236
|
def _internal_init(__self__,
|
|
1238
1237
|
resource_name: str,
|
|
1239
1238
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
1240
|
-
associate_public_ip_address: Optional[pulumi.Input[
|
|
1239
|
+
associate_public_ip_address: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
1241
1240
|
autoscale_downs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecAutoscaleDownArgs', 'OceanLaunchSpecAutoscaleDownArgsDict']]]]] = None,
|
|
1242
1241
|
autoscale_headrooms: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecAutoscaleHeadroomArgs', 'OceanLaunchSpecAutoscaleHeadroomArgsDict']]]]] = None,
|
|
1243
1242
|
autoscale_headrooms_automatics: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecAutoscaleHeadroomsAutomaticArgs', 'OceanLaunchSpecAutoscaleHeadroomsAutomaticArgsDict']]]]] = None,
|
|
@@ -1246,32 +1245,32 @@ class OceanLaunchSpec(pulumi.CustomResource):
|
|
|
1246
1245
|
delete_options: Optional[pulumi.Input[Union['OceanLaunchSpecDeleteOptionsArgs', 'OceanLaunchSpecDeleteOptionsArgsDict']]] = None,
|
|
1247
1246
|
elastic_ip_pools: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecElasticIpPoolArgs', 'OceanLaunchSpecElasticIpPoolArgsDict']]]]] = None,
|
|
1248
1247
|
ephemeral_storages: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecEphemeralStorageArgs', 'OceanLaunchSpecEphemeralStorageArgsDict']]]]] = None,
|
|
1249
|
-
iam_instance_profile: Optional[pulumi.Input[
|
|
1250
|
-
image_id: Optional[pulumi.Input[
|
|
1248
|
+
iam_instance_profile: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1249
|
+
image_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1251
1250
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecImageArgs', 'OceanLaunchSpecImageArgsDict']]]]] = None,
|
|
1252
1251
|
instance_metadata_options: Optional[pulumi.Input[Union['OceanLaunchSpecInstanceMetadataOptionsArgs', 'OceanLaunchSpecInstanceMetadataOptionsArgsDict']]] = None,
|
|
1253
1252
|
instance_store_policy: Optional[pulumi.Input[Union['OceanLaunchSpecInstanceStorePolicyArgs', 'OceanLaunchSpecInstanceStorePolicyArgsDict']]] = None,
|
|
1254
|
-
instance_types: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
1253
|
+
instance_types: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
1255
1254
|
instance_types_filters: Optional[pulumi.Input[Union['OceanLaunchSpecInstanceTypesFiltersArgs', 'OceanLaunchSpecInstanceTypesFiltersArgsDict']]] = None,
|
|
1256
1255
|
labels: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecLabelArgs', 'OceanLaunchSpecLabelArgsDict']]]]] = None,
|
|
1257
|
-
name: Optional[pulumi.Input[
|
|
1258
|
-
ocean_id: Optional[pulumi.Input[
|
|
1259
|
-
preferred_od_types: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
1260
|
-
preferred_spot_types: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
1261
|
-
reserved_enis: Optional[pulumi.Input[
|
|
1256
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1257
|
+
ocean_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1258
|
+
preferred_od_types: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
1259
|
+
preferred_spot_types: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
1260
|
+
reserved_enis: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1262
1261
|
resource_limits: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecResourceLimitArgs', 'OceanLaunchSpecResourceLimitArgsDict']]]]] = None,
|
|
1263
|
-
restrict_scale_down: Optional[pulumi.Input[
|
|
1264
|
-
root_volume_size: Optional[pulumi.Input[
|
|
1262
|
+
restrict_scale_down: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
1263
|
+
root_volume_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1265
1264
|
scheduling_shutdown_hours: Optional[pulumi.Input[Union['OceanLaunchSpecSchedulingShutdownHoursArgs', 'OceanLaunchSpecSchedulingShutdownHoursArgsDict']]] = None,
|
|
1266
1265
|
scheduling_tasks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecSchedulingTaskArgs', 'OceanLaunchSpecSchedulingTaskArgsDict']]]]] = None,
|
|
1267
|
-
security_groups: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
1266
|
+
security_groups: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
1268
1267
|
startup_taints: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecStartupTaintArgs', 'OceanLaunchSpecStartupTaintArgsDict']]]]] = None,
|
|
1269
1268
|
strategies: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecStrategyArgs', 'OceanLaunchSpecStrategyArgsDict']]]]] = None,
|
|
1270
|
-
subnet_ids: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
1269
|
+
subnet_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
1271
1270
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecTagArgs', 'OceanLaunchSpecTagArgsDict']]]]] = None,
|
|
1272
1271
|
taints: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecTaintArgs', 'OceanLaunchSpecTaintArgsDict']]]]] = None,
|
|
1273
1272
|
update_policy: Optional[pulumi.Input[Union['OceanLaunchSpecUpdatePolicyArgs', 'OceanLaunchSpecUpdatePolicyArgsDict']]] = None,
|
|
1274
|
-
user_data: Optional[pulumi.Input[
|
|
1273
|
+
user_data: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1275
1274
|
__props__=None):
|
|
1276
1275
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
1277
1276
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -1328,7 +1327,7 @@ class OceanLaunchSpec(pulumi.CustomResource):
|
|
|
1328
1327
|
def get(resource_name: str,
|
|
1329
1328
|
id: pulumi.Input[str],
|
|
1330
1329
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
1331
|
-
associate_public_ip_address: Optional[pulumi.Input[
|
|
1330
|
+
associate_public_ip_address: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
1332
1331
|
autoscale_downs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecAutoscaleDownArgs', 'OceanLaunchSpecAutoscaleDownArgsDict']]]]] = None,
|
|
1333
1332
|
autoscale_headrooms: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecAutoscaleHeadroomArgs', 'OceanLaunchSpecAutoscaleHeadroomArgsDict']]]]] = None,
|
|
1334
1333
|
autoscale_headrooms_automatics: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecAutoscaleHeadroomsAutomaticArgs', 'OceanLaunchSpecAutoscaleHeadroomsAutomaticArgsDict']]]]] = None,
|
|
@@ -1337,32 +1336,32 @@ class OceanLaunchSpec(pulumi.CustomResource):
|
|
|
1337
1336
|
delete_options: Optional[pulumi.Input[Union['OceanLaunchSpecDeleteOptionsArgs', 'OceanLaunchSpecDeleteOptionsArgsDict']]] = None,
|
|
1338
1337
|
elastic_ip_pools: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecElasticIpPoolArgs', 'OceanLaunchSpecElasticIpPoolArgsDict']]]]] = None,
|
|
1339
1338
|
ephemeral_storages: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecEphemeralStorageArgs', 'OceanLaunchSpecEphemeralStorageArgsDict']]]]] = None,
|
|
1340
|
-
iam_instance_profile: Optional[pulumi.Input[
|
|
1341
|
-
image_id: Optional[pulumi.Input[
|
|
1339
|
+
iam_instance_profile: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1340
|
+
image_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1342
1341
|
images: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecImageArgs', 'OceanLaunchSpecImageArgsDict']]]]] = None,
|
|
1343
1342
|
instance_metadata_options: Optional[pulumi.Input[Union['OceanLaunchSpecInstanceMetadataOptionsArgs', 'OceanLaunchSpecInstanceMetadataOptionsArgsDict']]] = None,
|
|
1344
1343
|
instance_store_policy: Optional[pulumi.Input[Union['OceanLaunchSpecInstanceStorePolicyArgs', 'OceanLaunchSpecInstanceStorePolicyArgsDict']]] = None,
|
|
1345
|
-
instance_types: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
1344
|
+
instance_types: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
1346
1345
|
instance_types_filters: Optional[pulumi.Input[Union['OceanLaunchSpecInstanceTypesFiltersArgs', 'OceanLaunchSpecInstanceTypesFiltersArgsDict']]] = None,
|
|
1347
1346
|
labels: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecLabelArgs', 'OceanLaunchSpecLabelArgsDict']]]]] = None,
|
|
1348
|
-
name: Optional[pulumi.Input[
|
|
1349
|
-
ocean_id: Optional[pulumi.Input[
|
|
1350
|
-
preferred_od_types: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
1351
|
-
preferred_spot_types: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
1352
|
-
reserved_enis: Optional[pulumi.Input[
|
|
1347
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1348
|
+
ocean_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1349
|
+
preferred_od_types: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
1350
|
+
preferred_spot_types: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
1351
|
+
reserved_enis: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1353
1352
|
resource_limits: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecResourceLimitArgs', 'OceanLaunchSpecResourceLimitArgsDict']]]]] = None,
|
|
1354
|
-
restrict_scale_down: Optional[pulumi.Input[
|
|
1355
|
-
root_volume_size: Optional[pulumi.Input[
|
|
1353
|
+
restrict_scale_down: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
1354
|
+
root_volume_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
1356
1355
|
scheduling_shutdown_hours: Optional[pulumi.Input[Union['OceanLaunchSpecSchedulingShutdownHoursArgs', 'OceanLaunchSpecSchedulingShutdownHoursArgsDict']]] = None,
|
|
1357
1356
|
scheduling_tasks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecSchedulingTaskArgs', 'OceanLaunchSpecSchedulingTaskArgsDict']]]]] = None,
|
|
1358
|
-
security_groups: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
1357
|
+
security_groups: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
1359
1358
|
startup_taints: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecStartupTaintArgs', 'OceanLaunchSpecStartupTaintArgsDict']]]]] = None,
|
|
1360
1359
|
strategies: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecStrategyArgs', 'OceanLaunchSpecStrategyArgsDict']]]]] = None,
|
|
1361
|
-
subnet_ids: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
1360
|
+
subnet_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
1362
1361
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecTagArgs', 'OceanLaunchSpecTagArgsDict']]]]] = None,
|
|
1363
1362
|
taints: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecTaintArgs', 'OceanLaunchSpecTaintArgsDict']]]]] = None,
|
|
1364
1363
|
update_policy: Optional[pulumi.Input[Union['OceanLaunchSpecUpdatePolicyArgs', 'OceanLaunchSpecUpdatePolicyArgsDict']]] = None,
|
|
1365
|
-
user_data: Optional[pulumi.Input[
|
|
1364
|
+
user_data: Optional[pulumi.Input[_builtins.str]] = None) -> 'OceanLaunchSpec':
|
|
1366
1365
|
"""
|
|
1367
1366
|
Get an existing OceanLaunchSpec resource's state with the given name, id, and optional extra
|
|
1368
1367
|
properties used to qualify the lookup.
|
|
@@ -1370,37 +1369,37 @@ class OceanLaunchSpec(pulumi.CustomResource):
|
|
|
1370
1369
|
:param str resource_name: The unique name of the resulting resource.
|
|
1371
1370
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
1372
1371
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
1373
|
-
:param pulumi.Input[
|
|
1372
|
+
:param pulumi.Input[_builtins.bool] associate_public_ip_address: Configure public IP address allocation.
|
|
1374
1373
|
:param pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecAutoscaleDownArgs', 'OceanLaunchSpecAutoscaleDownArgsDict']]]] autoscale_downs: Auto Scaling scale down operations.
|
|
1375
1374
|
:param pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecAutoscaleHeadroomArgs', 'OceanLaunchSpecAutoscaleHeadroomArgsDict']]]] autoscale_headrooms: Set custom headroom per Virtual Node Group. Provide a list of headrooms object.
|
|
1376
1375
|
:param pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecAutoscaleHeadroomsAutomaticArgs', 'OceanLaunchSpecAutoscaleHeadroomsAutomaticArgsDict']]]] autoscale_headrooms_automatics: Set automatic headroom per launch spec.
|
|
1377
1376
|
:param pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecBlockDeviceMappingArgs', 'OceanLaunchSpecBlockDeviceMappingArgsDict']]]] block_device_mappings: Object. Array list of block devices that are exposed to the instance, specify either virtual devices and EBS volumes.
|
|
1378
1377
|
:param pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecElasticIpPoolArgs', 'OceanLaunchSpecElasticIpPoolArgsDict']]]] elastic_ip_pools: Assign an Elastic IP to the instances spun by the Virtual Node Group. Can be null.
|
|
1379
|
-
:param pulumi.Input[
|
|
1380
|
-
:param pulumi.Input[
|
|
1378
|
+
:param pulumi.Input[_builtins.str] iam_instance_profile: The ARN or name of an IAM instance profile to associate with launched instances.
|
|
1379
|
+
:param pulumi.Input[_builtins.str] image_id: ID of the image used to launch the instances.
|
|
1381
1380
|
:param pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecImageArgs', 'OceanLaunchSpecImageArgsDict']]]] images: Array of objects (Image object, containing the id of the image used to launch instances.) You can configure VNG with either the imageId or images objects, but not both simultaneously.
|
|
1382
1381
|
For each architecture type (amd64, arm64) only one AMI is allowed. Valid values: null, or an array with at least one element.
|
|
1383
1382
|
:param pulumi.Input[Union['OceanLaunchSpecInstanceMetadataOptionsArgs', 'OceanLaunchSpecInstanceMetadataOptionsArgsDict']] instance_metadata_options: Ocean instance metadata options object for IMDSv2.
|
|
1384
1383
|
:param pulumi.Input[Union['OceanLaunchSpecInstanceStorePolicyArgs', 'OceanLaunchSpecInstanceStorePolicyArgsDict']] instance_store_policy: Determines the utilization of instance store volumes. If not defined, instance store volumes will not be used.
|
|
1385
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
1384
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] instance_types: A list of instance types allowed to be provisioned for pods pending under the specified launch specification. The list overrides the list defined for the cluster.
|
|
1386
1385
|
:param pulumi.Input[Union['OceanLaunchSpecInstanceTypesFiltersArgs', 'OceanLaunchSpecInstanceTypesFiltersArgsDict']] instance_types_filters: The instance types that match with all filters compose the Virtual Node Group's instanceTypes parameter.
|
|
1387
1386
|
The architectures that come from the Virtual Node Group's images will be taken into account when using this parameter. Cannot be configured together with Virtual Node Group's instanceTypes and with the Cluster's whitelist/blacklist/filters.
|
|
1388
1387
|
:param pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecLabelArgs', 'OceanLaunchSpecLabelArgsDict']]]] labels: Optionally adds labels to instances launched in the cluster.
|
|
1389
|
-
:param pulumi.Input[
|
|
1390
|
-
:param pulumi.Input[
|
|
1391
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
1392
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
1393
|
-
:param pulumi.Input[
|
|
1394
|
-
:param pulumi.Input[
|
|
1395
|
-
:param pulumi.Input[
|
|
1388
|
+
:param pulumi.Input[_builtins.str] name: The name of the Virtual Node Group.
|
|
1389
|
+
:param pulumi.Input[_builtins.str] ocean_id: The ID of the Ocean cluster.
|
|
1390
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] preferred_od_types: A list of instance types. Takes the preferred types into consideration while maintaining a variety of machine types running for optimized distribution.
|
|
1391
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] preferred_spot_types: A list of instance types. Takes the preferred types into consideration while maintaining a variety of machine types running for optimized distribution.
|
|
1392
|
+
:param pulumi.Input[_builtins.int] reserved_enis: Specifies the count of ENIs to reserve per instance type for scaling purposes.
|
|
1393
|
+
:param pulumi.Input[_builtins.bool] restrict_scale_down: Boolean. When set to `true`, nodes will be treated as if all pods running have the restrict-scale-down label. Therefore, Ocean will not scale nodes down unless empty.
|
|
1394
|
+
:param pulumi.Input[_builtins.int] root_volume_size: Set root volume size (in GB).
|
|
1396
1395
|
:param pulumi.Input[Union['OceanLaunchSpecSchedulingShutdownHoursArgs', 'OceanLaunchSpecSchedulingShutdownHoursArgsDict']] scheduling_shutdown_hours: Used to specify times that the nodes in the virtual node group will be taken down.
|
|
1397
1396
|
:param pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecSchedulingTaskArgs', 'OceanLaunchSpecSchedulingTaskArgsDict']]]] scheduling_tasks: Used to define scheduled tasks such as a manual headroom update.
|
|
1398
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
1397
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] security_groups: Optionally adds security group IDs.
|
|
1399
1398
|
:param pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecStartupTaintArgs', 'OceanLaunchSpecStartupTaintArgsDict']]]] startup_taints: Temporary taints applied to a node during its initialization phase. For a startup taint to work, it must also be set as a regular taint in the userData for the cluster.
|
|
1400
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
1399
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] subnet_ids: A list of subnet IDs.
|
|
1401
1400
|
:param pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecTagArgs', 'OceanLaunchSpecTagArgsDict']]]] tags: A key/value mapping of tags to assign to the resource.
|
|
1402
1401
|
:param pulumi.Input[Sequence[pulumi.Input[Union['OceanLaunchSpecTaintArgs', 'OceanLaunchSpecTaintArgsDict']]]] taints: Optionally adds labels to instances launched in the cluster.
|
|
1403
|
-
:param pulumi.Input[
|
|
1402
|
+
:param pulumi.Input[_builtins.str] user_data: Base64-encoded MIME user data to make available to the instances.
|
|
1404
1403
|
"""
|
|
1405
1404
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
1406
1405
|
|
|
@@ -1443,15 +1442,15 @@ class OceanLaunchSpec(pulumi.CustomResource):
|
|
|
1443
1442
|
__props__.__dict__["user_data"] = user_data
|
|
1444
1443
|
return OceanLaunchSpec(resource_name, opts=opts, __props__=__props__)
|
|
1445
1444
|
|
|
1446
|
-
@property
|
|
1445
|
+
@_builtins.property
|
|
1447
1446
|
@pulumi.getter(name="associatePublicIpAddress")
|
|
1448
|
-
def associate_public_ip_address(self) -> pulumi.Output[Optional[
|
|
1447
|
+
def associate_public_ip_address(self) -> pulumi.Output[Optional[_builtins.bool]]:
|
|
1449
1448
|
"""
|
|
1450
1449
|
Configure public IP address allocation.
|
|
1451
1450
|
"""
|
|
1452
1451
|
return pulumi.get(self, "associate_public_ip_address")
|
|
1453
1452
|
|
|
1454
|
-
@property
|
|
1453
|
+
@_builtins.property
|
|
1455
1454
|
@pulumi.getter(name="autoscaleDowns")
|
|
1456
1455
|
def autoscale_downs(self) -> pulumi.Output[Optional[Sequence['outputs.OceanLaunchSpecAutoscaleDown']]]:
|
|
1457
1456
|
"""
|
|
@@ -1459,7 +1458,7 @@ class OceanLaunchSpec(pulumi.CustomResource):
|
|
|
1459
1458
|
"""
|
|
1460
1459
|
return pulumi.get(self, "autoscale_downs")
|
|
1461
1460
|
|
|
1462
|
-
@property
|
|
1461
|
+
@_builtins.property
|
|
1463
1462
|
@pulumi.getter(name="autoscaleHeadrooms")
|
|
1464
1463
|
def autoscale_headrooms(self) -> pulumi.Output[Optional[Sequence['outputs.OceanLaunchSpecAutoscaleHeadroom']]]:
|
|
1465
1464
|
"""
|
|
@@ -1467,7 +1466,7 @@ class OceanLaunchSpec(pulumi.CustomResource):
|
|
|
1467
1466
|
"""
|
|
1468
1467
|
return pulumi.get(self, "autoscale_headrooms")
|
|
1469
1468
|
|
|
1470
|
-
@property
|
|
1469
|
+
@_builtins.property
|
|
1471
1470
|
@pulumi.getter(name="autoscaleHeadroomsAutomatics")
|
|
1472
1471
|
def autoscale_headrooms_automatics(self) -> pulumi.Output[Optional[Sequence['outputs.OceanLaunchSpecAutoscaleHeadroomsAutomatic']]]:
|
|
1473
1472
|
"""
|
|
@@ -1475,7 +1474,7 @@ class OceanLaunchSpec(pulumi.CustomResource):
|
|
|
1475
1474
|
"""
|
|
1476
1475
|
return pulumi.get(self, "autoscale_headrooms_automatics")
|
|
1477
1476
|
|
|
1478
|
-
@property
|
|
1477
|
+
@_builtins.property
|
|
1479
1478
|
@pulumi.getter(name="blockDeviceMappings")
|
|
1480
1479
|
def block_device_mappings(self) -> pulumi.Output[Optional[Sequence['outputs.OceanLaunchSpecBlockDeviceMapping']]]:
|
|
1481
1480
|
"""
|
|
@@ -1483,17 +1482,17 @@ class OceanLaunchSpec(pulumi.CustomResource):
|
|
|
1483
1482
|
"""
|
|
1484
1483
|
return pulumi.get(self, "block_device_mappings")
|
|
1485
1484
|
|
|
1486
|
-
@property
|
|
1485
|
+
@_builtins.property
|
|
1487
1486
|
@pulumi.getter(name="createOptions")
|
|
1488
1487
|
def create_options(self) -> pulumi.Output[Optional['outputs.OceanLaunchSpecCreateOptions']]:
|
|
1489
1488
|
return pulumi.get(self, "create_options")
|
|
1490
1489
|
|
|
1491
|
-
@property
|
|
1490
|
+
@_builtins.property
|
|
1492
1491
|
@pulumi.getter(name="deleteOptions")
|
|
1493
1492
|
def delete_options(self) -> pulumi.Output[Optional['outputs.OceanLaunchSpecDeleteOptions']]:
|
|
1494
1493
|
return pulumi.get(self, "delete_options")
|
|
1495
1494
|
|
|
1496
|
-
@property
|
|
1495
|
+
@_builtins.property
|
|
1497
1496
|
@pulumi.getter(name="elasticIpPools")
|
|
1498
1497
|
def elastic_ip_pools(self) -> pulumi.Output[Optional[Sequence['outputs.OceanLaunchSpecElasticIpPool']]]:
|
|
1499
1498
|
"""
|
|
@@ -1501,28 +1500,28 @@ class OceanLaunchSpec(pulumi.CustomResource):
|
|
|
1501
1500
|
"""
|
|
1502
1501
|
return pulumi.get(self, "elastic_ip_pools")
|
|
1503
1502
|
|
|
1504
|
-
@property
|
|
1503
|
+
@_builtins.property
|
|
1505
1504
|
@pulumi.getter(name="ephemeralStorages")
|
|
1506
1505
|
def ephemeral_storages(self) -> pulumi.Output[Optional[Sequence['outputs.OceanLaunchSpecEphemeralStorage']]]:
|
|
1507
1506
|
return pulumi.get(self, "ephemeral_storages")
|
|
1508
1507
|
|
|
1509
|
-
@property
|
|
1508
|
+
@_builtins.property
|
|
1510
1509
|
@pulumi.getter(name="iamInstanceProfile")
|
|
1511
|
-
def iam_instance_profile(self) -> pulumi.Output[Optional[
|
|
1510
|
+
def iam_instance_profile(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
1512
1511
|
"""
|
|
1513
1512
|
The ARN or name of an IAM instance profile to associate with launched instances.
|
|
1514
1513
|
"""
|
|
1515
1514
|
return pulumi.get(self, "iam_instance_profile")
|
|
1516
1515
|
|
|
1517
|
-
@property
|
|
1516
|
+
@_builtins.property
|
|
1518
1517
|
@pulumi.getter(name="imageId")
|
|
1519
|
-
def image_id(self) -> pulumi.Output[Optional[
|
|
1518
|
+
def image_id(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
1520
1519
|
"""
|
|
1521
1520
|
ID of the image used to launch the instances.
|
|
1522
1521
|
"""
|
|
1523
1522
|
return pulumi.get(self, "image_id")
|
|
1524
1523
|
|
|
1525
|
-
@property
|
|
1524
|
+
@_builtins.property
|
|
1526
1525
|
@pulumi.getter
|
|
1527
1526
|
def images(self) -> pulumi.Output[Optional[Sequence['outputs.OceanLaunchSpecImage']]]:
|
|
1528
1527
|
"""
|
|
@@ -1531,7 +1530,7 @@ class OceanLaunchSpec(pulumi.CustomResource):
|
|
|
1531
1530
|
"""
|
|
1532
1531
|
return pulumi.get(self, "images")
|
|
1533
1532
|
|
|
1534
|
-
@property
|
|
1533
|
+
@_builtins.property
|
|
1535
1534
|
@pulumi.getter(name="instanceMetadataOptions")
|
|
1536
1535
|
def instance_metadata_options(self) -> pulumi.Output[Optional['outputs.OceanLaunchSpecInstanceMetadataOptions']]:
|
|
1537
1536
|
"""
|
|
@@ -1539,7 +1538,7 @@ class OceanLaunchSpec(pulumi.CustomResource):
|
|
|
1539
1538
|
"""
|
|
1540
1539
|
return pulumi.get(self, "instance_metadata_options")
|
|
1541
1540
|
|
|
1542
|
-
@property
|
|
1541
|
+
@_builtins.property
|
|
1543
1542
|
@pulumi.getter(name="instanceStorePolicy")
|
|
1544
1543
|
def instance_store_policy(self) -> pulumi.Output[Optional['outputs.OceanLaunchSpecInstanceStorePolicy']]:
|
|
1545
1544
|
"""
|
|
@@ -1547,15 +1546,15 @@ class OceanLaunchSpec(pulumi.CustomResource):
|
|
|
1547
1546
|
"""
|
|
1548
1547
|
return pulumi.get(self, "instance_store_policy")
|
|
1549
1548
|
|
|
1550
|
-
@property
|
|
1549
|
+
@_builtins.property
|
|
1551
1550
|
@pulumi.getter(name="instanceTypes")
|
|
1552
|
-
def instance_types(self) -> pulumi.Output[Optional[Sequence[
|
|
1551
|
+
def instance_types(self) -> pulumi.Output[Optional[Sequence[_builtins.str]]]:
|
|
1553
1552
|
"""
|
|
1554
1553
|
A list of instance types allowed to be provisioned for pods pending under the specified launch specification. The list overrides the list defined for the cluster.
|
|
1555
1554
|
"""
|
|
1556
1555
|
return pulumi.get(self, "instance_types")
|
|
1557
1556
|
|
|
1558
|
-
@property
|
|
1557
|
+
@_builtins.property
|
|
1559
1558
|
@pulumi.getter(name="instanceTypesFilters")
|
|
1560
1559
|
def instance_types_filters(self) -> pulumi.Output[Optional['outputs.OceanLaunchSpecInstanceTypesFilters']]:
|
|
1561
1560
|
"""
|
|
@@ -1564,7 +1563,7 @@ class OceanLaunchSpec(pulumi.CustomResource):
|
|
|
1564
1563
|
"""
|
|
1565
1564
|
return pulumi.get(self, "instance_types_filters")
|
|
1566
1565
|
|
|
1567
|
-
@property
|
|
1566
|
+
@_builtins.property
|
|
1568
1567
|
@pulumi.getter
|
|
1569
1568
|
def labels(self) -> pulumi.Output[Optional[Sequence['outputs.OceanLaunchSpecLabel']]]:
|
|
1570
1569
|
"""
|
|
@@ -1572,68 +1571,68 @@ class OceanLaunchSpec(pulumi.CustomResource):
|
|
|
1572
1571
|
"""
|
|
1573
1572
|
return pulumi.get(self, "labels")
|
|
1574
1573
|
|
|
1575
|
-
@property
|
|
1574
|
+
@_builtins.property
|
|
1576
1575
|
@pulumi.getter
|
|
1577
|
-
def name(self) -> pulumi.Output[
|
|
1576
|
+
def name(self) -> pulumi.Output[_builtins.str]:
|
|
1578
1577
|
"""
|
|
1579
1578
|
The name of the Virtual Node Group.
|
|
1580
1579
|
"""
|
|
1581
1580
|
return pulumi.get(self, "name")
|
|
1582
1581
|
|
|
1583
|
-
@property
|
|
1582
|
+
@_builtins.property
|
|
1584
1583
|
@pulumi.getter(name="oceanId")
|
|
1585
|
-
def ocean_id(self) -> pulumi.Output[
|
|
1584
|
+
def ocean_id(self) -> pulumi.Output[_builtins.str]:
|
|
1586
1585
|
"""
|
|
1587
1586
|
The ID of the Ocean cluster.
|
|
1588
1587
|
"""
|
|
1589
1588
|
return pulumi.get(self, "ocean_id")
|
|
1590
1589
|
|
|
1591
|
-
@property
|
|
1590
|
+
@_builtins.property
|
|
1592
1591
|
@pulumi.getter(name="preferredOdTypes")
|
|
1593
|
-
def preferred_od_types(self) -> pulumi.Output[Optional[Sequence[
|
|
1592
|
+
def preferred_od_types(self) -> pulumi.Output[Optional[Sequence[_builtins.str]]]:
|
|
1594
1593
|
"""
|
|
1595
1594
|
A list of instance types. Takes the preferred types into consideration while maintaining a variety of machine types running for optimized distribution.
|
|
1596
1595
|
"""
|
|
1597
1596
|
return pulumi.get(self, "preferred_od_types")
|
|
1598
1597
|
|
|
1599
|
-
@property
|
|
1598
|
+
@_builtins.property
|
|
1600
1599
|
@pulumi.getter(name="preferredSpotTypes")
|
|
1601
|
-
def preferred_spot_types(self) -> pulumi.Output[Optional[Sequence[
|
|
1600
|
+
def preferred_spot_types(self) -> pulumi.Output[Optional[Sequence[_builtins.str]]]:
|
|
1602
1601
|
"""
|
|
1603
1602
|
A list of instance types. Takes the preferred types into consideration while maintaining a variety of machine types running for optimized distribution.
|
|
1604
1603
|
"""
|
|
1605
1604
|
return pulumi.get(self, "preferred_spot_types")
|
|
1606
1605
|
|
|
1607
|
-
@property
|
|
1606
|
+
@_builtins.property
|
|
1608
1607
|
@pulumi.getter(name="reservedEnis")
|
|
1609
|
-
def reserved_enis(self) -> pulumi.Output[Optional[
|
|
1608
|
+
def reserved_enis(self) -> pulumi.Output[Optional[_builtins.int]]:
|
|
1610
1609
|
"""
|
|
1611
1610
|
Specifies the count of ENIs to reserve per instance type for scaling purposes.
|
|
1612
1611
|
"""
|
|
1613
1612
|
return pulumi.get(self, "reserved_enis")
|
|
1614
1613
|
|
|
1615
|
-
@property
|
|
1614
|
+
@_builtins.property
|
|
1616
1615
|
@pulumi.getter(name="resourceLimits")
|
|
1617
1616
|
def resource_limits(self) -> pulumi.Output[Optional[Sequence['outputs.OceanLaunchSpecResourceLimit']]]:
|
|
1618
1617
|
return pulumi.get(self, "resource_limits")
|
|
1619
1618
|
|
|
1620
|
-
@property
|
|
1619
|
+
@_builtins.property
|
|
1621
1620
|
@pulumi.getter(name="restrictScaleDown")
|
|
1622
|
-
def restrict_scale_down(self) -> pulumi.Output[Optional[
|
|
1621
|
+
def restrict_scale_down(self) -> pulumi.Output[Optional[_builtins.bool]]:
|
|
1623
1622
|
"""
|
|
1624
1623
|
Boolean. When set to `true`, nodes will be treated as if all pods running have the restrict-scale-down label. Therefore, Ocean will not scale nodes down unless empty.
|
|
1625
1624
|
"""
|
|
1626
1625
|
return pulumi.get(self, "restrict_scale_down")
|
|
1627
1626
|
|
|
1628
|
-
@property
|
|
1627
|
+
@_builtins.property
|
|
1629
1628
|
@pulumi.getter(name="rootVolumeSize")
|
|
1630
|
-
def root_volume_size(self) -> pulumi.Output[Optional[
|
|
1629
|
+
def root_volume_size(self) -> pulumi.Output[Optional[_builtins.int]]:
|
|
1631
1630
|
"""
|
|
1632
1631
|
Set root volume size (in GB).
|
|
1633
1632
|
"""
|
|
1634
1633
|
return pulumi.get(self, "root_volume_size")
|
|
1635
1634
|
|
|
1636
|
-
@property
|
|
1635
|
+
@_builtins.property
|
|
1637
1636
|
@pulumi.getter(name="schedulingShutdownHours")
|
|
1638
1637
|
def scheduling_shutdown_hours(self) -> pulumi.Output[Optional['outputs.OceanLaunchSpecSchedulingShutdownHours']]:
|
|
1639
1638
|
"""
|
|
@@ -1641,7 +1640,7 @@ class OceanLaunchSpec(pulumi.CustomResource):
|
|
|
1641
1640
|
"""
|
|
1642
1641
|
return pulumi.get(self, "scheduling_shutdown_hours")
|
|
1643
1642
|
|
|
1644
|
-
@property
|
|
1643
|
+
@_builtins.property
|
|
1645
1644
|
@pulumi.getter(name="schedulingTasks")
|
|
1646
1645
|
def scheduling_tasks(self) -> pulumi.Output[Optional[Sequence['outputs.OceanLaunchSpecSchedulingTask']]]:
|
|
1647
1646
|
"""
|
|
@@ -1649,15 +1648,15 @@ class OceanLaunchSpec(pulumi.CustomResource):
|
|
|
1649
1648
|
"""
|
|
1650
1649
|
return pulumi.get(self, "scheduling_tasks")
|
|
1651
1650
|
|
|
1652
|
-
@property
|
|
1651
|
+
@_builtins.property
|
|
1653
1652
|
@pulumi.getter(name="securityGroups")
|
|
1654
|
-
def security_groups(self) -> pulumi.Output[Optional[Sequence[
|
|
1653
|
+
def security_groups(self) -> pulumi.Output[Optional[Sequence[_builtins.str]]]:
|
|
1655
1654
|
"""
|
|
1656
1655
|
Optionally adds security group IDs.
|
|
1657
1656
|
"""
|
|
1658
1657
|
return pulumi.get(self, "security_groups")
|
|
1659
1658
|
|
|
1660
|
-
@property
|
|
1659
|
+
@_builtins.property
|
|
1661
1660
|
@pulumi.getter(name="startupTaints")
|
|
1662
1661
|
def startup_taints(self) -> pulumi.Output[Optional[Sequence['outputs.OceanLaunchSpecStartupTaint']]]:
|
|
1663
1662
|
"""
|
|
@@ -1665,20 +1664,20 @@ class OceanLaunchSpec(pulumi.CustomResource):
|
|
|
1665
1664
|
"""
|
|
1666
1665
|
return pulumi.get(self, "startup_taints")
|
|
1667
1666
|
|
|
1668
|
-
@property
|
|
1667
|
+
@_builtins.property
|
|
1669
1668
|
@pulumi.getter
|
|
1670
1669
|
def strategies(self) -> pulumi.Output[Optional[Sequence['outputs.OceanLaunchSpecStrategy']]]:
|
|
1671
1670
|
return pulumi.get(self, "strategies")
|
|
1672
1671
|
|
|
1673
|
-
@property
|
|
1672
|
+
@_builtins.property
|
|
1674
1673
|
@pulumi.getter(name="subnetIds")
|
|
1675
|
-
def subnet_ids(self) -> pulumi.Output[Optional[Sequence[
|
|
1674
|
+
def subnet_ids(self) -> pulumi.Output[Optional[Sequence[_builtins.str]]]:
|
|
1676
1675
|
"""
|
|
1677
1676
|
A list of subnet IDs.
|
|
1678
1677
|
"""
|
|
1679
1678
|
return pulumi.get(self, "subnet_ids")
|
|
1680
1679
|
|
|
1681
|
-
@property
|
|
1680
|
+
@_builtins.property
|
|
1682
1681
|
@pulumi.getter
|
|
1683
1682
|
def tags(self) -> pulumi.Output[Optional[Sequence['outputs.OceanLaunchSpecTag']]]:
|
|
1684
1683
|
"""
|
|
@@ -1686,7 +1685,7 @@ class OceanLaunchSpec(pulumi.CustomResource):
|
|
|
1686
1685
|
"""
|
|
1687
1686
|
return pulumi.get(self, "tags")
|
|
1688
1687
|
|
|
1689
|
-
@property
|
|
1688
|
+
@_builtins.property
|
|
1690
1689
|
@pulumi.getter
|
|
1691
1690
|
def taints(self) -> pulumi.Output[Optional[Sequence['outputs.OceanLaunchSpecTaint']]]:
|
|
1692
1691
|
"""
|
|
@@ -1694,14 +1693,14 @@ class OceanLaunchSpec(pulumi.CustomResource):
|
|
|
1694
1693
|
"""
|
|
1695
1694
|
return pulumi.get(self, "taints")
|
|
1696
1695
|
|
|
1697
|
-
@property
|
|
1696
|
+
@_builtins.property
|
|
1698
1697
|
@pulumi.getter(name="updatePolicy")
|
|
1699
1698
|
def update_policy(self) -> pulumi.Output[Optional['outputs.OceanLaunchSpecUpdatePolicy']]:
|
|
1700
1699
|
return pulumi.get(self, "update_policy")
|
|
1701
1700
|
|
|
1702
|
-
@property
|
|
1701
|
+
@_builtins.property
|
|
1703
1702
|
@pulumi.getter(name="userData")
|
|
1704
|
-
def user_data(self) -> pulumi.Output[Optional[
|
|
1703
|
+
def user_data(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
1705
1704
|
"""
|
|
1706
1705
|
Base64-encoded MIME user data to make available to the instances.
|
|
1707
1706
|
"""
|