pulumi-spotinst 3.117.0a1743575538__py3-none-any.whl → 3.117.0a1744266805__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.

Files changed (75) hide show
  1. pulumi_spotinst/__init__.py +1 -0
  2. pulumi_spotinst/_inputs.py +1181 -1180
  3. pulumi_spotinst/account.py +15 -14
  4. pulumi_spotinst/aws/__init__.py +1 -0
  5. pulumi_spotinst/aws/_inputs.py +2919 -2918
  6. pulumi_spotinst/aws/account.py +15 -14
  7. pulumi_spotinst/aws/beanstalk.py +137 -136
  8. pulumi_spotinst/aws/credentials.py +29 -28
  9. pulumi_spotinst/aws/elastigroup.py +681 -680
  10. pulumi_spotinst/aws/managed_instance.py +361 -360
  11. pulumi_spotinst/aws/mr_scalar.py +470 -469
  12. pulumi_spotinst/aws/ocean.py +399 -398
  13. pulumi_spotinst/aws/ocean_extended_resource_definition.py +29 -28
  14. pulumi_spotinst/aws/ocean_launch_spec.py +197 -196
  15. pulumi_spotinst/aws/outputs.py +1673 -1672
  16. pulumi_spotinst/aws/suspension.py +15 -14
  17. pulumi_spotinst/azure/__init__.py +1 -0
  18. pulumi_spotinst/azure/_inputs.py +489 -488
  19. pulumi_spotinst/azure/ocean_np.py +289 -288
  20. pulumi_spotinst/azure/ocean_np_virtual_node_group.py +249 -248
  21. pulumi_spotinst/azure/outputs.py +293 -292
  22. pulumi_spotinst/config/__init__.py +1 -0
  23. pulumi_spotinst/config/__init__.pyi +1 -0
  24. pulumi_spotinst/config/vars.py +1 -0
  25. pulumi_spotinst/credentials_azure.py +71 -70
  26. pulumi_spotinst/credentials_gcp.py +155 -154
  27. pulumi_spotinst/data_integration.py +29 -28
  28. pulumi_spotinst/ecs/__init__.py +1 -0
  29. pulumi_spotinst/ecs/_inputs.py +475 -474
  30. pulumi_spotinst/ecs/ocean.py +315 -314
  31. pulumi_spotinst/ecs/ocean_launch_spec.py +141 -140
  32. pulumi_spotinst/ecs/outputs.py +285 -284
  33. pulumi_spotinst/elastigroup_azure_v3.py +201 -200
  34. pulumi_spotinst/gcp/__init__.py +1 -0
  35. pulumi_spotinst/gcp/_inputs.py +400 -399
  36. pulumi_spotinst/gcp/elastigroup.py +355 -354
  37. pulumi_spotinst/gcp/outputs.py +234 -233
  38. pulumi_spotinst/gke/__init__.py +1 -0
  39. pulumi_spotinst/gke/_inputs.py +726 -725
  40. pulumi_spotinst/gke/elastigroup.py +231 -230
  41. pulumi_spotinst/gke/ocean_import.py +146 -145
  42. pulumi_spotinst/gke/ocean_launch_spec.py +141 -140
  43. pulumi_spotinst/gke/ocean_launch_spec_import.py +29 -28
  44. pulumi_spotinst/gke/outputs.py +410 -409
  45. pulumi_spotinst/health_check.py +89 -48
  46. pulumi_spotinst/ocean_right_sizing_rule.py +41 -40
  47. pulumi_spotinst/oceancd/__init__.py +1 -0
  48. pulumi_spotinst/oceancd/_inputs.py +594 -593
  49. pulumi_spotinst/oceancd/outputs.py +356 -355
  50. pulumi_spotinst/oceancd/rollout_spec.py +15 -14
  51. pulumi_spotinst/oceancd/strategy.py +11 -10
  52. pulumi_spotinst/oceancd/verification_provider.py +29 -28
  53. pulumi_spotinst/oceancd/verification_template.py +15 -14
  54. pulumi_spotinst/organization/__init__.py +1 -0
  55. pulumi_spotinst/organization/_inputs.py +55 -54
  56. pulumi_spotinst/organization/outputs.py +33 -32
  57. pulumi_spotinst/organization/policy.py +29 -28
  58. pulumi_spotinst/organization/programmatic_user.py +43 -42
  59. pulumi_spotinst/organization/user.py +85 -84
  60. pulumi_spotinst/organization/user_group.py +43 -42
  61. pulumi_spotinst/outputs.py +595 -594
  62. pulumi_spotinst/provider.py +32 -31
  63. pulumi_spotinst/pulumi-plugin.json +1 -1
  64. pulumi_spotinst/spark/__init__.py +1 -0
  65. pulumi_spotinst/spark/_inputs.py +81 -80
  66. pulumi_spotinst/spark/ocean.py +15 -14
  67. pulumi_spotinst/spark/ocean_virtual_node_group.py +21 -20
  68. pulumi_spotinst/spark/outputs.py +49 -48
  69. pulumi_spotinst/stateful_node_azure.py +191 -190
  70. pulumi_spotinst/subscription.py +71 -70
  71. {pulumi_spotinst-3.117.0a1743575538.dist-info → pulumi_spotinst-3.117.0a1744266805.dist-info}/METADATA +1 -1
  72. pulumi_spotinst-3.117.0a1744266805.dist-info/RECORD +76 -0
  73. pulumi_spotinst-3.117.0a1743575538.dist-info/RECORD +0 -76
  74. {pulumi_spotinst-3.117.0a1743575538.dist-info → pulumi_spotinst-3.117.0a1744266805.dist-info}/WHEEL +0 -0
  75. {pulumi_spotinst-3.117.0a1743575538.dist-info → pulumi_spotinst-3.117.0a1744266805.dist-info}/top_level.txt +0 -0
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -19,8 +20,8 @@ __all__ = ['OceanVirtualNodeGroupArgs', 'OceanVirtualNodeGroup']
19
20
  @pulumi.input_type
