@pulumi/spotinst 3.116.1 → 3.116.2
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 +0 -3
- package/types/output.d.ts +3 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/spotinst",
|
|
3
|
-
"version": "3.116.
|
|
3
|
+
"version": "3.116.2",
|
|
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.116.
|
|
26
|
+
"version": "3.116.2"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -2489,9 +2489,6 @@ export declare namespace aws {
|
|
|
2489
2489
|
* Object. Set Elastic Block Store properties .
|
|
2490
2490
|
*/
|
|
2491
2491
|
ebs?: pulumi.Input<inputs.aws.OceanLaunchSpecBlockDeviceMappingEbs>;
|
|
2492
|
-
/**
|
|
2493
|
-
* String. Suppresses the specified device included in the block device mapping of the AMI.
|
|
2494
|
-
*/
|
|
2495
2492
|
noDevice?: pulumi.Input<string>;
|
|
2496
2493
|
virtualName?: pulumi.Input<string>;
|
|
2497
2494
|
}
|
package/types/output.d.ts
CHANGED
|
@@ -2488,9 +2488,6 @@ export declare namespace aws {
|
|
|
2488
2488
|
* Object. Set Elastic Block Store properties .
|
|
2489
2489
|
*/
|
|
2490
2490
|
ebs?: outputs.aws.OceanLaunchSpecBlockDeviceMappingEbs;
|
|
2491
|
-
/**
|
|
2492
|
-
* String. Suppresses the specified device included in the block device mapping of the AMI.
|
|
2493
|
-
*/
|
|
2494
2491
|
noDevice?: string;
|
|
2495
2492
|
virtualName?: string;
|
|
2496
2493
|
}
|
|
@@ -2498,7 +2495,7 @@ export declare namespace aws {
|
|
|
2498
2495
|
/**
|
|
2499
2496
|
* Boolean. Flag to delete the EBS on instance termination.
|
|
2500
2497
|
*/
|
|
2501
|
-
deleteOnTermination
|
|
2498
|
+
deleteOnTermination?: boolean;
|
|
2502
2499
|
/**
|
|
2503
2500
|
* Object. Set dynamic volume size properties. When using this object, you cannot use volumeSize. You must use one or the other.
|
|
2504
2501
|
*/
|
|
@@ -2506,7 +2503,7 @@ export declare namespace aws {
|
|
|
2506
2503
|
/**
|
|
2507
2504
|
* Boolean. Enables [EBS encryption](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html) on the volume.
|
|
2508
2505
|
*/
|
|
2509
|
-
encrypted
|
|
2506
|
+
encrypted?: boolean;
|
|
2510
2507
|
/**
|
|
2511
2508
|
* Int. The number of I/O operations per second (IOPS) that the volume supports.
|
|
2512
2509
|
*/
|
|
@@ -2530,7 +2527,7 @@ export declare namespace aws {
|
|
|
2530
2527
|
/**
|
|
2531
2528
|
* String. The type of the volume. (Example: `gp2`).
|
|
2532
2529
|
*/
|
|
2533
|
-
volumeType
|
|
2530
|
+
volumeType?: string;
|
|
2534
2531
|
}
|
|
2535
2532
|
interface OceanLaunchSpecBlockDeviceMappingEbsDynamicVolumeSize {
|
|
2536
2533
|
/**
|