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 copy
6
7
  import warnings
7
8
  import sys
@@ -19,50 +20,50 @@ __all__ = ['CredentialsArgs', 'Credentials']
19
20
  @pulumi.input_type
20
21
  class CredentialsArgs:
21
22
  def __init__(__self__, *,
22
- account_id: pulumi.Input[str],
23
- iamrole: pulumi.Input[str]):
23
+ account_id: pulumi.Input[builtins.str],
24
+ iamrole: pulumi.Input[builtins.str]):
24
25
  """
25
26
  The set of arguments for constructing a Credentials resource.
26
- :param pulumi.Input[str] account_id: The ID of the account associated with your token.
27
- :param pulumi.Input[str] iamrole: Provide the IAM Role ARN connected to another AWS account 922761411349 and with the latest Spot Policy - https://docs.spot.io/administration/api/spot-policy-in-aws
27
+ :param pulumi.Input[builtins.str] account_id: The ID of the account associated with your token.
28
+ :param pulumi.Input[builtins.str] iamrole: Provide the IAM Role ARN connected to another AWS account 922761411349 and with the latest Spot Policy - https://docs.spot.io/administration/api/spot-policy-in-aws
28
29
  """
29
30
  pulumi.set(__self__, "account_id", account_id)
30
31
  pulumi.set(__self__, "iamrole", iamrole)
31
32
 
32
33
  @property
33
34
  @pulumi.getter(name="accountId")
34
- def account_id(self) -> pulumi.Input[str]:
35
+ def account_id(self) -> pulumi.Input[builtins.str]:
35
36
  """
36
37
  The ID of the account associated with your token.
37
38
  """
38
39
  return pulumi.get(self, "account_id")
39
40
 
40
41
  @account_id.setter
41
- def account_id(self, value: pulumi.Input[str]):
42
+ def account_id(self, value: pulumi.Input[builtins.str]):
42
43
  pulumi.set(self, "account_id", value)
43
44
 
44
45
  @property
45
46
  @pulumi.getter
46
- def iamrole(self) -> pulumi.Input[str]:
47
+ def iamrole(self) -> pulumi.Input[builtins.str]:
47
48
  """
48
49
  Provide the IAM Role ARN connected to another AWS account 922761411349 and with the latest Spot Policy - https://docs.spot.io/administration/api/spot-policy-in-aws
49
50
  """
50
51
  return pulumi.get(self, "iamrole")
51
52
 
52
53
  @iamrole.setter
53
- def iamrole(self, value: pulumi.Input[str]):
54
+ def iamrole(self, value: pulumi.Input[builtins.str]):
54
55
  pulumi.set(self, "iamrole", value)
55
56
 
56
57
 
57
58
  @pulumi.input_type
58
59
  class _CredentialsState:
59
60
  def __init__(__self__, *,
60
- account_id: Optional[pulumi.Input[str]] = None,
61
- iamrole: Optional[pulumi.Input[str]] = None):
61
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
62
+ iamrole: Optional[pulumi.Input[builtins.str]] = None):
62
63
  """
63
64
  Input properties used for looking up and filtering Credentials resources.
64
- :param pulumi.Input[str] account_id: The ID of the account associated with your token.
65
- :param pulumi.Input[str] iamrole: Provide the IAM Role ARN connected to another AWS account 922761411349 and with the latest Spot Policy - https://docs.spot.io/administration/api/spot-policy-in-aws
65
+ :param pulumi.Input[builtins.str] account_id: The ID of the account associated with your token.
66
+ :param pulumi.Input[builtins.str] iamrole: Provide the IAM Role ARN connected to another AWS account 922761411349 and with the latest Spot Policy - https://docs.spot.io/administration/api/spot-policy-in-aws
66
67
  """
67
68
  if account_id is not None:
68
69
  pulumi.set(__self__, "account_id", account_id)
@@ -71,26 +72,26 @@ class _CredentialsState:
71
72
 
72
73
  @property
73
74
  @pulumi.getter(name="accountId")
74
- def account_id(self) -> Optional[pulumi.Input[str]]:
75
+ def account_id(self) -> Optional[pulumi.Input[builtins.str]]:
75
76
  """
76
77
  The ID of the account associated with your token.
77
78
  """
78
79
  return pulumi.get(self, "account_id")
79
80
 
80
81
  @account_id.setter
81
- def account_id(self, value: Optional[pulumi.Input[str]]):
82
+ def account_id(self, value: Optional[pulumi.Input[builtins.str]]):
82
83
  pulumi.set(self, "account_id", value)
83
84
 
84
85
  @property
85
86
  @pulumi.getter
86
- def iamrole(self) -> Optional[pulumi.Input[str]]:
87
+ def iamrole(self) -> Optional[pulumi.Input[builtins.str]]:
87
88
  """
88
89
  Provide the IAM Role ARN connected to another AWS account 922761411349 and with the latest Spot Policy - https://docs.spot.io/administration/api/spot-policy-in-aws
89
90
  """
