pulumi-spotinst 3.120.0a1746772749__py3-none-any.whl → 3.120.0a1747452661__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/credentials_azure.py +52 -3
- pulumi_spotinst/pulumi-plugin.json +1 -1
- {pulumi_spotinst-3.120.0a1746772749.dist-info → pulumi_spotinst-3.120.0a1747452661.dist-info}/METADATA +1 -1
- {pulumi_spotinst-3.120.0a1746772749.dist-info → pulumi_spotinst-3.120.0a1747452661.dist-info}/RECORD +6 -6
- {pulumi_spotinst-3.120.0a1746772749.dist-info → pulumi_spotinst-3.120.0a1747452661.dist-info}/WHEEL +1 -1
- {pulumi_spotinst-3.120.0a1746772749.dist-info → pulumi_spotinst-3.120.0a1747452661.dist-info}/top_level.txt +0 -0
|
@@ -24,7 +24,8 @@ class CredentialsAzureArgs:
|
|
|
24
24
|
client_id: pulumi.Input[builtins.str],
|
|
25
25
|
client_secret: pulumi.Input[builtins.str],
|
|
26
26
|
subscription_id: pulumi.Input[builtins.str],
|
|
27
|
-
tenant_id: pulumi.Input[builtins.str]
|
|
27
|
+
tenant_id: pulumi.Input[builtins.str],
|
|
28
|
+
expiration_date: Optional[pulumi.Input[builtins.str]] = None):
|
|
28
29
|
"""
|
|
29
30
|
The set of arguments for constructing a CredentialsAzure resource.
|
|
30
31
|
:param pulumi.Input[builtins.str] account_id: The ID of the account associated with your token.
|
|
@@ -32,12 +33,15 @@ class CredentialsAzureArgs:
|
|
|
32
33
|
:param pulumi.Input[builtins.str] client_secret: Set the key secret.
|
|
33
34
|
:param pulumi.Input[builtins.str] subscription_id: Set the subscription ID.
|
|
34
35
|
:param pulumi.Input[builtins.str] tenant_id: Set the directory ID.
|
|
36
|
+
:param pulumi.Input[builtins.str] expiration_date: Set the key secret expiration date.
|
|
35
37
|
"""
|
|
36
38
|
pulumi.set(__self__, "account_id", account_id)
|
|
37
39
|
pulumi.set(__self__, "client_id", client_id)
|
|
38
40
|
pulumi.set(__self__, "client_secret", client_secret)
|
|
39
41
|
pulumi.set(__self__, "subscription_id", subscription_id)
|
|
40
42
|
pulumi.set(__self__, "tenant_id", tenant_id)
|
|
43
|
+
if expiration_date is not None:
|
|
44
|
+
pulumi.set(__self__, "expiration_date", expiration_date)
|
|
41
45
|
|
|
42
46
|
@property
|
|
43
47
|
@pulumi.getter(name="accountId")
|
|
@@ -99,6 +103,18 @@ class CredentialsAzureArgs:
|
|
|
99
103
|
def tenant_id(self, value: pulumi.Input[builtins.str]):
|
|
100
104
|
pulumi.set(self, "tenant_id", value)
|
|
101
105
|
|
|
106
|
+
@property
|
|
107
|
+
@pulumi.getter(name="expirationDate")
|
|
108
|
+
def expiration_date(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
109
|
+
"""
|
|
110
|
+
Set the key secret expiration date.
|
|
111
|
+
"""
|
|
112
|
+
return pulumi.get(self, "expiration_date")
|
|
113
|
+
|
|
114
|
+
@expiration_date.setter
|
|
115
|
+
def expiration_date(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
116
|
+
pulumi.set(self, "expiration_date", value)
|
|
117
|
+
|
|
102
118
|
|
|
103
119
|
@pulumi.input_type
|
|
104
120
|
class _CredentialsAzureState:
|
|
@@ -106,6 +122,7 @@ class _CredentialsAzureState:
|
|
|
106
122
|
account_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
107
123
|
client_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
108
124
|
client_secret: Optional[pulumi.Input[builtins.str]] = None,
|
|
125
|
+
expiration_date: Optional[pulumi.Input[builtins.str]] = None,
|
|
109
126
|
subscription_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
110
127
|
tenant_id: Optional[pulumi.Input[builtins.str]] = None):
|
|
111
128
|
"""
|
|
@@ -113,6 +130,7 @@ class _CredentialsAzureState:
|
|
|
113
130
|
:param pulumi.Input[builtins.str] account_id: The ID of the account associated with your token.
|
|
114
131
|
:param pulumi.Input[builtins.str] client_id: Set the application ID.
|
|
115
132
|
:param pulumi.Input[builtins.str] client_secret: Set the key secret.
|
|
133
|
+
:param pulumi.Input[builtins.str] expiration_date: Set the key secret expiration date.
|
|
116
134
|
:param pulumi.Input[builtins.str] subscription_id: Set the subscription ID.
|
|
117
135
|
:param pulumi.Input[builtins.str] tenant_id: Set the directory ID.
|
|
118
136
|
"""
|
|
@@ -122,6 +140,8 @@ class _CredentialsAzureState:
|
|
|
122
140
|
pulumi.set(__self__, "client_id", client_id)
|
|
123
141
|
if client_secret is not None:
|
|
124
142
|
pulumi.set(__self__, "client_secret", client_secret)
|
|
143
|
+
if expiration_date is not None:
|
|
144
|
+
pulumi.set(__self__, "expiration_date", expiration_date)
|
|
125
145
|
if subscription_id is not None:
|
|
126
146
|
pulumi.set(__self__, "subscription_id", subscription_id)
|
|
127
147
|
if tenant_id is not None:
|
|
@@ -163,6 +183,18 @@ class _CredentialsAzureState:
|
|
|
163
183
|
def client_secret(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
164
184
|
pulumi.set(self, "client_secret", value)
|
|
165
185
|
|
|
186
|
+
@property
|
|
187
|
+
@pulumi.getter(name="expirationDate")
|
|
188
|
+
def expiration_date(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
189
|
+
"""
|
|
190
|
+
Set the key secret expiration date.
|
|
191
|
+
"""
|
|
192
|
+
return pulumi.get(self, "expiration_date")
|
|
193
|
+
|
|
194
|
+
@expiration_date.setter
|
|
195
|
+
def expiration_date(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
196
|
+
pulumi.set(self, "expiration_date", value)
|
|
197
|
+
|
|
166
198
|
@property
|
|
167
199
|
@pulumi.getter(name="subscriptionId")
|
|
168
200
|
def subscription_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
@@ -197,6 +229,7 @@ class CredentialsAzure(pulumi.CustomResource):
|
|
|
197
229
|
account_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
198
230
|
client_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
199
231
|
client_secret: Optional[pulumi.Input[builtins.str]] = None,
|
|
232
|
+
expiration_date: Optional[pulumi.Input[builtins.str]] = None,
|
|
200
233
|
subscription_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
201
234
|
tenant_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
202
235
|
__props__=None):
|
|
@@ -215,7 +248,8 @@ class CredentialsAzure(pulumi.CustomResource):
|
|
|
215
248
|
client_id="redacted",
|
|
216
249
|
client_secret="redacted",
|
|
217
250
|
tenant_id="redacted",
|
|
218
|
-
subscription_id="redacted"
|
|
251
|
+
subscription_id="redacted",
|
|
252
|
+
expiration_date="2025-12-31T23:59:00.000Z")
|
|
219
253
|
```
|
|
220
254
|
|
|
221
255
|
:param str resource_name: The name of the resource.
|
|
@@ -223,6 +257,7 @@ class CredentialsAzure(pulumi.CustomResource):
|
|
|
223
257
|
:param pulumi.Input[builtins.str] account_id: The ID of the account associated with your token.
|
|
224
258
|
:param pulumi.Input[builtins.str] client_id: Set the application ID.
|
|
225
259
|
:param pulumi.Input[builtins.str] client_secret: Set the key secret.
|
|
260
|
+
:param pulumi.Input[builtins.str] expiration_date: Set the key secret expiration date.
|
|
226
261
|
:param pulumi.Input[builtins.str] subscription_id: Set the subscription ID.
|
|
227
262
|
:param pulumi.Input[builtins.str] tenant_id: Set the directory ID.
|
|
228
263
|
"""
|
|
@@ -247,7 +282,8 @@ class CredentialsAzure(pulumi.CustomResource):
|
|
|
247
282
|
client_id="redacted",
|
|
248
283
|
client_secret="redacted",
|
|
249
284
|
tenant_id="redacted",
|
|
250
|
-
subscription_id="redacted"
|
|
285
|
+
subscription_id="redacted",
|
|
286
|
+
expiration_date="2025-12-31T23:59:00.000Z")
|
|
251
287
|
```
|
|
252
288
|
|
|
253
289
|
:param str resource_name: The name of the resource.
|
|
@@ -268,6 +304,7 @@ class CredentialsAzure(pulumi.CustomResource):
|
|
|
268
304
|
account_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
269
305
|
client_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
270
306
|
client_secret: Optional[pulumi.Input[builtins.str]] = None,
|
|
307
|
+
expiration_date: Optional[pulumi.Input[builtins.str]] = None,
|
|
271
308
|
subscription_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
272
309
|
tenant_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
273
310
|
__props__=None):
|
|
@@ -288,6 +325,7 @@ class CredentialsAzure(pulumi.CustomResource):
|
|
|
288
325
|
if client_secret is None and not opts.urn:
|
|
289
326
|
raise TypeError("Missing required property 'client_secret'")
|
|
290
327
|
__props__.__dict__["client_secret"] = client_secret
|
|
328
|
+
__props__.__dict__["expiration_date"] = expiration_date
|
|
291
329
|
if subscription_id is None and not opts.urn:
|
|
292
330
|
raise TypeError("Missing required property 'subscription_id'")
|
|
293
331
|
__props__.__dict__["subscription_id"] = subscription_id
|
|
@@ -307,6 +345,7 @@ class CredentialsAzure(pulumi.CustomResource):
|
|
|
307
345
|
account_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
308
346
|
client_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
309
347
|
client_secret: Optional[pulumi.Input[builtins.str]] = None,
|
|
348
|
+
expiration_date: Optional[pulumi.Input[builtins.str]] = None,
|
|
310
349
|
subscription_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
311
350
|
tenant_id: Optional[pulumi.Input[builtins.str]] = None) -> 'CredentialsAzure':
|
|
312
351
|
"""
|
|
@@ -319,6 +358,7 @@ class CredentialsAzure(pulumi.CustomResource):
|
|
|
319
358
|
:param pulumi.Input[builtins.str] account_id: The ID of the account associated with your token.
|
|
320
359
|
:param pulumi.Input[builtins.str] client_id: Set the application ID.
|
|
321
360
|
:param pulumi.Input[builtins.str] client_secret: Set the key secret.
|
|
361
|
+
:param pulumi.Input[builtins.str] expiration_date: Set the key secret expiration date.
|
|
322
362
|
:param pulumi.Input[builtins.str] subscription_id: Set the subscription ID.
|
|
323
363
|
:param pulumi.Input[builtins.str] tenant_id: Set the directory ID.
|
|
324
364
|
"""
|
|
@@ -329,6 +369,7 @@ class CredentialsAzure(pulumi.CustomResource):
|
|
|
329
369
|
__props__.__dict__["account_id"] = account_id
|
|
330
370
|
__props__.__dict__["client_id"] = client_id
|
|
331
371
|
__props__.__dict__["client_secret"] = client_secret
|
|
372
|
+
__props__.__dict__["expiration_date"] = expiration_date
|
|
332
373
|
__props__.__dict__["subscription_id"] = subscription_id
|
|
333
374
|
__props__.__dict__["tenant_id"] = tenant_id
|
|
334
375
|
return CredentialsAzure(resource_name, opts=opts, __props__=__props__)
|
|
@@ -357,6 +398,14 @@ class CredentialsAzure(pulumi.CustomResource):
|
|
|
357
398
|
"""
|
|
358
399
|
return pulumi.get(self, "client_secret")
|
|
359
400
|
|
|
401
|
+
@property
|
|
402
|
+
@pulumi.getter(name="expirationDate")
|
|
403
|
+
def expiration_date(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
404
|
+
"""
|
|
405
|
+
Set the key secret expiration date.
|
|
406
|
+
"""
|
|
407
|
+
return pulumi.get(self, "expiration_date")
|
|
408
|
+
|
|
360
409
|
@property
|
|
361
410
|
@pulumi.getter(name="subscriptionId")
|
|
362
411
|
def subscription_id(self) -> pulumi.Output[builtins.str]:
|
{pulumi_spotinst-3.120.0a1746772749.dist-info → pulumi_spotinst-3.120.0a1747452661.dist-info}/RECORD
RENAMED
|
@@ -2,7 +2,7 @@ pulumi_spotinst/__init__.py,sha256=zGQ4II5RIK7sg6xV8DPuK6ciPcxOQ6ov1vNq2jFe0Tk,8
|
|
|
2
2
|
pulumi_spotinst/_inputs.py,sha256=RKU-P3eReTo4ljn0Eug2MgckukLH9VH4pk5zoFDyQuM,225578
|
|
3
3
|
pulumi_spotinst/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
|
|
4
4
|
pulumi_spotinst/account.py,sha256=jMszBEW-RetWDdvjj1CvzCnLtIOthyQRkYrdf1NGOZY,6537
|
|
5
|
-
pulumi_spotinst/credentials_azure.py,sha256=
|
|
5
|
+
pulumi_spotinst/credentials_azure.py,sha256=kqpmh-mVB4hbiFa_jvKeZe1LxYDZ7MXAbtxVHA-FrsM,17307
|
|
6
6
|
pulumi_spotinst/credentials_gcp.py,sha256=EHiuJMBYnnCpnrd5G0ElWLON-5I6p1NAfvLv3uEYod4,27437
|
|
7
7
|
pulumi_spotinst/data_integration.py,sha256=lAwVCqkJCli6nDzuJp9KZRzMwjqH1f-f7VIPGh2a2nw,12231
|
|
8
8
|
pulumi_spotinst/elastigroup_azure_v3.py,sha256=ig0rmwhnn3hhbiE7BKv4l0g-I7zYWy5bY-VPrwNZEDk,77204
|
|
@@ -10,7 +10,7 @@ pulumi_spotinst/health_check.py,sha256=aBs_ytJpI-yJ3MPOWRAHIGJW08DLi1Iglt0r0qYkW
|
|
|
10
10
|
pulumi_spotinst/ocean_right_sizing_rule.py,sha256=9yxy-9XyoYlypxpFiqqX1T7poyO7il-46zOZ0anYna0,31490
|
|
11
11
|
pulumi_spotinst/outputs.py,sha256=vtnSMKMrpPpwMoPnVypj0W_10CxLevZOG2xxqKRmZxg,180095
|
|
12
12
|
pulumi_spotinst/provider.py,sha256=xI0C5Q-fLr1jC9znrHJnYzDRV9dO-M0YaRtjgET29b8,8722
|
|
13
|
-
pulumi_spotinst/pulumi-plugin.json,sha256=
|
|
13
|
+
pulumi_spotinst/pulumi-plugin.json,sha256=iJ_xkmFsNNiOY_UhIxtE5pSY4H-2bFNRFOge0S9oJoA,86
|
|
14
14
|
pulumi_spotinst/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
15
|
pulumi_spotinst/stateful_node_azure.py,sha256=i0pauuwcXmW5n6sdqpH3HwOLc0UfuHx3SYp0zkezv-Q,141513
|
|
16
16
|
pulumi_spotinst/subscription.py,sha256=asxOLptbPggXfVfDzeUIR6DZC8ub3w_9v-w0nmVEc7Y,28571
|
|
@@ -70,7 +70,7 @@ pulumi_spotinst/spark/_inputs.py,sha256=yFfeSOqV5Jift-FZSGrsC86HStuOakR_EhzNdk42
|
|
|
70
70
|
pulumi_spotinst/spark/ocean.py,sha256=RN5dHXClRo67ftvCD0h3nHiAWLIffQmYGKpiN7mNDnw,19746
|
|
71
71
|
pulumi_spotinst/spark/ocean_virtual_node_group.py,sha256=mVGU2GeSdAT3MnjZfwO_n72WWixArOgQ8ZnNxgmWLJ8,8654
|
|
72
72
|
pulumi_spotinst/spark/outputs.py,sha256=Fd5tyJLyYRKIG1MB6qNFEDzVlLRwYPvC4g9xVHCsrBM,20534
|
|
73
|
-
pulumi_spotinst-3.120.
|
|
74
|
-
pulumi_spotinst-3.120.
|
|
75
|
-
pulumi_spotinst-3.120.
|
|
76
|
-
pulumi_spotinst-3.120.
|
|
73
|
+
pulumi_spotinst-3.120.0a1747452661.dist-info/METADATA,sha256=qU3IhX0g-RooNq1yRP89Dxn1Mu7pDWU-EqcrONbzQ8U,2724
|
|
74
|
+
pulumi_spotinst-3.120.0a1747452661.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
|
75
|
+
pulumi_spotinst-3.120.0a1747452661.dist-info/top_level.txt,sha256=B1HTsr4PliwgyZPJ-9Cmg9PELboV_GusiFDrxBSVHeI,16
|
|
76
|
+
pulumi_spotinst-3.120.0a1747452661.dist-info/RECORD,,
|
|
File without changes
|