@flyteorg/flyteidl 1.16.4 → 1.16.5
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/gen/pb-js/flyteidl.d.ts
CHANGED
|
@@ -4601,6 +4601,9 @@ export namespace flyteidl {
|
|
|
4601
4601
|
|
|
4602
4602
|
/** ArrayNode boundInputs */
|
|
4603
4603
|
boundInputs?: (string[]|null);
|
|
4604
|
+
|
|
4605
|
+
/** ArrayNode runAllSubNodes */
|
|
4606
|
+
runAllSubNodes?: (boolean|null);
|
|
4604
4607
|
}
|
|
4605
4608
|
|
|
4606
4609
|
/** Represents an ArrayNode. */
|
|
@@ -4636,6 +4639,9 @@ export namespace flyteidl {
|
|
|
4636
4639
|
/** ArrayNode boundInputs. */
|
|
4637
4640
|
public boundInputs: string[];
|
|
4638
4641
|
|
|
4642
|
+
/** ArrayNode runAllSubNodes. */
|
|
4643
|
+
public runAllSubNodes: boolean;
|
|
4644
|
+
|
|
4639
4645
|
/** ArrayNode parallelismOption. */
|
|
4640
4646
|
public parallelismOption?: "parallelism";
|
|
4641
4647
|
|
package/gen/pb-js/flyteidl.js
CHANGED
|
@@ -11009,6 +11009,7 @@
|
|
|
11009
11009
|
* @property {google.protobuf.IBoolValue|null} [isOriginalSubNodeInterface] ArrayNode isOriginalSubNodeInterface
|
|
11010
11010
|
* @property {flyteidl.core.ArrayNode.DataMode|null} [dataMode] ArrayNode dataMode
|
|
11011
11011
|
* @property {Array.<string>|null} [boundInputs] ArrayNode boundInputs
|
|
11012
|
+
* @property {boolean|null} [runAllSubNodes] ArrayNode runAllSubNodes
|
|
11012
11013
|
*/
|
|
11013
11014
|
|
|
11014
11015
|
/**
|
|
@@ -11091,6 +11092,14 @@
|
|
|
11091
11092
|
*/
|
|
11092
11093
|
ArrayNode.prototype.boundInputs = $util.emptyArray;
|
|
11093
11094
|
|
|
11095
|
+
/**
|
|
11096
|
+
* ArrayNode runAllSubNodes.
|
|
11097
|
+
* @member {boolean} runAllSubNodes
|
|
11098
|
+
* @memberof flyteidl.core.ArrayNode
|
|
11099
|
+
* @instance
|
|
11100
|
+
*/
|
|
11101
|
+
ArrayNode.prototype.runAllSubNodes = false;
|
|
11102
|
+
|
|
11094
11103
|
// OneOf field names bound to virtual getters and setters
|
|
11095
11104
|
var $oneOfFields;
|
|
11096
11105
|
|
|
@@ -11157,6 +11166,8 @@
|
|
|
11157
11166
|
if (message.boundInputs != null && message.boundInputs.length)
|
|
11158
11167
|
for (var i = 0; i < message.boundInputs.length; ++i)
|
|
11159
11168
|
writer.uint32(/* id 8, wireType 2 =*/66).string(message.boundInputs[i]);
|
|
11169
|
+
if (message.runAllSubNodes != null && message.hasOwnProperty("runAllSubNodes"))
|
|
11170
|
+
writer.uint32(/* id 9, wireType 0 =*/72).bool(message.runAllSubNodes);
|
|
11160
11171
|
return writer;
|
|
11161
11172
|
};
|
|
11162
11173
|
|
|
@@ -11204,6 +11215,9 @@
|
|
|
11204
11215
|
message.boundInputs = [];
|
|
11205
11216
|
message.boundInputs.push(reader.string());
|
|
11206
11217
|
break;
|
|
11218
|
+
case 9:
|
|
11219
|
+
message.runAllSubNodes = reader.bool();
|
|
11220
|
+
break;
|
|
11207
11221
|
default:
|
|
11208
11222
|
reader.skipType(tag & 7);
|
|
11209
11223
|
break;
|
|
@@ -11274,6 +11288,9 @@
|
|
|
11274
11288
|
if (!$util.isString(message.boundInputs[i]))
|
|
11275
11289
|
return "boundInputs: string[] expected";
|
|
11276
11290
|
}
|
|
11291
|
+
if (message.runAllSubNodes != null && message.hasOwnProperty("runAllSubNodes"))
|
|
11292
|
+
if (typeof message.runAllSubNodes !== "boolean")
|
|
11293
|
+
return "runAllSubNodes: boolean expected";
|
|
11277
11294
|
return null;
|
|
11278
11295
|
};
|
|
11279
11296
|
|
package/package.json
CHANGED
|
@@ -170,6 +170,12 @@ message ArrayNode {
|
|
|
170
170
|
|
|
171
171
|
//+optional. Specifies input bindings that are not mapped over for the node.
|
|
172
172
|
repeated string bound_inputs = 8;
|
|
173
|
+
|
|
174
|
+
// +optional. If set to true, the ArrayNode will continue to run all sub-nodes even after the
|
|
175
|
+
// failure threshold has been met (i.e. it is no longer possible to meet min_successes or
|
|
176
|
+
// min_success_ratio). This is useful when you want to ensure all sub-nodes complete execution
|
|
177
|
+
// even if the overall array node will fail.
|
|
178
|
+
bool run_all_sub_nodes = 9;
|
|
173
179
|
}
|
|
174
180
|
|
|
175
181
|
// Defines extra information about the Node.
|