@pulumi/spotinst 3.121.0 → 3.122.0-alpha.1752118703

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.121.0",
3
+ "version": "3.122.0-alpha.1752118703",
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.121.0"
26
+ "version": "3.122.0-alpha.1752118703"
27
27
  }
28
28
  }
package/types/input.d.ts CHANGED
@@ -2800,6 +2800,10 @@ export declare namespace aws {
2800
2800
  * The configurable amount of time that Ocean will wait for the draining process to complete before terminating an instance. If you have not defined a draining timeout, the default of 300 seconds will be used.
2801
2801
  */
2802
2802
  drainingTimeout?: pulumi.Input<number>;
2803
+ /**
2804
+ * Vng orientation configuration.
2805
+ */
2806
+ orientation?: pulumi.Input<inputs.aws.OceanLaunchSpecStrategyOrientation>;
2803
2807
  /**
2804
2808
  * 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).
2805
2809
  */
@@ -2813,6 +2817,12 @@ export declare namespace aws {
2813
2817
  */
2814
2818
  utilizeReservedInstances?: pulumi.Input<boolean>;
2815
2819
  }
2820
+ interface OceanLaunchSpecStrategyOrientation {
2821
+ /**
2822
+ * Set this value to control the approach that Ocean takes while launching nodes. Valid values: `"costOriented"`, `"cheapest"`, `"balanced"`.
2823
+ */
2824
+ availabilityVsCost?: pulumi.Input<string>;
2825
+ }
2816
2826
  interface OceanLaunchSpecTag {
2817
2827
  key: pulumi.Input<string>;
2818
2828
  value: pulumi.Input<string>;
package/types/output.d.ts CHANGED
@@ -2799,6 +2799,10 @@ export declare namespace aws {
2799
2799
  * The configurable amount of time that Ocean will wait for the draining process to complete before terminating an instance. If you have not defined a draining timeout, the default of 300 seconds will be used.
2800
2800
  */
2801
2801
  drainingTimeout?: number;
2802
+ /**
2803
+ * Vng orientation configuration.
2804
+ */
2805
+ orientation?: outputs.aws.OceanLaunchSpecStrategyOrientation;
2802
2806
  /**
2803
2807
  * 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).
2804
2808
  */
@@ -2812,6 +2816,12 @@ export declare namespace aws {
2812
2816
  */
2813
2817
  utilizeReservedInstances?: boolean;
2814
2818
  }
2819
+ interface OceanLaunchSpecStrategyOrientation {
2820
+ /**
2821
+ * Set this value to control the approach that Ocean takes while launching nodes. Valid values: `"costOriented"`, `"cheapest"`, `"balanced"`.
2822
+ */
2823
+ availabilityVsCost?: string;
2824
+ }
2815
2825
  interface OceanLaunchSpecTag {
2816
2826
  key: string;
2817
2827
  value: string;