@flyteorg/flyteidl 1.4.0 → 1.5.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/gen/pb-js/flyteidl.d.ts +1074 -16
- package/gen/pb-js/flyteidl.js +2445 -2
- package/package.json +1 -1
- package/protos/flyteidl/admin/common.proto +8 -0
- package/protos/flyteidl/admin/execution.proto +17 -0
- package/protos/flyteidl/admin/node_execution.proto +11 -1
- package/protos/flyteidl/admin/task_execution.proto +17 -0
- package/protos/flyteidl/core/metrics.proto +36 -0
- package/protos/flyteidl/core/tasks.proto +26 -13
- package/protos/flyteidl/datacatalog/datacatalog.proto +24 -3
- package/protos/flyteidl/event/event.proto +31 -4
- package/protos/flyteidl/plugins/pytorch.proto +14 -0
- package/protos/flyteidl/service/admin.proto +10 -1
- package/protos/flyteidl/service/dataproxy.proto +40 -0
- package/protos/flyteidl/service/external_plugin_service.proto +74 -0
- package/protos/flyteidl/service/identity.proto +4 -0
package/gen/pb-js/flyteidl.d.ts
CHANGED
|
@@ -5104,6 +5104,9 @@ export namespace flyteidl {
|
|
|
5104
5104
|
|
|
5105
5105
|
/** TaskMetadata tags */
|
|
5106
5106
|
tags?: ({ [k: string]: string }|null);
|
|
5107
|
+
|
|
5108
|
+
/** TaskMetadata podTemplateName */
|
|
5109
|
+
podTemplateName?: (string|null);
|
|
5107
5110
|
}
|
|
5108
5111
|
|
|
5109
5112
|
/** Represents a TaskMetadata. */
|
|
@@ -5145,6 +5148,9 @@ export namespace flyteidl {
|
|
|
5145
5148
|
/** TaskMetadata tags. */
|
|
5146
5149
|
public tags: { [k: string]: string };
|
|
5147
5150
|
|
|
5151
|
+
/** TaskMetadata podTemplateName. */
|
|
5152
|
+
public podTemplateName: string;
|
|
5153
|
+
|
|
5148
5154
|
/** TaskMetadata interruptibleValue. */
|
|
5149
5155
|
public interruptibleValue?: "interruptible";
|
|
5150
5156
|
|
|
@@ -5629,6 +5635,9 @@ export namespace flyteidl {
|
|
|
5629
5635
|
|
|
5630
5636
|
/** K8sPod podSpec */
|
|
5631
5637
|
podSpec?: (google.protobuf.IStruct|null);
|
|
5638
|
+
|
|
5639
|
+
/** K8sPod dataConfig */
|
|
5640
|
+
dataConfig?: (flyteidl.core.IDataLoadingConfig|null);
|
|
5632
5641
|
}
|
|
5633
5642
|
|
|
5634
5643
|
/** Represents a K8sPod. */
|
|
@@ -5646,6 +5655,9 @@ export namespace flyteidl {
|
|
|
5646
5655
|
/** K8sPod podSpec. */
|
|
5647
5656
|
public podSpec?: (google.protobuf.IStruct|null);
|
|
5648
5657
|
|
|
5658
|
+
/** K8sPod dataConfig. */
|
|
5659
|
+
public dataConfig?: (flyteidl.core.IDataLoadingConfig|null);
|
|
5660
|
+
|
|
5649
5661
|
/**
|
|
5650
5662
|
* Creates a new K8sPod instance using the specified properties.
|
|
5651
5663
|
* @param [properties] Properties to set
|
|
@@ -6363,6 +6375,97 @@ export namespace flyteidl {
|
|
|
6363
6375
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
6364
6376
|
}
|
|
6365
6377
|
|
|
6378
|
+
/** Properties of a Span. */
|
|
6379
|
+
interface ISpan {
|
|
6380
|
+
|
|
6381
|
+
/** Span startTime */
|
|
6382
|
+
startTime?: (google.protobuf.ITimestamp|null);
|
|
6383
|
+
|
|
6384
|
+
/** Span endTime */
|
|
6385
|
+
endTime?: (google.protobuf.ITimestamp|null);
|
|
6386
|
+
|
|
6387
|
+
/** Span workflowId */
|
|
6388
|
+
workflowId?: (flyteidl.core.IWorkflowExecutionIdentifier|null);
|
|
6389
|
+
|
|
6390
|
+
/** Span nodeId */
|
|
6391
|
+
nodeId?: (flyteidl.core.INodeExecutionIdentifier|null);
|
|
6392
|
+
|
|
6393
|
+
/** Span taskId */
|
|
6394
|
+
taskId?: (flyteidl.core.ITaskExecutionIdentifier|null);
|
|
6395
|
+
|
|
6396
|
+
/** Span operationId */
|
|
6397
|
+
operationId?: (string|null);
|
|
6398
|
+
|
|
6399
|
+
/** Span spans */
|
|
6400
|
+
spans?: (flyteidl.core.ISpan[]|null);
|
|
6401
|
+
}
|
|
6402
|
+
|
|
6403
|
+
/** Represents a Span. */
|
|
6404
|
+
class Span implements ISpan {
|
|
6405
|
+
|
|
6406
|
+
/**
|
|
6407
|
+
* Constructs a new Span.
|
|
6408
|
+
* @param [properties] Properties to set
|
|
6409
|
+
*/
|
|
6410
|
+
constructor(properties?: flyteidl.core.ISpan);
|
|
6411
|
+
|
|
6412
|
+
/** Span startTime. */
|
|
6413
|
+
public startTime?: (google.protobuf.ITimestamp|null);
|
|
6414
|
+
|
|
6415
|
+
/** Span endTime. */
|
|
6416
|
+
public endTime?: (google.protobuf.ITimestamp|null);
|
|
6417
|
+
|
|
6418
|
+
/** Span workflowId. */
|
|
6419
|
+
public workflowId?: (flyteidl.core.IWorkflowExecutionIdentifier|null);
|
|
6420
|
+
|
|
6421
|
+
/** Span nodeId. */
|
|
6422
|
+
public nodeId?: (flyteidl.core.INodeExecutionIdentifier|null);
|
|
6423
|
+
|
|
6424
|
+
/** Span taskId. */
|
|
6425
|
+
public taskId?: (flyteidl.core.ITaskExecutionIdentifier|null);
|
|
6426
|
+
|
|
6427
|
+
/** Span operationId. */
|
|
6428
|
+
public operationId: string;
|
|
6429
|
+
|
|
6430
|
+
/** Span spans. */
|
|
6431
|
+
public spans: flyteidl.core.ISpan[];
|
|
6432
|
+
|
|
6433
|
+
/** Span id. */
|
|
6434
|
+
public id?: ("workflowId"|"nodeId"|"taskId"|"operationId");
|
|
6435
|
+
|
|
6436
|
+
/**
|
|
6437
|
+
* Creates a new Span instance using the specified properties.
|
|
6438
|
+
* @param [properties] Properties to set
|
|
6439
|
+
* @returns Span instance
|
|
6440
|
+
*/
|
|
6441
|
+
public static create(properties?: flyteidl.core.ISpan): flyteidl.core.Span;
|
|
6442
|
+
|
|
6443
|
+
/**
|
|
6444
|
+
* Encodes the specified Span message. Does not implicitly {@link flyteidl.core.Span.verify|verify} messages.
|
|
6445
|
+
* @param message Span message or plain object to encode
|
|
6446
|
+
* @param [writer] Writer to encode to
|
|
6447
|
+
* @returns Writer
|
|
6448
|
+
*/
|
|
6449
|
+
public static encode(message: flyteidl.core.ISpan, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
6450
|
+
|
|
6451
|
+
/**
|
|
6452
|
+
* Decodes a Span message from the specified reader or buffer.
|
|
6453
|
+
* @param reader Reader or buffer to decode from
|
|
6454
|
+
* @param [length] Message length if known beforehand
|
|
6455
|
+
* @returns Span
|
|
6456
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
6457
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
6458
|
+
*/
|
|
6459
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.Span;
|
|
6460
|
+
|
|
6461
|
+
/**
|
|
6462
|
+
* Verifies a Span message.
|
|
6463
|
+
* @param message Plain object to verify
|
|
6464
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
6465
|
+
*/
|
|
6466
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
6467
|
+
}
|
|
6468
|
+
|
|
6366
6469
|
/** Properties of a WorkflowClosure. */
|
|
6367
6470
|
interface IWorkflowClosure {
|
|
6368
6471
|
|
|
@@ -6534,6 +6637,9 @@ export namespace flyteidl {
|
|
|
6534
6637
|
/** NodeExecutionEvent inputUri */
|
|
6535
6638
|
inputUri?: (string|null);
|
|
6536
6639
|
|
|
6640
|
+
/** NodeExecutionEvent inputData */
|
|
6641
|
+
inputData?: (flyteidl.core.ILiteralMap|null);
|
|
6642
|
+
|
|
6537
6643
|
/** NodeExecutionEvent outputUri */
|
|
6538
6644
|
outputUri?: (string|null);
|
|
6539
6645
|
|
|
@@ -6575,6 +6681,9 @@ export namespace flyteidl {
|
|
|
6575
6681
|
|
|
6576
6682
|
/** NodeExecutionEvent deckUri */
|
|
6577
6683
|
deckUri?: (string|null);
|
|
6684
|
+
|
|
6685
|
+
/** NodeExecutionEvent reportedAt */
|
|
6686
|
+
reportedAt?: (google.protobuf.ITimestamp|null);
|
|
6578
6687
|
}
|
|
6579
6688
|
|
|
6580
6689
|
/** Represents a NodeExecutionEvent. */
|
|
@@ -6601,6 +6710,9 @@ export namespace flyteidl {
|
|
|
6601
6710
|
/** NodeExecutionEvent inputUri. */
|
|
6602
6711
|
public inputUri: string;
|
|
6603
6712
|
|
|
6713
|
+
/** NodeExecutionEvent inputData. */
|
|
6714
|
+
public inputData?: (flyteidl.core.ILiteralMap|null);
|
|
6715
|
+
|
|
6604
6716
|
/** NodeExecutionEvent outputUri. */
|
|
6605
6717
|
public outputUri: string;
|
|
6606
6718
|
|
|
@@ -6643,6 +6755,12 @@ export namespace flyteidl {
|
|
|
6643
6755
|
/** NodeExecutionEvent deckUri. */
|
|
6644
6756
|
public deckUri: string;
|
|
6645
6757
|
|
|
6758
|
+
/** NodeExecutionEvent reportedAt. */
|
|
6759
|
+
public reportedAt?: (google.protobuf.ITimestamp|null);
|
|
6760
|
+
|
|
6761
|
+
/** NodeExecutionEvent inputValue. */
|
|
6762
|
+
public inputValue?: ("inputUri"|"inputData");
|
|
6763
|
+
|
|
6646
6764
|
/** NodeExecutionEvent outputResult. */
|
|
6647
6765
|
public outputResult?: ("outputUri"|"error"|"outputData");
|
|
6648
6766
|
|
|
@@ -6818,6 +6936,9 @@ export namespace flyteidl {
|
|
|
6818
6936
|
|
|
6819
6937
|
/** DynamicWorkflowNodeMetadata compiledWorkflow */
|
|
6820
6938
|
compiledWorkflow?: (flyteidl.core.ICompiledWorkflowClosure|null);
|
|
6939
|
+
|
|
6940
|
+
/** DynamicWorkflowNodeMetadata dynamicJobSpecUri */
|
|
6941
|
+
dynamicJobSpecUri?: (string|null);
|
|
6821
6942
|
}
|
|
6822
6943
|
|
|
6823
6944
|
/** Represents a DynamicWorkflowNodeMetadata. */
|
|
@@ -6835,6 +6956,9 @@ export namespace flyteidl {
|
|
|
6835
6956
|
/** DynamicWorkflowNodeMetadata compiledWorkflow. */
|
|
6836
6957
|
public compiledWorkflow?: (flyteidl.core.ICompiledWorkflowClosure|null);
|
|
6837
6958
|
|
|
6959
|
+
/** DynamicWorkflowNodeMetadata dynamicJobSpecUri. */
|
|
6960
|
+
public dynamicJobSpecUri: string;
|
|
6961
|
+
|
|
6838
6962
|
/**
|
|
6839
6963
|
* Creates a new DynamicWorkflowNodeMetadata instance using the specified properties.
|
|
6840
6964
|
* @param [properties] Properties to set
|
|
@@ -6999,6 +7123,9 @@ export namespace flyteidl {
|
|
|
6999
7123
|
/** TaskExecutionEvent inputUri */
|
|
7000
7124
|
inputUri?: (string|null);
|
|
7001
7125
|
|
|
7126
|
+
/** TaskExecutionEvent inputData */
|
|
7127
|
+
inputData?: (flyteidl.core.ILiteralMap|null);
|
|
7128
|
+
|
|
7002
7129
|
/** TaskExecutionEvent outputUri */
|
|
7003
7130
|
outputUri?: (string|null);
|
|
7004
7131
|
|
|
@@ -7025,6 +7152,9 @@ export namespace flyteidl {
|
|
|
7025
7152
|
|
|
7026
7153
|
/** TaskExecutionEvent eventVersion */
|
|
7027
7154
|
eventVersion?: (number|null);
|
|
7155
|
+
|
|
7156
|
+
/** TaskExecutionEvent reportedAt */
|
|
7157
|
+
reportedAt?: (google.protobuf.ITimestamp|null);
|
|
7028
7158
|
}
|
|
7029
7159
|
|
|
7030
7160
|
/** Represents a TaskExecutionEvent. */
|
|
@@ -7060,6 +7190,9 @@ export namespace flyteidl {
|
|
|
7060
7190
|
/** TaskExecutionEvent inputUri. */
|
|
7061
7191
|
public inputUri: string;
|
|
7062
7192
|
|
|
7193
|
+
/** TaskExecutionEvent inputData. */
|
|
7194
|
+
public inputData?: (flyteidl.core.ILiteralMap|null);
|
|
7195
|
+
|
|
7063
7196
|
/** TaskExecutionEvent outputUri. */
|
|
7064
7197
|
public outputUri: string;
|
|
7065
7198
|
|
|
@@ -7087,6 +7220,12 @@ export namespace flyteidl {
|
|
|
7087
7220
|
/** TaskExecutionEvent eventVersion. */
|
|
7088
7221
|
public eventVersion: number;
|
|
7089
7222
|
|
|
7223
|
+
/** TaskExecutionEvent reportedAt. */
|
|
7224
|
+
public reportedAt?: (google.protobuf.ITimestamp|null);
|
|
7225
|
+
|
|
7226
|
+
/** TaskExecutionEvent inputValue. */
|
|
7227
|
+
public inputValue?: ("inputUri"|"inputData");
|
|
7228
|
+
|
|
7090
7229
|
/** TaskExecutionEvent outputResult. */
|
|
7091
7230
|
public outputResult?: ("outputUri"|"error"|"outputData");
|
|
7092
7231
|
|
|
@@ -8747,6 +8886,70 @@ export namespace flyteidl {
|
|
|
8747
8886
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
8748
8887
|
}
|
|
8749
8888
|
|
|
8889
|
+
/** Properties of a FlyteURLs. */
|
|
8890
|
+
interface IFlyteURLs {
|
|
8891
|
+
|
|
8892
|
+
/** FlyteURLs inputs */
|
|
8893
|
+
inputs?: (string|null);
|
|
8894
|
+
|
|
8895
|
+
/** FlyteURLs outputs */
|
|
8896
|
+
outputs?: (string|null);
|
|
8897
|
+
|
|
8898
|
+
/** FlyteURLs deck */
|
|
8899
|
+
deck?: (string|null);
|
|
8900
|
+
}
|
|
8901
|
+
|
|
8902
|
+
/** Represents a FlyteURLs. */
|
|
8903
|
+
class FlyteURLs implements IFlyteURLs {
|
|
8904
|
+
|
|
8905
|
+
/**
|
|
8906
|
+
* Constructs a new FlyteURLs.
|
|
8907
|
+
* @param [properties] Properties to set
|
|
8908
|
+
*/
|
|
8909
|
+
constructor(properties?: flyteidl.admin.IFlyteURLs);
|
|
8910
|
+
|
|
8911
|
+
/** FlyteURLs inputs. */
|
|
8912
|
+
public inputs: string;
|
|
8913
|
+
|
|
8914
|
+
/** FlyteURLs outputs. */
|
|
8915
|
+
public outputs: string;
|
|
8916
|
+
|
|
8917
|
+
/** FlyteURLs deck. */
|
|
8918
|
+
public deck: string;
|
|
8919
|
+
|
|
8920
|
+
/**
|
|
8921
|
+
* Creates a new FlyteURLs instance using the specified properties.
|
|
8922
|
+
* @param [properties] Properties to set
|
|
8923
|
+
* @returns FlyteURLs instance
|
|
8924
|
+
*/
|
|
8925
|
+
public static create(properties?: flyteidl.admin.IFlyteURLs): flyteidl.admin.FlyteURLs;
|
|
8926
|
+
|
|
8927
|
+
/**
|
|
8928
|
+
* Encodes the specified FlyteURLs message. Does not implicitly {@link flyteidl.admin.FlyteURLs.verify|verify} messages.
|
|
8929
|
+
* @param message FlyteURLs message or plain object to encode
|
|
8930
|
+
* @param [writer] Writer to encode to
|
|
8931
|
+
* @returns Writer
|
|
8932
|
+
*/
|
|
8933
|
+
public static encode(message: flyteidl.admin.IFlyteURLs, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
8934
|
+
|
|
8935
|
+
/**
|
|
8936
|
+
* Decodes a FlyteURLs message from the specified reader or buffer.
|
|
8937
|
+
* @param reader Reader or buffer to decode from
|
|
8938
|
+
* @param [length] Message length if known beforehand
|
|
8939
|
+
* @returns FlyteURLs
|
|
8940
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
8941
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
8942
|
+
*/
|
|
8943
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.FlyteURLs;
|
|
8944
|
+
|
|
8945
|
+
/**
|
|
8946
|
+
* Verifies a FlyteURLs message.
|
|
8947
|
+
* @param message Plain object to verify
|
|
8948
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
8949
|
+
*/
|
|
8950
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
8951
|
+
}
|
|
8952
|
+
|
|
8750
8953
|
/** Properties of a DescriptionEntity. */
|
|
8751
8954
|
interface IDescriptionEntity {
|
|
8752
8955
|
|
|
@@ -10999,6 +11202,116 @@ export namespace flyteidl {
|
|
|
10999
11202
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
11000
11203
|
}
|
|
11001
11204
|
|
|
11205
|
+
/** Properties of a WorkflowExecutionGetMetricsRequest. */
|
|
11206
|
+
interface IWorkflowExecutionGetMetricsRequest {
|
|
11207
|
+
|
|
11208
|
+
/** WorkflowExecutionGetMetricsRequest id */
|
|
11209
|
+
id?: (flyteidl.core.IWorkflowExecutionIdentifier|null);
|
|
11210
|
+
|
|
11211
|
+
/** WorkflowExecutionGetMetricsRequest depth */
|
|
11212
|
+
depth?: (number|null);
|
|
11213
|
+
}
|
|
11214
|
+
|
|
11215
|
+
/** Represents a WorkflowExecutionGetMetricsRequest. */
|
|
11216
|
+
class WorkflowExecutionGetMetricsRequest implements IWorkflowExecutionGetMetricsRequest {
|
|
11217
|
+
|
|
11218
|
+
/**
|
|
11219
|
+
* Constructs a new WorkflowExecutionGetMetricsRequest.
|
|
11220
|
+
* @param [properties] Properties to set
|
|
11221
|
+
*/
|
|
11222
|
+
constructor(properties?: flyteidl.admin.IWorkflowExecutionGetMetricsRequest);
|
|
11223
|
+
|
|
11224
|
+
/** WorkflowExecutionGetMetricsRequest id. */
|
|
11225
|
+
public id?: (flyteidl.core.IWorkflowExecutionIdentifier|null);
|
|
11226
|
+
|
|
11227
|
+
/** WorkflowExecutionGetMetricsRequest depth. */
|
|
11228
|
+
public depth: number;
|
|
11229
|
+
|
|
11230
|
+
/**
|
|
11231
|
+
* Creates a new WorkflowExecutionGetMetricsRequest instance using the specified properties.
|
|
11232
|
+
* @param [properties] Properties to set
|
|
11233
|
+
* @returns WorkflowExecutionGetMetricsRequest instance
|
|
11234
|
+
*/
|
|
11235
|
+
public static create(properties?: flyteidl.admin.IWorkflowExecutionGetMetricsRequest): flyteidl.admin.WorkflowExecutionGetMetricsRequest;
|
|
11236
|
+
|
|
11237
|
+
/**
|
|
11238
|
+
* Encodes the specified WorkflowExecutionGetMetricsRequest message. Does not implicitly {@link flyteidl.admin.WorkflowExecutionGetMetricsRequest.verify|verify} messages.
|
|
11239
|
+
* @param message WorkflowExecutionGetMetricsRequest message or plain object to encode
|
|
11240
|
+
* @param [writer] Writer to encode to
|
|
11241
|
+
* @returns Writer
|
|
11242
|
+
*/
|
|
11243
|
+
public static encode(message: flyteidl.admin.IWorkflowExecutionGetMetricsRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
11244
|
+
|
|
11245
|
+
/**
|
|
11246
|
+
* Decodes a WorkflowExecutionGetMetricsRequest message from the specified reader or buffer.
|
|
11247
|
+
* @param reader Reader or buffer to decode from
|
|
11248
|
+
* @param [length] Message length if known beforehand
|
|
11249
|
+
* @returns WorkflowExecutionGetMetricsRequest
|
|
11250
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
11251
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
11252
|
+
*/
|
|
11253
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.WorkflowExecutionGetMetricsRequest;
|
|
11254
|
+
|
|
11255
|
+
/**
|
|
11256
|
+
* Verifies a WorkflowExecutionGetMetricsRequest message.
|
|
11257
|
+
* @param message Plain object to verify
|
|
11258
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
11259
|
+
*/
|
|
11260
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
11261
|
+
}
|
|
11262
|
+
|
|
11263
|
+
/** Properties of a WorkflowExecutionGetMetricsResponse. */
|
|
11264
|
+
interface IWorkflowExecutionGetMetricsResponse {
|
|
11265
|
+
|
|
11266
|
+
/** WorkflowExecutionGetMetricsResponse span */
|
|
11267
|
+
span?: (flyteidl.core.ISpan|null);
|
|
11268
|
+
}
|
|
11269
|
+
|
|
11270
|
+
/** Represents a WorkflowExecutionGetMetricsResponse. */
|
|
11271
|
+
class WorkflowExecutionGetMetricsResponse implements IWorkflowExecutionGetMetricsResponse {
|
|
11272
|
+
|
|
11273
|
+
/**
|
|
11274
|
+
* Constructs a new WorkflowExecutionGetMetricsResponse.
|
|
11275
|
+
* @param [properties] Properties to set
|
|
11276
|
+
*/
|
|
11277
|
+
constructor(properties?: flyteidl.admin.IWorkflowExecutionGetMetricsResponse);
|
|
11278
|
+
|
|
11279
|
+
/** WorkflowExecutionGetMetricsResponse span. */
|
|
11280
|
+
public span?: (flyteidl.core.ISpan|null);
|
|
11281
|
+
|
|
11282
|
+
/**
|
|
11283
|
+
* Creates a new WorkflowExecutionGetMetricsResponse instance using the specified properties.
|
|
11284
|
+
* @param [properties] Properties to set
|
|
11285
|
+
* @returns WorkflowExecutionGetMetricsResponse instance
|
|
11286
|
+
*/
|
|
11287
|
+
public static create(properties?: flyteidl.admin.IWorkflowExecutionGetMetricsResponse): flyteidl.admin.WorkflowExecutionGetMetricsResponse;
|
|
11288
|
+
|
|
11289
|
+
/**
|
|
11290
|
+
* Encodes the specified WorkflowExecutionGetMetricsResponse message. Does not implicitly {@link flyteidl.admin.WorkflowExecutionGetMetricsResponse.verify|verify} messages.
|
|
11291
|
+
* @param message WorkflowExecutionGetMetricsResponse message or plain object to encode
|
|
11292
|
+
* @param [writer] Writer to encode to
|
|
11293
|
+
* @returns Writer
|
|
11294
|
+
*/
|
|
11295
|
+
public static encode(message: flyteidl.admin.IWorkflowExecutionGetMetricsResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
11296
|
+
|
|
11297
|
+
/**
|
|
11298
|
+
* Decodes a WorkflowExecutionGetMetricsResponse message from the specified reader or buffer.
|
|
11299
|
+
* @param reader Reader or buffer to decode from
|
|
11300
|
+
* @param [length] Message length if known beforehand
|
|
11301
|
+
* @returns WorkflowExecutionGetMetricsResponse
|
|
11302
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
11303
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
11304
|
+
*/
|
|
11305
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.WorkflowExecutionGetMetricsResponse;
|
|
11306
|
+
|
|
11307
|
+
/**
|
|
11308
|
+
* Verifies a WorkflowExecutionGetMetricsResponse message.
|
|
11309
|
+
* @param message Plain object to verify
|
|
11310
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
11311
|
+
*/
|
|
11312
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
11313
|
+
}
|
|
11314
|
+
|
|
11002
11315
|
/** Properties of a LaunchPlanCreateRequest. */
|
|
11003
11316
|
interface ILaunchPlanCreateRequest {
|
|
11004
11317
|
|
|
@@ -13222,6 +13535,9 @@ export namespace flyteidl {
|
|
|
13222
13535
|
|
|
13223
13536
|
/** NodeExecutionClosure deckUri */
|
|
13224
13537
|
deckUri?: (string|null);
|
|
13538
|
+
|
|
13539
|
+
/** NodeExecutionClosure dynamicJobSpecUri */
|
|
13540
|
+
dynamicJobSpecUri?: (string|null);
|
|
13225
13541
|
}
|
|
13226
13542
|
|
|
13227
13543
|
/** Represents a NodeExecutionClosure. */
|
|
@@ -13266,6 +13582,9 @@ export namespace flyteidl {
|
|
|
13266
13582
|
/** NodeExecutionClosure deckUri. */
|
|
13267
13583
|
public deckUri: string;
|
|
13268
13584
|
|
|
13585
|
+
/** NodeExecutionClosure dynamicJobSpecUri. */
|
|
13586
|
+
public dynamicJobSpecUri: string;
|
|
13587
|
+
|
|
13269
13588
|
/** NodeExecutionClosure outputResult. */
|
|
13270
13589
|
public outputResult?: ("outputUri"|"error"|"outputData");
|
|
13271
13590
|
|
|
@@ -13429,6 +13748,9 @@ export namespace flyteidl {
|
|
|
13429
13748
|
|
|
13430
13749
|
/** DynamicWorkflowNodeMetadata compiledWorkflow */
|
|
13431
13750
|
compiledWorkflow?: (flyteidl.core.ICompiledWorkflowClosure|null);
|
|
13751
|
+
|
|
13752
|
+
/** DynamicWorkflowNodeMetadata dynamicJobSpecUri */
|
|
13753
|
+
dynamicJobSpecUri?: (string|null);
|
|
13432
13754
|
}
|
|
13433
13755
|
|
|
13434
13756
|
/** Represents a DynamicWorkflowNodeMetadata. */
|
|
@@ -13446,6 +13768,9 @@ export namespace flyteidl {
|
|
|
13446
13768
|
/** DynamicWorkflowNodeMetadata compiledWorkflow. */
|
|
13447
13769
|
public compiledWorkflow?: (flyteidl.core.ICompiledWorkflowClosure|null);
|
|
13448
13770
|
|
|
13771
|
+
/** DynamicWorkflowNodeMetadata dynamicJobSpecUri. */
|
|
13772
|
+
public dynamicJobSpecUri: string;
|
|
13773
|
+
|
|
13449
13774
|
/**
|
|
13450
13775
|
* Creates a new DynamicWorkflowNodeMetadata instance using the specified properties.
|
|
13451
13776
|
* @param [properties] Properties to set
|
|
@@ -13548,6 +13873,9 @@ export namespace flyteidl {
|
|
|
13548
13873
|
|
|
13549
13874
|
/** NodeExecutionGetDataResponse dynamicWorkflow */
|
|
13550
13875
|
dynamicWorkflow?: (flyteidl.admin.IDynamicWorkflowNodeMetadata|null);
|
|
13876
|
+
|
|
13877
|
+
/** NodeExecutionGetDataResponse flyteUrls */
|
|
13878
|
+
flyteUrls?: (flyteidl.admin.IFlyteURLs|null);
|
|
13551
13879
|
}
|
|
13552
13880
|
|
|
13553
13881
|
/** Represents a NodeExecutionGetDataResponse. */
|
|
@@ -13574,6 +13902,9 @@ export namespace flyteidl {
|
|
|
13574
13902
|
/** NodeExecutionGetDataResponse dynamicWorkflow. */
|
|
13575
13903
|
public dynamicWorkflow?: (flyteidl.admin.IDynamicWorkflowNodeMetadata|null);
|
|
13576
13904
|
|
|
13905
|
+
/** NodeExecutionGetDataResponse flyteUrls. */
|
|
13906
|
+
public flyteUrls?: (flyteidl.admin.IFlyteURLs|null);
|
|
13907
|
+
|
|
13577
13908
|
/**
|
|
13578
13909
|
* Creates a new NodeExecutionGetDataResponse instance using the specified properties.
|
|
13579
13910
|
* @param [properties] Properties to set
|
|
@@ -15859,6 +16190,9 @@ export namespace flyteidl {
|
|
|
15859
16190
|
|
|
15860
16191
|
/** TaskExecutionClosure eventVersion */
|
|
15861
16192
|
eventVersion?: (number|null);
|
|
16193
|
+
|
|
16194
|
+
/** TaskExecutionClosure reasons */
|
|
16195
|
+
reasons?: (flyteidl.admin.IReason[]|null);
|
|
15862
16196
|
}
|
|
15863
16197
|
|
|
15864
16198
|
/** Represents a TaskExecutionClosure. */
|
|
@@ -15912,6 +16246,9 @@ export namespace flyteidl {
|
|
|
15912
16246
|
/** TaskExecutionClosure eventVersion. */
|
|
15913
16247
|
public eventVersion: number;
|
|
15914
16248
|
|
|
16249
|
+
/** TaskExecutionClosure reasons. */
|
|
16250
|
+
public reasons: flyteidl.admin.IReason[];
|
|
16251
|
+
|
|
15915
16252
|
/** TaskExecutionClosure outputResult. */
|
|
15916
16253
|
public outputResult?: ("outputUri"|"error"|"outputData");
|
|
15917
16254
|
|
|
@@ -15948,6 +16285,64 @@ export namespace flyteidl {
|
|
|
15948
16285
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
15949
16286
|
}
|
|
15950
16287
|
|
|
16288
|
+
/** Properties of a Reason. */
|
|
16289
|
+
interface IReason {
|
|
16290
|
+
|
|
16291
|
+
/** Reason occurredAt */
|
|
16292
|
+
occurredAt?: (google.protobuf.ITimestamp|null);
|
|
16293
|
+
|
|
16294
|
+
/** Reason message */
|
|
16295
|
+
message?: (string|null);
|
|
16296
|
+
}
|
|
16297
|
+
|
|
16298
|
+
/** Represents a Reason. */
|
|
16299
|
+
class Reason implements IReason {
|
|
16300
|
+
|
|
16301
|
+
/**
|
|
16302
|
+
* Constructs a new Reason.
|
|
16303
|
+
* @param [properties] Properties to set
|
|
16304
|
+
*/
|
|
16305
|
+
constructor(properties?: flyteidl.admin.IReason);
|
|
16306
|
+
|
|
16307
|
+
/** Reason occurredAt. */
|
|
16308
|
+
public occurredAt?: (google.protobuf.ITimestamp|null);
|
|
16309
|
+
|
|
16310
|
+
/** Reason message. */
|
|
16311
|
+
public message: string;
|
|
16312
|
+
|
|
16313
|
+
/**
|
|
16314
|
+
* Creates a new Reason instance using the specified properties.
|
|
16315
|
+
* @param [properties] Properties to set
|
|
16316
|
+
* @returns Reason instance
|
|
16317
|
+
*/
|
|
16318
|
+
public static create(properties?: flyteidl.admin.IReason): flyteidl.admin.Reason;
|
|
16319
|
+
|
|
16320
|
+
/**
|
|
16321
|
+
* Encodes the specified Reason message. Does not implicitly {@link flyteidl.admin.Reason.verify|verify} messages.
|
|
16322
|
+
* @param message Reason message or plain object to encode
|
|
16323
|
+
* @param [writer] Writer to encode to
|
|
16324
|
+
* @returns Writer
|
|
16325
|
+
*/
|
|
16326
|
+
public static encode(message: flyteidl.admin.IReason, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
16327
|
+
|
|
16328
|
+
/**
|
|
16329
|
+
* Decodes a Reason message from the specified reader or buffer.
|
|
16330
|
+
* @param reader Reader or buffer to decode from
|
|
16331
|
+
* @param [length] Message length if known beforehand
|
|
16332
|
+
* @returns Reason
|
|
16333
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
16334
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
16335
|
+
*/
|
|
16336
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.Reason;
|
|
16337
|
+
|
|
16338
|
+
/**
|
|
16339
|
+
* Verifies a Reason message.
|
|
16340
|
+
* @param message Plain object to verify
|
|
16341
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
16342
|
+
*/
|
|
16343
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
16344
|
+
}
|
|
16345
|
+
|
|
15951
16346
|
/** Properties of a TaskExecutionGetDataRequest. */
|
|
15952
16347
|
interface ITaskExecutionGetDataRequest {
|
|
15953
16348
|
|
|
@@ -16014,6 +16409,9 @@ export namespace flyteidl {
|
|
|
16014
16409
|
|
|
16015
16410
|
/** TaskExecutionGetDataResponse fullOutputs */
|
|
16016
16411
|
fullOutputs?: (flyteidl.core.ILiteralMap|null);
|
|
16412
|
+
|
|
16413
|
+
/** TaskExecutionGetDataResponse flyteUrls */
|
|
16414
|
+
flyteUrls?: (flyteidl.admin.IFlyteURLs|null);
|
|
16017
16415
|
}
|
|
16018
16416
|
|
|
16019
16417
|
/** Represents a TaskExecutionGetDataResponse. */
|
|
@@ -16037,6 +16435,9 @@ export namespace flyteidl {
|
|
|
16037
16435
|
/** TaskExecutionGetDataResponse fullOutputs. */
|
|
16038
16436
|
public fullOutputs?: (flyteidl.core.ILiteralMap|null);
|
|
16039
16437
|
|
|
16438
|
+
/** TaskExecutionGetDataResponse flyteUrls. */
|
|
16439
|
+
public flyteUrls?: (flyteidl.admin.IFlyteURLs|null);
|
|
16440
|
+
|
|
16040
16441
|
/**
|
|
16041
16442
|
* Creates a new TaskExecutionGetDataResponse instance using the specified properties.
|
|
16042
16443
|
* @param [properties] Properties to set
|
|
@@ -17902,6 +18303,20 @@ export namespace flyteidl {
|
|
|
17902
18303
|
* @returns Promise
|
|
17903
18304
|
*/
|
|
17904
18305
|
public listDescriptionEntities(request: flyteidl.admin.IDescriptionEntityListRequest): Promise<flyteidl.admin.DescriptionEntityList>;
|
|
18306
|
+
|
|
18307
|
+
/**
|
|
18308
|
+
* Calls GetExecutionMetrics.
|
|
18309
|
+
* @param request WorkflowExecutionGetMetricsRequest message or plain object
|
|
18310
|
+
* @param callback Node-style callback called with the error, if any, and WorkflowExecutionGetMetricsResponse
|
|
18311
|
+
*/
|
|
18312
|
+
public getExecutionMetrics(request: flyteidl.admin.IWorkflowExecutionGetMetricsRequest, callback: flyteidl.service.AdminService.GetExecutionMetricsCallback): void;
|
|
18313
|
+
|
|
18314
|
+
/**
|
|
18315
|
+
* Calls GetExecutionMetrics.
|
|
18316
|
+
* @param request WorkflowExecutionGetMetricsRequest message or plain object
|
|
18317
|
+
* @returns Promise
|
|
18318
|
+
*/
|
|
18319
|
+
public getExecutionMetrics(request: flyteidl.admin.IWorkflowExecutionGetMetricsRequest): Promise<flyteidl.admin.WorkflowExecutionGetMetricsResponse>;
|
|
17905
18320
|
}
|
|
17906
18321
|
|
|
17907
18322
|
namespace AdminService {
|
|
@@ -18269,6 +18684,13 @@ export namespace flyteidl {
|
|
|
18269
18684
|
* @param [response] DescriptionEntityList
|
|
18270
18685
|
*/
|
|
18271
18686
|
type ListDescriptionEntitiesCallback = (error: (Error|null), response?: flyteidl.admin.DescriptionEntityList) => void;
|
|
18687
|
+
|
|
18688
|
+
/**
|
|
18689
|
+
* Callback as used by {@link flyteidl.service.AdminService#getExecutionMetrics}.
|
|
18690
|
+
* @param error Error, if any
|
|
18691
|
+
* @param [response] WorkflowExecutionGetMetricsResponse
|
|
18692
|
+
*/
|
|
18693
|
+
type GetExecutionMetricsCallback = (error: (Error|null), response?: flyteidl.admin.WorkflowExecutionGetMetricsResponse) => void;
|
|
18272
18694
|
}
|
|
18273
18695
|
|
|
18274
18696
|
/** Properties of a OAuth2MetadataRequest. */
|
|
@@ -18954,6 +19376,9 @@ export namespace flyteidl {
|
|
|
18954
19376
|
|
|
18955
19377
|
/** CreateDownloadLinkResponse expiresAt */
|
|
18956
19378
|
expiresAt?: (google.protobuf.ITimestamp|null);
|
|
19379
|
+
|
|
19380
|
+
/** CreateDownloadLinkResponse preSignedUrls */
|
|
19381
|
+
preSignedUrls?: (flyteidl.service.IPreSignedURLs|null);
|
|
18957
19382
|
}
|
|
18958
19383
|
|
|
18959
19384
|
/** Represents a CreateDownloadLinkResponse. */
|
|
@@ -18971,6 +19396,9 @@ export namespace flyteidl {
|
|
|
18971
19396
|
/** CreateDownloadLinkResponse expiresAt. */
|
|
18972
19397
|
public expiresAt?: (google.protobuf.ITimestamp|null);
|
|
18973
19398
|
|
|
19399
|
+
/** CreateDownloadLinkResponse preSignedUrls. */
|
|
19400
|
+
public preSignedUrls?: (flyteidl.service.IPreSignedURLs|null);
|
|
19401
|
+
|
|
18974
19402
|
/**
|
|
18975
19403
|
* Creates a new CreateDownloadLinkResponse instance using the specified properties.
|
|
18976
19404
|
* @param [properties] Properties to set
|
|
@@ -19004,30 +19432,201 @@ export namespace flyteidl {
|
|
|
19004
19432
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
19005
19433
|
}
|
|
19006
19434
|
|
|
19007
|
-
/**
|
|
19008
|
-
|
|
19435
|
+
/** Properties of a PreSignedURLs. */
|
|
19436
|
+
interface IPreSignedURLs {
|
|
19437
|
+
|
|
19438
|
+
/** PreSignedURLs signedUrl */
|
|
19439
|
+
signedUrl?: (string[]|null);
|
|
19440
|
+
|
|
19441
|
+
/** PreSignedURLs expiresAt */
|
|
19442
|
+
expiresAt?: (google.protobuf.ITimestamp|null);
|
|
19443
|
+
}
|
|
19444
|
+
|
|
19445
|
+
/** Represents a PreSignedURLs. */
|
|
19446
|
+
class PreSignedURLs implements IPreSignedURLs {
|
|
19009
19447
|
|
|
19010
19448
|
/**
|
|
19011
|
-
* Constructs a new
|
|
19012
|
-
* @param
|
|
19013
|
-
* @param [requestDelimited=false] Whether requests are length-delimited
|
|
19014
|
-
* @param [responseDelimited=false] Whether responses are length-delimited
|
|
19449
|
+
* Constructs a new PreSignedURLs.
|
|
19450
|
+
* @param [properties] Properties to set
|
|
19015
19451
|
*/
|
|
19016
|
-
constructor(
|
|
19452
|
+
constructor(properties?: flyteidl.service.IPreSignedURLs);
|
|
19453
|
+
|
|
19454
|
+
/** PreSignedURLs signedUrl. */
|
|
19455
|
+
public signedUrl: string[];
|
|
19456
|
+
|
|
19457
|
+
/** PreSignedURLs expiresAt. */
|
|
19458
|
+
public expiresAt?: (google.protobuf.ITimestamp|null);
|
|
19017
19459
|
|
|
19018
19460
|
/**
|
|
19019
|
-
* Creates new
|
|
19020
|
-
* @param
|
|
19021
|
-
* @
|
|
19022
|
-
* @param [responseDelimited=false] Whether responses are length-delimited
|
|
19023
|
-
* @returns RPC service. Useful where requests and/or responses are streamed.
|
|
19461
|
+
* Creates a new PreSignedURLs instance using the specified properties.
|
|
19462
|
+
* @param [properties] Properties to set
|
|
19463
|
+
* @returns PreSignedURLs instance
|
|
19024
19464
|
*/
|
|
19025
|
-
public static create(
|
|
19465
|
+
public static create(properties?: flyteidl.service.IPreSignedURLs): flyteidl.service.PreSignedURLs;
|
|
19026
19466
|
|
|
19027
19467
|
/**
|
|
19028
|
-
*
|
|
19029
|
-
* @param
|
|
19030
|
-
* @param
|
|
19468
|
+
* Encodes the specified PreSignedURLs message. Does not implicitly {@link flyteidl.service.PreSignedURLs.verify|verify} messages.
|
|
19469
|
+
* @param message PreSignedURLs message or plain object to encode
|
|
19470
|
+
* @param [writer] Writer to encode to
|
|
19471
|
+
* @returns Writer
|
|
19472
|
+
*/
|
|
19473
|
+
public static encode(message: flyteidl.service.IPreSignedURLs, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
19474
|
+
|
|
19475
|
+
/**
|
|
19476
|
+
* Decodes a PreSignedURLs message from the specified reader or buffer.
|
|
19477
|
+
* @param reader Reader or buffer to decode from
|
|
19478
|
+
* @param [length] Message length if known beforehand
|
|
19479
|
+
* @returns PreSignedURLs
|
|
19480
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
19481
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
19482
|
+
*/
|
|
19483
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.service.PreSignedURLs;
|
|
19484
|
+
|
|
19485
|
+
/**
|
|
19486
|
+
* Verifies a PreSignedURLs message.
|
|
19487
|
+
* @param message Plain object to verify
|
|
19488
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
19489
|
+
*/
|
|
19490
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
19491
|
+
}
|
|
19492
|
+
|
|
19493
|
+
/** Properties of a GetDataRequest. */
|
|
19494
|
+
interface IGetDataRequest {
|
|
19495
|
+
|
|
19496
|
+
/** GetDataRequest flyteUrl */
|
|
19497
|
+
flyteUrl?: (string|null);
|
|
19498
|
+
}
|
|
19499
|
+
|
|
19500
|
+
/** Represents a GetDataRequest. */
|
|
19501
|
+
class GetDataRequest implements IGetDataRequest {
|
|
19502
|
+
|
|
19503
|
+
/**
|
|
19504
|
+
* Constructs a new GetDataRequest.
|
|
19505
|
+
* @param [properties] Properties to set
|
|
19506
|
+
*/
|
|
19507
|
+
constructor(properties?: flyteidl.service.IGetDataRequest);
|
|
19508
|
+
|
|
19509
|
+
/** GetDataRequest flyteUrl. */
|
|
19510
|
+
public flyteUrl: string;
|
|
19511
|
+
|
|
19512
|
+
/**
|
|
19513
|
+
* Creates a new GetDataRequest instance using the specified properties.
|
|
19514
|
+
* @param [properties] Properties to set
|
|
19515
|
+
* @returns GetDataRequest instance
|
|
19516
|
+
*/
|
|
19517
|
+
public static create(properties?: flyteidl.service.IGetDataRequest): flyteidl.service.GetDataRequest;
|
|
19518
|
+
|
|
19519
|
+
/**
|
|
19520
|
+
* Encodes the specified GetDataRequest message. Does not implicitly {@link flyteidl.service.GetDataRequest.verify|verify} messages.
|
|
19521
|
+
* @param message GetDataRequest message or plain object to encode
|
|
19522
|
+
* @param [writer] Writer to encode to
|
|
19523
|
+
* @returns Writer
|
|
19524
|
+
*/
|
|
19525
|
+
public static encode(message: flyteidl.service.IGetDataRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
19526
|
+
|
|
19527
|
+
/**
|
|
19528
|
+
* Decodes a GetDataRequest message from the specified reader or buffer.
|
|
19529
|
+
* @param reader Reader or buffer to decode from
|
|
19530
|
+
* @param [length] Message length if known beforehand
|
|
19531
|
+
* @returns GetDataRequest
|
|
19532
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
19533
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
19534
|
+
*/
|
|
19535
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.service.GetDataRequest;
|
|
19536
|
+
|
|
19537
|
+
/**
|
|
19538
|
+
* Verifies a GetDataRequest message.
|
|
19539
|
+
* @param message Plain object to verify
|
|
19540
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
19541
|
+
*/
|
|
19542
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
19543
|
+
}
|
|
19544
|
+
|
|
19545
|
+
/** Properties of a GetDataResponse. */
|
|
19546
|
+
interface IGetDataResponse {
|
|
19547
|
+
|
|
19548
|
+
/** GetDataResponse literalMap */
|
|
19549
|
+
literalMap?: (flyteidl.core.ILiteralMap|null);
|
|
19550
|
+
|
|
19551
|
+
/** GetDataResponse preSignedUrls */
|
|
19552
|
+
preSignedUrls?: (flyteidl.service.IPreSignedURLs|null);
|
|
19553
|
+
}
|
|
19554
|
+
|
|
19555
|
+
/** Represents a GetDataResponse. */
|
|
19556
|
+
class GetDataResponse implements IGetDataResponse {
|
|
19557
|
+
|
|
19558
|
+
/**
|
|
19559
|
+
* Constructs a new GetDataResponse.
|
|
19560
|
+
* @param [properties] Properties to set
|
|
19561
|
+
*/
|
|
19562
|
+
constructor(properties?: flyteidl.service.IGetDataResponse);
|
|
19563
|
+
|
|
19564
|
+
/** GetDataResponse literalMap. */
|
|
19565
|
+
public literalMap?: (flyteidl.core.ILiteralMap|null);
|
|
19566
|
+
|
|
19567
|
+
/** GetDataResponse preSignedUrls. */
|
|
19568
|
+
public preSignedUrls?: (flyteidl.service.IPreSignedURLs|null);
|
|
19569
|
+
|
|
19570
|
+
/** GetDataResponse data. */
|
|
19571
|
+
public data?: ("literalMap"|"preSignedUrls");
|
|
19572
|
+
|
|
19573
|
+
/**
|
|
19574
|
+
* Creates a new GetDataResponse instance using the specified properties.
|
|
19575
|
+
* @param [properties] Properties to set
|
|
19576
|
+
* @returns GetDataResponse instance
|
|
19577
|
+
*/
|
|
19578
|
+
public static create(properties?: flyteidl.service.IGetDataResponse): flyteidl.service.GetDataResponse;
|
|
19579
|
+
|
|
19580
|
+
/**
|
|
19581
|
+
* Encodes the specified GetDataResponse message. Does not implicitly {@link flyteidl.service.GetDataResponse.verify|verify} messages.
|
|
19582
|
+
* @param message GetDataResponse message or plain object to encode
|
|
19583
|
+
* @param [writer] Writer to encode to
|
|
19584
|
+
* @returns Writer
|
|
19585
|
+
*/
|
|
19586
|
+
public static encode(message: flyteidl.service.IGetDataResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
19587
|
+
|
|
19588
|
+
/**
|
|
19589
|
+
* Decodes a GetDataResponse message from the specified reader or buffer.
|
|
19590
|
+
* @param reader Reader or buffer to decode from
|
|
19591
|
+
* @param [length] Message length if known beforehand
|
|
19592
|
+
* @returns GetDataResponse
|
|
19593
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
19594
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
19595
|
+
*/
|
|
19596
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.service.GetDataResponse;
|
|
19597
|
+
|
|
19598
|
+
/**
|
|
19599
|
+
* Verifies a GetDataResponse message.
|
|
19600
|
+
* @param message Plain object to verify
|
|
19601
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
19602
|
+
*/
|
|
19603
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
19604
|
+
}
|
|
19605
|
+
|
|
19606
|
+
/** Represents a DataProxyService */
|
|
19607
|
+
class DataProxyService extends $protobuf.rpc.Service {
|
|
19608
|
+
|
|
19609
|
+
/**
|
|
19610
|
+
* Constructs a new DataProxyService service.
|
|
19611
|
+
* @param rpcImpl RPC implementation
|
|
19612
|
+
* @param [requestDelimited=false] Whether requests are length-delimited
|
|
19613
|
+
* @param [responseDelimited=false] Whether responses are length-delimited
|
|
19614
|
+
*/
|
|
19615
|
+
constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean);
|
|
19616
|
+
|
|
19617
|
+
/**
|
|
19618
|
+
* Creates new DataProxyService service using the specified rpc implementation.
|
|
19619
|
+
* @param rpcImpl RPC implementation
|
|
19620
|
+
* @param [requestDelimited=false] Whether requests are length-delimited
|
|
19621
|
+
* @param [responseDelimited=false] Whether responses are length-delimited
|
|
19622
|
+
* @returns RPC service. Useful where requests and/or responses are streamed.
|
|
19623
|
+
*/
|
|
19624
|
+
public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): DataProxyService;
|
|
19625
|
+
|
|
19626
|
+
/**
|
|
19627
|
+
* Calls CreateUploadLocation.
|
|
19628
|
+
* @param request CreateUploadLocationRequest message or plain object
|
|
19629
|
+
* @param callback Node-style callback called with the error, if any, and CreateUploadLocationResponse
|
|
19031
19630
|
*/
|
|
19032
19631
|
public createUploadLocation(request: flyteidl.service.ICreateUploadLocationRequest, callback: flyteidl.service.DataProxyService.CreateUploadLocationCallback): void;
|
|
19033
19632
|
|
|
@@ -19065,6 +19664,20 @@ export namespace flyteidl {
|
|
|
19065
19664
|
* @returns Promise
|
|
19066
19665
|
*/
|
|
19067
19666
|
public createDownloadLink(request: flyteidl.service.ICreateDownloadLinkRequest): Promise<flyteidl.service.CreateDownloadLinkResponse>;
|
|
19667
|
+
|
|
19668
|
+
/**
|
|
19669
|
+
* Calls GetData.
|
|
19670
|
+
* @param request GetDataRequest message or plain object
|
|
19671
|
+
* @param callback Node-style callback called with the error, if any, and GetDataResponse
|
|
19672
|
+
*/
|
|
19673
|
+
public getData(request: flyteidl.service.IGetDataRequest, callback: flyteidl.service.DataProxyService.GetDataCallback): void;
|
|
19674
|
+
|
|
19675
|
+
/**
|
|
19676
|
+
* Calls GetData.
|
|
19677
|
+
* @param request GetDataRequest message or plain object
|
|
19678
|
+
* @returns Promise
|
|
19679
|
+
*/
|
|
19680
|
+
public getData(request: flyteidl.service.IGetDataRequest): Promise<flyteidl.service.GetDataResponse>;
|
|
19068
19681
|
}
|
|
19069
19682
|
|
|
19070
19683
|
namespace DataProxyService {
|
|
@@ -19089,6 +19702,445 @@ export namespace flyteidl {
|
|
|
19089
19702
|
* @param [response] CreateDownloadLinkResponse
|
|
19090
19703
|
*/
|
|
19091
19704
|
type CreateDownloadLinkCallback = (error: (Error|null), response?: flyteidl.service.CreateDownloadLinkResponse) => void;
|
|
19705
|
+
|
|
19706
|
+
/**
|
|
19707
|
+
* Callback as used by {@link flyteidl.service.DataProxyService#getData}.
|
|
19708
|
+
* @param error Error, if any
|
|
19709
|
+
* @param [response] GetDataResponse
|
|
19710
|
+
*/
|
|
19711
|
+
type GetDataCallback = (error: (Error|null), response?: flyteidl.service.GetDataResponse) => void;
|
|
19712
|
+
}
|
|
19713
|
+
|
|
19714
|
+
/** Represents an ExternalPluginService */
|
|
19715
|
+
class ExternalPluginService extends $protobuf.rpc.Service {
|
|
19716
|
+
|
|
19717
|
+
/**
|
|
19718
|
+
* Constructs a new ExternalPluginService service.
|
|
19719
|
+
* @param rpcImpl RPC implementation
|
|
19720
|
+
* @param [requestDelimited=false] Whether requests are length-delimited
|
|
19721
|
+
* @param [responseDelimited=false] Whether responses are length-delimited
|
|
19722
|
+
*/
|
|
19723
|
+
constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean);
|
|
19724
|
+
|
|
19725
|
+
/**
|
|
19726
|
+
* Creates new ExternalPluginService service using the specified rpc implementation.
|
|
19727
|
+
* @param rpcImpl RPC implementation
|
|
19728
|
+
* @param [requestDelimited=false] Whether requests are length-delimited
|
|
19729
|
+
* @param [responseDelimited=false] Whether responses are length-delimited
|
|
19730
|
+
* @returns RPC service. Useful where requests and/or responses are streamed.
|
|
19731
|
+
*/
|
|
19732
|
+
public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): ExternalPluginService;
|
|
19733
|
+
|
|
19734
|
+
/**
|
|
19735
|
+
* Calls CreateTask.
|
|
19736
|
+
* @param request TaskCreateRequest message or plain object
|
|
19737
|
+
* @param callback Node-style callback called with the error, if any, and TaskCreateResponse
|
|
19738
|
+
*/
|
|
19739
|
+
public createTask(request: flyteidl.service.ITaskCreateRequest, callback: flyteidl.service.ExternalPluginService.CreateTaskCallback): void;
|
|
19740
|
+
|
|
19741
|
+
/**
|
|
19742
|
+
* Calls CreateTask.
|
|
19743
|
+
* @param request TaskCreateRequest message or plain object
|
|
19744
|
+
* @returns Promise
|
|
19745
|
+
*/
|
|
19746
|
+
public createTask(request: flyteidl.service.ITaskCreateRequest): Promise<flyteidl.service.TaskCreateResponse>;
|
|
19747
|
+
|
|
19748
|
+
/**
|
|
19749
|
+
* Calls GetTask.
|
|
19750
|
+
* @param request TaskGetRequest message or plain object
|
|
19751
|
+
* @param callback Node-style callback called with the error, if any, and TaskGetResponse
|
|
19752
|
+
*/
|
|
19753
|
+
public getTask(request: flyteidl.service.ITaskGetRequest, callback: flyteidl.service.ExternalPluginService.GetTaskCallback): void;
|
|
19754
|
+
|
|
19755
|
+
/**
|
|
19756
|
+
* Calls GetTask.
|
|
19757
|
+
* @param request TaskGetRequest message or plain object
|
|
19758
|
+
* @returns Promise
|
|
19759
|
+
*/
|
|
19760
|
+
public getTask(request: flyteidl.service.ITaskGetRequest): Promise<flyteidl.service.TaskGetResponse>;
|
|
19761
|
+
|
|
19762
|
+
/**
|
|
19763
|
+
* Calls DeleteTask.
|
|
19764
|
+
* @param request TaskDeleteRequest message or plain object
|
|
19765
|
+
* @param callback Node-style callback called with the error, if any, and TaskDeleteResponse
|
|
19766
|
+
*/
|
|
19767
|
+
public deleteTask(request: flyteidl.service.ITaskDeleteRequest, callback: flyteidl.service.ExternalPluginService.DeleteTaskCallback): void;
|
|
19768
|
+
|
|
19769
|
+
/**
|
|
19770
|
+
* Calls DeleteTask.
|
|
19771
|
+
* @param request TaskDeleteRequest message or plain object
|
|
19772
|
+
* @returns Promise
|
|
19773
|
+
*/
|
|
19774
|
+
public deleteTask(request: flyteidl.service.ITaskDeleteRequest): Promise<flyteidl.service.TaskDeleteResponse>;
|
|
19775
|
+
}
|
|
19776
|
+
|
|
19777
|
+
namespace ExternalPluginService {
|
|
19778
|
+
|
|
19779
|
+
/**
|
|
19780
|
+
* Callback as used by {@link flyteidl.service.ExternalPluginService#createTask}.
|
|
19781
|
+
* @param error Error, if any
|
|
19782
|
+
* @param [response] TaskCreateResponse
|
|
19783
|
+
*/
|
|
19784
|
+
type CreateTaskCallback = (error: (Error|null), response?: flyteidl.service.TaskCreateResponse) => void;
|
|
19785
|
+
|
|
19786
|
+
/**
|
|
19787
|
+
* Callback as used by {@link flyteidl.service.ExternalPluginService#getTask}.
|
|
19788
|
+
* @param error Error, if any
|
|
19789
|
+
* @param [response] TaskGetResponse
|
|
19790
|
+
*/
|
|
19791
|
+
type GetTaskCallback = (error: (Error|null), response?: flyteidl.service.TaskGetResponse) => void;
|
|
19792
|
+
|
|
19793
|
+
/**
|
|
19794
|
+
* Callback as used by {@link flyteidl.service.ExternalPluginService#deleteTask}.
|
|
19795
|
+
* @param error Error, if any
|
|
19796
|
+
* @param [response] TaskDeleteResponse
|
|
19797
|
+
*/
|
|
19798
|
+
type DeleteTaskCallback = (error: (Error|null), response?: flyteidl.service.TaskDeleteResponse) => void;
|
|
19799
|
+
}
|
|
19800
|
+
|
|
19801
|
+
/** State enum. */
|
|
19802
|
+
enum State {
|
|
19803
|
+
RETRYABLE_FAILURE = 0,
|
|
19804
|
+
PERMANENT_FAILURE = 1,
|
|
19805
|
+
PENDING = 2,
|
|
19806
|
+
RUNNING = 3,
|
|
19807
|
+
SUCCEEDED = 4
|
|
19808
|
+
}
|
|
19809
|
+
|
|
19810
|
+
/** Properties of a TaskCreateRequest. */
|
|
19811
|
+
interface ITaskCreateRequest {
|
|
19812
|
+
|
|
19813
|
+
/** TaskCreateRequest inputs */
|
|
19814
|
+
inputs?: (flyteidl.core.ILiteralMap|null);
|
|
19815
|
+
|
|
19816
|
+
/** TaskCreateRequest template */
|
|
19817
|
+
template?: (flyteidl.core.ITaskTemplate|null);
|
|
19818
|
+
|
|
19819
|
+
/** TaskCreateRequest outputPrefix */
|
|
19820
|
+
outputPrefix?: (string|null);
|
|
19821
|
+
}
|
|
19822
|
+
|
|
19823
|
+
/** Represents a TaskCreateRequest. */
|
|
19824
|
+
class TaskCreateRequest implements ITaskCreateRequest {
|
|
19825
|
+
|
|
19826
|
+
/**
|
|
19827
|
+
* Constructs a new TaskCreateRequest.
|
|
19828
|
+
* @param [properties] Properties to set
|
|
19829
|
+
*/
|
|
19830
|
+
constructor(properties?: flyteidl.service.ITaskCreateRequest);
|
|
19831
|
+
|
|
19832
|
+
/** TaskCreateRequest inputs. */
|
|
19833
|
+
public inputs?: (flyteidl.core.ILiteralMap|null);
|
|
19834
|
+
|
|
19835
|
+
/** TaskCreateRequest template. */
|
|
19836
|
+
public template?: (flyteidl.core.ITaskTemplate|null);
|
|
19837
|
+
|
|
19838
|
+
/** TaskCreateRequest outputPrefix. */
|
|
19839
|
+
public outputPrefix: string;
|
|
19840
|
+
|
|
19841
|
+
/**
|
|
19842
|
+
* Creates a new TaskCreateRequest instance using the specified properties.
|
|
19843
|
+
* @param [properties] Properties to set
|
|
19844
|
+
* @returns TaskCreateRequest instance
|
|
19845
|
+
*/
|
|
19846
|
+
public static create(properties?: flyteidl.service.ITaskCreateRequest): flyteidl.service.TaskCreateRequest;
|
|
19847
|
+
|
|
19848
|
+
/**
|
|
19849
|
+
* Encodes the specified TaskCreateRequest message. Does not implicitly {@link flyteidl.service.TaskCreateRequest.verify|verify} messages.
|
|
19850
|
+
* @param message TaskCreateRequest message or plain object to encode
|
|
19851
|
+
* @param [writer] Writer to encode to
|
|
19852
|
+
* @returns Writer
|
|
19853
|
+
*/
|
|
19854
|
+
public static encode(message: flyteidl.service.ITaskCreateRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
19855
|
+
|
|
19856
|
+
/**
|
|
19857
|
+
* Decodes a TaskCreateRequest message from the specified reader or buffer.
|
|
19858
|
+
* @param reader Reader or buffer to decode from
|
|
19859
|
+
* @param [length] Message length if known beforehand
|
|
19860
|
+
* @returns TaskCreateRequest
|
|
19861
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
19862
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
19863
|
+
*/
|
|
19864
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.service.TaskCreateRequest;
|
|
19865
|
+
|
|
19866
|
+
/**
|
|
19867
|
+
* Verifies a TaskCreateRequest message.
|
|
19868
|
+
* @param message Plain object to verify
|
|
19869
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
19870
|
+
*/
|
|
19871
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
19872
|
+
}
|
|
19873
|
+
|
|
19874
|
+
/** Properties of a TaskCreateResponse. */
|
|
19875
|
+
interface ITaskCreateResponse {
|
|
19876
|
+
|
|
19877
|
+
/** TaskCreateResponse jobId */
|
|
19878
|
+
jobId?: (string|null);
|
|
19879
|
+
}
|
|
19880
|
+
|
|
19881
|
+
/** Represents a TaskCreateResponse. */
|
|
19882
|
+
class TaskCreateResponse implements ITaskCreateResponse {
|
|
19883
|
+
|
|
19884
|
+
/**
|
|
19885
|
+
* Constructs a new TaskCreateResponse.
|
|
19886
|
+
* @param [properties] Properties to set
|
|
19887
|
+
*/
|
|
19888
|
+
constructor(properties?: flyteidl.service.ITaskCreateResponse);
|
|
19889
|
+
|
|
19890
|
+
/** TaskCreateResponse jobId. */
|
|
19891
|
+
public jobId: string;
|
|
19892
|
+
|
|
19893
|
+
/**
|
|
19894
|
+
* Creates a new TaskCreateResponse instance using the specified properties.
|
|
19895
|
+
* @param [properties] Properties to set
|
|
19896
|
+
* @returns TaskCreateResponse instance
|
|
19897
|
+
*/
|
|
19898
|
+
public static create(properties?: flyteidl.service.ITaskCreateResponse): flyteidl.service.TaskCreateResponse;
|
|
19899
|
+
|
|
19900
|
+
/**
|
|
19901
|
+
* Encodes the specified TaskCreateResponse message. Does not implicitly {@link flyteidl.service.TaskCreateResponse.verify|verify} messages.
|
|
19902
|
+
* @param message TaskCreateResponse message or plain object to encode
|
|
19903
|
+
* @param [writer] Writer to encode to
|
|
19904
|
+
* @returns Writer
|
|
19905
|
+
*/
|
|
19906
|
+
public static encode(message: flyteidl.service.ITaskCreateResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
19907
|
+
|
|
19908
|
+
/**
|
|
19909
|
+
* Decodes a TaskCreateResponse message from the specified reader or buffer.
|
|
19910
|
+
* @param reader Reader or buffer to decode from
|
|
19911
|
+
* @param [length] Message length if known beforehand
|
|
19912
|
+
* @returns TaskCreateResponse
|
|
19913
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
19914
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
19915
|
+
*/
|
|
19916
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.service.TaskCreateResponse;
|
|
19917
|
+
|
|
19918
|
+
/**
|
|
19919
|
+
* Verifies a TaskCreateResponse message.
|
|
19920
|
+
* @param message Plain object to verify
|
|
19921
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
19922
|
+
*/
|
|
19923
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
19924
|
+
}
|
|
19925
|
+
|
|
19926
|
+
/** Properties of a TaskGetRequest. */
|
|
19927
|
+
interface ITaskGetRequest {
|
|
19928
|
+
|
|
19929
|
+
/** TaskGetRequest taskType */
|
|
19930
|
+
taskType?: (string|null);
|
|
19931
|
+
|
|
19932
|
+
/** TaskGetRequest jobId */
|
|
19933
|
+
jobId?: (string|null);
|
|
19934
|
+
}
|
|
19935
|
+
|
|
19936
|
+
/** Represents a TaskGetRequest. */
|
|
19937
|
+
class TaskGetRequest implements ITaskGetRequest {
|
|
19938
|
+
|
|
19939
|
+
/**
|
|
19940
|
+
* Constructs a new TaskGetRequest.
|
|
19941
|
+
* @param [properties] Properties to set
|
|
19942
|
+
*/
|
|
19943
|
+
constructor(properties?: flyteidl.service.ITaskGetRequest);
|
|
19944
|
+
|
|
19945
|
+
/** TaskGetRequest taskType. */
|
|
19946
|
+
public taskType: string;
|
|
19947
|
+
|
|
19948
|
+
/** TaskGetRequest jobId. */
|
|
19949
|
+
public jobId: string;
|
|
19950
|
+
|
|
19951
|
+
/**
|
|
19952
|
+
* Creates a new TaskGetRequest instance using the specified properties.
|
|
19953
|
+
* @param [properties] Properties to set
|
|
19954
|
+
* @returns TaskGetRequest instance
|
|
19955
|
+
*/
|
|
19956
|
+
public static create(properties?: flyteidl.service.ITaskGetRequest): flyteidl.service.TaskGetRequest;
|
|
19957
|
+
|
|
19958
|
+
/**
|
|
19959
|
+
* Encodes the specified TaskGetRequest message. Does not implicitly {@link flyteidl.service.TaskGetRequest.verify|verify} messages.
|
|
19960
|
+
* @param message TaskGetRequest message or plain object to encode
|
|
19961
|
+
* @param [writer] Writer to encode to
|
|
19962
|
+
* @returns Writer
|
|
19963
|
+
*/
|
|
19964
|
+
public static encode(message: flyteidl.service.ITaskGetRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
19965
|
+
|
|
19966
|
+
/**
|
|
19967
|
+
* Decodes a TaskGetRequest message from the specified reader or buffer.
|
|
19968
|
+
* @param reader Reader or buffer to decode from
|
|
19969
|
+
* @param [length] Message length if known beforehand
|
|
19970
|
+
* @returns TaskGetRequest
|
|
19971
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
19972
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
19973
|
+
*/
|
|
19974
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.service.TaskGetRequest;
|
|
19975
|
+
|
|
19976
|
+
/**
|
|
19977
|
+
* Verifies a TaskGetRequest message.
|
|
19978
|
+
* @param message Plain object to verify
|
|
19979
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
19980
|
+
*/
|
|
19981
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
19982
|
+
}
|
|
19983
|
+
|
|
19984
|
+
/** Properties of a TaskGetResponse. */
|
|
19985
|
+
interface ITaskGetResponse {
|
|
19986
|
+
|
|
19987
|
+
/** TaskGetResponse state */
|
|
19988
|
+
state?: (flyteidl.service.State|null);
|
|
19989
|
+
|
|
19990
|
+
/** TaskGetResponse outputs */
|
|
19991
|
+
outputs?: (flyteidl.core.ILiteralMap|null);
|
|
19992
|
+
}
|
|
19993
|
+
|
|
19994
|
+
/** Represents a TaskGetResponse. */
|
|
19995
|
+
class TaskGetResponse implements ITaskGetResponse {
|
|
19996
|
+
|
|
19997
|
+
/**
|
|
19998
|
+
* Constructs a new TaskGetResponse.
|
|
19999
|
+
* @param [properties] Properties to set
|
|
20000
|
+
*/
|
|
20001
|
+
constructor(properties?: flyteidl.service.ITaskGetResponse);
|
|
20002
|
+
|
|
20003
|
+
/** TaskGetResponse state. */
|
|
20004
|
+
public state: flyteidl.service.State;
|
|
20005
|
+
|
|
20006
|
+
/** TaskGetResponse outputs. */
|
|
20007
|
+
public outputs?: (flyteidl.core.ILiteralMap|null);
|
|
20008
|
+
|
|
20009
|
+
/**
|
|
20010
|
+
* Creates a new TaskGetResponse instance using the specified properties.
|
|
20011
|
+
* @param [properties] Properties to set
|
|
20012
|
+
* @returns TaskGetResponse instance
|
|
20013
|
+
*/
|
|
20014
|
+
public static create(properties?: flyteidl.service.ITaskGetResponse): flyteidl.service.TaskGetResponse;
|
|
20015
|
+
|
|
20016
|
+
/**
|
|
20017
|
+
* Encodes the specified TaskGetResponse message. Does not implicitly {@link flyteidl.service.TaskGetResponse.verify|verify} messages.
|
|
20018
|
+
* @param message TaskGetResponse message or plain object to encode
|
|
20019
|
+
* @param [writer] Writer to encode to
|
|
20020
|
+
* @returns Writer
|
|
20021
|
+
*/
|
|
20022
|
+
public static encode(message: flyteidl.service.ITaskGetResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
20023
|
+
|
|
20024
|
+
/**
|
|
20025
|
+
* Decodes a TaskGetResponse message from the specified reader or buffer.
|
|
20026
|
+
* @param reader Reader or buffer to decode from
|
|
20027
|
+
* @param [length] Message length if known beforehand
|
|
20028
|
+
* @returns TaskGetResponse
|
|
20029
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
20030
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
20031
|
+
*/
|
|
20032
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.service.TaskGetResponse;
|
|
20033
|
+
|
|
20034
|
+
/**
|
|
20035
|
+
* Verifies a TaskGetResponse message.
|
|
20036
|
+
* @param message Plain object to verify
|
|
20037
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
20038
|
+
*/
|
|
20039
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
20040
|
+
}
|
|
20041
|
+
|
|
20042
|
+
/** Properties of a TaskDeleteRequest. */
|
|
20043
|
+
interface ITaskDeleteRequest {
|
|
20044
|
+
|
|
20045
|
+
/** TaskDeleteRequest taskType */
|
|
20046
|
+
taskType?: (string|null);
|
|
20047
|
+
|
|
20048
|
+
/** TaskDeleteRequest jobId */
|
|
20049
|
+
jobId?: (string|null);
|
|
20050
|
+
}
|
|
20051
|
+
|
|
20052
|
+
/** Represents a TaskDeleteRequest. */
|
|
20053
|
+
class TaskDeleteRequest implements ITaskDeleteRequest {
|
|
20054
|
+
|
|
20055
|
+
/**
|
|
20056
|
+
* Constructs a new TaskDeleteRequest.
|
|
20057
|
+
* @param [properties] Properties to set
|
|
20058
|
+
*/
|
|
20059
|
+
constructor(properties?: flyteidl.service.ITaskDeleteRequest);
|
|
20060
|
+
|
|
20061
|
+
/** TaskDeleteRequest taskType. */
|
|
20062
|
+
public taskType: string;
|
|
20063
|
+
|
|
20064
|
+
/** TaskDeleteRequest jobId. */
|
|
20065
|
+
public jobId: string;
|
|
20066
|
+
|
|
20067
|
+
/**
|
|
20068
|
+
* Creates a new TaskDeleteRequest instance using the specified properties.
|
|
20069
|
+
* @param [properties] Properties to set
|
|
20070
|
+
* @returns TaskDeleteRequest instance
|
|
20071
|
+
*/
|
|
20072
|
+
public static create(properties?: flyteidl.service.ITaskDeleteRequest): flyteidl.service.TaskDeleteRequest;
|
|
20073
|
+
|
|
20074
|
+
/**
|
|
20075
|
+
* Encodes the specified TaskDeleteRequest message. Does not implicitly {@link flyteidl.service.TaskDeleteRequest.verify|verify} messages.
|
|
20076
|
+
* @param message TaskDeleteRequest message or plain object to encode
|
|
20077
|
+
* @param [writer] Writer to encode to
|
|
20078
|
+
* @returns Writer
|
|
20079
|
+
*/
|
|
20080
|
+
public static encode(message: flyteidl.service.ITaskDeleteRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
20081
|
+
|
|
20082
|
+
/**
|
|
20083
|
+
* Decodes a TaskDeleteRequest message from the specified reader or buffer.
|
|
20084
|
+
* @param reader Reader or buffer to decode from
|
|
20085
|
+
* @param [length] Message length if known beforehand
|
|
20086
|
+
* @returns TaskDeleteRequest
|
|
20087
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
20088
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
20089
|
+
*/
|
|
20090
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.service.TaskDeleteRequest;
|
|
20091
|
+
|
|
20092
|
+
/**
|
|
20093
|
+
* Verifies a TaskDeleteRequest message.
|
|
20094
|
+
* @param message Plain object to verify
|
|
20095
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
20096
|
+
*/
|
|
20097
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
20098
|
+
}
|
|
20099
|
+
|
|
20100
|
+
/** Properties of a TaskDeleteResponse. */
|
|
20101
|
+
interface ITaskDeleteResponse {
|
|
20102
|
+
}
|
|
20103
|
+
|
|
20104
|
+
/** Represents a TaskDeleteResponse. */
|
|
20105
|
+
class TaskDeleteResponse implements ITaskDeleteResponse {
|
|
20106
|
+
|
|
20107
|
+
/**
|
|
20108
|
+
* Constructs a new TaskDeleteResponse.
|
|
20109
|
+
* @param [properties] Properties to set
|
|
20110
|
+
*/
|
|
20111
|
+
constructor(properties?: flyteidl.service.ITaskDeleteResponse);
|
|
20112
|
+
|
|
20113
|
+
/**
|
|
20114
|
+
* Creates a new TaskDeleteResponse instance using the specified properties.
|
|
20115
|
+
* @param [properties] Properties to set
|
|
20116
|
+
* @returns TaskDeleteResponse instance
|
|
20117
|
+
*/
|
|
20118
|
+
public static create(properties?: flyteidl.service.ITaskDeleteResponse): flyteidl.service.TaskDeleteResponse;
|
|
20119
|
+
|
|
20120
|
+
/**
|
|
20121
|
+
* Encodes the specified TaskDeleteResponse message. Does not implicitly {@link flyteidl.service.TaskDeleteResponse.verify|verify} messages.
|
|
20122
|
+
* @param message TaskDeleteResponse message or plain object to encode
|
|
20123
|
+
* @param [writer] Writer to encode to
|
|
20124
|
+
* @returns Writer
|
|
20125
|
+
*/
|
|
20126
|
+
public static encode(message: flyteidl.service.ITaskDeleteResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
20127
|
+
|
|
20128
|
+
/**
|
|
20129
|
+
* Decodes a TaskDeleteResponse message from the specified reader or buffer.
|
|
20130
|
+
* @param reader Reader or buffer to decode from
|
|
20131
|
+
* @param [length] Message length if known beforehand
|
|
20132
|
+
* @returns TaskDeleteResponse
|
|
20133
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
20134
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
20135
|
+
*/
|
|
20136
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.service.TaskDeleteResponse;
|
|
20137
|
+
|
|
20138
|
+
/**
|
|
20139
|
+
* Verifies a TaskDeleteResponse message.
|
|
20140
|
+
* @param message Plain object to verify
|
|
20141
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
20142
|
+
*/
|
|
20143
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
19092
20144
|
}
|
|
19093
20145
|
|
|
19094
20146
|
/** Properties of a UserInfoRequest. */
|
|
@@ -19160,6 +20212,9 @@ export namespace flyteidl {
|
|
|
19160
20212
|
|
|
19161
20213
|
/** UserInfoResponse picture */
|
|
19162
20214
|
picture?: (string|null);
|
|
20215
|
+
|
|
20216
|
+
/** UserInfoResponse additionalClaims */
|
|
20217
|
+
additionalClaims?: (google.protobuf.IStruct|null);
|
|
19163
20218
|
}
|
|
19164
20219
|
|
|
19165
20220
|
/** Represents a UserInfoResponse. */
|
|
@@ -19192,6 +20247,9 @@ export namespace flyteidl {
|
|
|
19192
20247
|
/** UserInfoResponse picture. */
|
|
19193
20248
|
public picture: string;
|
|
19194
20249
|
|
|
20250
|
+
/** UserInfoResponse additionalClaims. */
|
|
20251
|
+
public additionalClaims?: (google.protobuf.IStruct|null);
|
|
20252
|
+
|
|
19195
20253
|
/**
|
|
19196
20254
|
* Creates a new UserInfoResponse instance using the specified properties.
|
|
19197
20255
|
* @param [properties] Properties to set
|