pulumi-spotinst 3.117.0a1743489626__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.0a1743489626.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.0a1743489626.dist-info/RECORD +0 -76
  74. {pulumi_spotinst-3.117.0a1743489626.dist-info → pulumi_spotinst-3.117.0a1744183551.dist-info}/WHEEL +0 -0
  75. {pulumi_spotinst-3.117.0a1743489626.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 sys
6
7
  from .vars import _ExportableConfig
7
8
 
@@ -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
@@ -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
@@ -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,18 +20,18 @@ __all__ = ['CredentialsAzureArgs', 'CredentialsAzure']
19
20
  @pulumi.input_type
20
21
  class CredentialsAzureArgs:
21
22
  def __init__(__self__, *,
22
- account_id: pulumi.Input[str],
23
- client_id: pulumi.Input[str],
24
- client_secret: pulumi.Input[str],
25
- subscription_id: pulumi.Input[str],
26
- tenant_id: pulumi.Input[str]):
23
+ account_id: pulumi.Input[builtins.str],
24
+ client_id: pulumi.Input[builtins.str],
25
+ client_secret: pulumi.Input[builtins.str],
26
+ subscription_id: pulumi.Input[builtins.str],
27
+ tenant_id: pulumi.Input[builtins.str]):
27
28
  """
28
29
  The set of arguments for constructing a CredentialsAzure resource.
29
- :param pulumi.Input[str] account_id: The ID of the account associated with your token.
30
- :param pulumi.Input[str] client_id: Set the application ID.
31
- :param pulumi.Input[str] client_secret: Set the key secret.
32
- :param pulumi.Input[str] subscription_id: Set the subscription ID.
33
- :param pulumi.Input[str] tenant_id: Set the directory ID.
30
+ :param pulumi.Input[builtins.str] account_id: The ID of the account associated with your token.
31
+ :param pulumi.Input[builtins.str] client_id: Set the application ID.
32
+ :param pulumi.Input[builtins.str] client_secret: Set the key secret.
33
+ :param pulumi.Input[builtins.str] subscription_id: Set the subscription ID.
34
+ :param pulumi.Input[builtins.str] tenant_id: Set the directory ID.
34
35
  """
35
36
  pulumi.set(__self__, "account_id", account_id)
36
37
  pulumi.set(__self__, "client_id", client_id)
@@ -40,80 +41,80 @@ class CredentialsAzureArgs:
40
41
 
41
42
  @property
42
43
  @pulumi.getter(name="accountId")
43
- def account_id(self) -> pulumi.Input[str]:
44
+ def account_id(self) -> pulumi.Input[builtins.str]:
44
45
  """
45
46
  The ID of the account associated with your token.
46
47
  """
47
48
  return pulumi.get(self, "account_id")
48
49
 
49
50
  @account_id.setter
50
- def account_id(self, value: pulumi.Input[str]):
51
+ def account_id(self, value: pulumi.Input[builtins.str]):
51
52
  pulumi.set(self, "account_id", value)
52
53
 
53
54
  @property
54
55
  @pulumi.getter(name="clientId")
55
- def client_id(self) -> pulumi.Input[str]:
56
+ def client_id(self) -> pulumi.Input[builtins.str]:
56
57
  """
57
58
  Set the application ID.
58
59
  """
59
60
  return pulumi.get(self, "client_id")
60
61
 
61
62
  @client_id.setter
62
- def client_id(self, value: pulumi.Input[str]):
63
+ def client_id(self, value: pulumi.Input[builtins.str]):
63
64
  pulumi.set(self, "client_id", value)
64
65
 
65
66
  @property
66
67
  @pulumi.getter(name="clientSecret")
67
- def client_secret(self) -> pulumi.Input[str]:
68
+ def client_secret(self) -> pulumi.Input[builtins.str]:
68
69
  """
69
70
  Set the key secret.
70
71
  """
71
72
  return pulumi.get(self, "client_secret")
72
73
 
73
74
  @client_secret.setter
74
- def client_secret(self, value: pulumi.Input[str]):
75
+ def client_secret(self, value: pulumi.Input[builtins.str]):
75
76
  pulumi.set(self, "client_secret", value)
76
77
 
77
78
  @property
78
79
  @pulumi.getter(name="subscriptionId")
79
- def subscription_id(self) -> pulumi.Input[str]:
80
+ def subscription_id(self) -> pulumi.Input[builtins.str]:
80
81
  """
81
82
  Set the subscription ID.
82
83
  """
