@pulumi/spotinst 3.93.0-alpha.1726765194 → 3.94.0-alpha.1726832270
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.
- package/package.json +2 -2
- package/types/input.d.ts +4 -0
- package/types/output.d.ts +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/spotinst",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.94.0-alpha.1726832270",
|
|
4
4
|
"description": "A Pulumi package for creating and managing spotinst cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "spotinst",
|
|
26
|
-
"version": "3.
|
|
26
|
+
"version": "3.94.0-alpha.1726832270"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -4387,6 +4387,10 @@ export declare namespace gke {
|
|
|
4387
4387
|
* Define the provisioning model of the launched instances. Valid values: `SPOT`, `PREEMPTIBLE`.
|
|
4388
4388
|
*/
|
|
4389
4389
|
provisioningModel?: pulumi.Input<string>;
|
|
4390
|
+
/**
|
|
4391
|
+
* Enable committed use discounts utilization.
|
|
4392
|
+
*/
|
|
4393
|
+
shouldUtilizeCommitments?: pulumi.Input<boolean>;
|
|
4390
4394
|
}
|
|
4391
4395
|
interface OceanImportUpdatePolicy {
|
|
4392
4396
|
/**
|
package/types/output.d.ts
CHANGED
|
@@ -4386,6 +4386,10 @@ export declare namespace gke {
|
|
|
4386
4386
|
* Define the provisioning model of the launched instances. Valid values: `SPOT`, `PREEMPTIBLE`.
|
|
4387
4387
|
*/
|
|
4388
4388
|
provisioningModel?: string;
|
|
4389
|
+
/**
|
|
4390
|
+
* Enable committed use discounts utilization.
|
|
4391
|
+
*/
|
|
4392
|
+
shouldUtilizeCommitments?: boolean;
|
|
4389
4393
|
}
|
|
4390
4394
|
interface OceanImportUpdatePolicy {
|
|
4391
4395
|
/**
|