20
21
  class OceanVirtualNodeGroupArgs:
21
22
  def __init__(__self__, *,
22
- ocean_spark_cluster_id: pulumi.Input[str],
23
- virtual_node_group_id: pulumi.Input[str]):
23
+ ocean_spark_cluster_id: pulumi.Input[builtins.str],
24
+ virtual_node_group_id: pulumi.Input[builtins.str]):
24
25
  """
25
26
  The set of arguments for constructing a OceanVirtualNodeGroup resource.
26
27
  """
@@ -29,28 +30,28 @@ class OceanVirtualNodeGroupArgs:
29
30
 
30
31
  @property
31
32
  @pulumi.getter(name="oceanSparkClusterId")
32
- def ocean_spark_cluster_id(self) -> pulumi.Input[str]:
33
+ def ocean_spark_cluster_id(self) -> pulumi.Input[builtins.str]:
33
34
  return pulumi.get(self, "ocean_spark_cluster_id")
34
35
 
35
36
  @ocean_spark_cluster_id.setter
36
- def ocean_spark_cluster_id(self, value: pulumi.Input[str]):
37
+ def ocean_spark_cluster_id(self, value: pulumi.Input[builtins.str]):
37
38
  pulumi.set(self, "ocean_spark_cluster_id", value)
38
39
 
39
40
  @property
40
41
  @pulumi.getter(name="virtualNodeGroupId")
41
- def virtual_node_group_id(self) -> pulumi.Input[str]:
42
+ def virtual_node_group_id(self) -> pulumi.Input[builtins.str]:
42
43
  return pulumi.get(self, "virtual_node_group_id")
43
44
 
44
45
  @virtual_node_group_id.setter