83
84
  return pulumi.get(self, "subscription_id")
84
85
 
85
86
  @subscription_id.setter
86
- def subscription_id(self, value: pulumi.Input[str]):
87
+ def subscription_id(self, value: pulumi.Input[builtins.str]):
87
88
  pulumi.set(self, "subscription_id", value)
88
89
 
89
90
  @property
90
91
  @pulumi.getter(name="tenantId")
91
- def tenant_id(self) -> pulumi.Input[str]:
92
+ def tenant_id(self) -> pulumi.Input[builtins.str]:
92
93
  """
93
94
  Set the directory ID.
94
95
  """
95
96
  return pulumi.get(self, "tenant_id")
96
97
 
97
98
  @tenant_id.setter
98
- def tenant_id(self, value: pulumi.Input[str]):
99
+ def tenant_id(self, value: pulumi.Input[builtins.str]):
99
100
  pulumi.set(self, "tenant_id", value)
100
101
 
101
102
 
102
103
  @pulumi.input_type
103
104
  class _CredentialsAzureState:
104
105
  def __init__(__self__, *,
105
- account_id: Optional[pulumi.Input[str]] = None,
106
- client_id: Optional[pulumi.Input[str]] = None,
107
- client_secret: Optional[pulumi.Input[str]] = None,
108
- subscription_id: Optional[pulumi.Input[str]] = None,
109
- tenant_id: Optional[pulumi.Input[str]] = None):
106
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
107
+ client_id: Optional[pulumi.Input[builtins.str]] = None,
108
+ client_secret: Optional[pulumi.Input[builtins.str]] = None,
109
+ subscription_id: Optional[pulumi.Input[builtins.str]] = None,
110
+ tenant_id: Optional[pulumi.Input[builtins.str]] = None):
110
111
  """
111
112
  Input properties used for looking up and filtering CredentialsAzure resources.
112
- :param pulumi.Input[str] account_id: The ID of the account associated with your token.
113
- :param pulumi.Input[str] client_id: Set the application ID.
114
- :param pulumi.Input[str] client_secret: Set the key secret.
115
- :param pulumi.Input[str] subscription_id: Set the subscription ID.
116
- :param pulumi.Input[str] tenant_id: Set the directory ID.
113
+ :param pulumi.Input[builtins.str] account_id: The ID of the account associated with your token.
114
+ :param pulumi.Input[builtins.str] client_id: Set the application ID.
115
+ :param pulumi.Input[builtins.str] client_secret: Set the key secret.
116
+ :param pulumi.Input[builtins.str] subscription_id: Set the subscription ID.
117
+ :param pulumi.Input[builtins.str] tenant_id: Set the directory ID.
117
118
  """
118
119
  if account_id is not None:
119
120
  pulumi.set(__self__, "account_id", account_id)
@@ -128,62 +129,62 @@ class _CredentialsAzureState:
128
129
 
129
130
  @property
130
131
  @pulumi.getter(name="accountId")
131
- def account_id(self) -> Optional[pulumi.Input[str]]:
132
+ def account_id(self) -> Optional[pulumi.Input[builtins.str]]:
132
133
  """
133
134
  The ID of the account associated with your token.
134
135
  """
135
136
  return pulumi.get(self, "account_id")
136
137
 
137
138
  @account_id.setter
138
- def account_id(self, value: Optional[pulumi.Input[str]]):
139
+ def account_id(self, value: Optional[pulumi.Input[builtins.str]]):
139
140
  pulumi.set(self, "account_id", value)
140
141
 
141
142
  @property
142
143
  @pulumi.getter(name="clientId")
143
- def client_id(self) -> Optional[pulumi.Input[str]]:
144
+ def client_id(self) -> Optional[pulumi.Input[builtins.str]]:
144
145
  """
145
146
  Set the application ID.
146
147
  """
147
148
  return pulumi.get(self, "client_id")
148
149
 
149
150
  @client_id.setter
150
- def client_id(self, value: Optional[pulumi.Input[str]]):
151
+ def client_id(self, value: Optional[pulumi.Input[builtins.str]]):
151
152
  pulumi.set(self, "client_id", value)
152
153
 
153
154
  @property
154
155
  @pulumi.getter(name="clientSecret")
155
- def client_secret(self) -> Optional[pulumi.Input[str]]:
156
+ def client_secret(self) -> Optional[pulumi.Input[builtins.str]]:
156
157
  """
157
158
  Set the key secret.
158
159
  """
159
160
  return pulumi.get(self, "client_secret")
