@pulumi/spotinst 3.131.0-alpha.1777013706 → 3.131.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/azure/oceanNp.d.ts +15 -0
- package/azure/oceanNp.js +5 -0
- package/azure/oceanNp.js.map +1 -1
- package/azure/oceanNpVirtualNodeGroup.d.ts +13 -0
- package/azure/oceanNpVirtualNodeGroup.js +3 -0
- package/azure/oceanNpVirtualNodeGroup.js.map +1 -1
- package/package.json +2 -2
- package/types/input.d.ts +8 -0
- package/types/output.d.ts +8 -0
package/azure/oceanNp.d.ts
CHANGED
|
@@ -56,6 +56,8 @@ import * as outputs from "../types/output";
|
|
|
56
56
|
* },
|
|
57
57
|
* health: {
|
|
58
58
|
* gracePeriod: 600,
|
|
59
|
+
* shouldReplaceUnhealthyInstances: false,
|
|
60
|
+
* healthCheckUnhealthyDurationBeforeReplacement: 180,
|
|
59
61
|
* },
|
|
60
62
|
* logging: {
|
|
61
63
|
* "export": {
|
|
@@ -98,6 +100,7 @@ import * as outputs from "../types/output";
|
|
|
98
100
|
* spotPercentage: 50,
|
|
99
101
|
* fallbackToOndemand: true,
|
|
100
102
|
* drainingTimeout: 600,
|
|
103
|
+
* shouldUtilizeCommitments: true,
|
|
101
104
|
* taints: [{
|
|
102
105
|
* key: "taintKey",
|
|
103
106
|
* value: "taintValue",
|
|
@@ -265,6 +268,10 @@ export declare class OceanNp extends pulumi.CustomResource {
|
|
|
265
268
|
*/
|
|
266
269
|
readonly podSubnetIds: pulumi.Output<string[] | undefined>;
|
|
267
270
|
readonly scheduling: pulumi.Output<outputs.azure.OceanNpScheduling | undefined>;
|
|
271
|
+
/**
|
|
272
|
+
* Determines whether to utilize any existing Azure Savings Plans or Reserved Instances associated with the subscription for On-Demand VMs.
|
|
273
|
+
*/
|
|
274
|
+
readonly shouldUtilizeCommitments: pulumi.Output<boolean | undefined>;
|
|
268
275
|
/**
|
|
269
276
|
* Percentage of spot VMs to maintain.
|
|
270
277
|
*/
|
|
@@ -395,6 +402,10 @@ export interface OceanNpState {
|
|
|
395
402
|
*/
|
|
396
403
|
podSubnetIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
397
404
|
scheduling?: pulumi.Input<inputs.azure.OceanNpScheduling>;
|
|
405
|
+
/**
|
|
406
|
+
* Determines whether to utilize any existing Azure Savings Plans or Reserved Instances associated with the subscription for On-Demand VMs.
|
|
407
|
+
*/
|
|
408
|
+
shouldUtilizeCommitments?: pulumi.Input<boolean>;
|
|
398
409
|
/**
|
|
399
410
|
* Percentage of spot VMs to maintain.
|
|
400
411
|
*/
|
|
@@ -517,6 +528,10 @@ export interface OceanNpArgs {
|
|
|
517
528
|
*/
|
|
518
529
|
podSubnetIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
519
530
|
scheduling?: pulumi.Input<inputs.azure.OceanNpScheduling>;
|
|
531
|
+
/**
|
|
532
|
+
* Determines whether to utilize any existing Azure Savings Plans or Reserved Instances associated with the subscription for On-Demand VMs.
|
|
533
|
+
*/
|
|
534
|
+
shouldUtilizeCommitments?: pulumi.Input<boolean>;
|
|
520
535
|
/**
|
|
521
536
|
* Percentage of spot VMs to maintain.
|
|
522
537
|
*/
|
package/azure/oceanNp.js
CHANGED
|
@@ -60,6 +60,8 @@ const utilities = require("../utilities");
|
|
|
60
60
|
* },
|
|
61
61
|
* health: {
|
|
62
62
|
* gracePeriod: 600,
|
|
63
|
+
* shouldReplaceUnhealthyInstances: false,
|
|
64
|
+
* healthCheckUnhealthyDurationBeforeReplacement: 180,
|
|
63
65
|
* },
|
|
64
66
|
* logging: {
|
|
65
67
|
* "export": {
|
|
@@ -102,6 +104,7 @@ const utilities = require("../utilities");
|
|
|
102
104
|
* spotPercentage: 50,
|
|
103
105
|
* fallbackToOndemand: true,
|
|
104
106
|
* drainingTimeout: 600,
|
|
107
|
+
* shouldUtilizeCommitments: true,
|
|
105
108
|
* taints: [{
|
|
106
109
|
* key: "taintKey",
|
|
107
110
|
* value: "taintValue",
|
|
@@ -211,6 +214,7 @@ class OceanNp extends pulumi.CustomResource {
|
|
|
211
214
|
resourceInputs["osType"] = state?.osType;
|
|
212
215
|
resourceInputs["podSubnetIds"] = state?.podSubnetIds;
|
|
213
216
|
resourceInputs["scheduling"] = state?.scheduling;
|
|
217
|
+
resourceInputs["shouldUtilizeCommitments"] = state?.shouldUtilizeCommitments;
|
|
214
218
|
resourceInputs["spotPercentage"] = state?.spotPercentage;
|
|
215
219
|
resourceInputs["tags"] = state?.tags;
|
|
216
220
|
resourceInputs["taints"] = state?.taints;
|
|
@@ -265,6 +269,7 @@ class OceanNp extends pulumi.CustomResource {
|
|
|
265
269
|
resourceInputs["osType"] = args?.osType;
|
|
266
270
|
resourceInputs["podSubnetIds"] = args?.podSubnetIds;
|
|
267
271
|
resourceInputs["scheduling"] = args?.scheduling;
|
|
272
|
+
resourceInputs["shouldUtilizeCommitments"] = args?.shouldUtilizeCommitments;
|
|
268
273
|
resourceInputs["spotPercentage"] = args?.spotPercentage;
|
|
269
274
|
resourceInputs["tags"] = args?.tags;
|
|
270
275
|
resourceInputs["taints"] = args?.taints;
|
package/azure/oceanNp.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"oceanNp.js","sourceRoot":"","sources":["../../azure/oceanNp.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"oceanNp.js","sourceRoot":"","sources":["../../azure/oceanNp.ts"],"names":[],"mappings":"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"}
|
|
@@ -47,6 +47,7 @@ import * as outputs from "../types/output";
|
|
|
47
47
|
* spotPercentage: 50,
|
|
48
48
|
* fallbackToOndemand: true,
|
|
49
49
|
* drainingTimeout: 600,
|
|
50
|
+
* shouldUtilizeCommitments: true,
|
|
50
51
|
* taints: [{
|
|
51
52
|
* key: "taintKey",
|
|
52
53
|
* value: "taintValue",
|
|
@@ -199,6 +200,10 @@ export declare class OceanNpVirtualNodeGroup extends pulumi.CustomResource {
|
|
|
199
200
|
* An object used to specify times when the virtual node group will turn off all its node pools. Once the shutdown time will be over, the virtual node group will return to its previous state.
|
|
200
201
|
*/
|
|
201
202
|
readonly scheduling: pulumi.Output<outputs.azure.OceanNpVirtualNodeGroupScheduling | undefined>;
|
|
203
|
+
/**
|
|
204
|
+
* Determines whether to utilize any existing Azure Savings Plans or Reserved Instances associated with the subscription for On-Demand VMs.
|
|
205
|
+
*/
|
|
206
|
+
readonly shouldUtilizeCommitments: pulumi.Output<boolean | undefined>;
|
|
202
207
|
/**
|
|
203
208
|
* Percentage of spot VMs to maintain.
|
|
204
209
|
*/
|
|
@@ -310,6 +315,10 @@ export interface OceanNpVirtualNodeGroupState {
|
|
|
310
315
|
* An object used to specify times when the virtual node group will turn off all its node pools. Once the shutdown time will be over, the virtual node group will return to its previous state.
|
|
311
316
|
*/
|
|
312
317
|
scheduling?: pulumi.Input<inputs.azure.OceanNpVirtualNodeGroupScheduling>;
|
|
318
|
+
/**
|
|
319
|
+
* Determines whether to utilize any existing Azure Savings Plans or Reserved Instances associated with the subscription for On-Demand VMs.
|
|
320
|
+
*/
|
|
321
|
+
shouldUtilizeCommitments?: pulumi.Input<boolean>;
|
|
313
322
|
/**
|
|
314
323
|
* Percentage of spot VMs to maintain.
|
|
315
324
|
*/
|
|
@@ -413,6 +422,10 @@ export interface OceanNpVirtualNodeGroupArgs {
|
|
|
413
422
|
* An object used to specify times when the virtual node group will turn off all its node pools. Once the shutdown time will be over, the virtual node group will return to its previous state.
|
|
414
423
|
*/
|
|
415
424
|
scheduling?: pulumi.Input<inputs.azure.OceanNpVirtualNodeGroupScheduling>;
|
|
425
|
+
/**
|
|
426
|
+
* Determines whether to utilize any existing Azure Savings Plans or Reserved Instances associated with the subscription for On-Demand VMs.
|
|
427
|
+
*/
|
|
428
|
+
shouldUtilizeCommitments?: pulumi.Input<boolean>;
|
|
416
429
|
/**
|
|
417
430
|
* Percentage of spot VMs to maintain.
|
|
418
431
|
*/
|
|
@@ -51,6 +51,7 @@ const utilities = require("../utilities");
|
|
|
51
51
|
* spotPercentage: 50,
|
|
52
52
|
* fallbackToOndemand: true,
|
|
53
53
|
* drainingTimeout: 600,
|
|
54
|
+
* shouldUtilizeCommitments: true,
|
|
54
55
|
* taints: [{
|
|
55
56
|
* key: "taintKey",
|
|
56
57
|
* value: "taintValue",
|
|
@@ -153,6 +154,7 @@ class OceanNpVirtualNodeGroup extends pulumi.CustomResource {
|
|
|
153
154
|
resourceInputs["osType"] = state?.osType;
|
|
154
155
|
resourceInputs["podSubnetIds"] = state?.podSubnetIds;
|
|
155
156
|
resourceInputs["scheduling"] = state?.scheduling;
|
|
157
|
+
resourceInputs["shouldUtilizeCommitments"] = state?.shouldUtilizeCommitments;
|
|
156
158
|
resourceInputs["spotPercentage"] = state?.spotPercentage;
|
|
157
159
|
resourceInputs["tags"] = state?.tags;
|
|
158
160
|
resourceInputs["taints"] = state?.taints;
|
|
@@ -184,6 +186,7 @@ class OceanNpVirtualNodeGroup extends pulumi.CustomResource {
|
|
|
184
186
|
resourceInputs["osType"] = args?.osType;
|
|
185
187
|
resourceInputs["podSubnetIds"] = args?.podSubnetIds;
|
|
186
188
|
resourceInputs["scheduling"] = args?.scheduling;
|
|
189
|
+
resourceInputs["shouldUtilizeCommitments"] = args?.shouldUtilizeCommitments;
|
|
187
190
|
resourceInputs["spotPercentage"] = args?.spotPercentage;
|
|
188
191
|
resourceInputs["tags"] = args?.tags;
|
|
189
192
|
resourceInputs["taints"] = args?.taints;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"oceanNpVirtualNodeGroup.js","sourceRoot":"","sources":["../../azure/oceanNpVirtualNodeGroup.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"oceanNpVirtualNodeGroup.js","sourceRoot":"","sources":["../../azure/oceanNpVirtualNodeGroup.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoGG;AACH,MAAa,uBAAwB,SAAQ,MAAM,CAAC,cAAc;IAC9D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAoC,EAAE,IAAmC;QAClI,OAAO,IAAI,uBAAuB,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC9E,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,uBAAuB,CAAC,YAAY,CAAC;IACxE,CAAC;IA6GD,YAAY,IAAY,EAAE,WAAwE,EAAE,IAAmC;QACnI,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAuD,CAAC;YACtE,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,EAAE,iBAAiB,CAAC;YAC/D,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,EAAE,eAAe,CAAC;YAC3D,cAAc,CAAC,oBAAoB,CAAC,GAAG,KAAK,EAAE,kBAAkB,CAAC;YACjE,cAAc,CAAC,oBAAoB,CAAC,GAAG,KAAK,EAAE,kBAAkB,CAAC;YACjE,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;YAC3C,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,EAAE,iBAAiB,CAAC;YAC/D,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;YACzD,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;YACzD,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;YAC3C,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;YACrD,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,EAAE,KAAK,CAAC;YACvC,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;YACrD,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,0BAA0B,CAAC,GAAG,KAAK,EAAE,wBAAwB,CAAC;YAC7E,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;YACzD,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;YACrD,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,EAAE,aAAa,CAAC;SAC1D;aAAM;YACH,MAAM,IAAI,GAAG,WAAsD,CAAC;YACpE,IAAI,IAAI,EAAE,OAAO,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC1C,MAAM,IAAI,KAAK,CAAC,qCAAqC,CAAC,CAAC;aAC1D;YACD,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,EAAE,iBAAiB,CAAC;YAC9D,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,EAAE,eAAe,CAAC;YAC1D,cAAc,CAAC,oBAAoB,CAAC,GAAG,IAAI,EAAE,kBAAkB,CAAC;YAChE,cAAc,CAAC,oBAAoB,CAAC,GAAG,IAAI,EAAE,kBAAkB,CAAC;YAChE,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,OAAO,CAAC;YAC1C,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,EAAE,iBAAiB,CAAC;YAC9D,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;YACxC,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,EAAE,cAAc,CAAC;YACxD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,EAAE,cAAc,CAAC;YACxD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,OAAO,CAAC;YAC1C,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,EAAE,YAAY,CAAC;YACpD,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;YAChD,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,EAAE,KAAK,CAAC;YACtC,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;YACxC,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,EAAE,YAAY,CAAC;YACpD,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;YAChD,cAAc,CAAC,0BAA0B,CAAC,GAAG,IAAI,EAAE,wBAAwB,CAAC;YAC5E,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,EAAE,cAAc,CAAC;YACxD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;YACxC,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,EAAE,YAAY,CAAC;YACpD,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,EAAE,aAAa,CAAC;SACzD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,uBAAuB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC5E,CAAC;;AAxML,0DAyMC;AA3LG,gBAAgB;AACO,oCAAY,GAAG,gEAAgE,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/spotinst",
|
|
3
|
-
"version": "3.131.0
|
|
3
|
+
"version": "3.131.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.131.0
|
|
26
|
+
"version": "3.131.0"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -3398,6 +3398,14 @@ export declare namespace azure {
|
|
|
3398
3398
|
* The amount of time to wait, in seconds, from the moment the instance has launched until monitoring of its health checks begins.
|
|
3399
3399
|
*/
|
|
3400
3400
|
gracePeriod?: pulumi.Input<number>;
|
|
3401
|
+
/**
|
|
3402
|
+
* The amount of time, in seconds, a node is allowed to remain unhealthy after the grace period has elapsed before Ocean automatically replaces it. Valid values are in range `[120-3600]`.
|
|
3403
|
+
*/
|
|
3404
|
+
healthCheckUnhealthyDurationBeforeReplacement?: pulumi.Input<number>;
|
|
3405
|
+
/**
|
|
3406
|
+
* Indicates whether Ocean automatically replaces nodes that remain in a NotReady or Unschedulable state. When `false`, unhealthy nodes are detected but not replaced. When `true`, unhealthy nodes are automatically replaced.
|
|
3407
|
+
*/
|
|
3408
|
+
shouldReplaceUnhealthyInstances?: pulumi.Input<boolean>;
|
|
3401
3409
|
}
|
|
3402
3410
|
interface OceanNpLinuxOsConfig {
|
|
3403
3411
|
/**
|
package/types/output.d.ts
CHANGED
|
@@ -3397,6 +3397,14 @@ export declare namespace azure {
|
|
|
3397
3397
|
* The amount of time to wait, in seconds, from the moment the instance has launched until monitoring of its health checks begins.
|
|
3398
3398
|
*/
|
|
3399
3399
|
gracePeriod?: number;
|
|
3400
|
+
/**
|
|
3401
|
+
* The amount of time, in seconds, a node is allowed to remain unhealthy after the grace period has elapsed before Ocean automatically replaces it. Valid values are in range `[120-3600]`.
|
|
3402
|
+
*/
|
|
3403
|
+
healthCheckUnhealthyDurationBeforeReplacement?: number;
|
|
3404
|
+
/**
|
|
3405
|
+
* Indicates whether Ocean automatically replaces nodes that remain in a NotReady or Unschedulable state. When `false`, unhealthy nodes are detected but not replaced. When `true`, unhealthy nodes are automatically replaced.
|
|
3406
|
+
*/
|
|
3407
|
+
shouldReplaceUnhealthyInstances?: boolean;
|
|
3400
3408
|
}
|
|
3401
3409
|
interface OceanNpLinuxOsConfig {
|
|
3402
3410
|
/**
|