@pulumi/spotinst 3.92.0-alpha.1726294049 → 3.92.0-alpha.1726565911

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/spotinst",
3
- "version": "3.92.0-alpha.1726294049",
3
+ "version": "3.92.0-alpha.1726565911",
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.92.0-alpha.1726294049"
26
+ "version": "3.92.0-alpha.1726565911"
27
27
  }
28
28
  }
package/types/input.d.ts CHANGED
@@ -2559,6 +2559,14 @@ export declare namespace aws {
2559
2559
  * The desired percentage of the Spot instances out of all running instances for this VNG. Only available when the field is not set in the cluster directly (cluster.strategy.spotPercentage).
2560
2560
  */
2561
2561
  spotPercentage?: pulumi.Input<number>;
2562
+ /**
2563
+ * When set as ‘true’, if savings plans commitments have available capacity, Ocean will utilize them alongside RIs (if exist) to maximize cost efficiency. If the value is set as 'null', it will automatically be inherited from the cluster level.
2564
+ */
2565
+ utilizeCommitments?: pulumi.Input<boolean>;
2566
+ /**
2567
+ * When set as ‘true’, if reserved instances exist, Ocean will utilize them before launching spot instances. If the value is set as 'null', it will automatically be inherited from the cluster level.
2568
+ */
2569
+ utilizeReservedInstances?: pulumi.Input<boolean>;
2562
2570
  }
2563
2571
  interface OceanLaunchSpecTag {
2564
2572
  key: pulumi.Input<string>;
package/types/output.d.ts CHANGED
@@ -2558,6 +2558,14 @@ export declare namespace aws {
2558
2558
  * The desired percentage of the Spot instances out of all running instances for this VNG. Only available when the field is not set in the cluster directly (cluster.strategy.spotPercentage).
2559
2559
  */
2560
2560
  spotPercentage?: number;
2561
+ /**
2562
+ * When set as ‘true’, if savings plans commitments have available capacity, Ocean will utilize them alongside RIs (if exist) to maximize cost efficiency. If the value is set as 'null', it will automatically be inherited from the cluster level.
2563
+ */
2564
+ utilizeCommitments?: boolean;
2565
+ /**
2566
+ * When set as ‘true’, if reserved instances exist, Ocean will utilize them before launching spot instances. If the value is set as 'null', it will automatically be inherited from the cluster level.
2567
+ */
2568
+ utilizeReservedInstances?: boolean;
2561
2569
  }
2562
2570
  interface OceanLaunchSpecTag {
2563
2571
  key: string;