160
161
 
161
162
  @client_secret.setter
162
- def client_secret(self, value: Optional[pulumi.Input[str]]):
163
+ def client_secret(self, value: Optional[pulumi.Input[builtins.str]]):
163
164
  pulumi.set(self, "client_secret", value)
164
165
 
165
166
  @property
166
167
  @pulumi.getter(name="subscriptionId")
167
- def subscription_id(self) -> Optional[pulumi.Input[str]]:
168
+ def subscription_id(self) -> Optional[pulumi.Input[builtins.str]]:
168
169
  """
169
170
  Set the subscription ID.
170
171
  """
171
172
  return pulumi.get(self, "subscription_id")
172
173
 
173
174
  @subscription_id.setter
174
- def subscription_id(self, value: Optional[pulumi.Input[str]]):
175
+ def subscription_id(self, value: Optional[pulumi.Input[builtins.str]]):
175
176
  pulumi.set(self, "subscription_id", value)
176
177
 
177
178
  @property
178
179
  @pulumi.getter(name="tenantId")
179
- def tenant_id(self) -> Optional[pulumi.Input[str]]:
180
+ def tenant_id(self) -> Optional[pulumi.Input[builtins.str]]:
180
181
  """
181
182
  Set the directory ID.
182
183
  """
183
184
  return pulumi.get(self, "tenant_id")
184
185
 
185
186
  @tenant_id.setter
186
- def tenant_id(self, value: Optional[pulumi.Input[str]]):
187
+ def tenant_id(self, value: Optional[pulumi.Input[builtins.str]]):
187
188
  pulumi.set(self, "tenant_id", value)
188
189
 
189
190
 
@@ -192,11 +193,11 @@ class CredentialsAzure(pulumi.CustomResource):
192
193
  def __init__(__self__,
193
194
  resource_name: str,
194
195
  opts: Optional[pulumi.ResourceOptions] = None,
195
- account_id: Optional[pulumi.Input[str]] = None,
196
- client_id: Optional[pulumi.Input[str]] = None,
197
- client_secret: Optional[pulumi.Input[str]] = None,
198
- subscription_id: Optional[pulumi.Input[str]] = None,
199
- tenant_id: Optional[pulumi.Input[str]] = None,
196
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
197
+ client_id: Optional[pulumi.Input[builtins.str]] = None,
198
+ client_secret: Optional[pulumi.Input[builtins.str]] = None,
199
+ subscription_id: Optional[pulumi.Input[builtins.str]] = None,
200
+ tenant_id: Optional[pulumi.Input[builtins.str]] = None,
200
201
  __props__=None):
201
202
  """
202
203
  Provides a Spotinst credential Azure resource.
@@ -218,11 +219,11 @@ class CredentialsAzure(pulumi.CustomResource):
218
219
 
219
220
  :param str resource_name: The name of the resource.
220
221
  :param pulumi.ResourceOptions opts: Options for the resource.
221
- :param pulumi.Input[str] account_id: The ID of the account associated with your token.
222
- :param pulumi.Input[str] client_id: Set the application ID.
223
- :param pulumi.Input[str] client_secret: Set the key secret.
224
- :param pulumi.Input[str] subscription_id: Set the subscription ID.
225
- :param pulumi.Input[str] tenant_id: Set the directory ID.
222
+ :param pulumi.Input[builtins.str] account_id: The ID of the account associated with your token.
223
+ :param pulumi.Input[builtins.str] client_id: Set the application ID.
224
+ :param pulumi.Input[builtins.str] client_secret: Set the key secret.
225
+ :param pulumi.Input[builtins.str] subscription_id: Set the subscription ID.
226
+ :param pulumi.Input[builtins.str] tenant_id: Set the directory ID.
226
227
  """
227
228
  ...
228
229
  @overload
@@ -263,11 +264,11 @@ class CredentialsAzure(pulumi.CustomResource):
263
264
  def _internal_init(__self__,
264
265
  resource_name: str,
265
266
  opts: Optional[pulumi.ResourceOptions] = None,
266
- account_id: Optional[pulumi.Input[str]] = None,
267
- client_id: Optional[pulumi.Input[str]] = None,
268
- client_secret: Optional[pulumi.Input[str]] = None,
269
- subscription_id: Optional[pulumi.Input[str]] = None,
270
- tenant_id: Optional[pulumi.Input[str]] = None,
267
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
268
+ client_id: Optional[pulumi.Input[builtins.str]] = None,
269
+ client_secret: Optional[pulumi.Input[builtins.str]] = None,
270
+ subscription_id: Optional[pulumi.Input[builtins.str]] = None,
271
+ tenant_id: Optional[pulumi.Input[builtins.str]] = None,
271
272
  __props__=None):
