@pulumi/spotinst 3.52.0-alpha.1694757390 → 3.52.0
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 +1 -1
- package/types/input.d.ts +17 -5
- package/types/output.d.ts +17 -5
package/package.json
CHANGED
package/types/input.d.ts
CHANGED
|
@@ -2494,6 +2494,10 @@ export declare namespace aws {
|
|
|
2494
2494
|
* Boolean. Flag to delete the EBS on instance termination.
|
|
2495
2495
|
*/
|
|
2496
2496
|
deleteOnTermination?: pulumi.Input<boolean>;
|
|
2497
|
+
/**
|
|
2498
|
+
* Set dynamic IOPS properties. When using this object, you cannot use the `iops` attribute. You must use one or the other.
|
|
2499
|
+
*/
|
|
2500
|
+
dynamicIops?: pulumi.Input<inputs.aws.OceanBlockDeviceMappingEbsDynamicIops>;
|
|
2497
2501
|
/**
|
|
2498
2502
|
* Object. Set dynamic volume size properties. When using this object, you cannot use volumeSize. You must use one or the other.
|
|
2499
2503
|
*/
|
|
@@ -2503,7 +2507,7 @@ export declare namespace aws {
|
|
|
2503
2507
|
*/
|
|
2504
2508
|
encrypted?: pulumi.Input<boolean>;
|
|
2505
2509
|
/**
|
|
2506
|
-
*
|
|
2510
|
+
* Must be greater than or equal to 0.
|
|
2507
2511
|
*/
|
|
2508
2512
|
iops?: pulumi.Input<number>;
|
|
2509
2513
|
/**
|
|
@@ -2527,17 +2531,25 @@ export declare namespace aws {
|
|
|
2527
2531
|
*/
|
|
2528
2532
|
volumeType?: pulumi.Input<string>;
|
|
2529
2533
|
}
|
|
2530
|
-
interface
|
|
2534
|
+
interface OceanBlockDeviceMappingEbsDynamicIops {
|
|
2531
2535
|
/**
|
|
2532
|
-
*
|
|
2536
|
+
* Initial size for IOPS.
|
|
2533
2537
|
*/
|
|
2534
2538
|
baseSize: pulumi.Input<number>;
|
|
2539
|
+
resource: pulumi.Input<string>;
|
|
2535
2540
|
/**
|
|
2536
|
-
*
|
|
2541
|
+
* 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).
|
|
2537
2542
|
*/
|
|
2543
|
+
sizePerResourceUnit: pulumi.Input<number>;
|
|
2544
|
+
}
|
|
2545
|
+
interface OceanBlockDeviceMappingEbsDynamicVolumeSize {
|
|
2546
|
+
/**
|
|
2547
|
+
* Initial size for IOPS.
|
|
2548
|
+
*/
|
|
2549
|
+
baseSize: pulumi.Input<number>;
|
|
2538
2550
|
resource: pulumi.Input<string>;
|
|
2539
2551
|
/**
|
|
2540
|
-
*
|
|
2552
|
+
* 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).
|
|
2541
2553
|
*/
|
|
2542
2554
|
sizePerResourceUnit: pulumi.Input<number>;
|
|
2543
2555
|
}
|
package/types/output.d.ts
CHANGED
|
@@ -2493,6 +2493,10 @@ export declare namespace aws {
|
|
|
2493
2493
|
* Boolean. Flag to delete the EBS on instance termination.
|
|
2494
2494
|
*/
|
|
2495
2495
|
deleteOnTermination: boolean;
|
|
2496
|
+
/**
|
|
2497
|
+
* Set dynamic IOPS properties. When using this object, you cannot use the `iops` attribute. You must use one or the other.
|
|
2498
|
+
*/
|
|
2499
|
+
dynamicIops?: outputs.aws.OceanBlockDeviceMappingEbsDynamicIops;
|
|
2496
2500
|
/**
|
|
2497
2501
|
* Object. Set dynamic volume size properties. When using this object, you cannot use volumeSize. You must use one or the other.
|
|
2498
2502
|
*/
|
|
@@ -2502,7 +2506,7 @@ export declare namespace aws {
|
|
|
2502
2506
|
*/
|
|
2503
2507
|
encrypted: boolean;
|
|
2504
2508
|
/**
|
|
2505
|
-
*
|
|
2509
|
+
* Must be greater than or equal to 0.
|
|
2506
2510
|
*/
|
|
2507
2511
|
iops?: number;
|
|
2508
2512
|
/**
|
|
@@ -2526,17 +2530,25 @@ export declare namespace aws {
|
|
|
2526
2530
|
*/
|
|
2527
2531
|
volumeType: string;
|
|
2528
2532
|
}
|
|
2529
|
-
interface
|
|
2533
|
+
interface OceanBlockDeviceMappingEbsDynamicIops {
|
|
2530
2534
|
/**
|
|
2531
|
-
*
|
|
2535
|
+
* Initial size for IOPS.
|
|
2532
2536
|
*/
|
|
2533
2537
|
baseSize: number;
|
|
2538
|
+
resource: string;
|
|
2534
2539
|
/**
|
|
2535
|
-
*
|
|
2540
|
+
* 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).
|
|
2536
2541
|
*/
|
|
2542
|
+
sizePerResourceUnit: number;
|
|
2543
|
+
}
|
|
2544
|
+
interface OceanBlockDeviceMappingEbsDynamicVolumeSize {
|
|
2545
|
+
/**
|
|
2546
|
+
* Initial size for IOPS.
|
|
2547
|
+
*/
|
|
2548
|
+
baseSize: number;
|
|
2537
2549
|
resource: string;
|
|
2538
2550
|
/**
|
|
2539
|
-
*
|
|
2551
|
+
* 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).
|
|
2540
2552
|
*/
|
|
2541
2553
|
sizePerResourceUnit: number;
|
|
2542
2554
|
}
|