90
91
  return pulumi.get(self, "iamrole")
91
92
 
92
93
  @iamrole.setter
93
- def iamrole(self, value: Optional[pulumi.Input[str]]):
94
+ def iamrole(self, value: Optional[pulumi.Input[builtins.str]]):
94
95
  pulumi.set(self, "iamrole", value)
95
96
 
96
97
 
@@ -99,8 +100,8 @@ class Credentials(pulumi.CustomResource):
99
100
  def __init__(__self__,
100
101
  resource_name: str,
101
102
  opts: Optional[pulumi.ResourceOptions] = None,
102
- account_id: Optional[pulumi.Input[str]] = None,
103
- iamrole: Optional[pulumi.Input[str]] = None,
103
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
104
+ iamrole: Optional[pulumi.Input[builtins.str]] = None,
104
105
  __props__=None):
105
106
  """
106
107
  Provides a Spotinst credential AWS resource.
@@ -119,8 +120,8 @@ class Credentials(pulumi.CustomResource):
119
120
 
120
121
  :param str resource_name: The name of the resource.
121
122
  :param pulumi.ResourceOptions opts: Options for the resource.
122
- :param pulumi.Input[str] account_id: The ID of the account associated with your token.
123
- :param pulumi.Input[str] iamrole: Provide the IAM Role ARN connected to another AWS account 922761411349 and with the latest Spot Policy - https://docs.spot.io/administration/api/spot-policy-in-aws
123
+ :param pulumi.Input[builtins.str] account_id: The ID of the account associated with your token.
124
+ :param pulumi.Input[builtins.str] iamrole: Provide the IAM Role ARN connected to another AWS account 922761411349 and with the latest Spot Policy - https://docs.spot.io/administration/api/spot-policy-in-aws
124
125
  """
125
126
  ...
126
127
  @overload
@@ -158,8 +159,8 @@ class Credentials(pulumi.CustomResource):
158
159
  def _internal_init(__self__,
159
160
  resource_name: str,
160
161
  opts: Optional[pulumi.ResourceOptions] = None,
161
- account_id: Optional[pulumi.Input[str]] = None,
162
- iamrole: Optional[pulumi.Input[str]] = None,
162
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
163
+ iamrole: Optional[pulumi.Input[builtins.str]] = None,
163
164
  __props__=None):
164
165
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
165
166
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -185,8 +186,8 @@ class Credentials(pulumi.CustomResource):
185
186
  def get(resource_name: str,
186
187
  id: pulumi.Input[str],
187
188
  opts: Optional[pulumi.ResourceOptions] = None,
188
- account_id: Optional[pulumi.Input[str]] = None,
189
- iamrole: Optional[pulumi.Input[str]] = None) -> 'Credentials':
189
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
190
+ iamrole: Optional[pulumi.Input[builtins.str]] = None) -> 'Credentials':
190
191
  """
191
192
  Get an existing Credentials resource's state with the given name, id, and optional extra
192
193
  properties used to qualify the lookup.
@@ -194,8 +195,8 @@ class Credentials(pulumi.CustomResource):
194
195
  :param str resource_name: The unique name of the resulting resource.
195
196
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
196
197
  :param pulumi.ResourceOptions opts: Options for the resource.
197
- :param pulumi.Input[str] account_id: The ID of the account associated with your token.
198
- :param pulumi.Input[str] iamrole: Provide the IAM Role ARN connected to another AWS account 922761411349 and with the latest Spot Policy - https://docs.spot.io/administration/api/spot-policy-in-aws
198
+ :param pulumi.Input[builtins.str] account_id: The ID of the account associated with your token.
199
+ :param pulumi.Input[builtins.str] iamrole: Provide the IAM Role ARN connected to another AWS account 922761411349 and with the latest Spot Policy - https://docs.spot.io/administration/api/spot-policy-in-aws
199
200
  """
200
201
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
201
202
 
@@ -207,7 +208,7 @@ class Credentials(pulumi.CustomResource):
207
208
 
208
209
  @property
209
210
  @pulumi.getter(name="accountId")
210
- def account_id(self) -> pulumi.Output[str]:
211
+ def account_id(self) -> pulumi.Output[builtins.str]:
211
212
  """
212
213
  The ID of the account associated with your token.
213
214
  """
@@ -215,7 +216,7 @@ class Credentials(pulumi.CustomResource):
215
216
 
216
217
  @property
217
218
  @pulumi.getter
218
- def iamrole(self) -> pulumi.Output[str]:
219
+ def iamrole(self) -> pulumi.Output[builtins.str]:
219
220
  """
220
221
  Provide the IAM Role ARN connected to another AWS account 922761411349 and with the latest Spot Policy - https://docs.spot.io/administration/api/spot-policy-in-aws
221
222
  """