45
- def virtual_node_group_id(self, value: pulumi.Input[str]):
46
+ def virtual_node_group_id(self, value: pulumi.Input[builtins.str]):
46
47
  pulumi.set(self, "virtual_node_group_id", value)
47
48
 
48
49
 
49
50
  @pulumi.input_type
50
51
  class _OceanVirtualNodeGroupState:
51
52
  def __init__(__self__, *,
52
- ocean_spark_cluster_id: Optional[pulumi.Input[str]] = None,
53
- virtual_node_group_id: Optional[pulumi.Input[str]] = None):
53
+ ocean_spark_cluster_id: Optional[pulumi.Input[builtins.str]] = None,
54
+ virtual_node_group_id: Optional[pulumi.Input[builtins.str]] = None):
54
55
  """
55
56
  Input properties used for looking up and filtering OceanVirtualNodeGroup resources.
56
57
  """
@@ -61,20 +62,20 @@ class _OceanVirtualNodeGroupState:
61
62
 
62
63
  @property
63
64
  @pulumi.getter(name="oceanSparkClusterId")
64
- def ocean_spark_cluster_id(self) -> Optional[pulumi.Input[str]]:
65
+ def ocean_spark_cluster_id(self) -> Optional[pulumi.Input[builtins.str]]:
65
66
  return pulumi.get(self, "ocean_spark_cluster_id")
66
67
 
67
68
  @ocean_spark_cluster_id.setter
68
- def ocean_spark_cluster_id(self, value: Optional[pulumi.Input[str]]):
69
+ def ocean_spark_cluster_id(self, value: Optional[pulumi.Input[builtins.str]]):
69
70
  pulumi.set(self, "ocean_spark_cluster_id", value)
70
71
 
71
72
  @property
72
73
  @pulumi.getter(name="virtualNodeGroupId")
73
- def virtual_node_group_id(self) -> Optional[pulumi.Input[str]]:
74
+ def virtual_node_group_id(self) -> Optional[pulumi.Input[builtins.str]]:
74
75
  return pulumi.get(self, "virtual_node_group_id")
75
76
 
76
77
  @virtual_node_group_id.setter
77
- def virtual_node_group_id(self, value: Optional[pulumi.Input[str]]):
78
+ def virtual_node_group_id(self, value: Optional[pulumi.Input[builtins.str]]):
78
79
  pulumi.set(self, "virtual_node_group_id", value)
79
80
 
80
81
 
@@ -83,8 +84,8 @@ class OceanVirtualNodeGroup(pulumi.CustomResource):
83
84
  def __init__(__self__,
84
85
  resource_name: str,
85
86
  opts: Optional[pulumi.ResourceOptions] = None,
86
- ocean_spark_cluster_id: Optional[pulumi.Input[str]] = None,
87
- virtual_node_group_id: Optional[pulumi.Input[str]] = None,
87
+ ocean_spark_cluster_id: Optional[pulumi.Input[builtins.str]] = None,
88
+ virtual_node_group_id: Optional[pulumi.Input[builtins.str]] = None,
88
89
  __props__=None):
89
90
  """
90
91
  Manage a dedicated Spotinst Ocean Spark Virtual Node Group resource
@@ -146,8 +147,8 @@ class OceanVirtualNodeGroup(pulumi.CustomResource):
146
147
  def _internal_init(__self__,
147
148
  resource_name: str,
148
149
  opts: Optional[pulumi.ResourceOptions] = None,
149
- ocean_spark_cluster_id: Optional[pulumi.Input[str]] = None,
150
- virtual_node_group_id: Optional[pulumi.Input[str]] = None,
150
+ ocean_spark_cluster_id: Optional[pulumi.Input[builtins.str]] = None,
151
+ virtual_node_group_id: Optional[pulumi.Input[builtins.str]] = None,
151
152
  __props__=None):
152
153
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
153
154
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -173,8 +174,8 @@ class OceanVirtualNodeGroup(pulumi.CustomResource):
173
174
  def get(resource_name: str,
174
175
  id: pulumi.Input[str],
175
176
  opts: Optional[pulumi.ResourceOptions] = None,
176
- ocean_spark_cluster_id: Optional[pulumi.Input[str]] = None,
177
- virtual_node_group_id: Optional[pulumi.Input[str]] = None) -> 'OceanVirtualNodeGroup':
177
+ ocean_spark_cluster_id: Optional[pulumi.Input[builtins.str]] = None,
178
+ virtual_node_group_id: Optional[pulumi.Input[builtins.str]] = None) -> 'OceanVirtualNodeGroup':
178
179
  """
