pulumi-spotinst 3.117.0a1743575538__py3-none-any.whl → 3.117.0a1744183551__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.0a1744183551.dist-info}/METADATA +1 -1
  72. pulumi_spotinst-3.117.0a1744183551.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.0a1744183551.dist-info}/WHEEL +0 -0
  75. {pulumi_spotinst-3.117.0a1743575538.dist-info → pulumi_spotinst-3.117.0a1744183551.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,15 +20,15 @@ __all__ = ['SubscriptionArgs', 'Subscription']
19
20
  @pulumi.input_type
20
21
  class SubscriptionArgs:
21
22
  def __init__(__self__, *,
22
- endpoint: pulumi.Input[str],
23
- event_type: pulumi.Input[str],
24
- protocol: pulumi.Input[str],
25
- resource_id: pulumi.Input[str],
26
- format: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
23
+ endpoint: pulumi.Input[builtins.str],
24
+ event_type: pulumi.Input[builtins.str],
25
+ protocol: pulumi.Input[builtins.str],
26
+ resource_id: pulumi.Input[builtins.str],
27
+ format: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None):
27
28
  """
28
29
  The set of arguments for constructing a Subscription resource.
29
- :param pulumi.Input[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[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"`,
30
+ :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"`.
31
+ :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"`,
31
32
  `"CANT_SCALE_UP_GROUP_MAX_CAPACITY"`,
32
33
  `"GROUP_UPDATED"`,
33
34
  `"AWS_EMR_PROVISION_TIMEOUT"`,
@@ -39,12 +40,12 @@ class SubscriptionArgs:
39
40
  `"AWS_EC2_MANAGED_INSTANCE_RECYCLING"`,`"AWS_EC2_MANAGED_INSTANCE_DELETING"`.
40
41
  Ocean Events:`"CLUSTER_ROLL_FINISHED"`,`"GROUP_ROLL_FAILED"`,`"OCEAN_CANT_SCALE_UP_MAX_RESOURCES"`
41
42
  `"OCEAN_LAUNCH_SPEC_CANT_SCALE_UP_MAX_INSTANCES"`,`"OCEAN_K8S_NODE_REMOVED"`.
42
- :param pulumi.Input[str] protocol: The protocol to send the notification. Valid values: `"email"`, `"email-json"`, `"aws-sns"`, `"web"`.
43
+ :param pulumi.Input[builtins.str] protocol: The protocol to send the notification. Valid values: `"email"`, `"email-json"`, `"aws-sns"`, `"web"`.
43
44
  The following values are deprecated: `"http"` , `"https"`
44
45
  You can use the generic `"web"` protocol instead.
45
46
  `"aws-sns"` is only supported with AWS provider
46
- :param pulumi.Input[str] resource_id: Spotinst Resource id (Elastigroup or Ocean ID).
47
- :param pulumi.Input[Mapping[str, pulumi.Input[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"`
47
+ :param pulumi.Input[builtins.str] resource_id: Spotinst Resource id (Elastigroup or Ocean ID).
48
+ :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"`
48
49
  Example: {"event": `"event"`, `"resourceId"`: `"resource-id"`, `"resourceName"`: `"resource-name"`", `"myCustomKey"`: `"My content is set here"` }
49
50
  Default: {`"event"`: `"<event>"`, `"instanceId"`: `"<instance-id>"`, `"resourceId"`: `"<resource-id>"`, `"resourceName"`: `"<resource-name>"` }.
50
51
  """
@@ -57,19 +58,19 @@ class SubscriptionArgs:
57
58
 
58
59
  @property
59
60
  @pulumi.getter
60
- def endpoint(self) -> pulumi.Input[str]:
61
+ def endpoint(self) -> pulumi.Input[builtins.str]:
61
62
  """
62
63
  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"`.
63
64
  """
64
65
  return pulumi.get(self, "endpoint")
65
66
 
66
67
  @endpoint.setter
67
- def endpoint(self, value: pulumi.Input[str]):
68
+ def endpoint(self, value: pulumi.Input[builtins.str]):
68
69
  pulumi.set(self, "endpoint", value)
69
70
 
70
71
  @property
71
72
  @pulumi.getter(name="eventType")
72
- def event_type(self) -> pulumi.Input[str]:
73
+ def event_type(self) -> pulumi.Input[builtins.str]:
73
74
  """
74
75
  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"`,
75
76
  `"CANT_SCALE_UP_GROUP_MAX_CAPACITY"`,
@@ -87,12 +88,12 @@ class SubscriptionArgs:
87
88
  return pulumi.get(self, "event_type")
88
89
 
89
90
  @event_type.setter
90
- def event_type(self, value: pulumi.Input[str]):
91
+ def event_type(self, value: pulumi.Input[builtins.str]):
91
92
  pulumi.set(self, "event_type", value)
92
93
 
93
94
  @property
94
95
  @pulumi.getter
95
- def protocol(self) -> pulumi.Input[str]:
96
+ def protocol(self) -> pulumi.Input[builtins.str]:
96
97
  """
97
98
  The protocol to send the notification. Valid values: `"email"`, `"email-json"`, `"aws-sns"`, `"web"`.
98
99
  The following values are deprecated: `"http"` , `"https"`
@@ -102,24 +103,24 @@ class SubscriptionArgs:
102
103
  return pulumi.get(self, "protocol")
103
104
 
104
105
  @protocol.setter
105
- def protocol(self, value: pulumi.Input[str]):
106
+ def protocol(self, value: pulumi.Input[builtins.str]):
106
107
  pulumi.set(self, "protocol", value)
107
108
 
108
109
  @property
109
110
  @pulumi.getter(name="resourceId")
110
- def resource_id(self) -> pulumi.Input[str]:
111
+ def resource_id(self) -> pulumi.Input[builtins.str]:
111
112
  """
112
113
  Spotinst Resource id (Elastigroup or Ocean ID).
113
114
  """
114
115
  return pulumi.get(self, "resource_id")
115
116
 
116
117
  @resource_id.setter
117
- def resource_id(self, value: pulumi.Input[str]):
118
+ def resource_id(self, value: pulumi.Input[builtins.str]):
118
119
  pulumi.set(self, "resource_id", value)
119
120
 
120
121
  @property
121
122
  @pulumi.getter
122
- def format(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
123
+ def format(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
123
124
  """
124
125
  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"`
125
126
  Example: {"event": `"event"`, `"resourceId"`: `"resource-id"`, `"resourceName"`: `"resource-name"`", `"myCustomKey"`: `"My content is set here"` }
@@ -128,22 +129,22 @@ class SubscriptionArgs:
128
129
  return pulumi.get(self, "format")
129
130
 
130
131
  @format.setter
131
- def format(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
132
+ def format(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
132
133
  pulumi.set(self, "format", value)
133
134
 
134
135
 
135
136
  @pulumi.input_type
136
137
  class _SubscriptionState:
137
138
  def __init__(__self__, *,
138
- endpoint: Optional[pulumi.Input[str]] = None,
139
- event_type: Optional[pulumi.Input[str]] = None,
140
- format: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
141
- protocol: Optional[pulumi.Input[str]] = None,
142
- resource_id: Optional[pulumi.Input[str]] = None):
139
+ endpoint: Optional[pulumi.Input[builtins.str]] = None,
140
+ event_type: Optional[pulumi.Input[builtins.str]] = None,
141
+ format: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
142
+ protocol: Optional[pulumi.Input[builtins.str]] = None,
143
+ resource_id: Optional[pulumi.Input[builtins.str]] = None):
143
144
  """
144
145
  Input properties used for looking up and filtering Subscription resources.
145
- :param pulumi.Input[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[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"`,
146
+ :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"`.
147
+ :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"`,
147
148
  `"CANT_SCALE_UP_GROUP_MAX_CAPACITY"`,
148
149
  `"GROUP_UPDATED"`,
149
150
  `"AWS_EMR_PROVISION_TIMEOUT"`,
@@ -155,14 +156,14 @@ class _SubscriptionState:
155
156
  `"AWS_EC2_MANAGED_INSTANCE_RECYCLING"`,`"AWS_EC2_MANAGED_INSTANCE_DELETING"`.
156
157
  Ocean Events:`"CLUSTER_ROLL_FINISHED"`,`"GROUP_ROLL_FAILED"`,`"OCEAN_CANT_SCALE_UP_MAX_RESOURCES"`
157
158
  `"OCEAN_LAUNCH_SPEC_CANT_SCALE_UP_MAX_INSTANCES"`,`"OCEAN_K8S_NODE_REMOVED"`.
158
- :param pulumi.Input[Mapping[str, pulumi.Input[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"`
159
+ :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"`
159
160
  Example: {"event": `"event"`, `"resourceId"`: `"resource-id"`, `"resourceName"`: `"resource-name"`", `"myCustomKey"`: `"My content is set here"` }
160
161
  Default: {`"event"`: `"<event>"`, `"instanceId"`: `"<instance-id>"`, `"resourceId"`: `"<resource-id>"`, `"resourceName"`: `"<resource-name>"` }.
161
- :param pulumi.Input[str] protocol: The protocol to send the notification. Valid values: `"email"`, `"email-json"`, `"aws-sns"`, `"web"`.
162
+ :param pulumi.Input[builtins.str] protocol: The protocol to send the notification. Valid values: `"email"`, `"email-json"`, `"aws-sns"`, `"web"`.
162
163
  The following values are deprecated: `"http"` , `"https"`
163
164
  You can use the generic `"web"` protocol instead.
164
165
  `"aws-sns"` is only supported with AWS provider
165
- :param pulumi.Input[str] resource_id: Spotinst Resource id (Elastigroup or Ocean ID).
166
+ :param pulumi.Input[builtins.str] resource_id: Spotinst Resource id (Elastigroup or Ocean ID).
166
167
  """
167
168
  if endpoint is not None:
168
169
  pulumi.set(__self__, "endpoint", endpoint)
@@ -177,19 +178,19 @@ class _SubscriptionState:
177
178
 
178
179
  @property
179
180
  @pulumi.getter
180
- def endpoint(self) -> Optional[pulumi.Input[str]]:
181
+ def endpoint(self) -> Optional[pulumi.Input[builtins.str]]:
181
182
  """
182
183
  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"`.
183
184
  """
184
185
  return pulumi.get(self, "endpoint")
185
186
 
186
187
  @endpoint.setter
187
- def endpoint(self, value: Optional[pulumi.Input[str]]):
188
+ def endpoint(self, value: Optional[pulumi.Input[builtins.str]]):
188
189
  pulumi.set(self, "endpoint", value)
189
190
 
190
191
  @property
191
192
  @pulumi.getter(name="eventType")
192
- def event_type(self) -> Optional[pulumi.Input[str]]:
193
+ def event_type(self) -> Optional[pulumi.Input[builtins.str]]:
193
194
  """
194
195
  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"`,
195
196
  `"CANT_SCALE_UP_GROUP_MAX_CAPACITY"`,
@@ -207,12 +208,12 @@ class _SubscriptionState:
207
208
  return pulumi.get(self, "event_type")
208
209
 
209
210
  @event_type.setter
210
- def event_type(self, value: Optional[pulumi.Input[str]]):
211
+ def event_type(self, value: Optional[pulumi.Input[builtins.str]]):
211
212
  pulumi.set(self, "event_type", value)
212
213
 
213
214
  @property
214
215
  @pulumi.getter
215
- def format(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
216
+ def format(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
216
217
  """
217
218
  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"`
218
219
  Example: {"event": `"event"`, `"resourceId"`: `"resource-id"`, `"resourceName"`: `"resource-name"`", `"myCustomKey"`: `"My content is set here"` }
@@ -221,12 +222,12 @@ class _SubscriptionState:
221
222
  return pulumi.get(self, "format")
222
223
 
223
224
  @format.setter
224
- def format(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
225
+ def format(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
225
226
  pulumi.set(self, "format", value)
226
227
 
227
228
  @property
228
229
  @pulumi.getter
229
- def protocol(self) -> Optional[pulumi.Input[str]]:
230
+ def protocol(self) -> Optional[pulumi.Input[builtins.str]]:
230
231
  """
231
232
  The protocol to send the notification. Valid values: `"email"`, `"email-json"`, `"aws-sns"`, `"web"`.
232
233
  The following values are deprecated: `"http"` , `"https"`
@@ -236,19 +237,19 @@ class _SubscriptionState:
236
237
  return pulumi.get(self, "protocol")
237
238
 
238
239
  @protocol.setter
239
- def protocol(self, value: Optional[pulumi.Input[str]]):
240
+ def protocol(self, value: Optional[pulumi.Input[builtins.str]]):
240
241
  pulumi.set(self, "protocol", value)
241
242
 
242
243
  @property
243
244
  @pulumi.getter(name="resourceId")
244
- def resource_id(self) -> Optional[pulumi.Input[str]]:
245
+ def resource_id(self) -> Optional[pulumi.Input[builtins.str]]:
245
246
  """
246
247
  Spotinst Resource id (Elastigroup or Ocean ID).
247
248
  """
248
249
  return pulumi.get(self, "resource_id")
249
250
 
250
251
  @resource_id.setter
251
- def resource_id(self, value: Optional[pulumi.Input[str]]):
252
+ def resource_id(self, value: Optional[pulumi.Input[builtins.str]]):
252
253
  pulumi.set(self, "resource_id", value)
253
254
 
254
255
 
@@ -257,11 +258,11 @@ class Subscription(pulumi.CustomResource):
257
258
  def __init__(__self__,
258
259
  resource_name: str,
259
260
  opts: Optional[pulumi.ResourceOptions] = None,
260
- endpoint: Optional[pulumi.Input[str]] = None,
261
- event_type: Optional[pulumi.Input[str]] = None,
262
- format: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
263
- protocol: Optional[pulumi.Input[str]] = None,
264
- resource_id: Optional[pulumi.Input[str]] = None,
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,
265
266
  __props__=None):
266
267
  """
267
268
  Provides a Spotinst subscription resource.
@@ -289,8 +290,8 @@ class Subscription(pulumi.CustomResource):
289
290
 
290
291
  :param str resource_name: The name of the resource.
291
292
  :param pulumi.ResourceOptions opts: Options for the resource.
292
- :param pulumi.Input[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"`.
293
- :param pulumi.Input[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"`,
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"`,
294
295
  `"CANT_SCALE_UP_GROUP_MAX_CAPACITY"`,
295
296
  `"GROUP_UPDATED"`,
296
297
  `"AWS_EMR_PROVISION_TIMEOUT"`,
@@ -302,14 +303,14 @@ class Subscription(pulumi.CustomResource):
302
303
  `"AWS_EC2_MANAGED_INSTANCE_RECYCLING"`,`"AWS_EC2_MANAGED_INSTANCE_DELETING"`.
303
304
  Ocean Events:`"CLUSTER_ROLL_FINISHED"`,`"GROUP_ROLL_FAILED"`,`"OCEAN_CANT_SCALE_UP_MAX_RESOURCES"`
304
305
  `"OCEAN_LAUNCH_SPEC_CANT_SCALE_UP_MAX_INSTANCES"`,`"OCEAN_K8S_NODE_REMOVED"`.
305
- :param pulumi.Input[Mapping[str, pulumi.Input[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"`
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"`
306
307
  Example: {"event": `"event"`, `"resourceId"`: `"resource-id"`, `"resourceName"`: `"resource-name"`", `"myCustomKey"`: `"My content is set here"` }
307
308
  Default: {`"event"`: `"<event>"`, `"instanceId"`: `"<instance-id>"`, `"resourceId"`: `"<resource-id>"`, `"resourceName"`: `"<resource-name>"` }.
308
- :param pulumi.Input[str] protocol: The protocol to send the notification. Valid values: `"email"`, `"email-json"`, `"aws-sns"`, `"web"`.
309
+ :param pulumi.Input[builtins.str] protocol: The protocol to send the notification. Valid values: `"email"`, `"email-json"`, `"aws-sns"`, `"web"`.
309
310
  The following values are deprecated: `"http"` , `"https"`
310
311
  You can use the generic `"web"` protocol instead.
311
312
  `"aws-sns"` is only supported with AWS provider
312
- :param pulumi.Input[str] resource_id: Spotinst Resource id (Elastigroup or Ocean ID).
313
+ :param pulumi.Input[builtins.str] resource_id: Spotinst Resource id (Elastigroup or Ocean ID).
313
314
  """
314
315
  ...
315
316
  @overload
@@ -356,11 +357,11 @@ class Subscription(pulumi.CustomResource):
356
357
  def _internal_init(__self__,
357
358
  resource_name: str,
358
359
  opts: Optional[pulumi.ResourceOptions] = None,
359
- endpoint: Optional[pulumi.Input[str]] = None,
360
- event_type: Optional[pulumi.Input[str]] = None,
361
- format: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
362
- protocol: Optional[pulumi.Input[str]] = None,
363
- resource_id: Optional[pulumi.Input[str]] = None,
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,
364
365
  __props__=None):
365
366
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
366
367
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -393,11 +394,11 @@ class Subscription(pulumi.CustomResource):
393
394
  def get(resource_name: str,
394
395
  id: pulumi.Input[str],
395
396
  opts: Optional[pulumi.ResourceOptions] = None,
396
- endpoint: Optional[pulumi.Input[str]] = None,
397
- event_type: Optional[pulumi.Input[str]] = None,
398
- format: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
399
- protocol: Optional[pulumi.Input[str]] = None,
400
- resource_id: Optional[pulumi.Input[str]] = None) -> 'Subscription':
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':
401
402
  """
402
403
  Get an existing Subscription resource's state with the given name, id, and optional extra
403
404
  properties used to qualify the lookup.
@@ -405,8 +406,8 @@ class Subscription(pulumi.CustomResource):
405
406
  :param str resource_name: The unique name of the resulting resource.
406
407
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
407
408
  :param pulumi.ResourceOptions opts: Options for the resource.
408
- :param pulumi.Input[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"`.
409
- :param pulumi.Input[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"`,
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"`,
410
411
  `"CANT_SCALE_UP_GROUP_MAX_CAPACITY"`,
411
412
  `"GROUP_UPDATED"`,
412
413
  `"AWS_EMR_PROVISION_TIMEOUT"`,
@@ -418,14 +419,14 @@ class Subscription(pulumi.CustomResource):
418
419
  `"AWS_EC2_MANAGED_INSTANCE_RECYCLING"`,`"AWS_EC2_MANAGED_INSTANCE_DELETING"`.
419
420
  Ocean Events:`"CLUSTER_ROLL_FINISHED"`,`"GROUP_ROLL_FAILED"`,`"OCEAN_CANT_SCALE_UP_MAX_RESOURCES"`
420
421
  `"OCEAN_LAUNCH_SPEC_CANT_SCALE_UP_MAX_INSTANCES"`,`"OCEAN_K8S_NODE_REMOVED"`.
421
- :param pulumi.Input[Mapping[str, pulumi.Input[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"`
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"`
422
423
  Example: {"event": `"event"`, `"resourceId"`: `"resource-id"`, `"resourceName"`: `"resource-name"`", `"myCustomKey"`: `"My content is set here"` }
423
424
  Default: {`"event"`: `"<event>"`, `"instanceId"`: `"<instance-id>"`, `"resourceId"`: `"<resource-id>"`, `"resourceName"`: `"<resource-name>"` }.
424
- :param pulumi.Input[str] protocol: The protocol to send the notification. Valid values: `"email"`, `"email-json"`, `"aws-sns"`, `"web"`.
425
+ :param pulumi.Input[builtins.str] protocol: The protocol to send the notification. Valid values: `"email"`, `"email-json"`, `"aws-sns"`, `"web"`.
425
426
  The following values are deprecated: `"http"` , `"https"`
426
427
  You can use the generic `"web"` protocol instead.
427
428
  `"aws-sns"` is only supported with AWS provider
428
- :param pulumi.Input[str] resource_id: Spotinst Resource id (Elastigroup or Ocean ID).
429
+ :param pulumi.Input[builtins.str] resource_id: Spotinst Resource id (Elastigroup or Ocean ID).
429
430
  """
430
431
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
431
432
 
@@ -440,7 +441,7 @@ class Subscription(pulumi.CustomResource):
440
441
 
441
442
  @property
442
443
  @pulumi.getter
443
- def endpoint(self) -> pulumi.Output[str]:
444
+ def endpoint(self) -> pulumi.Output[builtins.str]:
444
445
  """
445
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"`.
446
447
  """
@@ -448,7 +449,7 @@ class Subscription(pulumi.CustomResource):
448
449
 
449
450
  @property
450
451
  @pulumi.getter(name="eventType")
451
- def event_type(self) -> pulumi.Output[str]:
452
+ def event_type(self) -> pulumi.Output[builtins.str]:
452
453
  """
453
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"`,
454
455
  `"CANT_SCALE_UP_GROUP_MAX_CAPACITY"`,
@@ -467,7 +468,7 @@ class Subscription(pulumi.CustomResource):
467
468
 
468
469
  @property
469
470
  @pulumi.getter
470
- def format(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
471
+ def format(self) -> pulumi.Output[Optional[Mapping[str, builtins.str]]]:
471
472
  """
472
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"`
473
474
  Example: {"event": `"event"`, `"resourceId"`: `"resource-id"`, `"resourceName"`: `"resource-name"`", `"myCustomKey"`: `"My content is set here"` }
@@ -477,7 +478,7 @@ class Subscription(pulumi.CustomResource):
477
478
 
478
479
  @property
479
480
  @pulumi.getter
480
- def protocol(self) -> pulumi.Output[str]:
481
+ def protocol(self) -> pulumi.Output[builtins.str]:
481
482
  """
482
483
  The protocol to send the notification. Valid values: `"email"`, `"email-json"`, `"aws-sns"`, `"web"`.
483
484
  The following values are deprecated: `"http"` , `"https"`
@@ -488,7 +489,7 @@ class Subscription(pulumi.CustomResource):
488
489
 
489
490
  @property
490
491
  @pulumi.getter(name="resourceId")
491
- def resource_id(self) -> pulumi.Output[str]:
492
+ def resource_id(self) -> pulumi.Output[builtins.str]:
492
493
  """
493
494
  Spotinst Resource id (Elastigroup or Ocean ID).
494
495
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_spotinst
3
- Version: 3.117.0a1743575538
3
+ Version: 3.117.0a1744183551
4
4
  Summary: A Pulumi package for creating and managing spotinst cloud resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -0,0 +1,76 @@
1
+ pulumi_spotinst/__init__.py,sha256=zGQ4II5RIK7sg6xV8DPuK6ciPcxOQ6ov1vNq2jFe0Tk,8740
2
+ pulumi_spotinst/_inputs.py,sha256=w96G9dPO86HTwdI06hH1nfCtaZ4q2ZSF1xMYHswE17o,219804
3
+ pulumi_spotinst/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
4
+ pulumi_spotinst/account.py,sha256=8tFZPpriC0T_-JI70IEYFDld5jaWXnPAVEeVSyKNDJA,6484
5
+ pulumi_spotinst/credentials_azure.py,sha256=aJlPBZ2pJkQetOybby6J1Zf3flkbH3nYwiKOjHOmZ-8,14950
6
+ pulumi_spotinst/credentials_gcp.py,sha256=iic7HZYC_Z9Ss8_rWaO3uZcl9wFQ4F0IGwVcHJw0Rjc,27370
7
+ pulumi_spotinst/data_integration.py,sha256=pR6EDRffSrOwYH3ymSQcf_SeHXDRfd2HQXK99FZnUAE,12162
8
+ pulumi_spotinst/elastigroup_azure_v3.py,sha256=2RtTBkKj12q0OoNev4ED2CnK-0o2lT-1S29hRNV7Noc,77129
9
+ pulumi_spotinst/health_check.py,sha256=CB7n1QXDIMNRyG_hAbHxuvQEcy7xXMOaVakJFf8ugjg,14011
10
+ pulumi_spotinst/ocean_right_sizing_rule.py,sha256=4_kooJabqwyNUr9Q2tdaFEclOdFLcd4BlY8GlaOZNSs,31411
11
+ pulumi_spotinst/outputs.py,sha256=V4eii4fFudkBuXzlka9pKIFIFQFkQVc3_9uFJREpsAg,175654
12
+ pulumi_spotinst/provider.py,sha256=tGGGgKiQiGRB51ZeHf438H93OsiGTFRbQ2h-znRRVDM,7803
13
+ pulumi_spotinst/pulumi-plugin.json,sha256=irPPnMF6Bmn_ig2y6HJodi0CdIXVXdKEmXAiv7-b00Y,86
14
+ pulumi_spotinst/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
+ pulumi_spotinst/stateful_node_azure.py,sha256=UG4x8fP265w-DNmUIT7QzdL3lyMrDDRnAo-7zIc4SPk,141430
16
+ pulumi_spotinst/subscription.py,sha256=fRjOKU_f7myefLDTv-WCx2D5UxUIvOPzea_ULo3RqGg,28508
17
+ pulumi_spotinst/aws/__init__.py,sha256=6fGpM9Rh1HIW8wd_Twunwhmutbte97XCL1Fn6DzJHo8,619
18
+ pulumi_spotinst/aws/_inputs.py,sha256=nUkNXJmEB4y1-LUhNHSjrqBSTsRR8mFa9pZ8sP35BI4,629015
19
+ pulumi_spotinst/aws/account.py,sha256=YYHrKo1mCK-mtRaQGm2PCOGuvi-eEkodc_l69TH5ivE,6515
20
+ pulumi_spotinst/aws/beanstalk.py,sha256=8TOFm591HezoKzmZoC9YKuS1xUuEgQawpncC3jqB1J8,35307
21
+ pulumi_spotinst/aws/credentials.py,sha256=DgngNFhFbqt1x92GdOcdqHHh0R325pa5m9yr--LHRLw,9454
22
+ pulumi_spotinst/aws/elastigroup.py,sha256=Nfdeoo7DKeuVOCFKcspG0tb2OccoxKKo7DPp9Wibwvg,234640
23
+ pulumi_spotinst/aws/managed_instance.py,sha256=tmznViOj6ie4TlAx6tliL-BUtNnq_33OPICZI37dl94,87452
24
+ pulumi_spotinst/aws/mr_scalar.py,sha256=fHbFU_HbPngCPbukxfjlKd7Yn7eyflO2dKnJMZVt70U,128694
25
+ pulumi_spotinst/aws/ocean.py,sha256=UifJfjThGmxiS2MJZmORPyal_ccy_BFH66L2v8hJYoQ,119200
26
+ pulumi_spotinst/aws/ocean_extended_resource_definition.py,sha256=yNFh2xycuwLzjd3hBXSL7LOnPjP_7pJz5ys2Yfpv20Q,10949
27
+ pulumi_spotinst/aws/ocean_launch_spec.py,sha256=BYIn39vpZ1RX7x-60yoMV4Qkh3dfc-EJ4w47bad8loc,102120
28
+ pulumi_spotinst/aws/outputs.py,sha256=3D1keLpJV9gEcUkiBZ_UzCxaenay7vUtmuRw0No9zxY,465220
29
+ pulumi_spotinst/aws/suspension.py,sha256=OFOM7_kBHGqTCV_NgbsU-kjOH5XJBcnLL0xaeNQ5U-c,9722
30
+ pulumi_spotinst/azure/__init__.py,sha256=9JRmjaOuBI50875ToxeChC5bBkhf1Dq4TTm8w4ko4PU,397
31
+ pulumi_spotinst/azure/_inputs.py,sha256=QHiEl_Oa7F-fUZ8pgHSmTcU3Wg3kzgYkpBI4_u9GNhI,129635
32
+ pulumi_spotinst/azure/ocean_np.py,sha256=KEvU38xQo2XgsOmOi7_0O9KEF4IZICpOGDAbGnYISp8,85763
33
+ pulumi_spotinst/azure/ocean_np_virtual_node_group.py,sha256=AT62ATUFxVkTITIQ_rxk9wJ0LSU4mV_wRV0sZWLwOTc,69985
34
+ pulumi_spotinst/azure/outputs.py,sha256=hMHPWsU4gs4r83tMprvQ4uK7B5-48ydCutTsB_1O1yw,97721
35
+ pulumi_spotinst/config/__init__.py,sha256=nKVKdvQbN3zgJ23HPoKpz1sGrfjaDijL6xvKxGVmj7c,301
36
+ pulumi_spotinst/config/__init__.pyi,sha256=uUDv82YSE-Kj11QOtYPb-uTU21IxtBdomkF85fJv9eI,789
37
+ pulumi_spotinst/config/vars.py,sha256=H6SudVbBijV2d-jgNc6SgEuLBTYIms2dbTWplc44zYY,1280
38
+ pulumi_spotinst/ecs/__init__.py,sha256=Nxyz5R026_1G6YQqdwwoK2DAjcuAvFgKkbFtHgrNdPw,384
39
+ pulumi_spotinst/ecs/_inputs.py,sha256=muFb9d9Ekrl7Ar0ZDvRGJnkZ5pbCpXW4CqFjWw-5IJk,113232
40
+ pulumi_spotinst/ecs/ocean.py,sha256=x75GtXukBVEbLhBiJHtLP0foYqEBwyr1aAB3zoQ3K7Q,86197
41
+ pulumi_spotinst/ecs/ocean_launch_spec.py,sha256=TIL1b2MPsd_fxl_Ro-MdcsTqc3blK9lNiAmU6mmkIEM,62643
42
+ pulumi_spotinst/ecs/outputs.py,sha256=FQ6NTPCXjYIDD5CZpyWKW30JwEFqFoHndFIPtSsOQRY,85517
43
+ pulumi_spotinst/gcp/__init__.py,sha256=bQXqRsxRvOEPk4_0h0JnGgKapyN7DxI0jF4wCnlr-8o,357
44
+ pulumi_spotinst/gcp/_inputs.py,sha256=VvQEjl7ei1YescMtnS1AzErOlOMSjyhFp2YZZOOsn-g,81781
45
+ pulumi_spotinst/gcp/elastigroup.py,sha256=HLxqNOFnJZlJfOL_7WSGmsLJzBPgkzlMSHKKVKwFI7o,122434
46
+ pulumi_spotinst/gcp/outputs.py,sha256=T46N1Y4xJvUzmKgLxHYzVj01W5cYvX0SLRAOUFTR0Os,58604
47
+ pulumi_spotinst/gke/__init__.py,sha256=YUuZDX0mvhLjViXm6YlTT41IxBsxNb-b76a32_7SY7c,458
48
+ pulumi_spotinst/gke/_inputs.py,sha256=I6GMrO41Z4tbF3DqKcNan1nDnLtwWA23SU4NVCCTKwg,161412
49
+ pulumi_spotinst/gke/elastigroup.py,sha256=Y4uaBibcOgftAG1pQ_QiTC4nHPdDX0diGollItdbMnA,73773
50
+ pulumi_spotinst/gke/ocean_import.py,sha256=Eq3zJD2rOa7zAvffH-5G_VNPXuruAMTGhntqM0tt948,54857
51
+ pulumi_spotinst/gke/ocean_launch_spec.py,sha256=FJxTz13C09e5x1o1eQuwfhMv32XacQBZcQP7y-fJdCk,70735
52
+ pulumi_spotinst/gke/ocean_launch_spec_import.py,sha256=4AKnykyyJkiO5qeheV4jr6Njv_CuCf0ezHGM8-fPm2A,9030
53
+ pulumi_spotinst/gke/outputs.py,sha256=bu9TbRcpRiWOE6tRcaD6Lw9Ez9MYMx0lcj9khH9-oHk,123652
54
+ pulumi_spotinst/oceancd/__init__.py,sha256=TDaEL3Fq6ZDwLgFwfD6W-Xqq5n3NgYIPEm_3DNFZpbY,456
55
+ pulumi_spotinst/oceancd/_inputs.py,sha256=NVA1u2N9yInMYjXt7pwsJ2X9b5sVo6aSBgGGZIrwJzU,176783
56
+ pulumi_spotinst/oceancd/outputs.py,sha256=zzJtDRO24A5hwHJBlS6PZk_CMZhvHfhg7NB2pBRmzs0,138297
57
+ pulumi_spotinst/oceancd/rollout_spec.py,sha256=wHIy2WKbK_TOvE7lVzh69VHw1wOUwD8aEnzjazc4CQA,22681
58
+ pulumi_spotinst/oceancd/strategy.py,sha256=MdzDADsn5O0RGGa7pnndATojjMPxHclxO4Ijy3uhkNQ,10357
59
+ pulumi_spotinst/oceancd/verification_provider.py,sha256=rei5mO-e16Gi-refyVsbUezyFgVqFYOVUXp5XvoI5U8,24564
60
+ pulumi_spotinst/oceancd/verification_template.py,sha256=UT0VxSKsUTKGLtUPGivziFumSRqmjRJ9nTpGdpSZMDk,23122
61
+ pulumi_spotinst/organization/__init__.py,sha256=dIOu_vxbrMka9rAkSOQMoVa4hYnG-EIbgzNPJzm7W-Q,431
62
+ pulumi_spotinst/organization/_inputs.py,sha256=K23cccF04yj8boXX5OPUNZBuVP11WK9h6sCqJRnZ9OM,13079
63
+ pulumi_spotinst/organization/outputs.py,sha256=pUK61jWWKTYD3kn63pCIhYTvCCLPESSEc6YOXbM6XPI,10000
64
+ pulumi_spotinst/organization/policy.py,sha256=mIkTUMFmfAK2Fpon31LD6xGh5JQlNxD4yfdQB9hMS1c,12217
65
+ pulumi_spotinst/organization/programmatic_user.py,sha256=36-q8CNgDdoWZvztubVHM5aTa_zrqXecanG_-XDjAvI,17934
66
+ pulumi_spotinst/organization/user.py,sha256=jf5YSuGNosABOqulalZoTpAB-OX2Ek4mReF-JjVmF_8,19581
67
+ pulumi_spotinst/organization/user_group.py,sha256=HdBHLRlar3Ri5mHHi8uMH99Ibm5sIU064MLFcBhLWUE,13969
68
+ pulumi_spotinst/spark/__init__.py,sha256=llSjg3tIdgk6bMN3HVd9JH9SqrvNmnLwhtVn9NIQcLM,391
69
+ pulumi_spotinst/spark/_inputs.py,sha256=yFfeSOqV5Jift-FZSGrsC86HStuOakR_EhzNdk42Je8,26382
70
+ pulumi_spotinst/spark/ocean.py,sha256=okkcP7eNVLFaFzlS_qur6WdXTh9Y4hejccbRYTSIOmw,19697
71
+ pulumi_spotinst/spark/ocean_virtual_node_group.py,sha256=vYklVAacT19TfPni9Vj-65P_W3IQvHMbWxIUzn8ATkM,8573
72
+ pulumi_spotinst/spark/outputs.py,sha256=Fd5tyJLyYRKIG1MB6qNFEDzVlLRwYPvC4g9xVHCsrBM,20534
73
+ pulumi_spotinst-3.117.0a1744183551.dist-info/METADATA,sha256=WkeoIjbg8AWzUDmCCK4HT2T_J8BfSC34R_QyoOeEBpg,2721
74
+ pulumi_spotinst-3.117.0a1744183551.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
75
+ pulumi_spotinst-3.117.0a1744183551.dist-info/top_level.txt,sha256=B1HTsr4PliwgyZPJ-9Cmg9PELboV_GusiFDrxBSVHeI,16
76
+ pulumi_spotinst-3.117.0a1744183551.dist-info/RECORD,,
@@ -1,76 +0,0 @@
1
- pulumi_spotinst/__init__.py,sha256=4XDfRevJqKt0OquWtAPWNLRMj0vhjFop7Hxsc3Bdswk,8724
2
- pulumi_spotinst/_inputs.py,sha256=K7R6v6XZXcO8ecRaSa4eso7VgIVHzYfG2HIcwiist2g,209168
3
- pulumi_spotinst/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
4
- pulumi_spotinst/account.py,sha256=VaOMbgHqCY5aGufbVCy-rtg2-fG7LHR4vCmquUSq1hw,6342
5
- pulumi_spotinst/credentials_azure.py,sha256=MxcCUj2ZPGZfxiWfJJ0NQ4rVJ_MdLyNHNtw6Wo4et0w,14304
6
- pulumi_spotinst/credentials_gcp.py,sha256=seq6w8lPlfGSED0Az7gCodseZhB_pA1MDqNda_KlhUQ,25968
7
- pulumi_spotinst/data_integration.py,sha256=rPJHtIKReFFeMs_awWW1yeZbcQJWanGfPKYg51I108c,11894
8
- pulumi_spotinst/elastigroup_azure_v3.py,sha256=qs7wUsV4-F_tuoFxAW0t5BQpie7v0lpWEcSPnLI4e0s,75313
9
- pulumi_spotinst/health_check.py,sha256=ZMvvx5IXDjR-kHBLh7necWEZsnzKpxJO-VTFesgHa4E,12407
10
- pulumi_spotinst/ocean_right_sizing_rule.py,sha256=A6Ld49H8XVJVZeRw9QM7aeKDl1JHE0K00PAXzbUSP3A,31035
11
- pulumi_spotinst/outputs.py,sha256=M9rRd2ny4zvSmHKzKQl9YjOqGF965bUt6GcPfhf098I,170292
12
- pulumi_spotinst/provider.py,sha256=kzjCmbsOFAZLVCQAsyzM7deSOMLWhEN8zIasjG0_MUo,7508
13
- pulumi_spotinst/pulumi-plugin.json,sha256=hIPPXuZ1tnWdOqeyjJ-EevdNs7589sg3sGergchI_WU,86
14
- pulumi_spotinst/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
- pulumi_spotinst/stateful_node_azure.py,sha256=WV1SybR7YCFl2TKtdx1-Gq0KxUXeXsFV2CXxhDI17M8,139704
16
- pulumi_spotinst/subscription.py,sha256=dyPJeUsgzXDcj48FTq1IYAwC0gwr-JP3Xr4hEbHyh1o,27862
17
- pulumi_spotinst/aws/__init__.py,sha256=eGq6Qs1A7MsZAO9Pm0TSZlidLz-rBG_nD1oYuy9Ujyw,603
18
- pulumi_spotinst/aws/_inputs.py,sha256=-qvi_AtFYul8byCL2_i3JcwPvjnbbNmgytR2UyrCmtw,602899
19
- pulumi_spotinst/aws/account.py,sha256=ckJB2aNwZoaOpnRfNg_x2r98OKSkoIcbN_EQ8kti6K4,6373
20
- pulumi_spotinst/aws/beanstalk.py,sha256=PO7Y969PyBn6c5IpdYo_RaorKx3MnDHCoSBpkfkdz7o,34067
21
- pulumi_spotinst/aws/credentials.py,sha256=LyGcAskdglZXRne5aLMvMFLQtYI-mDhur_Sd4nGZY8w,9186
22
- pulumi_spotinst/aws/elastigroup.py,sha256=SVthzBaOBmsdBy5GdNV5cYr0azq2OxmiTxqNcmnwGuw,228504
23
- pulumi_spotinst/aws/managed_instance.py,sha256=xcZcPfzUBFUqSbkujKtERyPRBEYzL8RDjXJwlZZsSyc,84196
24
- pulumi_spotinst/aws/mr_scalar.py,sha256=smJHcTeX0sLP1kr1-YLCNs49rR9lMGvNqdmfJKpjjS4,124457
25
- pulumi_spotinst/aws/ocean.py,sha256=Ju0t1SOF6a5ccp1LHTDbw6_GUVrxuTqnmAYyjRbpeck,115602
26
- pulumi_spotinst/aws/ocean_extended_resource_definition.py,sha256=MAeKvkq5cpywQTAeNkGEl0gGsc75w012uCTFOwJEU1k,10681
27
- pulumi_spotinst/aws/ocean_launch_spec.py,sha256=nte9WSpxkJ0qWAfRqqfuVLZEqsy2FpP74FzjltMuXrc,100340
28
- pulumi_spotinst/aws/outputs.py,sha256=vwc1f7tzp_DM7NhPmpBHINXVyYuDqMixJO9tcEzABpo,450300
29
- pulumi_spotinst/aws/suspension.py,sha256=HpyokZ6O0wn_OHBQnTZNhabNLMim1jPh6kgYSyQQtpw,9580
30
- pulumi_spotinst/azure/__init__.py,sha256=av3w10Qss9pSfwRbIoqkpQMTI3dfd4eDstQ3G0Ciiwc,381
31
- pulumi_spotinst/azure/_inputs.py,sha256=pzRx4gTsuRPR1Ta6ZSvR91FlAodQM6CEAFYAgfXap3E,125281
32
- pulumi_spotinst/azure/ocean_np.py,sha256=XaPFU5DZH8lUY_TEvrZ_Dg2UxQWXS_J3rTbNfki9oGY,83155
33
- pulumi_spotinst/azure/ocean_np_virtual_node_group.py,sha256=6G6WAnm6IUECCCm9tu7sOhHg1f5zPmrBinsADEcJ2wE,67737
34
- pulumi_spotinst/azure/outputs.py,sha256=e6GcXNXKsZvS9zuRCNIRi11a2D3M8Ibr8ceREaCnj6w,95131
35
- pulumi_spotinst/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
36
- pulumi_spotinst/config/__init__.pyi,sha256=Wu5Q1_opF-FZrZBxELAt04FYni0tLuX3PC7Awb75oLc,773
37
- pulumi_spotinst/config/vars.py,sha256=gljIQCsVtxWuK5QpsZN6Xg5hYp4ro1wbLkxSDFRgquQ,1264
38
- pulumi_spotinst/ecs/__init__.py,sha256=1mR3np1QVE4gOWXu5M7cgypCOoN59x5PF8QwidiN4OU,368
39
- pulumi_spotinst/ecs/_inputs.py,sha256=HSxgfYfEd3m3x7uHhLelzMpdeG42j9ccD0UntiKPm9E,108977
40
- pulumi_spotinst/ecs/ocean.py,sha256=TWahAcq1guaUTLN3gln2S2CwKBnxGc0hDm9E8YSJJlw,83355
41
- pulumi_spotinst/ecs/ocean_launch_spec.py,sha256=-4v_8TFeSDZoMJ98TMjJuLTorsnUtQZDSWzirTOxbPE,61367
42
- pulumi_spotinst/ecs/outputs.py,sha256=4y9nyRc4WZB7f057in4X8VBtDsmHHm4pMsEsUNwRgZg,82972
43
- pulumi_spotinst/gcp/__init__.py,sha256=zbIbraNZP-Ow07VqCa0wMfyx-sefJnTu42ki9baXEh4,341
44
- pulumi_spotinst/gcp/_inputs.py,sha256=57Nbn3z8S59jX9qIcBxdHC7Nn4Dbd4tc95FDfjeDWE0,78210
45
- pulumi_spotinst/gcp/elastigroup.py,sha256=ixvGw7573QjZkVoRcWjqCNc2i9fYHZRT2XUphOz2pow,119232
46
- pulumi_spotinst/gcp/outputs.py,sha256=4NdMmiwS3qsuQ-4R_5z1lPr1zcKYr-UxspcVppT7REE,56527
47
- pulumi_spotinst/gke/__init__.py,sha256=28C_MqDPPq5KTsGu2QKKWdLo4ZbmZd7gUsK5FyJfYMQ,442
48
- pulumi_spotinst/gke/_inputs.py,sha256=9OST_Jyp2qRWIQ7EMu18DPV93t6ulgyx8whab4_0Tik,154889
49
- pulumi_spotinst/gke/elastigroup.py,sha256=N2VGHZi86IT8Sus35WnO_w7hyqVWZeV5ZwHcC_6EL78,71687
50
- pulumi_spotinst/gke/ocean_import.py,sha256=nBo2OJYCyWLDbWhdEFK6YbT_LMvYVHDKi4orIXtq48Y,53536
51
- pulumi_spotinst/gke/ocean_launch_spec.py,sha256=xiJVJfGsgNd9D6XlKzkI7hC45SBIuG8GteRn5NJ3x4g,69459
52
- pulumi_spotinst/gke/ocean_launch_spec_import.py,sha256=zhrkmev_hoHqCalYZ2iZggy8Of7emoRMI5aI12ue5SM,8762
53
- pulumi_spotinst/gke/outputs.py,sha256=3ZcC453jRonk-Qi-CUHEw0rg6hOWZME59CbWVO-GR1E,119973
54
- pulumi_spotinst/oceancd/__init__.py,sha256=HOopZwMoIuHhPmnc-cPxfFuWxVyCEfWN_8_0Q_zTMRk,440
55
- pulumi_spotinst/oceancd/_inputs.py,sha256=uI0DXilYP7nxhTBXikx0IrogmHbJsO2MRm4M81JVihY,171439
56
- pulumi_spotinst/oceancd/outputs.py,sha256=XkhqcOIEFoUmpr9uy5-qgh7dCY4rOPMvx0o1GeNxbp8,135095
57
- pulumi_spotinst/oceancd/rollout_spec.py,sha256=0D8dybt0BHTQNZqjT7DUPjJJxEZZLrspECWtlMETmjI,22539
58
- pulumi_spotinst/oceancd/strategy.py,sha256=dt06iT7B3-lfSMACk8T387oCC4pr3rcEn4icQeA0UiI,10251
59
- pulumi_spotinst/oceancd/verification_provider.py,sha256=COkpNkIbAJrUUhN57hTNDO0CijP2xtFxVH8y4EhJdhM,24296
60
- pulumi_spotinst/oceancd/verification_template.py,sha256=GmfOxmnwOWxFEsYyxmR-Pg98nCEM1ioY3ciTZU-4lPY,22980
61
- pulumi_spotinst/organization/__init__.py,sha256=ANpjQfC3J3_tzktlcd-vGtJCTDmmqwjLKuo7OZogx-I,415
62
- pulumi_spotinst/organization/_inputs.py,sha256=Lr7kwbEmBVWsa6zV8S8q5qgyIV-M43P3k46O96-PMcU,12577
63
- pulumi_spotinst/organization/outputs.py,sha256=hmwaJyy5cGp_cgnOFLfMhDNjerVYDjrVMus9IKFprwo,9696
64
- pulumi_spotinst/organization/policy.py,sha256=Ue-6Eq45NLeRzvfhORP79ibz01GD5C9_UQA4Owb6q34,11949
65
- pulumi_spotinst/organization/programmatic_user.py,sha256=vDE_rOyniwdP6asvBW-mzjsklEehyXpRj5LCZOgXL9w,17540
66
- pulumi_spotinst/organization/user.py,sha256=COAOKVGCFXd3_OV557EclA1u2_IFrgxKU5kTGj67Ibc,18809
67
- pulumi_spotinst/organization/user_group.py,sha256=M-WSEPTCz8H1Stjp5ZRkboq_6gRmvhmoKb-ik4kR0Ug,13575
68
- pulumi_spotinst/spark/__init__.py,sha256=QXYOsWIlPeRYblRlgTofUShn2tjikFQV1xYoKeE0FQM,375
69
- pulumi_spotinst/spark/_inputs.py,sha256=MmD5r5PIk8OoR9d0ut__TH0pHDuFmA7Sa_oX6sTQdHo,25646
70
- pulumi_spotinst/spark/ocean.py,sha256=P7UN99lpY2TNp_bukXSqvO_KnVmhw2ORLNDia0dKzjg,19555
71
- pulumi_spotinst/spark/ocean_virtual_node_group.py,sha256=sPHsqKiGwdbzhlPr2xNPnyic1OFIwC0x-OK-Gq6Dmqg,8377
72
- pulumi_spotinst/spark/outputs.py,sha256=Y1un38DpzMLWjfprr2D573W4FiDu93tIpy3Ell6OEIU,20086
73
- pulumi_spotinst-3.117.0a1743575538.dist-info/METADATA,sha256=baF4A-lHJIXLhAXTfPkOwFFLvIq3od0zv7R9AYsKnhI,2721
74
- pulumi_spotinst-3.117.0a1743575538.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
75
- pulumi_spotinst-3.117.0a1743575538.dist-info/top_level.txt,sha256=B1HTsr4PliwgyZPJ-9Cmg9PELboV_GusiFDrxBSVHeI,16
76
- pulumi_spotinst-3.117.0a1743575538.dist-info/RECORD,,