@pulumi/spotinst 3.118.0-alpha.1746168371 → 3.118.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 +2 -2
- package/types/input.d.ts +11 -1
- package/types/output.d.ts +11 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/spotinst",
|
|
3
|
-
"version": "3.118.0
|
|
3
|
+
"version": "3.118.0",
|
|
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.118.0
|
|
26
|
+
"version": "3.118.0"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -223,9 +223,19 @@ export interface ElastigroupAzureV3Tag {
|
|
|
223
223
|
value: pulumi.Input<string>;
|
|
224
224
|
}
|
|
225
225
|
export interface ElastigroupAzureV3VmSizes {
|
|
226
|
+
excludedVmSizes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
226
227
|
odSizes: pulumi.Input<pulumi.Input<string>[]>;
|
|
227
228
|
preferredSpotSizes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
228
|
-
|
|
229
|
+
spotSizeAttributes?: pulumi.Input<inputs.ElastigroupAzureV3VmSizesSpotSizeAttributes>;
|
|
230
|
+
spotSizes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
231
|
+
}
|
|
232
|
+
export interface ElastigroupAzureV3VmSizesSpotSizeAttributes {
|
|
233
|
+
maxCpu?: pulumi.Input<number>;
|
|
234
|
+
maxMemory?: pulumi.Input<number>;
|
|
235
|
+
maxStorage?: pulumi.Input<number>;
|
|
236
|
+
minCpu?: pulumi.Input<number>;
|
|
237
|
+
minMemory?: pulumi.Input<number>;
|
|
238
|
+
minStorage?: pulumi.Input<number>;
|
|
229
239
|
}
|
|
230
240
|
export interface HealthCheckCheck {
|
|
231
241
|
endPoint?: pulumi.Input<string>;
|
package/types/output.d.ts
CHANGED
|
@@ -222,9 +222,19 @@ export interface ElastigroupAzureV3Tag {
|
|
|
222
222
|
value: string;
|
|
223
223
|
}
|
|
224
224
|
export interface ElastigroupAzureV3VmSizes {
|
|
225
|
+
excludedVmSizes?: string[];
|
|
225
226
|
odSizes: string[];
|
|
226
227
|
preferredSpotSizes?: string[];
|
|
227
|
-
|
|
228
|
+
spotSizeAttributes?: outputs.ElastigroupAzureV3VmSizesSpotSizeAttributes;
|
|
229
|
+
spotSizes?: string[];
|
|
230
|
+
}
|
|
231
|
+
export interface ElastigroupAzureV3VmSizesSpotSizeAttributes {
|
|
232
|
+
maxCpu?: number;
|
|
233
|
+
maxMemory?: number;
|
|
234
|
+
maxStorage?: number;
|
|
235
|
+
minCpu?: number;
|
|
236
|
+
minMemory?: number;
|
|
237
|
+
minStorage?: number;
|
|
228
238
|
}
|
|
229
239
|
export interface HealthCheckCheck {
|
|
230
240
|
endPoint?: string;
|