179
180
  Get an existing OceanVirtualNodeGroup resource's state with the given name, id, and optional extra
180
181
  properties used to qualify the lookup.
@@ -193,11 +194,11 @@ class OceanVirtualNodeGroup(pulumi.CustomResource):
193
194
 
194
195
  @property
195
196
  @pulumi.getter(name="oceanSparkClusterId")
196
- def ocean_spark_cluster_id(self) -> pulumi.Output[str]:
197
+ def ocean_spark_cluster_id(self) -> pulumi.Output[builtins.str]:
197
198
  return pulumi.get(self, "ocean_spark_cluster_id")
198
199
 
199
200
  @property
200
201
  @pulumi.getter(name="virtualNodeGroupId")
201
- def virtual_node_group_id(self) -> pulumi.Output[str]:
202
+ def virtual_node_group_id(self) -> pulumi.Output[builtins.str]:
202
203
  return pulumi.get(self, "virtual_node_group_id")
203
204
 
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -52,11 +53,11 @@ class OceanCompute(dict):
52
53
  return super().get(key, default)
53
54
 
54
55
  def __init__(__self__, *,
55
- create_vngs: Optional[bool] = None,
56
- use_taints: Optional[bool] = None):
56
+ create_vngs: Optional[builtins.bool] = None,
57
+ use_taints: Optional[builtins.bool] = None):
57
58
  """
58
- :param bool create_vngs: - Enable/disable the creation of Ocean Spark VNGs during cluster creation.
59
- :param bool use_taints: - Enable/disable Ocean Spark taints on the Ocean Spark VNGs. By default, Ocean Spark uses taints to prevent non-Spark workloads from running on Ocean Spark VNGs.
59
+ :param builtins.bool create_vngs: - Enable/disable the creation of Ocean Spark VNGs during cluster creation.
60
+ :param builtins.bool use_taints: - Enable/disable Ocean Spark taints on the Ocean Spark VNGs. By default, Ocean Spark uses taints to prevent non-Spark workloads from running on Ocean Spark VNGs.
60
61
  """
61
62
  if create_vngs is not None:
62
63
  pulumi.set(__self__, "create_vngs", create_vngs)
@@ -65,7 +66,7 @@ class OceanCompute(dict):
65
66
 
66
67
  @property
67
68
  @pulumi.getter(name="createVngs")
68
- def create_vngs(self) -> Optional[bool]:
69
+ def create_vngs(self) -> Optional[builtins.bool]:
69
70
  """
70
71
  - Enable/disable the creation of Ocean Spark VNGs during cluster creation.
71
72
  """
@@ -73,7 +74,7 @@ class OceanCompute(dict):
73
74
 
74
75
  @property
75
76
  @pulumi.getter(name="useTaints")
76
- def use_taints(self) -> Optional[bool]:
77
+ def use_taints(self) -> Optional[builtins.bool]:
77
78
  """
78
79
  - Enable/disable Ocean Spark taints on the Ocean Spark VNGs. By default, Ocean Spark uses taints to prevent non-Spark workloads from running on Ocean Spark VNGs.
79
80
  """
@@ -110,9 +111,9 @@ class OceanIngress(dict):
110
111
  custom_endpoint: Optional['outputs.OceanIngressCustomEndpoint'] = None,
111
112
  load_balancer: Optional['outputs.OceanIngressLoadBalancer'] = None,