272
273
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
273
274
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -302,11 +303,11 @@ class CredentialsAzure(pulumi.CustomResource):
302
303
  def get(resource_name: str,
303
304
  id: pulumi.Input[str],
304
305
  opts: Optional[pulumi.ResourceOptions] = None,
305
- account_id: Optional[pulumi.Input[str]] = None,
306
- client_id: Optional[pulumi.Input[str]] = None,
307
- client_secret: Optional[pulumi.Input[str]] = None,
308
- subscription_id: Optional[pulumi.Input[str]] = None,
309
- tenant_id: Optional[pulumi.Input[str]] = None) -> 'CredentialsAzure':
306
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
307
+ client_id: Optional[pulumi.Input[builtins.str]] = None,
308
+ client_secret: Optional[pulumi.Input[builtins.str]] = None,
309
+ subscription_id: Optional[pulumi.Input[builtins.str]] = None,
310
+ tenant_id: Optional[pulumi.Input[builtins.str]] = None) -> 'CredentialsAzure':
310
311
  """
311
312
  Get an existing CredentialsAzure resource's state with the given name, id, and optional extra
312
313
  properties used to qualify the lookup.
@@ -314,11 +315,11 @@ class CredentialsAzure(pulumi.CustomResource):
314
315
  :param str resource_name: The unique name of the resulting resource.
315
316
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
316
317
  :param pulumi.ResourceOptions opts: Options for the resource.
317
- :param pulumi.Input[str] account_id: The ID of the account associated with your token.
318
- :param pulumi.Input[str] client_id: Set the application ID.
319
- :param pulumi.Input[str] client_secret: Set the key secret.
320
- :param pulumi.Input[str] subscription_id: Set the subscription ID.
321
- :param pulumi.Input[str] tenant_id: Set the directory ID.
318
+ :param pulumi.Input[builtins.str] account_id: The ID of the account associated with your token.
319
+ :param pulumi.Input[builtins.str] client_id: Set the application ID.
320
+ :param pulumi.Input[builtins.str] client_secret: Set the key secret.
321
+ :param pulumi.Input[builtins.str] subscription_id: Set the subscription ID.
322
+ :param pulumi.Input[builtins.str] tenant_id: Set the directory ID.
322
323
  """
323
324
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
324
325
 
@@ -333,7 +334,7 @@ class CredentialsAzure(pulumi.CustomResource):
333
334
 
334
335
  @property
335
336
  @pulumi.getter(name="accountId")
336
- def account_id(self) -> pulumi.Output[str]:
337
+ def account_id(self) -> pulumi.Output[builtins.str]:
337
338
  """
338
339
  The ID of the account associated with your token.
339
340
  """
@@ -341,7 +342,7 @@ class CredentialsAzure(pulumi.CustomResource):
341
342
 
342
343
  @property
343
344
  @pulumi.getter(name="clientId")
344
- def client_id(self) -> pulumi.Output[str]:
345
+ def client_id(self) -> pulumi.Output[builtins.str]:
345
346
  """
346
347
  Set the application ID.
347
348
  """
@@ -349,7 +350,7 @@ class CredentialsAzure(pulumi.CustomResource):
349
350
 
350
351
  @property
351
352
  @pulumi.getter(name="clientSecret")
352
- def client_secret(self) -> pulumi.Output[str]:
353
+ def client_secret(self) -> pulumi.Output[builtins.str]:
353
354
  """
354
355
  Set the key secret.
355
356
  """
@@ -357,7 +358,7 @@ class CredentialsAzure(pulumi.CustomResource):
357
358
 
358
359
  @property
359
360
  @pulumi.getter(name="subscriptionId")
360
- def subscription_id(self) -> pulumi.Output[str]:
361
+ def subscription_id(self) -> pulumi.Output[builtins.str]:
361
362
  """
362
363
  Set the subscription ID.
363
364
  """
@@ -365,7 +366,7 @@ class CredentialsAzure(pulumi.CustomResource):
365
366
 
366
367
  @property
367
368
  @pulumi.getter(name="tenantId")
368
- def tenant_id(self) -> pulumi.Output[str]:
369
+ def tenant_id(self) -> pulumi.Output[builtins.str]:
369
370
  """
370
371
  Set the directory ID.
371
372
  """