@pulumi/spotinst 3.127.0-alpha.1764052427 → 3.127.0-alpha.1764646680

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.127.0-alpha.1764052427",
3
+ "version": "3.127.0-alpha.1764646680",
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.127.0-alpha.1764052427"
26
+ "version": "3.127.0-alpha.1764646680"
27
27
  }
28
28
  }
package/types/input.d.ts CHANGED
@@ -2636,6 +2636,10 @@ export declare namespace aws {
2636
2636
  * Boolean. Flag to delete the EBS on instance termination.
2637
2637
  */
2638
2638
  deleteOnTermination?: pulumi.Input<boolean>;
2639
+ /**
2640
+ * Set dynamic IOPS properties. When using this object, you cannot use the `iops` attribute. You must use one or the other.
2641
+ */
2642
+ dynamicIops?: pulumi.Input<inputs.aws.OceanLaunchSpecBlockDeviceMappingEbsDynamicIops>;
2639
2643
  /**
2640
2644
  * Object. Set dynamic volume size properties. When using this object, you cannot use volumeSize. You must use one or the other.
2641
2645
  */
@@ -2669,6 +2673,17 @@ export declare namespace aws {
2669
2673
  */
2670
2674
  volumeType?: pulumi.Input<string>;
2671
2675
  }
2676
+ interface OceanLaunchSpecBlockDeviceMappingEbsDynamicIops {
2677
+ /**
2678
+ * Initial size for IOPS.
2679
+ */
2680
+ baseSize: pulumi.Input<number>;
2681
+ resource: pulumi.Input<string>;
2682
+ /**
2683
+ * Additional size per resource unit (in IOPS). (Example: `baseSize=50`, `sizePerResourceUnit=20`, and an instance with 2 CPU is launched; its IOPS size will be: 90).
2684
+ */
2685
+ sizePerResourceUnit: pulumi.Input<number>;
2686
+ }
2672
2687
  interface OceanLaunchSpecBlockDeviceMappingEbsDynamicVolumeSize {
2673
2688
  /**
2674
2689
  * Int. Initial size for volume. (Example: 50)
package/types/output.d.ts CHANGED
@@ -2635,6 +2635,10 @@ export declare namespace aws {
2635
2635
  * Boolean. Flag to delete the EBS on instance termination.
2636
2636
  */
2637
2637
  deleteOnTermination?: boolean;
2638
+ /**
2639
+ * Set dynamic IOPS properties. When using this object, you cannot use the `iops` attribute. You must use one or the other.
2640
+ */
2641
+ dynamicIops?: outputs.aws.OceanLaunchSpecBlockDeviceMappingEbsDynamicIops;
2638
2642
  /**
2639
2643
  * Object. Set dynamic volume size properties. When using this object, you cannot use volumeSize. You must use one or the other.
2640
2644
  */
@@ -2668,6 +2672,17 @@ export declare namespace aws {
2668
2672
  */
2669
2673
  volumeType?: string;
2670
2674
  }
2675
+ interface OceanLaunchSpecBlockDeviceMappingEbsDynamicIops {
2676
+ /**
2677
+ * Initial size for IOPS.
2678
+ */
2679
+ baseSize: number;
2680
+ resource: string;
2681
+ /**
2682
+ * Additional size per resource unit (in IOPS). (Example: `baseSize=50`, `sizePerResourceUnit=20`, and an instance with 2 CPU is launched; its IOPS size will be: 90).
2683
+ */
2684
+ sizePerResourceUnit: number;
2685
+ }
2671
2686
  interface OceanLaunchSpecBlockDeviceMappingEbsDynamicVolumeSize {
2672
2687
  /**
2673
2688
  * Int. Initial size for volume. (Example: 50)