112
113
  private_link: Optional['outputs.OceanIngressPrivateLink'] = None,
113
- service_annotations: Optional[Mapping[str, str]] = None):
114
+ service_annotations: Optional[Mapping[str, builtins.str]] = None):
114
115
  """
115
- :param Mapping[str, str] service_annotations: - **DEPRECATED**: Use `load_balancer.service_annotations` instead.
116
+ :param Mapping[str, builtins.str] service_annotations: - **DEPRECATED**: Use `load_balancer.service_annotations` instead.
116
117
  """
117
118
  if controller is not None:
118
119
  pulumi.set(__self__, "controller", controller)
@@ -147,7 +148,7 @@ class OceanIngress(dict):
147
148
 
148
149
  @property
149
150
  @pulumi.getter(name="serviceAnnotations")
150
- def service_annotations(self) -> Optional[Mapping[str, str]]:
151
+ def service_annotations(self) -> Optional[Mapping[str, builtins.str]]:
151
152
  """
152
153
  - **DEPRECATED**: Use `load_balancer.service_annotations` instead.
153
154
  """
@@ -157,16 +158,16 @@ class OceanIngress(dict):
157
158
  @pulumi.output_type
158
159
  class OceanIngressController(dict):
159
160
  def __init__(__self__, *,
160
- managed: Optional[bool] = None):
161
+ managed: Optional[builtins.bool] = None):
161
162
  """
162
- :param bool managed: - Should an ingress controller managed by Ocean for Apache Spark be installed on the cluster.
163
+ :param builtins.bool managed: - Should an ingress controller managed by Ocean for Apache Spark be installed on the cluster.
163
164
  """
164
165
  if managed is not None:
165
166
  pulumi.set(__self__, "managed", managed)
166
167
 
167
168
  @property
168
169
  @pulumi.getter
169
- def managed(self) -> Optional[bool]:
170
+ def managed(self) -> Optional[builtins.bool]:
170
171
  """
171
172
  - Should an ingress controller managed by Ocean for Apache Spark be installed on the cluster.
172
173
  """
@@ -176,11 +177,11 @@ class OceanIngressController(dict):
176
177
  @pulumi.output_type
177
178
  class OceanIngressCustomEndpoint(dict):
178
179
  def __init__(__self__, *,
179
- address: Optional[str] = None,
180
- enabled: Optional[bool] = None):
180
+ address: Optional[builtins.str] = None,
181
+ enabled: Optional[builtins.bool] = None):
181
182
  """
182
- :param str address: - The address the Ocean for Apache Spark control plane will use when addressing the cluster.
183
- :param bool enabled: - Should the Ocean for Apache Spark control plane address the cluster using a custom endpoint. Use this to specify the DNS address of an externally provisioned (unmanaged) load balancer.
183
+ :param builtins.str address: - The address the Ocean for Apache Spark control plane will use when addressing the cluster.
184
+ :param builtins.bool enabled: - Should the Ocean for Apache Spark control plane address the cluster using a custom endpoint. Use this to specify the DNS address of an externally provisioned (unmanaged) load balancer.
184
185
  """
185
186
  if address is not None:
186
187
  pulumi.set(__self__, "address", address)
@@ -189,7 +190,7 @@ class OceanIngressCustomEndpoint(dict):
189
190
 
190
191
  @property
191
192
  @pulumi.getter
192
- def address(self) -> Optional[str]:
193
+ def address(self) -> Optional[builtins.str]:
193
194
  """
194
195
  - The address the Ocean for Apache Spark control plane will use when addressing the cluster.
195
196
  """
@@ -197,7 +198,7 @@ class OceanIngressCustomEndpoint(dict):
197
198
 
198
199
  @property
199
200
  @pulumi.getter
