pulumi-spotinst 3.124.0a1752907291__py3-none-any.whl → 3.124.0a1753398242__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.0a1752907291.dist-info → pulumi_spotinst-3.124.0a1753398242.dist-info}/METADATA +1 -1
- pulumi_spotinst-3.124.0a1753398242.dist-info/RECORD +77 -0
- pulumi_spotinst-3.124.0a1752907291.dist-info/RECORD +0 -77
- {pulumi_spotinst-3.124.0a1752907291.dist-info → pulumi_spotinst-3.124.0a1753398242.dist-info}/WHEEL +0 -0
- {pulumi_spotinst-3.124.0a1752907291.dist-info → pulumi_spotinst-3.124.0a1753398242.dist-info}/top_level.txt +0 -0
pulumi_spotinst/subscription.py
CHANGED
|
@@ -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,15 +19,15 @@ __all__ = ['SubscriptionArgs', 'Subscription']
|
|
|
20
19
|
@pulumi.input_type
|
|
21
20
|
class SubscriptionArgs:
|
|
22
21
|
def __init__(__self__, *,
|
|
23
|
-
endpoint: pulumi.Input[
|
|
24
|
-
event_type: pulumi.Input[
|
|
25
|
-
protocol: pulumi.Input[
|
|
26
|
-
resource_id: pulumi.Input[
|
|
27
|
-
format: Optional[pulumi.Input[Mapping[str, pulumi.Input[
|
|
22
|
+
endpoint: pulumi.Input[_builtins.str],
|
|
23
|
+
event_type: pulumi.Input[_builtins.str],
|
|
24
|
+
protocol: pulumi.Input[_builtins.str],
|
|
25
|
+
resource_id: pulumi.Input[_builtins.str],
|
|
26
|
+
format: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None):
|
|
28
27
|
"""
|
|
29
28
|
The set of arguments for constructing a Subscription resource.
|
|
30
|
-
:param pulumi.Input[
|
|
31
|
-
:param pulumi.Input[
|
|
29
|
+
:param pulumi.Input[_builtins.str] endpoint: The endpoint the notification will be sent to. url in case of `"http"`/`"https"`/`"web"`, email address in case of `"email"`/`"email-json"` and sns-topic-arn in case of `"aws-sns"`.
|
|
30
|
+
:param pulumi.Input[_builtins.str] event_type: The event to send the notification when triggered. Valid values: `"AWS_EC2_INSTANCE_TERMINATE"`, `"AWS_EC2_INSTANCE_TERMINATED"`, `"AWS_EC2_INSTANCE_LAUNCH"`, `"AWS_EC2_INSTANCE_READY_SIGNAL_TIMEOUT"`, `"SIGNAL_TIMEOUT_SHUTDOWN_SCRIPT"`, `"AWS_EC2_CANT_SPIN_OD"`, `"AWS_EC2_INSTANCE_UNHEALTHY_IN_ELB"`, `"GROUP_ROLL_FAILED"`, `"GROUP_ROLL_FINISHED"`,
|
|
32
31
|
`"CANT_SCALE_UP_GROUP_MAX_CAPACITY"`,
|
|
33
32
|
`"GROUP_UPDATED"`,
|
|
34
33
|
`"AWS_EMR_PROVISION_TIMEOUT"`,
|
|
@@ -40,12 +39,12 @@ class SubscriptionArgs:
|
|
|
40
39
|
`"AWS_EC2_MANAGED_INSTANCE_RECYCLING"`,`"AWS_EC2_MANAGED_INSTANCE_DELETING"`.
|
|
41
40
|
Ocean Events:`"CLUSTER_ROLL_FINISHED"`,`"GROUP_ROLL_FAILED"`,`"OCEAN_CANT_SCALE_UP_MAX_RESOURCES"`
|
|
42
41
|
`"OCEAN_LAUNCH_SPEC_CANT_SCALE_UP_MAX_INSTANCES"`,`"OCEAN_K8S_NODE_REMOVED"`.
|
|
43
|
-
:param pulumi.Input[
|
|
42
|
+
:param pulumi.Input[_builtins.str] protocol: The protocol to send the notification. Valid values: `"email"`, `"email-json"`, `"aws-sns"`, `"web"`.
|
|
44
43
|
The following values are deprecated: `"http"` , `"https"`
|
|
45
44
|
You can use the generic `"web"` protocol instead.
|
|
46
45
|
`"aws-sns"` is only supported with AWS provider
|
|
47
|
-
:param pulumi.Input[
|
|
48
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[
|
|
46
|
+
:param pulumi.Input[_builtins.str] resource_id: Spotinst Resource id (Elastigroup or Ocean ID).
|
|
47
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] format: The format of the notification content (JSON Format - Key+Value). Valid Values : `"instance-id"`, `"event"`, `"resource-id"`, `"resource-name"`, `"subnet-id"`, `"availability-zone"`, `"reason"`, `"private-ip"`, `"launchspec-id"`
|
|
49
48
|
Example: {"event": `"event"`, `"resourceId"`: `"resource-id"`, `"resourceName"`: `"resource-name"`", `"myCustomKey"`: `"My content is set here"` }
|
|
50
49
|
Default: {`"event"`: `"<event>"`, `"instanceId"`: `"<instance-id>"`, `"resourceId"`: `"<resource-id>"`, `"resourceName"`: `"<resource-name>"` }.
|
|
51
50
|
"""
|
|
@@ -56,21 +55,21 @@ class SubscriptionArgs:
|
|
|
56
55
|
if format is not None:
|
|
57
56
|
pulumi.set(__self__, "format", format)
|
|
58
57
|
|
|
59
|
-
@property
|
|
58
|
+
@_builtins.property
|
|
60
59
|
@pulumi.getter
|
|
61
|
-
def endpoint(self) -> pulumi.Input[
|
|
60
|
+
def endpoint(self) -> pulumi.Input[_builtins.str]:
|
|
62
61
|
"""
|
|
63
62
|
The endpoint the notification will be sent to. url in case of `"http"`/`"https"`/`"web"`, email address in case of `"email"`/`"email-json"` and sns-topic-arn in case of `"aws-sns"`.
|
|
64
63
|
"""
|
|
65
64
|
return pulumi.get(self, "endpoint")
|
|
66
65
|
|
|
67
66
|
@endpoint.setter
|
|
68
|
-
def endpoint(self, value: pulumi.Input[
|
|
67
|
+
def endpoint(self, value: pulumi.Input[_builtins.str]):
|
|
69
68
|
pulumi.set(self, "endpoint", value)
|
|
70
69
|
|
|
71
|
-
@property
|
|
70
|
+
@_builtins.property
|
|
72
71
|
@pulumi.getter(name="eventType")
|
|
73
|
-
def event_type(self) -> pulumi.Input[
|
|
72
|
+
def event_type(self) -> pulumi.Input[_builtins.str]:
|
|
74
73
|
"""
|
|
75
74
|
The event to send the notification when triggered. Valid values: `"AWS_EC2_INSTANCE_TERMINATE"`, `"AWS_EC2_INSTANCE_TERMINATED"`, `"AWS_EC2_INSTANCE_LAUNCH"`, `"AWS_EC2_INSTANCE_READY_SIGNAL_TIMEOUT"`, `"SIGNAL_TIMEOUT_SHUTDOWN_SCRIPT"`, `"AWS_EC2_CANT_SPIN_OD"`, `"AWS_EC2_INSTANCE_UNHEALTHY_IN_ELB"`, `"GROUP_ROLL_FAILED"`, `"GROUP_ROLL_FINISHED"`,
|
|
76
75
|
`"CANT_SCALE_UP_GROUP_MAX_CAPACITY"`,
|
|
@@ -88,12 +87,12 @@ class SubscriptionArgs:
|
|
|
88
87
|
return pulumi.get(self, "event_type")
|
|
89
88
|
|
|
90
89
|
@event_type.setter
|
|
91
|
-
def event_type(self, value: pulumi.Input[
|
|
90
|
+
def event_type(self, value: pulumi.Input[_builtins.str]):
|
|
92
91
|
pulumi.set(self, "event_type", value)
|
|
93
92
|
|
|
94
|
-
@property
|
|
93
|
+
@_builtins.property
|
|
95
94
|
@pulumi.getter
|
|
96
|
-
def protocol(self) -> pulumi.Input[
|
|
95
|
+
def protocol(self) -> pulumi.Input[_builtins.str]:
|
|
97
96
|
"""
|
|
98
97
|
The protocol to send the notification. Valid values: `"email"`, `"email-json"`, `"aws-sns"`, `"web"`.
|
|
99
98
|
The following values are deprecated: `"http"` , `"https"`
|
|
@@ -103,24 +102,24 @@ class SubscriptionArgs:
|
|
|
103
102
|
return pulumi.get(self, "protocol")
|
|
104
103
|
|
|
105
104
|
@protocol.setter
|
|
106
|
-
def protocol(self, value: pulumi.Input[
|
|
105
|
+
def protocol(self, value: pulumi.Input[_builtins.str]):
|
|
107
106
|
pulumi.set(self, "protocol", value)
|
|
108
107
|
|
|
109
|
-
@property
|
|
108
|
+
@_builtins.property
|
|
110
109
|
@pulumi.getter(name="resourceId")
|
|
111
|
-
def resource_id(self) -> pulumi.Input[
|
|
110
|
+
def resource_id(self) -> pulumi.Input[_builtins.str]:
|
|
112
111
|
"""
|
|
113
112
|
Spotinst Resource id (Elastigroup or Ocean ID).
|
|
114
113
|
"""
|
|
115
114
|
return pulumi.get(self, "resource_id")
|
|
116
115
|
|
|
117
116
|
@resource_id.setter
|
|
118
|
-
def resource_id(self, value: pulumi.Input[
|
|
117
|
+
def resource_id(self, value: pulumi.Input[_builtins.str]):
|
|
119
118
|
pulumi.set(self, "resource_id", value)
|
|
120
119
|
|
|
121
|
-
@property
|
|
120
|
+
@_builtins.property
|
|
122
121
|
@pulumi.getter
|
|
123
|
-
def format(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[
|
|
122
|
+
def format(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
|
124
123
|
"""
|
|
125
124
|
The format of the notification content (JSON Format - Key+Value). Valid Values : `"instance-id"`, `"event"`, `"resource-id"`, `"resource-name"`, `"subnet-id"`, `"availability-zone"`, `"reason"`, `"private-ip"`, `"launchspec-id"`
|
|
126
125
|
Example: {"event": `"event"`, `"resourceId"`: `"resource-id"`, `"resourceName"`: `"resource-name"`", `"myCustomKey"`: `"My content is set here"` }
|
|
@@ -129,22 +128,22 @@ class SubscriptionArgs:
|
|
|
129
128
|
return pulumi.get(self, "format")
|
|
130
129
|
|
|
131
130
|
@format.setter
|
|
132
|
-
def format(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[
|
|
131
|
+
def format(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
133
132
|
pulumi.set(self, "format", value)
|
|
134
133
|
|
|
135
134
|
|
|
136
135
|
@pulumi.input_type
|
|
137
136
|
class _SubscriptionState:
|
|
138
137
|
def __init__(__self__, *,
|
|
139
|
-
endpoint: Optional[pulumi.Input[
|
|
140
|
-
event_type: Optional[pulumi.Input[
|
|
141
|
-
format: Optional[pulumi.Input[Mapping[str, pulumi.Input[
|
|
142
|
-
protocol: Optional[pulumi.Input[
|
|
143
|
-
resource_id: Optional[pulumi.Input[
|
|
138
|
+
endpoint: Optional[pulumi.Input[_builtins.str]] = None,
|
|
139
|
+
event_type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
140
|
+
format: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
141
|
+
protocol: Optional[pulumi.Input[_builtins.str]] = None,
|
|
142
|
+
resource_id: Optional[pulumi.Input[_builtins.str]] = None):
|
|
144
143
|
"""
|
|
145
144
|
Input properties used for looking up and filtering Subscription resources.
|
|
146
|
-
:param pulumi.Input[
|
|
147
|
-
:param pulumi.Input[
|
|
145
|
+
:param pulumi.Input[_builtins.str] endpoint: The endpoint the notification will be sent to. url in case of `"http"`/`"https"`/`"web"`, email address in case of `"email"`/`"email-json"` and sns-topic-arn in case of `"aws-sns"`.
|
|
146
|
+
:param pulumi.Input[_builtins.str] event_type: The event to send the notification when triggered. Valid values: `"AWS_EC2_INSTANCE_TERMINATE"`, `"AWS_EC2_INSTANCE_TERMINATED"`, `"AWS_EC2_INSTANCE_LAUNCH"`, `"AWS_EC2_INSTANCE_READY_SIGNAL_TIMEOUT"`, `"SIGNAL_TIMEOUT_SHUTDOWN_SCRIPT"`, `"AWS_EC2_CANT_SPIN_OD"`, `"AWS_EC2_INSTANCE_UNHEALTHY_IN_ELB"`, `"GROUP_ROLL_FAILED"`, `"GROUP_ROLL_FINISHED"`,
|
|
148
147
|
`"CANT_SCALE_UP_GROUP_MAX_CAPACITY"`,
|
|
149
148
|
`"GROUP_UPDATED"`,
|
|
150
149
|
`"AWS_EMR_PROVISION_TIMEOUT"`,
|
|
@@ -156,14 +155,14 @@ class _SubscriptionState:
|
|
|
156
155
|
`"AWS_EC2_MANAGED_INSTANCE_RECYCLING"`,`"AWS_EC2_MANAGED_INSTANCE_DELETING"`.
|
|
157
156
|
Ocean Events:`"CLUSTER_ROLL_FINISHED"`,`"GROUP_ROLL_FAILED"`,`"OCEAN_CANT_SCALE_UP_MAX_RESOURCES"`
|
|
158
157
|
`"OCEAN_LAUNCH_SPEC_CANT_SCALE_UP_MAX_INSTANCES"`,`"OCEAN_K8S_NODE_REMOVED"`.
|
|
159
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[
|
|
158
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] format: The format of the notification content (JSON Format - Key+Value). Valid Values : `"instance-id"`, `"event"`, `"resource-id"`, `"resource-name"`, `"subnet-id"`, `"availability-zone"`, `"reason"`, `"private-ip"`, `"launchspec-id"`
|
|
160
159
|
Example: {"event": `"event"`, `"resourceId"`: `"resource-id"`, `"resourceName"`: `"resource-name"`", `"myCustomKey"`: `"My content is set here"` }
|
|
161
160
|
Default: {`"event"`: `"<event>"`, `"instanceId"`: `"<instance-id>"`, `"resourceId"`: `"<resource-id>"`, `"resourceName"`: `"<resource-name>"` }.
|
|
162
|
-
:param pulumi.Input[
|
|
161
|
+
:param pulumi.Input[_builtins.str] protocol: The protocol to send the notification. Valid values: `"email"`, `"email-json"`, `"aws-sns"`, `"web"`.
|
|
163
162
|
The following values are deprecated: `"http"` , `"https"`
|
|
164
163
|
You can use the generic `"web"` protocol instead.
|
|
165
164
|
`"aws-sns"` is only supported with AWS provider
|
|
166
|
-
:param pulumi.Input[
|
|
165
|
+
:param pulumi.Input[_builtins.str] resource_id: Spotinst Resource id (Elastigroup or Ocean ID).
|
|
167
166
|
"""
|
|
168
167
|
if endpoint is not None:
|
|
169
168
|
pulumi.set(__self__, "endpoint", endpoint)
|
|
@@ -176,21 +175,21 @@ class _SubscriptionState:
|
|
|
176
175
|
if resource_id is not None:
|
|
177
176
|
pulumi.set(__self__, "resource_id", resource_id)
|
|
178
177
|
|
|
179
|
-
@property
|
|
178
|
+
@_builtins.property
|
|
180
179
|
@pulumi.getter
|
|
181
|
-
def endpoint(self) -> Optional[pulumi.Input[
|
|
180
|
+
def endpoint(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
182
181
|
"""
|
|
183
182
|
The endpoint the notification will be sent to. url in case of `"http"`/`"https"`/`"web"`, email address in case of `"email"`/`"email-json"` and sns-topic-arn in case of `"aws-sns"`.
|
|
184
183
|
"""
|
|
185
184
|
return pulumi.get(self, "endpoint")
|
|
186
185
|
|
|
187
186
|
@endpoint.setter
|
|
188
|
-
def endpoint(self, value: Optional[pulumi.Input[
|
|
187
|
+
def endpoint(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
189
188
|
pulumi.set(self, "endpoint", value)
|
|
190
189
|
|
|
191
|
-
@property
|
|
190
|
+
@_builtins.property
|
|
192
191
|
@pulumi.getter(name="eventType")
|
|
193
|
-
def event_type(self) -> Optional[pulumi.Input[
|
|
192
|
+
def event_type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
194
193
|
"""
|
|
195
194
|
The event to send the notification when triggered. Valid values: `"AWS_EC2_INSTANCE_TERMINATE"`, `"AWS_EC2_INSTANCE_TERMINATED"`, `"AWS_EC2_INSTANCE_LAUNCH"`, `"AWS_EC2_INSTANCE_READY_SIGNAL_TIMEOUT"`, `"SIGNAL_TIMEOUT_SHUTDOWN_SCRIPT"`, `"AWS_EC2_CANT_SPIN_OD"`, `"AWS_EC2_INSTANCE_UNHEALTHY_IN_ELB"`, `"GROUP_ROLL_FAILED"`, `"GROUP_ROLL_FINISHED"`,
|
|
196
195
|
`"CANT_SCALE_UP_GROUP_MAX_CAPACITY"`,
|
|
@@ -208,12 +207,12 @@ class _SubscriptionState:
|
|
|
208
207
|
return pulumi.get(self, "event_type")
|
|
209
208
|
|
|
210
209
|
@event_type.setter
|
|
211
|
-
def event_type(self, value: Optional[pulumi.Input[
|
|
210
|
+
def event_type(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
212
211
|
pulumi.set(self, "event_type", value)
|
|
213
212
|
|
|
214
|
-
@property
|
|
213
|
+
@_builtins.property
|
|
215
214
|
@pulumi.getter
|
|
216
|
-
def format(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[
|
|
215
|
+
def format(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
|
217
216
|
"""
|
|
218
217
|
The format of the notification content (JSON Format - Key+Value). Valid Values : `"instance-id"`, `"event"`, `"resource-id"`, `"resource-name"`, `"subnet-id"`, `"availability-zone"`, `"reason"`, `"private-ip"`, `"launchspec-id"`
|
|
219
218
|
Example: {"event": `"event"`, `"resourceId"`: `"resource-id"`, `"resourceName"`: `"resource-name"`", `"myCustomKey"`: `"My content is set here"` }
|
|
@@ -222,12 +221,12 @@ class _SubscriptionState:
|
|
|
222
221
|
return pulumi.get(self, "format")
|
|
223
222
|
|
|
224
223
|
@format.setter
|
|
225
|
-
def format(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[
|
|
224
|
+
def format(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
|
226
225
|
pulumi.set(self, "format", value)
|
|
227
226
|
|
|
228
|
-
@property
|
|
227
|
+
@_builtins.property
|
|
229
228
|
@pulumi.getter
|
|
230
|
-
def protocol(self) -> Optional[pulumi.Input[
|
|
229
|
+
def protocol(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
231
230
|
"""
|
|
232
231
|
The protocol to send the notification. Valid values: `"email"`, `"email-json"`, `"aws-sns"`, `"web"`.
|
|
233
232
|
The following values are deprecated: `"http"` , `"https"`
|
|
@@ -237,19 +236,19 @@ class _SubscriptionState:
|
|
|
237
236
|
return pulumi.get(self, "protocol")
|
|
238
237
|
|
|
239
238
|
@protocol.setter
|
|
240
|
-
def protocol(self, value: Optional[pulumi.Input[
|
|
239
|
+
def protocol(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
241
240
|
pulumi.set(self, "protocol", value)
|
|
242
241
|
|
|
243
|
-
@property
|
|
242
|
+
@_builtins.property
|
|
244
243
|
@pulumi.getter(name="resourceId")
|
|
245
|
-
def resource_id(self) -> Optional[pulumi.Input[
|
|
244
|
+
def resource_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
246
245
|
"""
|
|
247
246
|
Spotinst Resource id (Elastigroup or Ocean ID).
|
|
248
247
|
"""
|
|
249
248
|
return pulumi.get(self, "resource_id")
|
|
250
249
|
|
|
251
250
|
@resource_id.setter
|
|
252
|
-
def resource_id(self, value: Optional[pulumi.Input[
|
|
251
|
+
def resource_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
253
252
|
pulumi.set(self, "resource_id", value)
|
|
254
253
|
|
|
255
254
|
|
|
@@ -259,11 +258,11 @@ class Subscription(pulumi.CustomResource):
|
|
|
259
258
|
def __init__(__self__,
|
|
260
259
|
resource_name: str,
|
|
261
260
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
262
|
-
endpoint: Optional[pulumi.Input[
|
|
263
|
-
event_type: Optional[pulumi.Input[
|
|
264
|
-
format: Optional[pulumi.Input[Mapping[str, pulumi.Input[
|
|
265
|
-
protocol: Optional[pulumi.Input[
|
|
266
|
-
resource_id: Optional[pulumi.Input[
|
|
261
|
+
endpoint: Optional[pulumi.Input[_builtins.str]] = None,
|
|
262
|
+
event_type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
263
|
+
format: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
264
|
+
protocol: Optional[pulumi.Input[_builtins.str]] = None,
|
|
265
|
+
resource_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
267
266
|
__props__=None):
|
|
268
267
|
"""
|
|
269
268
|
Provides a Spotinst subscription resource.
|
|
@@ -291,8 +290,8 @@ class Subscription(pulumi.CustomResource):
|
|
|
291
290
|
|
|
292
291
|
:param str resource_name: The name of the resource.
|
|
293
292
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
294
|
-
:param pulumi.Input[
|
|
295
|
-
:param pulumi.Input[
|
|
293
|
+
:param pulumi.Input[_builtins.str] endpoint: The endpoint the notification will be sent to. url in case of `"http"`/`"https"`/`"web"`, email address in case of `"email"`/`"email-json"` and sns-topic-arn in case of `"aws-sns"`.
|
|
294
|
+
:param pulumi.Input[_builtins.str] event_type: The event to send the notification when triggered. Valid values: `"AWS_EC2_INSTANCE_TERMINATE"`, `"AWS_EC2_INSTANCE_TERMINATED"`, `"AWS_EC2_INSTANCE_LAUNCH"`, `"AWS_EC2_INSTANCE_READY_SIGNAL_TIMEOUT"`, `"SIGNAL_TIMEOUT_SHUTDOWN_SCRIPT"`, `"AWS_EC2_CANT_SPIN_OD"`, `"AWS_EC2_INSTANCE_UNHEALTHY_IN_ELB"`, `"GROUP_ROLL_FAILED"`, `"GROUP_ROLL_FINISHED"`,
|
|
296
295
|
`"CANT_SCALE_UP_GROUP_MAX_CAPACITY"`,
|
|
297
296
|
`"GROUP_UPDATED"`,
|
|
298
297
|
`"AWS_EMR_PROVISION_TIMEOUT"`,
|
|
@@ -304,14 +303,14 @@ class Subscription(pulumi.CustomResource):
|
|
|
304
303
|
`"AWS_EC2_MANAGED_INSTANCE_RECYCLING"`,`"AWS_EC2_MANAGED_INSTANCE_DELETING"`.
|
|
305
304
|
Ocean Events:`"CLUSTER_ROLL_FINISHED"`,`"GROUP_ROLL_FAILED"`,`"OCEAN_CANT_SCALE_UP_MAX_RESOURCES"`
|
|
306
305
|
`"OCEAN_LAUNCH_SPEC_CANT_SCALE_UP_MAX_INSTANCES"`,`"OCEAN_K8S_NODE_REMOVED"`.
|
|
307
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[
|
|
306
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] format: The format of the notification content (JSON Format - Key+Value). Valid Values : `"instance-id"`, `"event"`, `"resource-id"`, `"resource-name"`, `"subnet-id"`, `"availability-zone"`, `"reason"`, `"private-ip"`, `"launchspec-id"`
|
|
308
307
|
Example: {"event": `"event"`, `"resourceId"`: `"resource-id"`, `"resourceName"`: `"resource-name"`", `"myCustomKey"`: `"My content is set here"` }
|
|
309
308
|
Default: {`"event"`: `"<event>"`, `"instanceId"`: `"<instance-id>"`, `"resourceId"`: `"<resource-id>"`, `"resourceName"`: `"<resource-name>"` }.
|
|
310
|
-
:param pulumi.Input[
|
|
309
|
+
:param pulumi.Input[_builtins.str] protocol: The protocol to send the notification. Valid values: `"email"`, `"email-json"`, `"aws-sns"`, `"web"`.
|
|
311
310
|
The following values are deprecated: `"http"` , `"https"`
|
|
312
311
|
You can use the generic `"web"` protocol instead.
|
|
313
312
|
`"aws-sns"` is only supported with AWS provider
|
|
314
|
-
:param pulumi.Input[
|
|
313
|
+
:param pulumi.Input[_builtins.str] resource_id: Spotinst Resource id (Elastigroup or Ocean ID).
|
|
315
314
|
"""
|
|
316
315
|
...
|
|
317
316
|
@overload
|
|
@@ -358,11 +357,11 @@ class Subscription(pulumi.CustomResource):
|
|
|
358
357
|
def _internal_init(__self__,
|
|
359
358
|
resource_name: str,
|
|
360
359
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
361
|
-
endpoint: Optional[pulumi.Input[
|
|
362
|
-
event_type: Optional[pulumi.Input[
|
|
363
|
-
format: Optional[pulumi.Input[Mapping[str, pulumi.Input[
|
|
364
|
-
protocol: Optional[pulumi.Input[
|
|
365
|
-
resource_id: Optional[pulumi.Input[
|
|
360
|
+
endpoint: Optional[pulumi.Input[_builtins.str]] = None,
|
|
361
|
+
event_type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
362
|
+
format: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
363
|
+
protocol: Optional[pulumi.Input[_builtins.str]] = None,
|
|
364
|
+
resource_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
366
365
|
__props__=None):
|
|
367
366
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
368
367
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -395,11 +394,11 @@ class Subscription(pulumi.CustomResource):
|
|
|
395
394
|
def get(resource_name: str,
|
|
396
395
|
id: pulumi.Input[str],
|
|
397
396
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
398
|
-
endpoint: Optional[pulumi.Input[
|
|
399
|
-
event_type: Optional[pulumi.Input[
|
|
400
|
-
format: Optional[pulumi.Input[Mapping[str, pulumi.Input[
|
|
401
|
-
protocol: Optional[pulumi.Input[
|
|
402
|
-
resource_id: Optional[pulumi.Input[
|
|
397
|
+
endpoint: Optional[pulumi.Input[_builtins.str]] = None,
|
|
398
|
+
event_type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
399
|
+
format: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
400
|
+
protocol: Optional[pulumi.Input[_builtins.str]] = None,
|
|
401
|
+
resource_id: Optional[pulumi.Input[_builtins.str]] = None) -> 'Subscription':
|
|
403
402
|
"""
|
|
404
403
|
Get an existing Subscription resource's state with the given name, id, and optional extra
|
|
405
404
|
properties used to qualify the lookup.
|
|
@@ -407,8 +406,8 @@ class Subscription(pulumi.CustomResource):
|
|
|
407
406
|
:param str resource_name: The unique name of the resulting resource.
|
|
408
407
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
409
408
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
410
|
-
:param pulumi.Input[
|
|
411
|
-
:param pulumi.Input[
|
|
409
|
+
:param pulumi.Input[_builtins.str] endpoint: The endpoint the notification will be sent to. url in case of `"http"`/`"https"`/`"web"`, email address in case of `"email"`/`"email-json"` and sns-topic-arn in case of `"aws-sns"`.
|
|
410
|
+
:param pulumi.Input[_builtins.str] event_type: The event to send the notification when triggered. Valid values: `"AWS_EC2_INSTANCE_TERMINATE"`, `"AWS_EC2_INSTANCE_TERMINATED"`, `"AWS_EC2_INSTANCE_LAUNCH"`, `"AWS_EC2_INSTANCE_READY_SIGNAL_TIMEOUT"`, `"SIGNAL_TIMEOUT_SHUTDOWN_SCRIPT"`, `"AWS_EC2_CANT_SPIN_OD"`, `"AWS_EC2_INSTANCE_UNHEALTHY_IN_ELB"`, `"GROUP_ROLL_FAILED"`, `"GROUP_ROLL_FINISHED"`,
|
|
412
411
|
`"CANT_SCALE_UP_GROUP_MAX_CAPACITY"`,
|
|
413
412
|
`"GROUP_UPDATED"`,
|
|
414
413
|
`"AWS_EMR_PROVISION_TIMEOUT"`,
|
|
@@ -420,14 +419,14 @@ class Subscription(pulumi.CustomResource):
|
|
|
420
419
|
`"AWS_EC2_MANAGED_INSTANCE_RECYCLING"`,`"AWS_EC2_MANAGED_INSTANCE_DELETING"`.
|
|
421
420
|
Ocean Events:`"CLUSTER_ROLL_FINISHED"`,`"GROUP_ROLL_FAILED"`,`"OCEAN_CANT_SCALE_UP_MAX_RESOURCES"`
|
|
422
421
|
`"OCEAN_LAUNCH_SPEC_CANT_SCALE_UP_MAX_INSTANCES"`,`"OCEAN_K8S_NODE_REMOVED"`.
|
|
423
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[
|
|
422
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] format: The format of the notification content (JSON Format - Key+Value). Valid Values : `"instance-id"`, `"event"`, `"resource-id"`, `"resource-name"`, `"subnet-id"`, `"availability-zone"`, `"reason"`, `"private-ip"`, `"launchspec-id"`
|
|
424
423
|
Example: {"event": `"event"`, `"resourceId"`: `"resource-id"`, `"resourceName"`: `"resource-name"`", `"myCustomKey"`: `"My content is set here"` }
|
|
425
424
|
Default: {`"event"`: `"<event>"`, `"instanceId"`: `"<instance-id>"`, `"resourceId"`: `"<resource-id>"`, `"resourceName"`: `"<resource-name>"` }.
|
|
426
|
-
:param pulumi.Input[
|
|
425
|
+
:param pulumi.Input[_builtins.str] protocol: The protocol to send the notification. Valid values: `"email"`, `"email-json"`, `"aws-sns"`, `"web"`.
|
|
427
426
|
The following values are deprecated: `"http"` , `"https"`
|
|
428
427
|
You can use the generic `"web"` protocol instead.
|
|
429
428
|
`"aws-sns"` is only supported with AWS provider
|
|
430
|
-
:param pulumi.Input[
|
|
429
|
+
:param pulumi.Input[_builtins.str] resource_id: Spotinst Resource id (Elastigroup or Ocean ID).
|
|
431
430
|
"""
|
|
432
431
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
433
432
|
|
|
@@ -440,17 +439,17 @@ class Subscription(pulumi.CustomResource):
|
|
|
440
439
|
__props__.__dict__["resource_id"] = resource_id
|
|
441
440
|
return Subscription(resource_name, opts=opts, __props__=__props__)
|
|
442
441
|
|
|
443
|
-
@property
|
|
442
|
+
@_builtins.property
|
|
444
443
|
@pulumi.getter
|
|
445
|
-
def endpoint(self) -> pulumi.Output[
|
|
444
|
+
def endpoint(self) -> pulumi.Output[_builtins.str]:
|
|
446
445
|
"""
|
|
447
446
|
The endpoint the notification will be sent to. url in case of `"http"`/`"https"`/`"web"`, email address in case of `"email"`/`"email-json"` and sns-topic-arn in case of `"aws-sns"`.
|
|
448
447
|
"""
|
|
449
448
|
return pulumi.get(self, "endpoint")
|
|
450
449
|
|
|
451
|
-
@property
|
|
450
|
+
@_builtins.property
|
|
452
451
|
@pulumi.getter(name="eventType")
|
|
453
|
-
def event_type(self) -> pulumi.Output[
|
|
452
|
+
def event_type(self) -> pulumi.Output[_builtins.str]:
|
|
454
453
|
"""
|
|
455
454
|
The event to send the notification when triggered. Valid values: `"AWS_EC2_INSTANCE_TERMINATE"`, `"AWS_EC2_INSTANCE_TERMINATED"`, `"AWS_EC2_INSTANCE_LAUNCH"`, `"AWS_EC2_INSTANCE_READY_SIGNAL_TIMEOUT"`, `"SIGNAL_TIMEOUT_SHUTDOWN_SCRIPT"`, `"AWS_EC2_CANT_SPIN_OD"`, `"AWS_EC2_INSTANCE_UNHEALTHY_IN_ELB"`, `"GROUP_ROLL_FAILED"`, `"GROUP_ROLL_FINISHED"`,
|
|
456
455
|
`"CANT_SCALE_UP_GROUP_MAX_CAPACITY"`,
|
|
@@ -467,9 +466,9 @@ class Subscription(pulumi.CustomResource):
|
|
|
467
466
|
"""
|
|
468
467
|
return pulumi.get(self, "event_type")
|
|
469
468
|
|
|
470
|
-
@property
|
|
469
|
+
@_builtins.property
|
|
471
470
|
@pulumi.getter
|
|
472
|
-
def format(self) -> pulumi.Output[Optional[Mapping[str,
|
|
471
|
+
def format(self) -> pulumi.Output[Optional[Mapping[str, _builtins.str]]]:
|
|
473
472
|
"""
|
|
474
473
|
The format of the notification content (JSON Format - Key+Value). Valid Values : `"instance-id"`, `"event"`, `"resource-id"`, `"resource-name"`, `"subnet-id"`, `"availability-zone"`, `"reason"`, `"private-ip"`, `"launchspec-id"`
|
|
475
474
|
Example: {"event": `"event"`, `"resourceId"`: `"resource-id"`, `"resourceName"`: `"resource-name"`", `"myCustomKey"`: `"My content is set here"` }
|
|
@@ -477,9 +476,9 @@ class Subscription(pulumi.CustomResource):
|
|
|
477
476
|
"""
|
|
478
477
|
return pulumi.get(self, "format")
|
|
479
478
|
|
|
480
|
-
@property
|
|
479
|
+
@_builtins.property
|
|
481
480
|
@pulumi.getter
|
|
482
|
-
def protocol(self) -> pulumi.Output[
|
|
481
|
+
def protocol(self) -> pulumi.Output[_builtins.str]:
|
|
483
482
|
"""
|
|
484
483
|
The protocol to send the notification. Valid values: `"email"`, `"email-json"`, `"aws-sns"`, `"web"`.
|
|
485
484
|
The following values are deprecated: `"http"` , `"https"`
|
|
@@ -488,9 +487,9 @@ class Subscription(pulumi.CustomResource):
|
|
|
488
487
|
"""
|
|
489
488
|
return pulumi.get(self, "protocol")
|
|
490
489
|
|
|
491
|
-
@property
|
|
490
|
+
@_builtins.property
|
|
492
491
|
@pulumi.getter(name="resourceId")
|
|
493
|
-
def resource_id(self) -> pulumi.Output[
|
|
492
|
+
def resource_id(self) -> pulumi.Output[_builtins.str]:
|
|
494
493
|
"""
|
|
495
494
|
Spotinst Resource id (Elastigroup or Ocean ID).
|
|
496
495
|
"""
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
pulumi_spotinst/__init__.py,sha256=7z-WTGhCLkMBARWv5HBwYPwJmmUlZxkFV4e2-44vcOE,8962
|
|
2
|
+
pulumi_spotinst/_inputs.py,sha256=BzCo3tF9pcPPX7nz-qlVl7wyTNY5CgZSNxzEMic_iz4,242041
|
|
3
|
+
pulumi_spotinst/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
|
4
|
+
pulumi_spotinst/account.py,sha256=xZtina6f9EsvjCBy-m7ONNNTmiSLH83RnRW-hgyg6Tg,6564
|
|
5
|
+
pulumi_spotinst/credentials_azure.py,sha256=Oj8M5GWA-6qcBrA1-gs1aHyopd6QEsfPh_UFaaZMF_g,17554
|
|
6
|
+
pulumi_spotinst/credentials_gcp.py,sha256=V5_aPOHe4xJu8kUlJVr5qpd1bknmVf3RITba0S2PYk8,27904
|
|
7
|
+
pulumi_spotinst/data_integration.py,sha256=ATUa3lTPX4C0RL9RZAdok8s-FBXzLhTm8aLaeC6H9aA,12332
|
|
8
|
+
pulumi_spotinst/elastigroup_azure_v3.py,sha256=g-qo7lvdIKFZvHnnJpBRTQvdtx_QtGj3-emvcwvGB4U,78617
|
|
9
|
+
pulumi_spotinst/health_check.py,sha256=qAORI0qYkOKceI5yyKZXFLoppI0PkKevlhW1rYEM25Q,14253
|
|
10
|
+
pulumi_spotinst/notification_center.py,sha256=iwsxYdQT1XlD0tiG07LkH2-v6YnSL9RCCxQyF9zXQpg,16731
|
|
11
|
+
pulumi_spotinst/ocean_right_sizing_rule.py,sha256=5xW5szvbyDPDcslS0rb-FZNTTdM51_lviJDk2IzTCG4,31843
|
|
12
|
+
pulumi_spotinst/outputs.py,sha256=Rss2Edcf6Y2Y5DTXWUMfoYIuVNv_M4Nn-EdtpjTMizM,193797
|
|
13
|
+
pulumi_spotinst/provider.py,sha256=FEjU0etSWrJlMWHpU0GNv18xgOjcxUbHQKkqj1z6ov0,8816
|
|
14
|
+
pulumi_spotinst/pulumi-plugin.json,sha256=SKNspCY-SPz94xbJoek22WEfPOrx9kTc9fcTflxdJ-Y,86
|
|
15
|
+
pulumi_spotinst/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
|
+
pulumi_spotinst/stateful_node_azure.py,sha256=5va42CW56xGKyALV4WpfV55BI1feYH9c4KTT5AUhNiU,142477
|
|
17
|
+
pulumi_spotinst/subscription.py,sha256=WQXMOJYjm4DrTfxZ2VhzDi5aeJdkjEul8MeEtVBi4Fg,28774
|
|
18
|
+
pulumi_spotinst/aws/__init__.py,sha256=SWKWiKvOcvQqdCkmszayFXbFeZD4sXaG2z05d2LhIyE,614
|
|
19
|
+
pulumi_spotinst/aws/_inputs.py,sha256=3ZQaTqPGrXU41NxCG5q3N-veEDm1uzTbkjEYetCeoSw,645557
|
|
20
|
+
pulumi_spotinst/aws/account.py,sha256=WUfqiPur6NVF8p5bM2-BYZh_wNA8MDpx2JzHMoBlgZ0,6593
|
|
21
|
+
pulumi_spotinst/aws/beanstalk.py,sha256=kclK6IEKiSOx21Tf3X5HaJcZEhgtl7CyMF0-b1YgpU4,35871
|
|
22
|
+
pulumi_spotinst/aws/credentials.py,sha256=ZVCezkIUAP4JguLFznZs7N2yRjxSxZNEBVWEeLsIUas,9584
|
|
23
|
+
pulumi_spotinst/aws/elastigroup.py,sha256=_5jIwyfoRy2dk3FfEoNCLzEe90KJNyIEmsr5vjlgXk0,237912
|
|
24
|
+
pulumi_spotinst/aws/managed_instance.py,sha256=ngHzlb1QNvbg6V43My4yvjn5YOmD8s3Tfs5efVtDLM4,89302
|
|
25
|
+
pulumi_spotinst/aws/mr_scalar.py,sha256=1NZVKWaPvFsLwBrSyBts6SPXGIHZCdhB7r9DOysUtj4,131019
|
|
26
|
+
pulumi_spotinst/aws/ocean.py,sha256=YD-IUf9sOhf8PgEOHOG5sk4IF0gDQiffse5LOLr26t8,124679
|
|
27
|
+
pulumi_spotinst/aws/ocean_extended_resource_definition.py,sha256=vY9Idmkqs1yFGIY4KaQl_zvmau0kVJlSSqp_YgCPZns,11119
|
|
28
|
+
pulumi_spotinst/aws/ocean_launch_spec.py,sha256=71MeEEyb2ZMPHHzap0_HxrDn9OYJxd80leK1v_PTeyI,107337
|
|
29
|
+
pulumi_spotinst/aws/outputs.py,sha256=xFWNomHN2lBRcM4i3eIEiwnfvnIlztcOdqwOa0Cwldg,478204
|
|
30
|
+
pulumi_spotinst/aws/suspension.py,sha256=ma9_lzRrcTHExXu2RHNPT35KigSmncnt7de12QU0SSQ,9836
|
|
31
|
+
pulumi_spotinst/azure/__init__.py,sha256=UxJDd-yQgzdApWYWSVyS8oelVf9Ta8E2L07Cdqz0itc,392
|
|
32
|
+
pulumi_spotinst/azure/_inputs.py,sha256=5mwJ8lJPXlXyH7cnoWPMIQc4GTqu47S44dpagBFKxLI,131270
|
|
33
|
+
pulumi_spotinst/azure/ocean_np.py,sha256=PhubaRJvsG-VNStf7AkDUYIp02Vo3X5N6tMByLHb6UI,87047
|
|
34
|
+
pulumi_spotinst/azure/ocean_np_virtual_node_group.py,sha256=stnc3Ng6fYiwSZVe2Scl1O2b83au3sze4bBV5cep9co,71021
|
|
35
|
+
pulumi_spotinst/azure/outputs.py,sha256=Fe_ry7-5iqaQgY0wpvTJ1z9y9KFhu7bHWlfPN27UhTI,99160
|
|
36
|
+
pulumi_spotinst/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJQASWdTRoPmc,296
|
|
37
|
+
pulumi_spotinst/config/__init__.pyi,sha256=RiTrkI3RQXi_QRzK3PSfXwoUTaAL7s4NHOUYWwtthMA,772
|
|
38
|
+
pulumi_spotinst/config/vars.py,sha256=iuIkM-ATaOBmJn3vhq5ToOYxBI5g6qT7q_ulvl9VY0o,1303
|
|
39
|
+
pulumi_spotinst/ecs/__init__.py,sha256=CLysCVh9rxUT2ffyh_NnUNdybP26mIqf-brCVJqjvqo,379
|
|
40
|
+
pulumi_spotinst/ecs/_inputs.py,sha256=YUrKXAmQelUuj2ILHPoOXdk8IpYv2veDHmzQiKQzUEs,114766
|
|
41
|
+
pulumi_spotinst/ecs/ocean.py,sha256=vzZnCZA843kAY84ypWdjZY4S67eCrCWMqKu2srKZcFU,87531
|
|
42
|
+
pulumi_spotinst/ecs/ocean_launch_spec.py,sha256=-eSFTr8fZst5A0FtI2CIMJ9vF6HejFMGpZq6K4uvOQA,63373
|
|
43
|
+
pulumi_spotinst/ecs/outputs.py,sha256=b1k0mU88oUhZFWCQd9aCpYqe2w2Ituz4ERPVa8N1UM8,86861
|
|
44
|
+
pulumi_spotinst/gcp/__init__.py,sha256=aumZUMhkw4EKoQn4eCtd7P32Km2N4DH5DQJjXSAGIiI,352
|
|
45
|
+
pulumi_spotinst/gcp/_inputs.py,sha256=QkxvxD25ZBK7clpn7ltLafmjmhaQJkDbdiBUdjqHlH0,86612
|
|
46
|
+
pulumi_spotinst/gcp/elastigroup.py,sha256=AS2pdjWeRfDuywLqkvarg18Ik5TWAN7wLMSqITzjC9g,124414
|
|
47
|
+
pulumi_spotinst/gcp/outputs.py,sha256=5zf1bgRclSAjkavtXQFos1eV23jGbFJ5vF0ZC_yAj3A,62653
|
|
48
|
+
pulumi_spotinst/gke/__init__.py,sha256=1N01YAyfVw7EkjfqgCu7F0BlOC8nJl4kuGrSUCSAEXY,453
|
|
49
|
+
pulumi_spotinst/gke/_inputs.py,sha256=9Xf1Dw9SJYJBgehVrn3JLF-HEyG-OV9UraGybBhQQrM,166424
|
|
50
|
+
pulumi_spotinst/gke/elastigroup.py,sha256=adjijR3HsE6wUnCmansKAWppKiUn2Rg_sSWfw8DxZWQ,75125
|
|
51
|
+
pulumi_spotinst/gke/ocean_import.py,sha256=duNECsSKjQKrNhywasou1mxy3Qgtl5wcQPLmQVexl50,55604
|
|
52
|
+
pulumi_spotinst/gke/ocean_launch_spec.py,sha256=LZKjqHzRy1PJXvZK8WozhRJmMR4oEHwG5gj2_0dhfV4,71615
|
|
53
|
+
pulumi_spotinst/gke/ocean_launch_spec_import.py,sha256=V8zRzgH_yiBbBX4zpZ_KyGhewFIXUshshERBNcqB7cE,9180
|
|
54
|
+
pulumi_spotinst/gke/outputs.py,sha256=2ddlRr5TX3z6R_w1RssCNtD8k_zFxBKd1QJO18wAa0k,128064
|
|
55
|
+
pulumi_spotinst/oceancd/__init__.py,sha256=L8V4GflT2iyGQ1SIpOVYgQdjRkgjo9_y2UmXtLaXb3M,451
|
|
56
|
+
pulumi_spotinst/oceancd/_inputs.py,sha256=IYIPwaz7Mw9UuxdB8mY68_IhFb9U3lCOZigFPB5dyrQ,179048
|
|
57
|
+
pulumi_spotinst/oceancd/outputs.py,sha256=_S1Jjxbo0mdAZMdl4cJlkZG7ZQZnjzhQyW4EHgJD0vI,140324
|
|
58
|
+
pulumi_spotinst/oceancd/rollout_spec.py,sha256=Omx8JjvtQDJdRFuDYK4MwlSW-Pkh-l6-No_DJDDHc9M,22921
|
|
59
|
+
pulumi_spotinst/oceancd/strategy.py,sha256=By9QWVbbyp9o4ugdAzaDlxKsoJnPQSQ-rdE7-hJPn9E,10497
|
|
60
|
+
pulumi_spotinst/oceancd/verification_provider.py,sha256=GoMTkPrve3yWyxxulGyloDn-2JWg_M5N7L-TslBNUnw,24866
|
|
61
|
+
pulumi_spotinst/oceancd/verification_template.py,sha256=LWfGTJeFdG89nhXErRwuw3DpWNqeRVDixqbrlKxQzMw,23290
|
|
62
|
+
pulumi_spotinst/organization/__init__.py,sha256=f_afigmQ9trXpYFEPAAMOg9GGJP6F9hAja_3pAdgWGQ,426
|
|
63
|
+
pulumi_spotinst/organization/_inputs.py,sha256=FMC0GV0CEJRj-Zh7ilRDa_wix895pzas7Jxf0QMyfcQ,13236
|
|
64
|
+
pulumi_spotinst/organization/outputs.py,sha256=zcMT17NO2PH4pSh8XDwBTfsTRYqOG8bWwUez09jL0sE,10135
|
|
65
|
+
pulumi_spotinst/organization/policy.py,sha256=Z0wQC6lO6mUkfbeQ-tg45AMgHNSGIhwT1QfnFghPZbc,12376
|
|
66
|
+
pulumi_spotinst/organization/programmatic_user.py,sha256=cycWIqycxy5vYM4SW7yZHVk_Hrf47gpoL_rx9mV34Xw,18187
|
|
67
|
+
pulumi_spotinst/organization/user.py,sha256=B_JhgdCsz8NdrmXWAOol4MGwtrhkTJeX0kVWA6y7m9c,19912
|
|
68
|
+
pulumi_spotinst/organization/user_group.py,sha256=M0vTvchXvbMGhbQzvZY4SyejnpwYOAsnBjNh9GPyaJ8,14178
|
|
69
|
+
pulumi_spotinst/spark/__init__.py,sha256=GdU90E-r19mNymwp786-ILcRCGs7nbrPBLRuGUgd0OA,386
|
|
70
|
+
pulumi_spotinst/spark/_inputs.py,sha256=XB8S6pZxnO4iNXdGVAAXb4JFZw-GuhuDl6O2yWWiliU,26665
|
|
71
|
+
pulumi_spotinst/spark/ocean.py,sha256=A1XL91RkzkOH6_0cE-roTPVLz88dLCyeuQtPzy3JfdE,19953
|
|
72
|
+
pulumi_spotinst/spark/ocean_virtual_node_group.py,sha256=dzaQUXFtAihajDSuFD395x7WQ8zitgvcJhB-e3AN-Vw,8717
|
|
73
|
+
pulumi_spotinst/spark/outputs.py,sha256=1QDMtJQ-VQ2lsbBibWnO8FbUdPOUDDR6MfOjt-Sep-4,20785
|
|
74
|
+
pulumi_spotinst-3.124.0a1753398242.dist-info/METADATA,sha256=x5jtVKX7kv7Xf4wnSan6pf_U5TRhHxKPrYO20kEffw8,2724
|
|
75
|
+
pulumi_spotinst-3.124.0a1753398242.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
76
|
+
pulumi_spotinst-3.124.0a1753398242.dist-info/top_level.txt,sha256=B1HTsr4PliwgyZPJ-9Cmg9PELboV_GusiFDrxBSVHeI,16
|
|
77
|
+
pulumi_spotinst-3.124.0a1753398242.dist-info/RECORD,,
|
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
pulumi_spotinst/__init__.py,sha256=XTA3l6mlCkUC_xqhb8yfbDOfjr-TFvMbP-WDFn3PiYU,8949
|
|
2
|
-
pulumi_spotinst/_inputs.py,sha256=MQLNSLgSfIBdRlr-JTB7k9TB1UdW80sHOha4u_Kg-vY,237230
|
|
3
|
-
pulumi_spotinst/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
|
4
|
-
pulumi_spotinst/account.py,sha256=8rJCpw5D-w4JuwdggQBFGbyet4xthf8xGEVfNSBSaBQ,6519
|
|
5
|
-
pulumi_spotinst/credentials_azure.py,sha256=YZMRpAB41R_2QIYMB8v8lQ_FM_srwoRYO-br9Xk7irw,17289
|
|
6
|
-
pulumi_spotinst/credentials_gcp.py,sha256=YV7WARphxQW4f7KGKksnjGPk3kEnED72wg7Vs55of7I,27419
|
|
7
|
-
pulumi_spotinst/data_integration.py,sha256=vBG2ZhM4zXUv9NaYEipjfdlEIIyCVpjwJYF8_Nz0wsg,12213
|
|
8
|
-
pulumi_spotinst/elastigroup_azure_v3.py,sha256=89GEGnCpo47-PuPHmtm-UXP9JIBfI7bcKa6eULFdfok,77186
|
|
9
|
-
pulumi_spotinst/health_check.py,sha256=VM0rME0taQL4bWA8BG-B_fBY212JWejfmOL7p38p7KQ,14054
|
|
10
|
-
pulumi_spotinst/notification_center.py,sha256=TLfO1jPVsDp0iF8nyDbBWp8SVDEt8ydurGk6F5YHI80,16480
|
|
11
|
-
pulumi_spotinst/ocean_right_sizing_rule.py,sha256=qdX2szOREGHtyKM-E5haTns_GG8I2vMmD-4y4qwbivs,31472
|
|
12
|
-
pulumi_spotinst/outputs.py,sha256=PwAEHljd_ivu9mYW2bchLylVQUMQ1wggMZpc2bTpjaE,189612
|
|
13
|
-
pulumi_spotinst/provider.py,sha256=hQRAOFDwFyXEn7Qifa4rW1og1hUBZnQ__FTO6jrl_JA,8704
|
|
14
|
-
pulumi_spotinst/pulumi-plugin.json,sha256=4yUEUSfXW9SCFbl3RvIN-uwlg_vZ9UlNRAul_efKXrs,86
|
|
15
|
-
pulumi_spotinst/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
|
-
pulumi_spotinst/stateful_node_azure.py,sha256=Fo9sfrAubvf8Bbkk_OwwzqWb7HR0RUfgYFjLTHSUkjM,141066
|
|
17
|
-
pulumi_spotinst/subscription.py,sha256=lqMp5cd6pJ8DMsw7MpHXYFPKRsdBm05NnHRvoA3Eb2k,28553
|
|
18
|
-
pulumi_spotinst/aws/__init__.py,sha256=vjlG1OvwRuSgo8lXzTgX52CP6gfEStZz3OV0sFYOGOc,601
|
|
19
|
-
pulumi_spotinst/aws/_inputs.py,sha256=JIwTVX7xPP1kA-FjWNgi7nd6ehcecPGyqiiXUqrgmEA,635612
|
|
20
|
-
pulumi_spotinst/aws/account.py,sha256=a-6sYDm21UaWFS4hF1oyDkI2y0LgXO41OEo-dIccMQs,6548
|
|
21
|
-
pulumi_spotinst/aws/beanstalk.py,sha256=x4FsPrvUevUw02ZzU5mZYzWQ7UbIfXYVtOxi7rja_1Q,35344
|
|
22
|
-
pulumi_spotinst/aws/credentials.py,sha256=DoLnBendNUWv3S-9SD_WmJEJS4N5n8lliBj9qNwonuI,9495
|
|
23
|
-
pulumi_spotinst/aws/elastigroup.py,sha256=89mmfR3YMzf_9qWdHo2df7ioq8R_4pbSu2GikNuA5Es,234681
|
|
24
|
-
pulumi_spotinst/aws/managed_instance.py,sha256=ZpO2dEVXYcWelVxNgkLxFLMEJ6LqzRbKSPCCA_xTSb0,87501
|
|
25
|
-
pulumi_spotinst/aws/mr_scalar.py,sha256=Pk3HT51PV1wDoyTTjKgDgW9RTilc1xstoR_tDx_3aoU,128729
|
|
26
|
-
pulumi_spotinst/aws/ocean.py,sha256=Owg5YD36KhQpnEtgfKpSwa0bOFJnyHMqOtdw7giqNa8,122960
|
|
27
|
-
pulumi_spotinst/aws/ocean_extended_resource_definition.py,sha256=0W4x215g5KsvLUQpu3Lr06Wi29WpwRekRHyxNzHVl5Y,11030
|
|
28
|
-
pulumi_spotinst/aws/ocean_launch_spec.py,sha256=rBtudmB6qL9g4QH6b_4o99uCsmKiiXxPf0nvl8BnnkY,106090
|
|
29
|
-
pulumi_spotinst/aws/outputs.py,sha256=SoIdcyCzeMpVIzDLryiT5qCXRns9bbg1HpBwdsdKpqI,469517
|
|
30
|
-
pulumi_spotinst/aws/suspension.py,sha256=sxlrdBlF-DQhRkpPLwZA1uZXRQpYRGpxTPKSVaG3txA,9761
|
|
31
|
-
pulumi_spotinst/azure/__init__.py,sha256=PJpRk0m7phuIho79456sFbfyk2OPxzuzusttwJ_Urdk,379
|
|
32
|
-
pulumi_spotinst/azure/_inputs.py,sha256=W9Jvx6xViZjw2o8JhF6RXYud1Np0d89Ihkfd24O0-q0,129617
|
|
33
|
-
pulumi_spotinst/azure/ocean_np.py,sha256=1Yr3baRNGHOrEz2VeSXBn9BWtIw4Ily2jULbQhl-GYs,85798
|
|
34
|
-
pulumi_spotinst/azure/ocean_np_virtual_node_group.py,sha256=lU7i5i4TIY5cLmlbjJ6hF16-lgyM_jOg-yhm9d5yJHo,70052
|
|
35
|
-
pulumi_spotinst/azure/outputs.py,sha256=N3TjiDMAkGiZM4ufO8BoiyY7COPi4uPVZ3On59hSXPA,97703
|
|
36
|
-
pulumi_spotinst/config/__init__.py,sha256=LBsoZbCKMHDFo-5RJPY0lRzMsShB1weBQPxL9RQBFtY,283
|
|
37
|
-
pulumi_spotinst/config/__init__.pyi,sha256=xt4810rXCvBnO7UmkTv8YmZtpjvX4zJNaw3GDkOKtRY,771
|
|
38
|
-
pulumi_spotinst/config/vars.py,sha256=V9Fk2IbJAm-bW9MSSPJZY_sn7wlqpKadW2yEXsFp4SI,1262
|
|
39
|
-
pulumi_spotinst/ecs/__init__.py,sha256=4Svs0I5ePMBCfeY_6II2_f2Z8JNyELM5yK_wzGqVYnY,366
|
|
40
|
-
pulumi_spotinst/ecs/_inputs.py,sha256=1zIqxbE1VH1D_QAqfzfGTgQZx8UAFEVjvruIyjq7sk0,113214
|
|
41
|
-
pulumi_spotinst/ecs/ocean.py,sha256=UsW4lyqBCo9tuqEh65iOziPZIyhO3qW2yzsug3jdq3A,86226
|
|
42
|
-
pulumi_spotinst/ecs/ocean_launch_spec.py,sha256=HE9Q6g5N9C6f-uFfxM_TV3RQFcNnVCJIZo4ruqbp984,62692
|
|
43
|
-
pulumi_spotinst/ecs/outputs.py,sha256=QRd-da7h8ARU9I1FUtrUe00SeTTxaPmVs_XVhX1KDNY,85499
|
|
44
|
-
pulumi_spotinst/gcp/__init__.py,sha256=q3neQap5Deb13hGHuMxr6aszn96Dn2pQtmc8qI8kYVw,339
|
|
45
|
-
pulumi_spotinst/gcp/_inputs.py,sha256=VEvA0h91rSpDWCIFlmMXP5R5wKYihpJjJj-kl1Df880,85256
|
|
46
|
-
pulumi_spotinst/gcp/elastigroup.py,sha256=L2prqvsKsQh4tB2yETBWqOnVNChIOzwAy-DLTJ2y4Xo,122799
|
|
47
|
-
pulumi_spotinst/gcp/outputs.py,sha256=cZTlqCJyKJVHnbhndD6EYmoEDCv2qyoRFH_g7VvOLHQ,61467
|
|
48
|
-
pulumi_spotinst/gke/__init__.py,sha256=jxG9J84OitPWkX-9k0Yg8o7-S98wjzmLWb0KzC1tJmg,440
|
|
49
|
-
pulumi_spotinst/gke/_inputs.py,sha256=HTDGuGWu6oPiMmqa1Gv3WFQJ9YqOPCRShQ7wcIhEfkk,163862
|
|
50
|
-
pulumi_spotinst/gke/elastigroup.py,sha256=FpsjLzBoUUBcXHKGozfnm0mKOxvQu572XcWp9II_lcY,73814
|
|
51
|
-
pulumi_spotinst/gke/ocean_import.py,sha256=9rK8V0W86UwBpVmDj1QiXR8jX1vr6yTKWnx3GSumw0M,54898
|
|
52
|
-
pulumi_spotinst/gke/ocean_launch_spec.py,sha256=5R7KDqMK6Z-7PnSb02CrnYMhyxDOhJE6ZU0NFrX5UGI,70784
|
|
53
|
-
pulumi_spotinst/gke/ocean_launch_spec_import.py,sha256=Qo825ca2ttqQ-pPRe0vIPnKJuuCkWUMsLb8O3fuTAkM,9091
|
|
54
|
-
pulumi_spotinst/gke/outputs.py,sha256=Qx31Yvv9Po91EDCrP74C1ZfXglZAmLM_9wNsz2XmX0Q,125822
|
|
55
|
-
pulumi_spotinst/oceancd/__init__.py,sha256=cRddNVQBKZRjx34cwnqcGZCMnO_LnfWz5FEfqWhID3o,438
|
|
56
|
-
pulumi_spotinst/oceancd/_inputs.py,sha256=0LBBMoFnsaAtzitiIddv1Gvj2P1as16d6Tl00fllhWg,176765
|
|
57
|
-
pulumi_spotinst/oceancd/outputs.py,sha256=kf8LG91NIf0MW0tJESdnomRxemqbB7zhqSbT56tV9UY,138279
|
|
58
|
-
pulumi_spotinst/oceancd/rollout_spec.py,sha256=r_I5CZ-cE-r_QM8CPp5ZMHI2ndEGRRuFkbZ_vhN6Oyw,22726
|
|
59
|
-
pulumi_spotinst/oceancd/strategy.py,sha256=RV2QuYYQ1fASYiIEk2lOHy-5vC8EukPgUvwz4sfozo8,10396
|
|
60
|
-
pulumi_spotinst/oceancd/verification_provider.py,sha256=k7ZHNl349rtGvN9pp1_fT5YKneZeObRufGQAvON44DA,24627
|
|
61
|
-
pulumi_spotinst/oceancd/verification_template.py,sha256=ZORinDHBvPu4YzmoWJyVC6M8CGb9B0dPncG1rz5QhFU,23185
|
|
62
|
-
pulumi_spotinst/organization/__init__.py,sha256=UwU0jow_98Noh4BTA35DRqYBMzS8tzstwzWqAN0C8MA,413
|
|
63
|
-
pulumi_spotinst/organization/_inputs.py,sha256=-2KN9UPJL6sgmw5IPmuiYdT20xUBWLjH3fJRFtg2kYo,13061
|
|
64
|
-
pulumi_spotinst/organization/outputs.py,sha256=JfrlllK8iwfglsW1zuOMRKLR_I9vjuF0K9qDG2fD7nQ,9982
|
|
65
|
-
pulumi_spotinst/organization/policy.py,sha256=0UA2g6-l1IwJjCLKb4p469ygtZDdqPEILcmkYBCFCTM,12257
|
|
66
|
-
pulumi_spotinst/organization/programmatic_user.py,sha256=EeYAxJ1c0EYr3OWiQSQ2KpV9cC_p8z6_tbtZP9f6ZSc,17994
|
|
67
|
-
pulumi_spotinst/organization/user.py,sha256=NGh0SG3XGa02oAI1W6OVN-hB0enmtlNMQ1TouAMLXEk,19617
|
|
68
|
-
pulumi_spotinst/organization/user_group.py,sha256=W7uvs46SDeItWLM2I_wkJ7n1evKQQm8buMSmjMwF9HE,14015
|
|
69
|
-
pulumi_spotinst/spark/__init__.py,sha256=EfK3fWSnfSMs0nxmvSgkPd-5PNDSmZyPTemSrgcnD2A,373
|
|
70
|
-
pulumi_spotinst/spark/_inputs.py,sha256=2eoWytfpp6Wx659BjUly4f4lRk9d1Q73gzxRFg7NZBc,26364
|
|
71
|
-
pulumi_spotinst/spark/ocean.py,sha256=9kv9oZ7TPYnq6kZEGzX47-EbaDxvO5O6vcO26KPkXyM,19728
|
|
72
|
-
pulumi_spotinst/spark/ocean_virtual_node_group.py,sha256=T1mi2x18t7BLh48-d8gDJD0eInl-HYEhSe_L2YuLfAg,8636
|
|
73
|
-
pulumi_spotinst/spark/outputs.py,sha256=k-kjPQtkyavCMn92uh8HeQfpok4iE2nptl6zo7ssfhs,20516
|
|
74
|
-
pulumi_spotinst-3.124.0a1752907291.dist-info/METADATA,sha256=eErYkOtGXgA8V7SYwreabqmueij7OrQn3zYVmD4mXj8,2724
|
|
75
|
-
pulumi_spotinst-3.124.0a1752907291.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
76
|
-
pulumi_spotinst-3.124.0a1752907291.dist-info/top_level.txt,sha256=B1HTsr4PliwgyZPJ-9Cmg9PELboV_GusiFDrxBSVHeI,16
|
|
77
|
-
pulumi_spotinst-3.124.0a1752907291.dist-info/RECORD,,
|
{pulumi_spotinst-3.124.0a1752907291.dist-info → pulumi_spotinst-3.124.0a1753398242.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|