@pulumi/spotinst 3.40.0 → 3.41.0-alpha.1689276363
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/aws/ocean.d.ts +3 -3
- package/package.json +2 -2
- package/types/input.d.ts +1 -1
- package/types/output.d.ts +1 -1
package/aws/ocean.d.ts
CHANGED
|
@@ -146,7 +146,7 @@ export declare class Ocean extends pulumi.CustomResource {
|
|
|
146
146
|
*/
|
|
147
147
|
readonly securityGroups: pulumi.Output<string[]>;
|
|
148
148
|
/**
|
|
149
|
-
* The percentage of Spot instances
|
|
149
|
+
* The desired percentage of Spot instances out of all running instances. Only available when the field is not set in any VNG directly (launchSpec.strategy.spotPercentage).
|
|
150
150
|
*/
|
|
151
151
|
readonly spotPercentage: pulumi.Output<number | undefined>;
|
|
152
152
|
/**
|
|
@@ -299,7 +299,7 @@ export interface OceanState {
|
|
|
299
299
|
*/
|
|
300
300
|
securityGroups?: pulumi.Input<pulumi.Input<string>[]>;
|
|
301
301
|
/**
|
|
302
|
-
* The percentage of Spot instances
|
|
302
|
+
* The desired percentage of Spot instances out of all running instances. Only available when the field is not set in any VNG directly (launchSpec.strategy.spotPercentage).
|
|
303
303
|
*/
|
|
304
304
|
spotPercentage?: pulumi.Input<number>;
|
|
305
305
|
/**
|
|
@@ -444,7 +444,7 @@ export interface OceanArgs {
|
|
|
444
444
|
*/
|
|
445
445
|
securityGroups: pulumi.Input<pulumi.Input<string>[]>;
|
|
446
446
|
/**
|
|
447
|
-
* The percentage of Spot instances
|
|
447
|
+
* The desired percentage of Spot instances out of all running instances. Only available when the field is not set in any VNG directly (launchSpec.strategy.spotPercentage).
|
|
448
448
|
*/
|
|
449
449
|
spotPercentage?: pulumi.Input<number>;
|
|
450
450
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/spotinst",
|
|
3
|
-
"version": "v3.
|
|
3
|
+
"version": "v3.41.0-alpha.1689276363+25ea6eed",
|
|
4
4
|
"description": "A Pulumi package for creating and managing spotinst cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "tsc",
|
|
14
|
-
"install": "node scripts/install-pulumi-plugin.js resource spotinst v3.
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource spotinst v3.41.0-alpha.1689276363+25ea6eed"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0"
|
package/types/input.d.ts
CHANGED
|
@@ -2825,7 +2825,7 @@ export declare namespace aws {
|
|
|
2825
2825
|
}
|
|
2826
2826
|
interface OceanLaunchSpecStrategy {
|
|
2827
2827
|
/**
|
|
2828
|
-
*
|
|
2828
|
+
* 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).
|
|
2829
2829
|
*/
|
|
2830
2830
|
spotPercentage?: pulumi.Input<number>;
|
|
2831
2831
|
}
|
package/types/output.d.ts
CHANGED
|
@@ -2824,7 +2824,7 @@ export declare namespace aws {
|
|
|
2824
2824
|
}
|
|
2825
2825
|
interface OceanLaunchSpecStrategy {
|
|
2826
2826
|
/**
|
|
2827
|
-
*
|
|
2827
|
+
* 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).
|
|
2828
2828
|
*/
|
|
2829
2829
|
spotPercentage?: number;
|
|
2830
2830
|
}
|