200
- def enabled(self) -> Optional[bool]:
201
+ def enabled(self) -> Optional[builtins.bool]:
201
202
  """
202
203
  - Should the Ocean for Apache Spark control plane address the cluster using a custom endpoint. Use this to specify the DNS address of an externally provisioned (unmanaged) load balancer.
203
204
  """
@@ -226,13 +227,13 @@ class OceanIngressLoadBalancer(dict):
226
227
  return super().get(key, default)
227
228
 
228
229
  def __init__(__self__, *,
229
- managed: Optional[bool] = None,
230
- service_annotations: Optional[Mapping[str, str]] = None,
231
- target_group_arn: Optional[str] = None):
230
+ managed: Optional[builtins.bool] = None,
231
+ service_annotations: Optional[Mapping[str, builtins.str]] = None,
232
+ target_group_arn: Optional[builtins.str] = None):
232
233
  """
233
- :param bool managed: - Should a load balancer managed by Ocean for Apache Spark be provisioned for the cluster. Set this to false if you want to use an existing load balancer (only available on AWS).
234
- :param Mapping[str, str] service_annotations: - Annotations to add to the ingress controller load balancer service. This is useful to configure properties of the managed load balancer, like the nature of the load balancer (e.g. ELB, NLB, ALB on AWS), the security groups, or various timeouts.
235
- :param str target_group_arn: - The ARN of a target group that the Ocean for Apache Spark ingress controller will be bound to. Set this to use an existing load balancer with Ocean for Apache Spark. Has no effect if using a managed load balancer. Only available on AWS.
234
+ :param builtins.bool managed: - Should a load balancer managed by Ocean for Apache Spark be provisioned for the cluster. Set this to false if you want to use an existing load balancer (only available on AWS).
235
+ :param Mapping[str, builtins.str] service_annotations: - Annotations to add to the ingress controller load balancer service. This is useful to configure properties of the managed load balancer, like the nature of the load balancer (e.g. ELB, NLB, ALB on AWS), the security groups, or various timeouts.
236
+ :param builtins.str target_group_arn: - The ARN of a target group that the Ocean for Apache Spark ingress controller will be bound to. Set this to use an existing load balancer with Ocean for Apache Spark. Has no effect if using a managed load balancer. Only available on AWS.
236
237
  """
237
238
  if managed is not None:
238
239
  pulumi.set(__self__, "managed", managed)
@@ -243,7 +244,7 @@ class OceanIngressLoadBalancer(dict):
243
244
 
244
245
  @property
245
246
  @pulumi.getter
246
- def managed(self) -> Optional[bool]:
247
+ def managed(self) -> Optional[builtins.bool]:
247
248
  """
248
249
  - Should a load balancer managed by Ocean for Apache Spark be provisioned for the cluster. Set this to false if you want to use an existing load balancer (only available on AWS).
249
250
  """
@@ -251,7 +252,7 @@ class OceanIngressLoadBalancer(dict):
251
252
 
252
253
  @property
253
254
  @pulumi.getter(name="serviceAnnotations")
254
- def service_annotations(self) -> Optional[Mapping[str, str]]:
255
+ def service_annotations(self) -> Optional[Mapping[str, builtins.str]]:
255
256
  """
256
257
  - Annotations to add to the ingress controller load balancer service. This is useful to configure properties of the managed load balancer, like the nature of the load balancer (e.g. ELB, NLB, ALB on AWS), the security groups, or various timeouts.
257
258
  """
@@ -259,7 +260,7 @@ class OceanIngressLoadBalancer(dict):
259
260
 
260
261
  @property
261
262
  @pulumi.getter(name="targetGroupArn")
262
- def target_group_arn(self) -> Optional[str]:
263
+ def target_group_arn(self) -> Optional[builtins.str]:
263
264
  """
264
265
  - The ARN of a target group that the Ocean for Apache Spark ingress controller will be bound to. Set this to use an existing load balancer with Ocean for Apache Spark. Has no effect if using a managed load balancer. Only available on AWS.
265
266
  """
