pulumi-spotinst 3.123.1a1753328543__py3-none-any.whl → 3.124.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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 +578 -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.123.1a1753328543.dist-info → pulumi_spotinst-3.124.0.dist-info}/METADATA +1 -1
- pulumi_spotinst-3.124.0.dist-info/RECORD +77 -0
- pulumi_spotinst-3.123.1a1753328543.dist-info/RECORD +0 -77
- {pulumi_spotinst-3.123.1a1753328543.dist-info → pulumi_spotinst-3.124.0.dist-info}/WHEEL +0 -0
- {pulumi_spotinst-3.123.1a1753328543.dist-info → pulumi_spotinst-3.124.0.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
|
|
@@ -20,33 +19,33 @@ __all__ = ['OceanExtendedResourceDefinitionArgs', 'OceanExtendedResourceDefiniti
|
|
|
20
19
|
@pulumi.input_type
|
|
21
20
|
class OceanExtendedResourceDefinitionArgs:
|
|
22
21
|
def __init__(__self__, *,
|
|
23
|
-
resource_mapping: pulumi.Input[Mapping[str, pulumi.Input[
|
|
24
|
-
name: Optional[pulumi.Input[
|
|
22
|
+
resource_mapping: pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]],
|
|
23
|
+
name: Optional[pulumi.Input[_builtins.str]] = None):
|
|
25
24
|
"""
|
|
26
25
|
The set of arguments for constructing a OceanExtendedResourceDefinition resource.
|
|
27
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[
|
|
28
|
-
:param pulumi.Input[
|
|
26
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] resource_mapping: A mapping between AWS instanceType or * as default and its value for the given extended resource.
|
|
27
|
+
:param pulumi.Input[_builtins.str] name: The extended resource name as should be requested by your pods and registered to the nodes. Cannot be updated.
|
|
29
28
|
The name should be a valid Kubernetes extended resource name.
|
|
30
29
|
"""
|
|
31
30
|
pulumi.set(__self__, "resource_mapping", resource_mapping)
|
|
32
31
|
if name is not None:
|
|
33
32
|
pulumi.set(__self__, "name", name)
|
|
34
33
|
|
|
35
|
-
@property
|
|
34
|
+
@_builtins.property
|
|
36
35
|
@pulumi.getter(name="resourceMapping")
|
|
37
|
-
def resource_mapping(self) -> pulumi.Input[Mapping[str, pulumi.Input[
|
|
36
|
+
def resource_mapping(self) -> pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]:
|
|
38
37
|
"""
|
|
39
38
|
A mapping between AWS instanceType or * as default and its value for the given extended resource.
|
|
40
39
|
"""
|
|
41
40
|
return pulumi.get(self, "resource_mapping")
|
|
42
41
|
|
|
43
42
|
@resource_mapping.setter
|
|
44
|
-
def resource_mapping(self, value: pulumi.Input[Mapping[str, pulumi.Input[
|
|
43
|
+
def resource_mapping(self, value: pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]):
|
|
45
44
|
pulumi.set(self, "resource_mapping", value)
|
|
46
45
|
|
|
47
|
-
@property
|
|
46
|
+
@_builtins.property
|
|
48
47
|
@pulumi.getter
|
|
49
|
-
def name(self) -> Optional[pulumi.Input[
|
|
48
|
+
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
50
49
|
"""
|
|
51
50
|
The extended resource name as should be requested by your pods and registered to the nodes. Cannot be updated.
|
|
52
51
|
The name should be a valid Kubernetes extended resource name.
|
|
@@ -54,29 +53,29 @@ class OceanExtendedResourceDefinitionArgs:
|
|
|
54
53
|
return pulumi.get(self, "name")
|
|
55
54
|
|
|
56
55
|
@name.setter
|
|
57
|
-
def name(self, value: Optional[pulumi.Input[
|
|
56
|
+
def name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
58
57
|
pulumi.set(self, "name", value)
|
|
59
58
|
|
|
60
59
|
|
|
61
60
|
@pulumi.input_type
|
|
62
61
|
class _OceanExtendedResourceDefinitionState:
|
|
63
62
|
def __init__(__self__, *,
|
|
64
|
-
name: Optional[pulumi.Input[
|
|
65
|
-
resource_mapping: Optional[pulumi.Input[Mapping[str, pulumi.Input[
|
|
63
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
64
|
+
resource_mapping: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None):
|
|
66
65
|
"""
|
|
67
66
|
Input properties used for looking up and filtering OceanExtendedResourceDefinition resources.
|
|
68
|
-
:param pulumi.Input[
|
|
67
|
+
:param pulumi.Input[_builtins.str] name: The extended resource name as should be requested by your pods and registered to the nodes. Cannot be updated.
|
|
69
68
|
The name should be a valid Kubernetes extended resource name.
|
|
70
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[
|
|
69
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] resource_mapping: A mapping between AWS instanceType or * as default and its value for the given extended resource.
|
|
71
70
|
"""
|
|
72
71
|
if name is not None:
|
|
73
72
|
pulumi.set(__self__, "name", name)
|
|
74
73
|
if resource_mapping is not None:
|
|
75
74
|
pulumi.set(__self__, "resource_mapping", resource_mapping)
|
|
76
75
|
|
|
77
|
-
@property
|
|
76
|
+
@_builtins.property
|
|
78
77
|
@pulumi.getter
|
|
79
|
-
def name(self) -> Optional[pulumi.Input[
|
|
78
|
+
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
80
79
|
"""
|
|
81
80
|
The extended resource name as should be requested by your pods and registered to the nodes. Cannot be updated.
|
|
82
81
|
The name should be a valid Kubernetes extended resource name.
|
|
@@ -84,19 +83,19 @@ class _OceanExtendedResourceDefinitionState:
|
|
|
84
83
|
return pulumi.get(self, "name")
|
|
85
84
|
|
|
86
85
|
@name.setter
|
|
87
|
-
def name(self, value: Optional[pulumi.Input[
|
|
86
|
+
def name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
88
87
|
pulumi.set(self, "name", value)
|
|
89
88
|
|
|
90
|
-
@property
|
|
89
|
+
@_builtins.property
|
|
91
90
|
@pulumi.getter(name="resourceMapping")
|
|
92
|
-
def resource_mapping(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[
|
|
91
|
+
def resource_mapping(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
|
93
92
|
"""
|
|
94
93
|
A mapping between AWS instanceType or * as default and its value for the given extended resource.
|
|
95
94
|
"""
|
|
96
95
|
return pulumi.get(self, "resource_mapping")
|
|
97
96
|
|
|
98
97
|
@resource_mapping.setter
|
|
99
|
-
def resource_mapping(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[
|
|
98
|
+
def resource_mapping(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
100
99
|
pulumi.set(self, "resource_mapping", value)
|
|
101
100
|
|
|
102
101
|
|
|
@@ -106,8 +105,8 @@ class OceanExtendedResourceDefinition(pulumi.CustomResource):
|
|
|
106
105
|
def __init__(__self__,
|
|
107
106
|
resource_name: str,
|
|
108
107
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
109
|
-
name: Optional[pulumi.Input[
|
|
110
|
-
resource_mapping: Optional[pulumi.Input[Mapping[str, pulumi.Input[
|
|
108
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
109
|
+
resource_mapping: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
111
110
|
__props__=None):
|
|
112
111
|
"""
|
|
113
112
|
Provides a Spotinst Ocean AWS Extended Resource Definition resource.
|
|
@@ -128,9 +127,9 @@ class OceanExtendedResourceDefinition(pulumi.CustomResource):
|
|
|
128
127
|
|
|
129
128
|
:param str resource_name: The name of the resource.
|
|
130
129
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
131
|
-
:param pulumi.Input[
|
|
130
|
+
:param pulumi.Input[_builtins.str] name: The extended resource name as should be requested by your pods and registered to the nodes. Cannot be updated.
|
|
132
131
|
The name should be a valid Kubernetes extended resource name.
|
|
133
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[
|
|
132
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] resource_mapping: A mapping between AWS instanceType or * as default and its value for the given extended resource.
|
|
134
133
|
"""
|
|
135
134
|
...
|
|
136
135
|
@overload
|
|
@@ -170,8 +169,8 @@ class OceanExtendedResourceDefinition(pulumi.CustomResource):
|
|
|
170
169
|
def _internal_init(__self__,
|
|
171
170
|
resource_name: str,
|
|
172
171
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
173
|
-
name: Optional[pulumi.Input[
|
|
174
|
-
resource_mapping: Optional[pulumi.Input[Mapping[str, pulumi.Input[
|
|
172
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
173
|
+
resource_mapping: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
175
174
|
__props__=None):
|
|
176
175
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
177
176
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -195,8 +194,8 @@ class OceanExtendedResourceDefinition(pulumi.CustomResource):
|
|
|
195
194
|
def get(resource_name: str,
|
|
196
195
|
id: pulumi.Input[str],
|
|
197
196
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
198
|
-
name: Optional[pulumi.Input[
|
|
199
|
-
resource_mapping: Optional[pulumi.Input[Mapping[str, pulumi.Input[
|
|
197
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
198
|
+
resource_mapping: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None) -> 'OceanExtendedResourceDefinition':
|
|
200
199
|
"""
|
|
201
200
|
Get an existing OceanExtendedResourceDefinition resource's state with the given name, id, and optional extra
|
|
202
201
|
properties used to qualify the lookup.
|
|
@@ -204,9 +203,9 @@ class OceanExtendedResourceDefinition(pulumi.CustomResource):
|
|
|
204
203
|
:param str resource_name: The unique name of the resulting resource.
|
|
205
204
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
206
205
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
207
|
-
:param pulumi.Input[
|
|
206
|
+
:param pulumi.Input[_builtins.str] name: The extended resource name as should be requested by your pods and registered to the nodes. Cannot be updated.
|
|
208
207
|
The name should be a valid Kubernetes extended resource name.
|
|
209
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[
|
|
208
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] resource_mapping: A mapping between AWS instanceType or * as default and its value for the given extended resource.
|
|
210
209
|
"""
|
|
211
210
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
212
211
|
|
|
@@ -216,18 +215,18 @@ class OceanExtendedResourceDefinition(pulumi.CustomResource):
|
|
|
216
215
|
__props__.__dict__["resource_mapping"] = resource_mapping
|
|
217
216
|
return OceanExtendedResourceDefinition(resource_name, opts=opts, __props__=__props__)
|
|
218
217
|
|
|
219
|
-
@property
|
|
218
|
+
@_builtins.property
|
|
220
219
|
@pulumi.getter
|
|
221
|
-
def name(self) -> pulumi.Output[
|
|
220
|
+
def name(self) -> pulumi.Output[_builtins.str]:
|
|
222
221
|
"""
|
|
223
222
|
The extended resource name as should be requested by your pods and registered to the nodes. Cannot be updated.
|
|
224
223
|
The name should be a valid Kubernetes extended resource name.
|
|
225
224
|
"""
|
|
226
225
|
return pulumi.get(self, "name")
|
|
227
226
|
|
|
228
|
-
@property
|
|
227
|
+
@_builtins.property
|
|
229
228
|
@pulumi.getter(name="resourceMapping")
|
|
230
|
-
def resource_mapping(self) -> pulumi.Output[Mapping[str,
|
|
229
|
+
def resource_mapping(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
|
|
231
230
|
"""
|
|
232
231
|
A mapping between AWS instanceType or * as default and its value for the given extended resource.
|
|
233
232
|
"""
|