@flyteorg/flyteidl 1.5.6 → 1.5.7
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
|
@@ -10521,6 +10521,9 @@ export namespace flyteidl {
|
|
|
10521
10521
|
|
|
10522
10522
|
/** SystemMetadata executionCluster */
|
|
10523
10523
|
executionCluster?: (string|null);
|
|
10524
|
+
|
|
10525
|
+
/** SystemMetadata namespace */
|
|
10526
|
+
namespace?: (string|null);
|
|
10524
10527
|
}
|
|
10525
10528
|
|
|
10526
10529
|
/** Represents a SystemMetadata. */
|
|
@@ -10535,6 +10538,9 @@ export namespace flyteidl {
|
|
|
10535
10538
|
/** SystemMetadata executionCluster. */
|
|
10536
10539
|
public executionCluster: string;
|
|
10537
10540
|
|
|
10541
|
+
/** SystemMetadata namespace. */
|
|
10542
|
+
public namespace: string;
|
|
10543
|
+
|
|
10538
10544
|
/**
|
|
10539
10545
|
* Creates a new SystemMetadata instance using the specified properties.
|
|
10540
10546
|
* @param [properties] Properties to set
|
package/gen/pb-js/flyteidl.js
CHANGED
|
@@ -25389,6 +25389,7 @@
|
|
|
25389
25389
|
* @memberof flyteidl.admin
|
|
25390
25390
|
* @interface ISystemMetadata
|
|
25391
25391
|
* @property {string|null} [executionCluster] SystemMetadata executionCluster
|
|
25392
|
+
* @property {string|null} [namespace] SystemMetadata namespace
|
|
25392
25393
|
*/
|
|
25393
25394
|
|
|
25394
25395
|
/**
|
|
@@ -25414,6 +25415,14 @@
|
|
|
25414
25415
|
*/
|
|
25415
25416
|
SystemMetadata.prototype.executionCluster = "";
|
|
25416
25417
|
|
|
25418
|
+
/**
|
|
25419
|
+
* SystemMetadata namespace.
|
|
25420
|
+
* @member {string} namespace
|
|
25421
|
+
* @memberof flyteidl.admin.SystemMetadata
|
|
25422
|
+
* @instance
|
|
25423
|
+
*/
|
|
25424
|
+
SystemMetadata.prototype.namespace = "";
|
|
25425
|
+
|
|
25417
25426
|
/**
|
|
25418
25427
|
* Creates a new SystemMetadata instance using the specified properties.
|
|
25419
25428
|
* @function create
|
|
@@ -25440,6 +25449,8 @@
|
|
|
25440
25449
|
writer = $Writer.create();
|
|
25441
25450
|
if (message.executionCluster != null && message.hasOwnProperty("executionCluster"))
|
|
25442
25451
|
writer.uint32(/* id 1, wireType 2 =*/10).string(message.executionCluster);
|
|
25452
|
+
if (message.namespace != null && message.hasOwnProperty("namespace"))
|
|
25453
|
+
writer.uint32(/* id 2, wireType 2 =*/18).string(message.namespace);
|
|
25443
25454
|
return writer;
|
|
25444
25455
|
};
|
|
25445
25456
|
|
|
@@ -25464,6 +25475,9 @@
|
|
|
25464
25475
|
case 1:
|
|
25465
25476
|
message.executionCluster = reader.string();
|
|
25466
25477
|
break;
|
|
25478
|
+
case 2:
|
|
25479
|
+
message.namespace = reader.string();
|
|
25480
|
+
break;
|
|
25467
25481
|
default:
|
|
25468
25482
|
reader.skipType(tag & 7);
|
|
25469
25483
|
break;
|
|
@@ -25486,6 +25500,9 @@
|
|
|
25486
25500
|
if (message.executionCluster != null && message.hasOwnProperty("executionCluster"))
|
|
25487
25501
|
if (!$util.isString(message.executionCluster))
|
|
25488
25502
|
return "executionCluster: string expected";
|
|
25503
|
+
if (message.namespace != null && message.hasOwnProperty("namespace"))
|
|
25504
|
+
if (!$util.isString(message.namespace))
|
|
25505
|
+
return "namespace: string expected";
|
|
25489
25506
|
return null;
|
|
25490
25507
|
};
|
|
25491
25508
|
|
package/package.json
CHANGED
|
@@ -190,6 +190,9 @@ message SystemMetadata {
|
|
|
190
190
|
|
|
191
191
|
// Which execution cluster this execution ran on.
|
|
192
192
|
string execution_cluster = 1;
|
|
193
|
+
|
|
194
|
+
// Which kubernetes namespace the execution ran under.
|
|
195
|
+
string namespace = 2;
|
|
193
196
|
}
|
|
194
197
|
|
|
195
198
|
// Represents attributes about an execution which are not required to launch the execution but are useful to record.
|