@@ -286,11 +287,11 @@ class OceanIngressPrivateLink(dict):
286
287
  return super().get(key, default)
287
288
 
288
289
  def __init__(__self__, *,
289
- enabled: Optional[bool] = None,
290
- vpc_endpoint_service: Optional[str] = None):
290
+ enabled: Optional[builtins.bool] = None,
291
+ vpc_endpoint_service: Optional[builtins.str] = None):
291
292
  """
292
- :param bool enabled: - Should the Ocean for Apache Spark control plane address the cluster via an AWS Private Link. Only available on AWS.
293
- :param str vpc_endpoint_service: - The name of the VPC Endpoint Service the Ocean for Apache Spark control plane should bind to.
293
+ :param builtins.bool enabled: - Should the Ocean for Apache Spark control plane address the cluster via an AWS Private Link. Only available on AWS.
294
+ :param builtins.str vpc_endpoint_service: - The name of the VPC Endpoint Service the Ocean for Apache Spark control plane should bind to.
294
295
  """
295
296
  if enabled is not None:
296
297
  pulumi.set(__self__, "enabled", enabled)
@@ -299,7 +300,7 @@ class OceanIngressPrivateLink(dict):
299
300
 
300
301
  @property
301
302
  @pulumi.getter
302
- def enabled(self) -> Optional[bool]:
303
+ def enabled(self) -> Optional[builtins.bool]:
303
304
  """
304
305
  - Should the Ocean for Apache Spark control plane address the cluster via an AWS Private Link. Only available on AWS.
305
306
  """
@@ -307,7 +308,7 @@ class OceanIngressPrivateLink(dict):
307
308
 
308
309
  @property
309
310
  @pulumi.getter(name="vpcEndpointService")
310
- def vpc_endpoint_service(self) -> Optional[str]:
311
+ def vpc_endpoint_service(self) -> Optional[builtins.str]:
311
312
  """
312
313
  - The name of the VPC Endpoint Service the Ocean for Apache Spark control plane should bind to.
313
314
  """
@@ -334,16 +335,16 @@ class OceanLogCollection(dict):
334
335
  return super().get(key, default)
335
336
 
336
337
  def __init__(__self__, *,
337
- collect_app_logs: Optional[bool] = None):
338
+ collect_app_logs: Optional[builtins.bool] = None):
338
339
  """
339
- :param bool collect_app_logs: - Enable/Disable collecting driver and executor logs. When enabled, logs are stored by NetApp and can be downloaded from the Spot console web interface. The logs are deleted after 30 days.
340
+ :param builtins.bool collect_app_logs: - Enable/Disable collecting driver and executor logs. When enabled, logs are stored by NetApp and can be downloaded from the Spot console web interface. The logs are deleted after 30 days.
340
341
  """
341
342
  if collect_app_logs is not None:
342
343
  pulumi.set(__self__, "collect_app_logs", collect_app_logs)
343
344
 
344
345
  @property
345
346
  @pulumi.getter(name="collectAppLogs")
346
- def collect_app_logs(self) -> Optional[bool]:
347
+ def collect_app_logs(self) -> Optional[builtins.bool]:
347
348
  """
348
349
  - Enable/Disable collecting driver and executor logs. When enabled, logs are stored by NetApp and can be downloaded from the Spot console web interface. The logs are deleted after 30 days.
349
350
  """
@@ -370,16 +371,16 @@ class OceanSpark(dict):
370
371
  return super().get(key, default)
371
372
 
372
373
  def __init__(__self__, *,
373
- additional_app_namespaces: Optional[Sequence[str]] = None):
374
+ additional_app_namespaces: Optional[Sequence[builtins.str]] = None):
374
375
  """
375
- :param Sequence[str] additional_app_namespaces: - List of Kubernetes namespaces that should be configured to run Spark applications, in addition to the default Spark application namespace `spark-apps`.
376
+ :param Sequence[builtins.str] additional_app_namespaces: - List of Kubernetes namespaces that should be configured to run Spark applications, in addition to the default Spark application namespace `spark-apps`.
376
377
  """
377
378
  if additional_app_namespaces is not None:
378
379
  pulumi.set(__self__, "additional_app_namespaces", additional_app_namespaces)
379
380
 
380
381
  @property
381
382
  @pulumi.getter(name="additionalAppNamespaces")
382
- def additional_app_namespaces(self) -> Optional[Sequence[str]]:
383
+ def additional_app_namespaces(self) -> Optional[Sequence[builtins.str]]:
383
384
  """
384
385
  - List of Kubernetes namespaces that should be configured to run Spark applications, in addition to the default Spark application namespace `spark-apps`.
385
386
  """
@@ -408,11 +409,11 @@ class OceanWebhook(dict):
408
409
  return super().get(key, default)
409
410
 
410
411
  def __init__(__self__, *,
411
- host_network_ports: Optional[Sequence[int]] = None,
412
- use_host_network: Optional[bool] = None):
412
+ host_network_ports: Optional[Sequence[builtins.int]] = None,
413
+ use_host_network: Optional[builtins.bool] = None):
413
414
  """
414
- :param Sequence[int] host_network_ports: - List of ports allowed to use on the host network - if empty default is `25554`.
415
- :param bool use_host_network: - Enable/disable host networking for the Spark Operator. Host networking can be useful when using custom CNI plugins like Calico on EKS.
415
+ :param Sequence[builtins.int] host_network_ports: - List of ports allowed to use on the host network - if empty default is `25554`.
416
+ :param builtins.bool use_host_network: - Enable/disable host networking for the Spark Operator. Host networking can be useful when using custom CNI plugins like Calico on EKS.
416
417
  """
417
418
  if host_network_ports is not None:
418
419
  pulumi.set(__self__, "host_network_ports", host_network_ports)
@@ -421,7 +422,7 @@ class OceanWebhook(dict):
421
422
 
422
423
  @property
423
424
  @pulumi.getter(name="hostNetworkPorts")
424
- def host_network_ports(self) -> Optional[Sequence[int]]:
425
+ def host_network_ports(self) -> Optional[Sequence[builtins.int]]:
425
426
  """
426
427
  - List of ports allowed to use on the host network - if empty default is `25554`.
427
428
  """
@@ -429,7 +430,7 @@ class OceanWebhook(dict):
429
430
 
430
431
  @property
431
432
  @pulumi.getter(name="useHostNetwork")
432
- def use_host_network(self) -> Optional[bool]:
433
+ def use_host_network(self) -> Optional[builtins.bool]:
433
434
  """
434
435
  - Enable/disable host networking for the Spark Operator. Host networking can be useful when using custom CNI plugins like Calico on EKS.
435
436
  """
@@ -482,16 +483,16 @@ class OceanWorkspacesStorageDefaults(dict):
482
483
  return super().get(key, default)
483
484
 
484
485
  def __init__(__self__, *,
485
- storage_class_name: Optional[str] = None):
486
+ storage_class_name: Optional[builtins.str] = None):
486
487
  """
487
- :param str storage_class_name: - The name of the default storage class to use for new workspaces. If not specified, the default storage class of the Kubernetes cluster will be used.
488
+ :param builtins.str storage_class_name: - The name of the default storage class to use for new workspaces. If not specified, the default storage class of the Kubernetes cluster will be used.
488
489
  """
489
490
  if storage_class_name is not None:
490
491
  pulumi.set(__self__, "storage_class_name", storage_class_name)
491
492
 
492
493
  @property
493
494
  @pulumi.getter(name="storageClassName")
494
- def storage_class_name(self) -> Optional[str]:
495
+ def storage_class_name(self) -> Optional[builtins.str]:
495
496
  """
496
497
  - The name of the default storage class to use for new workspaces. If not specified, the default storage class of the Kubernetes cluster will be used.
497
498
  """