@flyteorg/flyteidl 1.2.8 → 1.2.10
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 +1135 -1
- package/gen/pb-js/flyteidl.js +2639 -2
- package/package.json +1 -1
- package/protos/docs/plugins/plugins.rst +95 -0
- package/protos/flyteidl/admin/common.proto +17 -0
- package/protos/flyteidl/admin/execution.proto +20 -0
- package/protos/flyteidl/admin/launch_plan.proto +3 -0
- package/protos/flyteidl/admin/matchable_resource.proto +3 -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/security.proto +3 -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/dask.proto +41 -0
- package/protos/flyteidl/plugins/kubeflow/common.proto +33 -0
- package/protos/flyteidl/plugins/kubeflow/mpi.proto +43 -0
- package/protos/flyteidl/plugins/kubeflow/pytorch.proto +49 -0
- package/protos/flyteidl/plugins/kubeflow/tensorflow.proto +39 -0
- package/protos/flyteidl/plugins/pytorch.proto +14 -0
- package/protos/flyteidl/plugins/spark.proto +10 -0
- package/protos/flyteidl/service/admin.proto +211 -202
- package/protos/flyteidl/service/auth.proto +7 -7
- package/protos/flyteidl/service/dataproxy.proto +49 -9
- package/protos/flyteidl/service/external_plugin_service.proto +74 -0
- package/protos/flyteidl/service/identity.proto +8 -4
- package/protos/flyteidl/service/signal.proto +22 -22
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
|
|
@@ -5955,6 +5967,9 @@ export namespace flyteidl {
|
|
|
5955
5967
|
|
|
5956
5968
|
/** Identity oauth2Client */
|
|
5957
5969
|
oauth2Client?: (flyteidl.core.IOAuth2Client|null);
|
|
5970
|
+
|
|
5971
|
+
/** Identity executionIdentity */
|
|
5972
|
+
executionIdentity?: (string|null);
|
|
5958
5973
|
}
|
|
5959
5974
|
|
|
5960
5975
|
/** Represents an Identity. */
|
|
@@ -5975,6 +5990,9 @@ export namespace flyteidl {
|
|
|
5975
5990
|
/** Identity oauth2Client. */
|
|
5976
5991
|
public oauth2Client?: (flyteidl.core.IOAuth2Client|null);
|
|
5977
5992
|
|
|
5993
|
+
/** Identity executionIdentity. */
|
|
5994
|
+
public executionIdentity: string;
|
|
5995
|
+
|
|
5978
5996
|
/**
|
|
5979
5997
|
* Creates a new Identity instance using the specified properties.
|
|
5980
5998
|
* @param [properties] Properties to set
|
|
@@ -6363,6 +6381,97 @@ export namespace flyteidl {
|
|
|
6363
6381
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
6364
6382
|
}
|
|
6365
6383
|
|
|
6384
|
+
/** Properties of a Span. */
|
|
6385
|
+
interface ISpan {
|
|
6386
|
+
|
|
6387
|
+
/** Span startTime */
|
|
6388
|
+
startTime?: (google.protobuf.ITimestamp|null);
|
|
6389
|
+
|
|
6390
|
+
/** Span endTime */
|
|
6391
|
+
endTime?: (google.protobuf.ITimestamp|null);
|
|
6392
|
+
|
|
6393
|
+
/** Span workflowId */
|
|
6394
|
+
workflowId?: (flyteidl.core.IWorkflowExecutionIdentifier|null);
|
|
6395
|
+
|
|
6396
|
+
/** Span nodeId */
|
|
6397
|
+
nodeId?: (flyteidl.core.INodeExecutionIdentifier|null);
|
|
6398
|
+
|
|
6399
|
+
/** Span taskId */
|
|
6400
|
+
taskId?: (flyteidl.core.ITaskExecutionIdentifier|null);
|
|
6401
|
+
|
|
6402
|
+
/** Span operationId */
|
|
6403
|
+
operationId?: (string|null);
|
|
6404
|
+
|
|
6405
|
+
/** Span spans */
|
|
6406
|
+
spans?: (flyteidl.core.ISpan[]|null);
|
|
6407
|
+
}
|
|
6408
|
+
|
|
6409
|
+
/** Represents a Span. */
|
|
6410
|
+
class Span implements ISpan {
|
|
6411
|
+
|
|
6412
|
+
/**
|
|
6413
|
+
* Constructs a new Span.
|
|
6414
|
+
* @param [properties] Properties to set
|
|
6415
|
+
*/
|
|
6416
|
+
constructor(properties?: flyteidl.core.ISpan);
|
|
6417
|
+
|
|
6418
|
+
/** Span startTime. */
|
|
6419
|
+
public startTime?: (google.protobuf.ITimestamp|null);
|
|
6420
|
+
|
|
6421
|
+
/** Span endTime. */
|
|
6422
|
+
public endTime?: (google.protobuf.ITimestamp|null);
|
|
6423
|
+
|
|
6424
|
+
/** Span workflowId. */
|
|
6425
|
+
public workflowId?: (flyteidl.core.IWorkflowExecutionIdentifier|null);
|
|
6426
|
+
|
|
6427
|
+
/** Span nodeId. */
|
|
6428
|
+
public nodeId?: (flyteidl.core.INodeExecutionIdentifier|null);
|
|
6429
|
+
|
|
6430
|
+
/** Span taskId. */
|
|
6431
|
+
public taskId?: (flyteidl.core.ITaskExecutionIdentifier|null);
|
|
6432
|
+
|
|
6433
|
+
/** Span operationId. */
|
|
6434
|
+
public operationId: string;
|
|
6435
|
+
|
|
6436
|
+
/** Span spans. */
|
|
6437
|
+
public spans: flyteidl.core.ISpan[];
|
|
6438
|
+
|
|
6439
|
+
/** Span id. */
|
|
6440
|
+
public id?: ("workflowId"|"nodeId"|"taskId"|"operationId");
|
|
6441
|
+
|
|
6442
|
+
/**
|
|
6443
|
+
* Creates a new Span instance using the specified properties.
|
|
6444
|
+
* @param [properties] Properties to set
|
|
6445
|
+
* @returns Span instance
|
|
6446
|
+
*/
|
|
6447
|
+
public static create(properties?: flyteidl.core.ISpan): flyteidl.core.Span;
|
|
6448
|
+
|
|
6449
|
+
/**
|
|
6450
|
+
* Encodes the specified Span message. Does not implicitly {@link flyteidl.core.Span.verify|verify} messages.
|
|
6451
|
+
* @param message Span message or plain object to encode
|
|
6452
|
+
* @param [writer] Writer to encode to
|
|
6453
|
+
* @returns Writer
|
|
6454
|
+
*/
|
|
6455
|
+
public static encode(message: flyteidl.core.ISpan, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
6456
|
+
|
|
6457
|
+
/**
|
|
6458
|
+
* Decodes a Span message from the specified reader or buffer.
|
|
6459
|
+
* @param reader Reader or buffer to decode from
|
|
6460
|
+
* @param [length] Message length if known beforehand
|
|
6461
|
+
* @returns Span
|
|
6462
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
6463
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
6464
|
+
*/
|
|
6465
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.core.Span;
|
|
6466
|
+
|
|
6467
|
+
/**
|
|
6468
|
+
* Verifies a Span message.
|
|
6469
|
+
* @param message Plain object to verify
|
|
6470
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
6471
|
+
*/
|
|
6472
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
6473
|
+
}
|
|
6474
|
+
|
|
6366
6475
|
/** Properties of a WorkflowClosure. */
|
|
6367
6476
|
interface IWorkflowClosure {
|
|
6368
6477
|
|
|
@@ -6534,6 +6643,9 @@ export namespace flyteidl {
|
|
|
6534
6643
|
/** NodeExecutionEvent inputUri */
|
|
6535
6644
|
inputUri?: (string|null);
|
|
6536
6645
|
|
|
6646
|
+
/** NodeExecutionEvent inputData */
|
|
6647
|
+
inputData?: (flyteidl.core.ILiteralMap|null);
|
|
6648
|
+
|
|
6537
6649
|
/** NodeExecutionEvent outputUri */
|
|
6538
6650
|
outputUri?: (string|null);
|
|
6539
6651
|
|
|
@@ -6575,6 +6687,9 @@ export namespace flyteidl {
|
|
|
6575
6687
|
|
|
6576
6688
|
/** NodeExecutionEvent deckUri */
|
|
6577
6689
|
deckUri?: (string|null);
|
|
6690
|
+
|
|
6691
|
+
/** NodeExecutionEvent reportedAt */
|
|
6692
|
+
reportedAt?: (google.protobuf.ITimestamp|null);
|
|
6578
6693
|
}
|
|
6579
6694
|
|
|
6580
6695
|
/** Represents a NodeExecutionEvent. */
|
|
@@ -6601,6 +6716,9 @@ export namespace flyteidl {
|
|
|
6601
6716
|
/** NodeExecutionEvent inputUri. */
|
|
6602
6717
|
public inputUri: string;
|
|
6603
6718
|
|
|
6719
|
+
/** NodeExecutionEvent inputData. */
|
|
6720
|
+
public inputData?: (flyteidl.core.ILiteralMap|null);
|
|
6721
|
+
|
|
6604
6722
|
/** NodeExecutionEvent outputUri. */
|
|
6605
6723
|
public outputUri: string;
|
|
6606
6724
|
|
|
@@ -6643,6 +6761,12 @@ export namespace flyteidl {
|
|
|
6643
6761
|
/** NodeExecutionEvent deckUri. */
|
|
6644
6762
|
public deckUri: string;
|
|
6645
6763
|
|
|
6764
|
+
/** NodeExecutionEvent reportedAt. */
|
|
6765
|
+
public reportedAt?: (google.protobuf.ITimestamp|null);
|
|
6766
|
+
|
|
6767
|
+
/** NodeExecutionEvent inputValue. */
|
|
6768
|
+
public inputValue?: ("inputUri"|"inputData");
|
|
6769
|
+
|
|
6646
6770
|
/** NodeExecutionEvent outputResult. */
|
|
6647
6771
|
public outputResult?: ("outputUri"|"error"|"outputData");
|
|
6648
6772
|
|
|
@@ -6818,6 +6942,9 @@ export namespace flyteidl {
|
|
|
6818
6942
|
|
|
6819
6943
|
/** DynamicWorkflowNodeMetadata compiledWorkflow */
|
|
6820
6944
|
compiledWorkflow?: (flyteidl.core.ICompiledWorkflowClosure|null);
|
|
6945
|
+
|
|
6946
|
+
/** DynamicWorkflowNodeMetadata dynamicJobSpecUri */
|
|
6947
|
+
dynamicJobSpecUri?: (string|null);
|
|
6821
6948
|
}
|
|
6822
6949
|
|
|
6823
6950
|
/** Represents a DynamicWorkflowNodeMetadata. */
|
|
@@ -6835,6 +6962,9 @@ export namespace flyteidl {
|
|
|
6835
6962
|
/** DynamicWorkflowNodeMetadata compiledWorkflow. */
|
|
6836
6963
|
public compiledWorkflow?: (flyteidl.core.ICompiledWorkflowClosure|null);
|
|
6837
6964
|
|
|
6965
|
+
/** DynamicWorkflowNodeMetadata dynamicJobSpecUri. */
|
|
6966
|
+
public dynamicJobSpecUri: string;
|
|
6967
|
+
|
|
6838
6968
|
/**
|
|
6839
6969
|
* Creates a new DynamicWorkflowNodeMetadata instance using the specified properties.
|
|
6840
6970
|
* @param [properties] Properties to set
|
|
@@ -6999,6 +7129,9 @@ export namespace flyteidl {
|
|
|
6999
7129
|
/** TaskExecutionEvent inputUri */
|
|
7000
7130
|
inputUri?: (string|null);
|
|
7001
7131
|
|
|
7132
|
+
/** TaskExecutionEvent inputData */
|
|
7133
|
+
inputData?: (flyteidl.core.ILiteralMap|null);
|
|
7134
|
+
|
|
7002
7135
|
/** TaskExecutionEvent outputUri */
|
|
7003
7136
|
outputUri?: (string|null);
|
|
7004
7137
|
|
|
@@ -7025,6 +7158,9 @@ export namespace flyteidl {
|
|
|
7025
7158
|
|
|
7026
7159
|
/** TaskExecutionEvent eventVersion */
|
|
7027
7160
|
eventVersion?: (number|null);
|
|
7161
|
+
|
|
7162
|
+
/** TaskExecutionEvent reportedAt */
|
|
7163
|
+
reportedAt?: (google.protobuf.ITimestamp|null);
|
|
7028
7164
|
}
|
|
7029
7165
|
|
|
7030
7166
|
/** Represents a TaskExecutionEvent. */
|
|
@@ -7060,6 +7196,9 @@ export namespace flyteidl {
|
|
|
7060
7196
|
/** TaskExecutionEvent inputUri. */
|
|
7061
7197
|
public inputUri: string;
|
|
7062
7198
|
|
|
7199
|
+
/** TaskExecutionEvent inputData. */
|
|
7200
|
+
public inputData?: (flyteidl.core.ILiteralMap|null);
|
|
7201
|
+
|
|
7063
7202
|
/** TaskExecutionEvent outputUri. */
|
|
7064
7203
|
public outputUri: string;
|
|
7065
7204
|
|
|
@@ -7087,6 +7226,12 @@ export namespace flyteidl {
|
|
|
7087
7226
|
/** TaskExecutionEvent eventVersion. */
|
|
7088
7227
|
public eventVersion: number;
|
|
7089
7228
|
|
|
7229
|
+
/** TaskExecutionEvent reportedAt. */
|
|
7230
|
+
public reportedAt?: (google.protobuf.ITimestamp|null);
|
|
7231
|
+
|
|
7232
|
+
/** TaskExecutionEvent inputValue. */
|
|
7233
|
+
public inputValue?: ("inputUri"|"inputData");
|
|
7234
|
+
|
|
7090
7235
|
/** TaskExecutionEvent outputResult. */
|
|
7091
7236
|
public outputResult?: ("outputUri"|"error"|"outputData");
|
|
7092
7237
|
|
|
@@ -8637,6 +8782,58 @@ export namespace flyteidl {
|
|
|
8637
8782
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
8638
8783
|
}
|
|
8639
8784
|
|
|
8785
|
+
/** Properties of an Envs. */
|
|
8786
|
+
interface IEnvs {
|
|
8787
|
+
|
|
8788
|
+
/** Envs values */
|
|
8789
|
+
values?: (flyteidl.core.IKeyValuePair[]|null);
|
|
8790
|
+
}
|
|
8791
|
+
|
|
8792
|
+
/** Represents an Envs. */
|
|
8793
|
+
class Envs implements IEnvs {
|
|
8794
|
+
|
|
8795
|
+
/**
|
|
8796
|
+
* Constructs a new Envs.
|
|
8797
|
+
* @param [properties] Properties to set
|
|
8798
|
+
*/
|
|
8799
|
+
constructor(properties?: flyteidl.admin.IEnvs);
|
|
8800
|
+
|
|
8801
|
+
/** Envs values. */
|
|
8802
|
+
public values: flyteidl.core.IKeyValuePair[];
|
|
8803
|
+
|
|
8804
|
+
/**
|
|
8805
|
+
* Creates a new Envs instance using the specified properties.
|
|
8806
|
+
* @param [properties] Properties to set
|
|
8807
|
+
* @returns Envs instance
|
|
8808
|
+
*/
|
|
8809
|
+
public static create(properties?: flyteidl.admin.IEnvs): flyteidl.admin.Envs;
|
|
8810
|
+
|
|
8811
|
+
/**
|
|
8812
|
+
* Encodes the specified Envs message. Does not implicitly {@link flyteidl.admin.Envs.verify|verify} messages.
|
|
8813
|
+
* @param message Envs message or plain object to encode
|
|
8814
|
+
* @param [writer] Writer to encode to
|
|
8815
|
+
* @returns Writer
|
|
8816
|
+
*/
|
|
8817
|
+
public static encode(message: flyteidl.admin.IEnvs, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
8818
|
+
|
|
8819
|
+
/**
|
|
8820
|
+
* Decodes an Envs message from the specified reader or buffer.
|
|
8821
|
+
* @param reader Reader or buffer to decode from
|
|
8822
|
+
* @param [length] Message length if known beforehand
|
|
8823
|
+
* @returns Envs
|
|
8824
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
8825
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
8826
|
+
*/
|
|
8827
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.Envs;
|
|
8828
|
+
|
|
8829
|
+
/**
|
|
8830
|
+
* Verifies an Envs message.
|
|
8831
|
+
* @param message Plain object to verify
|
|
8832
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
8833
|
+
*/
|
|
8834
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
8835
|
+
}
|
|
8836
|
+
|
|
8640
8837
|
/** Properties of an AuthRole. */
|
|
8641
8838
|
interface IAuthRole {
|
|
8642
8839
|
|
|
@@ -8747,6 +8944,70 @@ export namespace flyteidl {
|
|
|
8747
8944
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
8748
8945
|
}
|
|
8749
8946
|
|
|
8947
|
+
/** Properties of a FlyteURLs. */
|
|
8948
|
+
interface IFlyteURLs {
|
|
8949
|
+
|
|
8950
|
+
/** FlyteURLs inputs */
|
|
8951
|
+
inputs?: (string|null);
|
|
8952
|
+
|
|
8953
|
+
/** FlyteURLs outputs */
|
|
8954
|
+
outputs?: (string|null);
|
|
8955
|
+
|
|
8956
|
+
/** FlyteURLs deck */
|
|
8957
|
+
deck?: (string|null);
|
|
8958
|
+
}
|
|
8959
|
+
|
|
8960
|
+
/** Represents a FlyteURLs. */
|
|
8961
|
+
class FlyteURLs implements IFlyteURLs {
|
|
8962
|
+
|
|
8963
|
+
/**
|
|
8964
|
+
* Constructs a new FlyteURLs.
|
|
8965
|
+
* @param [properties] Properties to set
|
|
8966
|
+
*/
|
|
8967
|
+
constructor(properties?: flyteidl.admin.IFlyteURLs);
|
|
8968
|
+
|
|
8969
|
+
/** FlyteURLs inputs. */
|
|
8970
|
+
public inputs: string;
|
|
8971
|
+
|
|
8972
|
+
/** FlyteURLs outputs. */
|
|
8973
|
+
public outputs: string;
|
|
8974
|
+
|
|
8975
|
+
/** FlyteURLs deck. */
|
|
8976
|
+
public deck: string;
|
|
8977
|
+
|
|
8978
|
+
/**
|
|
8979
|
+
* Creates a new FlyteURLs instance using the specified properties.
|
|
8980
|
+
* @param [properties] Properties to set
|
|
8981
|
+
* @returns FlyteURLs instance
|
|
8982
|
+
*/
|
|
8983
|
+
public static create(properties?: flyteidl.admin.IFlyteURLs): flyteidl.admin.FlyteURLs;
|
|
8984
|
+
|
|
8985
|
+
/**
|
|
8986
|
+
* Encodes the specified FlyteURLs message. Does not implicitly {@link flyteidl.admin.FlyteURLs.verify|verify} messages.
|
|
8987
|
+
* @param message FlyteURLs message or plain object to encode
|
|
8988
|
+
* @param [writer] Writer to encode to
|
|
8989
|
+
* @returns Writer
|
|
8990
|
+
*/
|
|
8991
|
+
public static encode(message: flyteidl.admin.IFlyteURLs, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
8992
|
+
|
|
8993
|
+
/**
|
|
8994
|
+
* Decodes a FlyteURLs message from the specified reader or buffer.
|
|
8995
|
+
* @param reader Reader or buffer to decode from
|
|
8996
|
+
* @param [length] Message length if known beforehand
|
|
8997
|
+
* @returns FlyteURLs
|
|
8998
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
8999
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
9000
|
+
*/
|
|
9001
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.FlyteURLs;
|
|
9002
|
+
|
|
9003
|
+
/**
|
|
9004
|
+
* Verifies a FlyteURLs message.
|
|
9005
|
+
* @param message Plain object to verify
|
|
9006
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
9007
|
+
*/
|
|
9008
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
9009
|
+
}
|
|
9010
|
+
|
|
8750
9011
|
/** Properties of a DescriptionEntity. */
|
|
8751
9012
|
interface IDescriptionEntity {
|
|
8752
9013
|
|
|
@@ -10507,6 +10768,9 @@ export namespace flyteidl {
|
|
|
10507
10768
|
|
|
10508
10769
|
/** ExecutionSpec overwriteCache */
|
|
10509
10770
|
overwriteCache?: (boolean|null);
|
|
10771
|
+
|
|
10772
|
+
/** ExecutionSpec envs */
|
|
10773
|
+
envs?: (flyteidl.admin.IEnvs|null);
|
|
10510
10774
|
}
|
|
10511
10775
|
|
|
10512
10776
|
/** Represents an ExecutionSpec. */
|
|
@@ -10563,6 +10827,9 @@ export namespace flyteidl {
|
|
|
10563
10827
|
/** ExecutionSpec overwriteCache. */
|
|
10564
10828
|
public overwriteCache: boolean;
|
|
10565
10829
|
|
|
10830
|
+
/** ExecutionSpec envs. */
|
|
10831
|
+
public envs?: (flyteidl.admin.IEnvs|null);
|
|
10832
|
+
|
|
10566
10833
|
/** ExecutionSpec notificationOverrides. */
|
|
10567
10834
|
public notificationOverrides?: ("notifications"|"disableAll");
|
|
10568
10835
|
|
|
@@ -10999,6 +11266,116 @@ export namespace flyteidl {
|
|
|
10999
11266
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
11000
11267
|
}
|
|
11001
11268
|
|
|
11269
|
+
/** Properties of a WorkflowExecutionGetMetricsRequest. */
|
|
11270
|
+
interface IWorkflowExecutionGetMetricsRequest {
|
|
11271
|
+
|
|
11272
|
+
/** WorkflowExecutionGetMetricsRequest id */
|
|
11273
|
+
id?: (flyteidl.core.IWorkflowExecutionIdentifier|null);
|
|
11274
|
+
|
|
11275
|
+
/** WorkflowExecutionGetMetricsRequest depth */
|
|
11276
|
+
depth?: (number|null);
|
|
11277
|
+
}
|
|
11278
|
+
|
|
11279
|
+
/** Represents a WorkflowExecutionGetMetricsRequest. */
|
|
11280
|
+
class WorkflowExecutionGetMetricsRequest implements IWorkflowExecutionGetMetricsRequest {
|
|
11281
|
+
|
|
11282
|
+
/**
|
|
11283
|
+
* Constructs a new WorkflowExecutionGetMetricsRequest.
|
|
11284
|
+
* @param [properties] Properties to set
|
|
11285
|
+
*/
|
|
11286
|
+
constructor(properties?: flyteidl.admin.IWorkflowExecutionGetMetricsRequest);
|
|
11287
|
+
|
|
11288
|
+
/** WorkflowExecutionGetMetricsRequest id. */
|
|
11289
|
+
public id?: (flyteidl.core.IWorkflowExecutionIdentifier|null);
|
|
11290
|
+
|
|
11291
|
+
/** WorkflowExecutionGetMetricsRequest depth. */
|
|
11292
|
+
public depth: number;
|
|
11293
|
+
|
|
11294
|
+
/**
|
|
11295
|
+
* Creates a new WorkflowExecutionGetMetricsRequest instance using the specified properties.
|
|
11296
|
+
* @param [properties] Properties to set
|
|
11297
|
+
* @returns WorkflowExecutionGetMetricsRequest instance
|
|
11298
|
+
*/
|
|
11299
|
+
public static create(properties?: flyteidl.admin.IWorkflowExecutionGetMetricsRequest): flyteidl.admin.WorkflowExecutionGetMetricsRequest;
|
|
11300
|
+
|
|
11301
|
+
/**
|
|
11302
|
+
* Encodes the specified WorkflowExecutionGetMetricsRequest message. Does not implicitly {@link flyteidl.admin.WorkflowExecutionGetMetricsRequest.verify|verify} messages.
|
|
11303
|
+
* @param message WorkflowExecutionGetMetricsRequest message or plain object to encode
|
|
11304
|
+
* @param [writer] Writer to encode to
|
|
11305
|
+
* @returns Writer
|
|
11306
|
+
*/
|
|
11307
|
+
public static encode(message: flyteidl.admin.IWorkflowExecutionGetMetricsRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
11308
|
+
|
|
11309
|
+
/**
|
|
11310
|
+
* Decodes a WorkflowExecutionGetMetricsRequest message from the specified reader or buffer.
|
|
11311
|
+
* @param reader Reader or buffer to decode from
|
|
11312
|
+
* @param [length] Message length if known beforehand
|
|
11313
|
+
* @returns WorkflowExecutionGetMetricsRequest
|
|
11314
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
11315
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
11316
|
+
*/
|
|
11317
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.WorkflowExecutionGetMetricsRequest;
|
|
11318
|
+
|
|
11319
|
+
/**
|
|
11320
|
+
* Verifies a WorkflowExecutionGetMetricsRequest message.
|
|
11321
|
+
* @param message Plain object to verify
|
|
11322
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
11323
|
+
*/
|
|
11324
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
11325
|
+
}
|
|
11326
|
+
|
|
11327
|
+
/** Properties of a WorkflowExecutionGetMetricsResponse. */
|
|
11328
|
+
interface IWorkflowExecutionGetMetricsResponse {
|
|
11329
|
+
|
|
11330
|
+
/** WorkflowExecutionGetMetricsResponse span */
|
|
11331
|
+
span?: (flyteidl.core.ISpan|null);
|
|
11332
|
+
}
|
|
11333
|
+
|
|
11334
|
+
/** Represents a WorkflowExecutionGetMetricsResponse. */
|
|
11335
|
+
class WorkflowExecutionGetMetricsResponse implements IWorkflowExecutionGetMetricsResponse {
|
|
11336
|
+
|
|
11337
|
+
/**
|
|
11338
|
+
* Constructs a new WorkflowExecutionGetMetricsResponse.
|
|
11339
|
+
* @param [properties] Properties to set
|
|
11340
|
+
*/
|
|
11341
|
+
constructor(properties?: flyteidl.admin.IWorkflowExecutionGetMetricsResponse);
|
|
11342
|
+
|
|
11343
|
+
/** WorkflowExecutionGetMetricsResponse span. */
|
|
11344
|
+
public span?: (flyteidl.core.ISpan|null);
|
|
11345
|
+
|
|
11346
|
+
/**
|
|
11347
|
+
* Creates a new WorkflowExecutionGetMetricsResponse instance using the specified properties.
|
|
11348
|
+
* @param [properties] Properties to set
|
|
11349
|
+
* @returns WorkflowExecutionGetMetricsResponse instance
|
|
11350
|
+
*/
|
|
11351
|
+
public static create(properties?: flyteidl.admin.IWorkflowExecutionGetMetricsResponse): flyteidl.admin.WorkflowExecutionGetMetricsResponse;
|
|
11352
|
+
|
|
11353
|
+
/**
|
|
11354
|
+
* Encodes the specified WorkflowExecutionGetMetricsResponse message. Does not implicitly {@link flyteidl.admin.WorkflowExecutionGetMetricsResponse.verify|verify} messages.
|
|
11355
|
+
* @param message WorkflowExecutionGetMetricsResponse message or plain object to encode
|
|
11356
|
+
* @param [writer] Writer to encode to
|
|
11357
|
+
* @returns Writer
|
|
11358
|
+
*/
|
|
11359
|
+
public static encode(message: flyteidl.admin.IWorkflowExecutionGetMetricsResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
11360
|
+
|
|
11361
|
+
/**
|
|
11362
|
+
* Decodes a WorkflowExecutionGetMetricsResponse message from the specified reader or buffer.
|
|
11363
|
+
* @param reader Reader or buffer to decode from
|
|
11364
|
+
* @param [length] Message length if known beforehand
|
|
11365
|
+
* @returns WorkflowExecutionGetMetricsResponse
|
|
11366
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
11367
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
11368
|
+
*/
|
|
11369
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.WorkflowExecutionGetMetricsResponse;
|
|
11370
|
+
|
|
11371
|
+
/**
|
|
11372
|
+
* Verifies a WorkflowExecutionGetMetricsResponse message.
|
|
11373
|
+
* @param message Plain object to verify
|
|
11374
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
11375
|
+
*/
|
|
11376
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
11377
|
+
}
|
|
11378
|
+
|
|
11002
11379
|
/** Properties of a LaunchPlanCreateRequest. */
|
|
11003
11380
|
interface ILaunchPlanCreateRequest {
|
|
11004
11381
|
|
|
@@ -11336,6 +11713,9 @@ export namespace flyteidl {
|
|
|
11336
11713
|
|
|
11337
11714
|
/** LaunchPlanSpec overwriteCache */
|
|
11338
11715
|
overwriteCache?: (boolean|null);
|
|
11716
|
+
|
|
11717
|
+
/** LaunchPlanSpec envs */
|
|
11718
|
+
envs?: (flyteidl.admin.IEnvs|null);
|
|
11339
11719
|
}
|
|
11340
11720
|
|
|
11341
11721
|
/** Represents a LaunchPlanSpec. */
|
|
@@ -11392,6 +11772,9 @@ export namespace flyteidl {
|
|
|
11392
11772
|
/** LaunchPlanSpec overwriteCache. */
|
|
11393
11773
|
public overwriteCache: boolean;
|
|
11394
11774
|
|
|
11775
|
+
/** LaunchPlanSpec envs. */
|
|
11776
|
+
public envs?: (flyteidl.admin.IEnvs|null);
|
|
11777
|
+
|
|
11395
11778
|
/**
|
|
11396
11779
|
* Creates a new LaunchPlanSpec instance using the specified properties.
|
|
11397
11780
|
* @param [properties] Properties to set
|
|
@@ -12437,6 +12820,9 @@ export namespace flyteidl {
|
|
|
12437
12820
|
|
|
12438
12821
|
/** WorkflowExecutionConfig overwriteCache */
|
|
12439
12822
|
overwriteCache?: (boolean|null);
|
|
12823
|
+
|
|
12824
|
+
/** WorkflowExecutionConfig envs */
|
|
12825
|
+
envs?: (flyteidl.admin.IEnvs|null);
|
|
12440
12826
|
}
|
|
12441
12827
|
|
|
12442
12828
|
/** Represents a WorkflowExecutionConfig. */
|
|
@@ -12469,6 +12855,9 @@ export namespace flyteidl {
|
|
|
12469
12855
|
/** WorkflowExecutionConfig overwriteCache. */
|
|
12470
12856
|
public overwriteCache: boolean;
|
|
12471
12857
|
|
|
12858
|
+
/** WorkflowExecutionConfig envs. */
|
|
12859
|
+
public envs?: (flyteidl.admin.IEnvs|null);
|
|
12860
|
+
|
|
12472
12861
|
/**
|
|
12473
12862
|
* Creates a new WorkflowExecutionConfig instance using the specified properties.
|
|
12474
12863
|
* @param [properties] Properties to set
|
|
@@ -13222,6 +13611,9 @@ export namespace flyteidl {
|
|
|
13222
13611
|
|
|
13223
13612
|
/** NodeExecutionClosure deckUri */
|
|
13224
13613
|
deckUri?: (string|null);
|
|
13614
|
+
|
|
13615
|
+
/** NodeExecutionClosure dynamicJobSpecUri */
|
|
13616
|
+
dynamicJobSpecUri?: (string|null);
|
|
13225
13617
|
}
|
|
13226
13618
|
|
|
13227
13619
|
/** Represents a NodeExecutionClosure. */
|
|
@@ -13266,6 +13658,9 @@ export namespace flyteidl {
|
|
|
13266
13658
|
/** NodeExecutionClosure deckUri. */
|
|
13267
13659
|
public deckUri: string;
|
|
13268
13660
|
|
|
13661
|
+
/** NodeExecutionClosure dynamicJobSpecUri. */
|
|
13662
|
+
public dynamicJobSpecUri: string;
|
|
13663
|
+
|
|
13269
13664
|
/** NodeExecutionClosure outputResult. */
|
|
13270
13665
|
public outputResult?: ("outputUri"|"error"|"outputData");
|
|
13271
13666
|
|
|
@@ -13429,6 +13824,9 @@ export namespace flyteidl {
|
|
|
13429
13824
|
|
|
13430
13825
|
/** DynamicWorkflowNodeMetadata compiledWorkflow */
|
|
13431
13826
|
compiledWorkflow?: (flyteidl.core.ICompiledWorkflowClosure|null);
|
|
13827
|
+
|
|
13828
|
+
/** DynamicWorkflowNodeMetadata dynamicJobSpecUri */
|
|
13829
|
+
dynamicJobSpecUri?: (string|null);
|
|
13432
13830
|
}
|
|
13433
13831
|
|
|
13434
13832
|
/** Represents a DynamicWorkflowNodeMetadata. */
|
|
@@ -13446,6 +13844,9 @@ export namespace flyteidl {
|
|
|
13446
13844
|
/** DynamicWorkflowNodeMetadata compiledWorkflow. */
|
|
13447
13845
|
public compiledWorkflow?: (flyteidl.core.ICompiledWorkflowClosure|null);
|
|
13448
13846
|
|
|
13847
|
+
/** DynamicWorkflowNodeMetadata dynamicJobSpecUri. */
|
|
13848
|
+
public dynamicJobSpecUri: string;
|
|
13849
|
+
|
|
13449
13850
|
/**
|
|
13450
13851
|
* Creates a new DynamicWorkflowNodeMetadata instance using the specified properties.
|
|
13451
13852
|
* @param [properties] Properties to set
|
|
@@ -13548,6 +13949,9 @@ export namespace flyteidl {
|
|
|
13548
13949
|
|
|
13549
13950
|
/** NodeExecutionGetDataResponse dynamicWorkflow */
|
|
13550
13951
|
dynamicWorkflow?: (flyteidl.admin.IDynamicWorkflowNodeMetadata|null);
|
|
13952
|
+
|
|
13953
|
+
/** NodeExecutionGetDataResponse flyteUrls */
|
|
13954
|
+
flyteUrls?: (flyteidl.admin.IFlyteURLs|null);
|
|
13551
13955
|
}
|
|
13552
13956
|
|
|
13553
13957
|
/** Represents a NodeExecutionGetDataResponse. */
|
|
@@ -13574,6 +13978,9 @@ export namespace flyteidl {
|
|
|
13574
13978
|
/** NodeExecutionGetDataResponse dynamicWorkflow. */
|
|
13575
13979
|
public dynamicWorkflow?: (flyteidl.admin.IDynamicWorkflowNodeMetadata|null);
|
|
13576
13980
|
|
|
13981
|
+
/** NodeExecutionGetDataResponse flyteUrls. */
|
|
13982
|
+
public flyteUrls?: (flyteidl.admin.IFlyteURLs|null);
|
|
13983
|
+
|
|
13577
13984
|
/**
|
|
13578
13985
|
* Creates a new NodeExecutionGetDataResponse instance using the specified properties.
|
|
13579
13986
|
* @param [properties] Properties to set
|
|
@@ -15859,6 +16266,9 @@ export namespace flyteidl {
|
|
|
15859
16266
|
|
|
15860
16267
|
/** TaskExecutionClosure eventVersion */
|
|
15861
16268
|
eventVersion?: (number|null);
|
|
16269
|
+
|
|
16270
|
+
/** TaskExecutionClosure reasons */
|
|
16271
|
+
reasons?: (flyteidl.admin.IReason[]|null);
|
|
15862
16272
|
}
|
|
15863
16273
|
|
|
15864
16274
|
/** Represents a TaskExecutionClosure. */
|
|
@@ -15912,6 +16322,9 @@ export namespace flyteidl {
|
|
|
15912
16322
|
/** TaskExecutionClosure eventVersion. */
|
|
15913
16323
|
public eventVersion: number;
|
|
15914
16324
|
|
|
16325
|
+
/** TaskExecutionClosure reasons. */
|
|
16326
|
+
public reasons: flyteidl.admin.IReason[];
|
|
16327
|
+
|
|
15915
16328
|
/** TaskExecutionClosure outputResult. */
|
|
15916
16329
|
public outputResult?: ("outputUri"|"error"|"outputData");
|
|
15917
16330
|
|
|
@@ -15948,6 +16361,64 @@ export namespace flyteidl {
|
|
|
15948
16361
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
15949
16362
|
}
|
|
15950
16363
|
|
|
16364
|
+
/** Properties of a Reason. */
|
|
16365
|
+
interface IReason {
|
|
16366
|
+
|
|
16367
|
+
/** Reason occurredAt */
|
|
16368
|
+
occurredAt?: (google.protobuf.ITimestamp|null);
|
|
16369
|
+
|
|
16370
|
+
/** Reason message */
|
|
16371
|
+
message?: (string|null);
|
|
16372
|
+
}
|
|
16373
|
+
|
|
16374
|
+
/** Represents a Reason. */
|
|
16375
|
+
class Reason implements IReason {
|
|
16376
|
+
|
|
16377
|
+
/**
|
|
16378
|
+
* Constructs a new Reason.
|
|
16379
|
+
* @param [properties] Properties to set
|
|
16380
|
+
*/
|
|
16381
|
+
constructor(properties?: flyteidl.admin.IReason);
|
|
16382
|
+
|
|
16383
|
+
/** Reason occurredAt. */
|
|
16384
|
+
public occurredAt?: (google.protobuf.ITimestamp|null);
|
|
16385
|
+
|
|
16386
|
+
/** Reason message. */
|
|
16387
|
+
public message: string;
|
|
16388
|
+
|
|
16389
|
+
/**
|
|
16390
|
+
* Creates a new Reason instance using the specified properties.
|
|
16391
|
+
* @param [properties] Properties to set
|
|
16392
|
+
* @returns Reason instance
|
|
16393
|
+
*/
|
|
16394
|
+
public static create(properties?: flyteidl.admin.IReason): flyteidl.admin.Reason;
|
|
16395
|
+
|
|
16396
|
+
/**
|
|
16397
|
+
* Encodes the specified Reason message. Does not implicitly {@link flyteidl.admin.Reason.verify|verify} messages.
|
|
16398
|
+
* @param message Reason message or plain object to encode
|
|
16399
|
+
* @param [writer] Writer to encode to
|
|
16400
|
+
* @returns Writer
|
|
16401
|
+
*/
|
|
16402
|
+
public static encode(message: flyteidl.admin.IReason, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
16403
|
+
|
|
16404
|
+
/**
|
|
16405
|
+
* Decodes a Reason message from the specified reader or buffer.
|
|
16406
|
+
* @param reader Reader or buffer to decode from
|
|
16407
|
+
* @param [length] Message length if known beforehand
|
|
16408
|
+
* @returns Reason
|
|
16409
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
16410
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
16411
|
+
*/
|
|
16412
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.Reason;
|
|
16413
|
+
|
|
16414
|
+
/**
|
|
16415
|
+
* Verifies a Reason message.
|
|
16416
|
+
* @param message Plain object to verify
|
|
16417
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
16418
|
+
*/
|
|
16419
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
16420
|
+
}
|
|
16421
|
+
|
|
15951
16422
|
/** Properties of a TaskExecutionGetDataRequest. */
|
|
15952
16423
|
interface ITaskExecutionGetDataRequest {
|
|
15953
16424
|
|
|
@@ -16014,6 +16485,9 @@ export namespace flyteidl {
|
|
|
16014
16485
|
|
|
16015
16486
|
/** TaskExecutionGetDataResponse fullOutputs */
|
|
16016
16487
|
fullOutputs?: (flyteidl.core.ILiteralMap|null);
|
|
16488
|
+
|
|
16489
|
+
/** TaskExecutionGetDataResponse flyteUrls */
|
|
16490
|
+
flyteUrls?: (flyteidl.admin.IFlyteURLs|null);
|
|
16017
16491
|
}
|
|
16018
16492
|
|
|
16019
16493
|
/** Represents a TaskExecutionGetDataResponse. */
|
|
@@ -16037,6 +16511,9 @@ export namespace flyteidl {
|
|
|
16037
16511
|
/** TaskExecutionGetDataResponse fullOutputs. */
|
|
16038
16512
|
public fullOutputs?: (flyteidl.core.ILiteralMap|null);
|
|
16039
16513
|
|
|
16514
|
+
/** TaskExecutionGetDataResponse flyteUrls. */
|
|
16515
|
+
public flyteUrls?: (flyteidl.admin.IFlyteURLs|null);
|
|
16516
|
+
|
|
16040
16517
|
/**
|
|
16041
16518
|
* Creates a new TaskExecutionGetDataResponse instance using the specified properties.
|
|
16042
16519
|
* @param [properties] Properties to set
|
|
@@ -17902,7 +18379,21 @@ export namespace flyteidl {
|
|
|
17902
18379
|
* @returns Promise
|
|
17903
18380
|
*/
|
|
17904
18381
|
public listDescriptionEntities(request: flyteidl.admin.IDescriptionEntityListRequest): Promise<flyteidl.admin.DescriptionEntityList>;
|
|
17905
|
-
|
|
18382
|
+
|
|
18383
|
+
/**
|
|
18384
|
+
* Calls GetExecutionMetrics.
|
|
18385
|
+
* @param request WorkflowExecutionGetMetricsRequest message or plain object
|
|
18386
|
+
* @param callback Node-style callback called with the error, if any, and WorkflowExecutionGetMetricsResponse
|
|
18387
|
+
*/
|
|
18388
|
+
public getExecutionMetrics(request: flyteidl.admin.IWorkflowExecutionGetMetricsRequest, callback: flyteidl.service.AdminService.GetExecutionMetricsCallback): void;
|
|
18389
|
+
|
|
18390
|
+
/**
|
|
18391
|
+
* Calls GetExecutionMetrics.
|
|
18392
|
+
* @param request WorkflowExecutionGetMetricsRequest message or plain object
|
|
18393
|
+
* @returns Promise
|
|
18394
|
+
*/
|
|
18395
|
+
public getExecutionMetrics(request: flyteidl.admin.IWorkflowExecutionGetMetricsRequest): Promise<flyteidl.admin.WorkflowExecutionGetMetricsResponse>;
|
|
18396
|
+
}
|
|
17906
18397
|
|
|
17907
18398
|
namespace AdminService {
|
|
17908
18399
|
|
|
@@ -18269,6 +18760,13 @@ export namespace flyteidl {
|
|
|
18269
18760
|
* @param [response] DescriptionEntityList
|
|
18270
18761
|
*/
|
|
18271
18762
|
type ListDescriptionEntitiesCallback = (error: (Error|null), response?: flyteidl.admin.DescriptionEntityList) => void;
|
|
18763
|
+
|
|
18764
|
+
/**
|
|
18765
|
+
* Callback as used by {@link flyteidl.service.AdminService#getExecutionMetrics}.
|
|
18766
|
+
* @param error Error, if any
|
|
18767
|
+
* @param [response] WorkflowExecutionGetMetricsResponse
|
|
18768
|
+
*/
|
|
18769
|
+
type GetExecutionMetricsCallback = (error: (Error|null), response?: flyteidl.admin.WorkflowExecutionGetMetricsResponse) => void;
|
|
18272
18770
|
}
|
|
18273
18771
|
|
|
18274
18772
|
/** Properties of a OAuth2MetadataRequest. */
|
|
@@ -18954,6 +19452,9 @@ export namespace flyteidl {
|
|
|
18954
19452
|
|
|
18955
19453
|
/** CreateDownloadLinkResponse expiresAt */
|
|
18956
19454
|
expiresAt?: (google.protobuf.ITimestamp|null);
|
|
19455
|
+
|
|
19456
|
+
/** CreateDownloadLinkResponse preSignedUrls */
|
|
19457
|
+
preSignedUrls?: (flyteidl.service.IPreSignedURLs|null);
|
|
18957
19458
|
}
|
|
18958
19459
|
|
|
18959
19460
|
/** Represents a CreateDownloadLinkResponse. */
|
|
@@ -18971,6 +19472,9 @@ export namespace flyteidl {
|
|
|
18971
19472
|
/** CreateDownloadLinkResponse expiresAt. */
|
|
18972
19473
|
public expiresAt?: (google.protobuf.ITimestamp|null);
|
|
18973
19474
|
|
|
19475
|
+
/** CreateDownloadLinkResponse preSignedUrls. */
|
|
19476
|
+
public preSignedUrls?: (flyteidl.service.IPreSignedURLs|null);
|
|
19477
|
+
|
|
18974
19478
|
/**
|
|
18975
19479
|
* Creates a new CreateDownloadLinkResponse instance using the specified properties.
|
|
18976
19480
|
* @param [properties] Properties to set
|
|
@@ -19004,6 +19508,177 @@ export namespace flyteidl {
|
|
|
19004
19508
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
19005
19509
|
}
|
|
19006
19510
|
|
|
19511
|
+
/** Properties of a PreSignedURLs. */
|
|
19512
|
+
interface IPreSignedURLs {
|
|
19513
|
+
|
|
19514
|
+
/** PreSignedURLs signedUrl */
|
|
19515
|
+
signedUrl?: (string[]|null);
|
|
19516
|
+
|
|
19517
|
+
/** PreSignedURLs expiresAt */
|
|
19518
|
+
expiresAt?: (google.protobuf.ITimestamp|null);
|
|
19519
|
+
}
|
|
19520
|
+
|
|
19521
|
+
/** Represents a PreSignedURLs. */
|
|
19522
|
+
class PreSignedURLs implements IPreSignedURLs {
|
|
19523
|
+
|
|
19524
|
+
/**
|
|
19525
|
+
* Constructs a new PreSignedURLs.
|
|
19526
|
+
* @param [properties] Properties to set
|
|
19527
|
+
*/
|
|
19528
|
+
constructor(properties?: flyteidl.service.IPreSignedURLs);
|
|
19529
|
+
|
|
19530
|
+
/** PreSignedURLs signedUrl. */
|
|
19531
|
+
public signedUrl: string[];
|
|
19532
|
+
|
|
19533
|
+
/** PreSignedURLs expiresAt. */
|
|
19534
|
+
public expiresAt?: (google.protobuf.ITimestamp|null);
|
|
19535
|
+
|
|
19536
|
+
/**
|
|
19537
|
+
* Creates a new PreSignedURLs instance using the specified properties.
|
|
19538
|
+
* @param [properties] Properties to set
|
|
19539
|
+
* @returns PreSignedURLs instance
|
|
19540
|
+
*/
|
|
19541
|
+
public static create(properties?: flyteidl.service.IPreSignedURLs): flyteidl.service.PreSignedURLs;
|
|
19542
|
+
|
|
19543
|
+
/**
|
|
19544
|
+
* Encodes the specified PreSignedURLs message. Does not implicitly {@link flyteidl.service.PreSignedURLs.verify|verify} messages.
|
|
19545
|
+
* @param message PreSignedURLs message or plain object to encode
|
|
19546
|
+
* @param [writer] Writer to encode to
|
|
19547
|
+
* @returns Writer
|
|
19548
|
+
*/
|
|
19549
|
+
public static encode(message: flyteidl.service.IPreSignedURLs, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
19550
|
+
|
|
19551
|
+
/**
|
|
19552
|
+
* Decodes a PreSignedURLs message from the specified reader or buffer.
|
|
19553
|
+
* @param reader Reader or buffer to decode from
|
|
19554
|
+
* @param [length] Message length if known beforehand
|
|
19555
|
+
* @returns PreSignedURLs
|
|
19556
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
19557
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
19558
|
+
*/
|
|
19559
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.service.PreSignedURLs;
|
|
19560
|
+
|
|
19561
|
+
/**
|
|
19562
|
+
* Verifies a PreSignedURLs message.
|
|
19563
|
+
* @param message Plain object to verify
|
|
19564
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
19565
|
+
*/
|
|
19566
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
19567
|
+
}
|
|
19568
|
+
|
|
19569
|
+
/** Properties of a GetDataRequest. */
|
|
19570
|
+
interface IGetDataRequest {
|
|
19571
|
+
|
|
19572
|
+
/** GetDataRequest flyteUrl */
|
|
19573
|
+
flyteUrl?: (string|null);
|
|
19574
|
+
}
|
|
19575
|
+
|
|
19576
|
+
/** Represents a GetDataRequest. */
|
|
19577
|
+
class GetDataRequest implements IGetDataRequest {
|
|
19578
|
+
|
|
19579
|
+
/**
|
|
19580
|
+
* Constructs a new GetDataRequest.
|
|
19581
|
+
* @param [properties] Properties to set
|
|
19582
|
+
*/
|
|
19583
|
+
constructor(properties?: flyteidl.service.IGetDataRequest);
|
|
19584
|
+
|
|
19585
|
+
/** GetDataRequest flyteUrl. */
|
|
19586
|
+
public flyteUrl: string;
|
|
19587
|
+
|
|
19588
|
+
/**
|
|
19589
|
+
* Creates a new GetDataRequest instance using the specified properties.
|
|
19590
|
+
* @param [properties] Properties to set
|
|
19591
|
+
* @returns GetDataRequest instance
|
|
19592
|
+
*/
|
|
19593
|
+
public static create(properties?: flyteidl.service.IGetDataRequest): flyteidl.service.GetDataRequest;
|
|
19594
|
+
|
|
19595
|
+
/**
|
|
19596
|
+
* Encodes the specified GetDataRequest message. Does not implicitly {@link flyteidl.service.GetDataRequest.verify|verify} messages.
|
|
19597
|
+
* @param message GetDataRequest message or plain object to encode
|
|
19598
|
+
* @param [writer] Writer to encode to
|
|
19599
|
+
* @returns Writer
|
|
19600
|
+
*/
|
|
19601
|
+
public static encode(message: flyteidl.service.IGetDataRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
19602
|
+
|
|
19603
|
+
/**
|
|
19604
|
+
* Decodes a GetDataRequest message from the specified reader or buffer.
|
|
19605
|
+
* @param reader Reader or buffer to decode from
|
|
19606
|
+
* @param [length] Message length if known beforehand
|
|
19607
|
+
* @returns GetDataRequest
|
|
19608
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
19609
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
19610
|
+
*/
|
|
19611
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.service.GetDataRequest;
|
|
19612
|
+
|
|
19613
|
+
/**
|
|
19614
|
+
* Verifies a GetDataRequest message.
|
|
19615
|
+
* @param message Plain object to verify
|
|
19616
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
19617
|
+
*/
|
|
19618
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
19619
|
+
}
|
|
19620
|
+
|
|
19621
|
+
/** Properties of a GetDataResponse. */
|
|
19622
|
+
interface IGetDataResponse {
|
|
19623
|
+
|
|
19624
|
+
/** GetDataResponse literalMap */
|
|
19625
|
+
literalMap?: (flyteidl.core.ILiteralMap|null);
|
|
19626
|
+
|
|
19627
|
+
/** GetDataResponse preSignedUrls */
|
|
19628
|
+
preSignedUrls?: (flyteidl.service.IPreSignedURLs|null);
|
|
19629
|
+
}
|
|
19630
|
+
|
|
19631
|
+
/** Represents a GetDataResponse. */
|
|
19632
|
+
class GetDataResponse implements IGetDataResponse {
|
|
19633
|
+
|
|
19634
|
+
/**
|
|
19635
|
+
* Constructs a new GetDataResponse.
|
|
19636
|
+
* @param [properties] Properties to set
|
|
19637
|
+
*/
|
|
19638
|
+
constructor(properties?: flyteidl.service.IGetDataResponse);
|
|
19639
|
+
|
|
19640
|
+
/** GetDataResponse literalMap. */
|
|
19641
|
+
public literalMap?: (flyteidl.core.ILiteralMap|null);
|
|
19642
|
+
|
|
19643
|
+
/** GetDataResponse preSignedUrls. */
|
|
19644
|
+
public preSignedUrls?: (flyteidl.service.IPreSignedURLs|null);
|
|
19645
|
+
|
|
19646
|
+
/** GetDataResponse data. */
|
|
19647
|
+
public data?: ("literalMap"|"preSignedUrls");
|
|
19648
|
+
|
|
19649
|
+
/**
|
|
19650
|
+
* Creates a new GetDataResponse instance using the specified properties.
|
|
19651
|
+
* @param [properties] Properties to set
|
|
19652
|
+
* @returns GetDataResponse instance
|
|
19653
|
+
*/
|
|
19654
|
+
public static create(properties?: flyteidl.service.IGetDataResponse): flyteidl.service.GetDataResponse;
|
|
19655
|
+
|
|
19656
|
+
/**
|
|
19657
|
+
* Encodes the specified GetDataResponse message. Does not implicitly {@link flyteidl.service.GetDataResponse.verify|verify} messages.
|
|
19658
|
+
* @param message GetDataResponse message or plain object to encode
|
|
19659
|
+
* @param [writer] Writer to encode to
|
|
19660
|
+
* @returns Writer
|
|
19661
|
+
*/
|
|
19662
|
+
public static encode(message: flyteidl.service.IGetDataResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
19663
|
+
|
|
19664
|
+
/**
|
|
19665
|
+
* Decodes a GetDataResponse message from the specified reader or buffer.
|
|
19666
|
+
* @param reader Reader or buffer to decode from
|
|
19667
|
+
* @param [length] Message length if known beforehand
|
|
19668
|
+
* @returns GetDataResponse
|
|
19669
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
19670
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
19671
|
+
*/
|
|
19672
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.service.GetDataResponse;
|
|
19673
|
+
|
|
19674
|
+
/**
|
|
19675
|
+
* Verifies a GetDataResponse message.
|
|
19676
|
+
* @param message Plain object to verify
|
|
19677
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
19678
|
+
*/
|
|
19679
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
19680
|
+
}
|
|
19681
|
+
|
|
19007
19682
|
/** Represents a DataProxyService */
|
|
19008
19683
|
class DataProxyService extends $protobuf.rpc.Service {
|
|
19009
19684
|
|
|
@@ -19065,6 +19740,20 @@ export namespace flyteidl {
|
|
|
19065
19740
|
* @returns Promise
|
|
19066
19741
|
*/
|
|
19067
19742
|
public createDownloadLink(request: flyteidl.service.ICreateDownloadLinkRequest): Promise<flyteidl.service.CreateDownloadLinkResponse>;
|
|
19743
|
+
|
|
19744
|
+
/**
|
|
19745
|
+
* Calls GetData.
|
|
19746
|
+
* @param request GetDataRequest message or plain object
|
|
19747
|
+
* @param callback Node-style callback called with the error, if any, and GetDataResponse
|
|
19748
|
+
*/
|
|
19749
|
+
public getData(request: flyteidl.service.IGetDataRequest, callback: flyteidl.service.DataProxyService.GetDataCallback): void;
|
|
19750
|
+
|
|
19751
|
+
/**
|
|
19752
|
+
* Calls GetData.
|
|
19753
|
+
* @param request GetDataRequest message or plain object
|
|
19754
|
+
* @returns Promise
|
|
19755
|
+
*/
|
|
19756
|
+
public getData(request: flyteidl.service.IGetDataRequest): Promise<flyteidl.service.GetDataResponse>;
|
|
19068
19757
|
}
|
|
19069
19758
|
|
|
19070
19759
|
namespace DataProxyService {
|
|
@@ -19089,6 +19778,445 @@ export namespace flyteidl {
|
|
|
19089
19778
|
* @param [response] CreateDownloadLinkResponse
|
|
19090
19779
|
*/
|
|
19091
19780
|
type CreateDownloadLinkCallback = (error: (Error|null), response?: flyteidl.service.CreateDownloadLinkResponse) => void;
|
|
19781
|
+
|
|
19782
|
+
/**
|
|
19783
|
+
* Callback as used by {@link flyteidl.service.DataProxyService#getData}.
|
|
19784
|
+
* @param error Error, if any
|
|
19785
|
+
* @param [response] GetDataResponse
|
|
19786
|
+
*/
|
|
19787
|
+
type GetDataCallback = (error: (Error|null), response?: flyteidl.service.GetDataResponse) => void;
|
|
19788
|
+
}
|
|
19789
|
+
|
|
19790
|
+
/** Represents an ExternalPluginService */
|
|
19791
|
+
class ExternalPluginService extends $protobuf.rpc.Service {
|
|
19792
|
+
|
|
19793
|
+
/**
|
|
19794
|
+
* Constructs a new ExternalPluginService service.
|
|
19795
|
+
* @param rpcImpl RPC implementation
|
|
19796
|
+
* @param [requestDelimited=false] Whether requests are length-delimited
|
|
19797
|
+
* @param [responseDelimited=false] Whether responses are length-delimited
|
|
19798
|
+
*/
|
|
19799
|
+
constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean);
|
|
19800
|
+
|
|
19801
|
+
/**
|
|
19802
|
+
* Creates new ExternalPluginService service using the specified rpc implementation.
|
|
19803
|
+
* @param rpcImpl RPC implementation
|
|
19804
|
+
* @param [requestDelimited=false] Whether requests are length-delimited
|
|
19805
|
+
* @param [responseDelimited=false] Whether responses are length-delimited
|
|
19806
|
+
* @returns RPC service. Useful where requests and/or responses are streamed.
|
|
19807
|
+
*/
|
|
19808
|
+
public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): ExternalPluginService;
|
|
19809
|
+
|
|
19810
|
+
/**
|
|
19811
|
+
* Calls CreateTask.
|
|
19812
|
+
* @param request TaskCreateRequest message or plain object
|
|
19813
|
+
* @param callback Node-style callback called with the error, if any, and TaskCreateResponse
|
|
19814
|
+
*/
|
|
19815
|
+
public createTask(request: flyteidl.service.ITaskCreateRequest, callback: flyteidl.service.ExternalPluginService.CreateTaskCallback): void;
|
|
19816
|
+
|
|
19817
|
+
/**
|
|
19818
|
+
* Calls CreateTask.
|
|
19819
|
+
* @param request TaskCreateRequest message or plain object
|
|
19820
|
+
* @returns Promise
|
|
19821
|
+
*/
|
|
19822
|
+
public createTask(request: flyteidl.service.ITaskCreateRequest): Promise<flyteidl.service.TaskCreateResponse>;
|
|
19823
|
+
|
|
19824
|
+
/**
|
|
19825
|
+
* Calls GetTask.
|
|
19826
|
+
* @param request TaskGetRequest message or plain object
|
|
19827
|
+
* @param callback Node-style callback called with the error, if any, and TaskGetResponse
|
|
19828
|
+
*/
|
|
19829
|
+
public getTask(request: flyteidl.service.ITaskGetRequest, callback: flyteidl.service.ExternalPluginService.GetTaskCallback): void;
|
|
19830
|
+
|
|
19831
|
+
/**
|
|
19832
|
+
* Calls GetTask.
|
|
19833
|
+
* @param request TaskGetRequest message or plain object
|
|
19834
|
+
* @returns Promise
|
|
19835
|
+
*/
|
|
19836
|
+
public getTask(request: flyteidl.service.ITaskGetRequest): Promise<flyteidl.service.TaskGetResponse>;
|
|
19837
|
+
|
|
19838
|
+
/**
|
|
19839
|
+
* Calls DeleteTask.
|
|
19840
|
+
* @param request TaskDeleteRequest message or plain object
|
|
19841
|
+
* @param callback Node-style callback called with the error, if any, and TaskDeleteResponse
|
|
19842
|
+
*/
|
|
19843
|
+
public deleteTask(request: flyteidl.service.ITaskDeleteRequest, callback: flyteidl.service.ExternalPluginService.DeleteTaskCallback): void;
|
|
19844
|
+
|
|
19845
|
+
/**
|
|
19846
|
+
* Calls DeleteTask.
|
|
19847
|
+
* @param request TaskDeleteRequest message or plain object
|
|
19848
|
+
* @returns Promise
|
|
19849
|
+
*/
|
|
19850
|
+
public deleteTask(request: flyteidl.service.ITaskDeleteRequest): Promise<flyteidl.service.TaskDeleteResponse>;
|
|
19851
|
+
}
|
|
19852
|
+
|
|
19853
|
+
namespace ExternalPluginService {
|
|
19854
|
+
|
|
19855
|
+
/**
|
|
19856
|
+
* Callback as used by {@link flyteidl.service.ExternalPluginService#createTask}.
|
|
19857
|
+
* @param error Error, if any
|
|
19858
|
+
* @param [response] TaskCreateResponse
|
|
19859
|
+
*/
|
|
19860
|
+
type CreateTaskCallback = (error: (Error|null), response?: flyteidl.service.TaskCreateResponse) => void;
|
|
19861
|
+
|
|
19862
|
+
/**
|
|
19863
|
+
* Callback as used by {@link flyteidl.service.ExternalPluginService#getTask}.
|
|
19864
|
+
* @param error Error, if any
|
|
19865
|
+
* @param [response] TaskGetResponse
|
|
19866
|
+
*/
|
|
19867
|
+
type GetTaskCallback = (error: (Error|null), response?: flyteidl.service.TaskGetResponse) => void;
|
|
19868
|
+
|
|
19869
|
+
/**
|
|
19870
|
+
* Callback as used by {@link flyteidl.service.ExternalPluginService#deleteTask}.
|
|
19871
|
+
* @param error Error, if any
|
|
19872
|
+
* @param [response] TaskDeleteResponse
|
|
19873
|
+
*/
|
|
19874
|
+
type DeleteTaskCallback = (error: (Error|null), response?: flyteidl.service.TaskDeleteResponse) => void;
|
|
19875
|
+
}
|
|
19876
|
+
|
|
19877
|
+
/** State enum. */
|
|
19878
|
+
enum State {
|
|
19879
|
+
RETRYABLE_FAILURE = 0,
|
|
19880
|
+
PERMANENT_FAILURE = 1,
|
|
19881
|
+
PENDING = 2,
|
|
19882
|
+
RUNNING = 3,
|
|
19883
|
+
SUCCEEDED = 4
|
|
19884
|
+
}
|
|
19885
|
+
|
|
19886
|
+
/** Properties of a TaskCreateRequest. */
|
|
19887
|
+
interface ITaskCreateRequest {
|
|
19888
|
+
|
|
19889
|
+
/** TaskCreateRequest inputs */
|
|
19890
|
+
inputs?: (flyteidl.core.ILiteralMap|null);
|
|
19891
|
+
|
|
19892
|
+
/** TaskCreateRequest template */
|
|
19893
|
+
template?: (flyteidl.core.ITaskTemplate|null);
|
|
19894
|
+
|
|
19895
|
+
/** TaskCreateRequest outputPrefix */
|
|
19896
|
+
outputPrefix?: (string|null);
|
|
19897
|
+
}
|
|
19898
|
+
|
|
19899
|
+
/** Represents a TaskCreateRequest. */
|
|
19900
|
+
class TaskCreateRequest implements ITaskCreateRequest {
|
|
19901
|
+
|
|
19902
|
+
/**
|
|
19903
|
+
* Constructs a new TaskCreateRequest.
|
|
19904
|
+
* @param [properties] Properties to set
|
|
19905
|
+
*/
|
|
19906
|
+
constructor(properties?: flyteidl.service.ITaskCreateRequest);
|
|
19907
|
+
|
|
19908
|
+
/** TaskCreateRequest inputs. */
|
|
19909
|
+
public inputs?: (flyteidl.core.ILiteralMap|null);
|
|
19910
|
+
|
|
19911
|
+
/** TaskCreateRequest template. */
|
|
19912
|
+
public template?: (flyteidl.core.ITaskTemplate|null);
|
|
19913
|
+
|
|
19914
|
+
/** TaskCreateRequest outputPrefix. */
|
|
19915
|
+
public outputPrefix: string;
|
|
19916
|
+
|
|
19917
|
+
/**
|
|
19918
|
+
* Creates a new TaskCreateRequest instance using the specified properties.
|
|
19919
|
+
* @param [properties] Properties to set
|
|
19920
|
+
* @returns TaskCreateRequest instance
|
|
19921
|
+
*/
|
|
19922
|
+
public static create(properties?: flyteidl.service.ITaskCreateRequest): flyteidl.service.TaskCreateRequest;
|
|
19923
|
+
|
|
19924
|
+
/**
|
|
19925
|
+
* Encodes the specified TaskCreateRequest message. Does not implicitly {@link flyteidl.service.TaskCreateRequest.verify|verify} messages.
|
|
19926
|
+
* @param message TaskCreateRequest message or plain object to encode
|
|
19927
|
+
* @param [writer] Writer to encode to
|
|
19928
|
+
* @returns Writer
|
|
19929
|
+
*/
|
|
19930
|
+
public static encode(message: flyteidl.service.ITaskCreateRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
19931
|
+
|
|
19932
|
+
/**
|
|
19933
|
+
* Decodes a TaskCreateRequest message from the specified reader or buffer.
|
|
19934
|
+
* @param reader Reader or buffer to decode from
|
|
19935
|
+
* @param [length] Message length if known beforehand
|
|
19936
|
+
* @returns TaskCreateRequest
|
|
19937
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
19938
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
19939
|
+
*/
|
|
19940
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.service.TaskCreateRequest;
|
|
19941
|
+
|
|
19942
|
+
/**
|
|
19943
|
+
* Verifies a TaskCreateRequest message.
|
|
19944
|
+
* @param message Plain object to verify
|
|
19945
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
19946
|
+
*/
|
|
19947
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
19948
|
+
}
|
|
19949
|
+
|
|
19950
|
+
/** Properties of a TaskCreateResponse. */
|
|
19951
|
+
interface ITaskCreateResponse {
|
|
19952
|
+
|
|
19953
|
+
/** TaskCreateResponse jobId */
|
|
19954
|
+
jobId?: (string|null);
|
|
19955
|
+
}
|
|
19956
|
+
|
|
19957
|
+
/** Represents a TaskCreateResponse. */
|
|
19958
|
+
class TaskCreateResponse implements ITaskCreateResponse {
|
|
19959
|
+
|
|
19960
|
+
/**
|
|
19961
|
+
* Constructs a new TaskCreateResponse.
|
|
19962
|
+
* @param [properties] Properties to set
|
|
19963
|
+
*/
|
|
19964
|
+
constructor(properties?: flyteidl.service.ITaskCreateResponse);
|
|
19965
|
+
|
|
19966
|
+
/** TaskCreateResponse jobId. */
|
|
19967
|
+
public jobId: string;
|
|
19968
|
+
|
|
19969
|
+
/**
|
|
19970
|
+
* Creates a new TaskCreateResponse instance using the specified properties.
|
|
19971
|
+
* @param [properties] Properties to set
|
|
19972
|
+
* @returns TaskCreateResponse instance
|
|
19973
|
+
*/
|
|
19974
|
+
public static create(properties?: flyteidl.service.ITaskCreateResponse): flyteidl.service.TaskCreateResponse;
|
|
19975
|
+
|
|
19976
|
+
/**
|
|
19977
|
+
* Encodes the specified TaskCreateResponse message. Does not implicitly {@link flyteidl.service.TaskCreateResponse.verify|verify} messages.
|
|
19978
|
+
* @param message TaskCreateResponse message or plain object to encode
|
|
19979
|
+
* @param [writer] Writer to encode to
|
|
19980
|
+
* @returns Writer
|
|
19981
|
+
*/
|
|
19982
|
+
public static encode(message: flyteidl.service.ITaskCreateResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
19983
|
+
|
|
19984
|
+
/**
|
|
19985
|
+
* Decodes a TaskCreateResponse message from the specified reader or buffer.
|
|
19986
|
+
* @param reader Reader or buffer to decode from
|
|
19987
|
+
* @param [length] Message length if known beforehand
|
|
19988
|
+
* @returns TaskCreateResponse
|
|
19989
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
19990
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
19991
|
+
*/
|
|
19992
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.service.TaskCreateResponse;
|
|
19993
|
+
|
|
19994
|
+
/**
|
|
19995
|
+
* Verifies a TaskCreateResponse message.
|
|
19996
|
+
* @param message Plain object to verify
|
|
19997
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
19998
|
+
*/
|
|
19999
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
20000
|
+
}
|
|
20001
|
+
|
|
20002
|
+
/** Properties of a TaskGetRequest. */
|
|
20003
|
+
interface ITaskGetRequest {
|
|
20004
|
+
|
|
20005
|
+
/** TaskGetRequest taskType */
|
|
20006
|
+
taskType?: (string|null);
|
|
20007
|
+
|
|
20008
|
+
/** TaskGetRequest jobId */
|
|
20009
|
+
jobId?: (string|null);
|
|
20010
|
+
}
|
|
20011
|
+
|
|
20012
|
+
/** Represents a TaskGetRequest. */
|
|
20013
|
+
class TaskGetRequest implements ITaskGetRequest {
|
|
20014
|
+
|
|
20015
|
+
/**
|
|
20016
|
+
* Constructs a new TaskGetRequest.
|
|
20017
|
+
* @param [properties] Properties to set
|
|
20018
|
+
*/
|
|
20019
|
+
constructor(properties?: flyteidl.service.ITaskGetRequest);
|
|
20020
|
+
|
|
20021
|
+
/** TaskGetRequest taskType. */
|
|
20022
|
+
public taskType: string;
|
|
20023
|
+
|
|
20024
|
+
/** TaskGetRequest jobId. */
|
|
20025
|
+
public jobId: string;
|
|
20026
|
+
|
|
20027
|
+
/**
|
|
20028
|
+
* Creates a new TaskGetRequest instance using the specified properties.
|
|
20029
|
+
* @param [properties] Properties to set
|
|
20030
|
+
* @returns TaskGetRequest instance
|
|
20031
|
+
*/
|
|
20032
|
+
public static create(properties?: flyteidl.service.ITaskGetRequest): flyteidl.service.TaskGetRequest;
|
|
20033
|
+
|
|
20034
|
+
/**
|
|
20035
|
+
* Encodes the specified TaskGetRequest message. Does not implicitly {@link flyteidl.service.TaskGetRequest.verify|verify} messages.
|
|
20036
|
+
* @param message TaskGetRequest message or plain object to encode
|
|
20037
|
+
* @param [writer] Writer to encode to
|
|
20038
|
+
* @returns Writer
|
|
20039
|
+
*/
|
|
20040
|
+
public static encode(message: flyteidl.service.ITaskGetRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
20041
|
+
|
|
20042
|
+
/**
|
|
20043
|
+
* Decodes a TaskGetRequest message from the specified reader or buffer.
|
|
20044
|
+
* @param reader Reader or buffer to decode from
|
|
20045
|
+
* @param [length] Message length if known beforehand
|
|
20046
|
+
* @returns TaskGetRequest
|
|
20047
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
20048
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
20049
|
+
*/
|
|
20050
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.service.TaskGetRequest;
|
|
20051
|
+
|
|
20052
|
+
/**
|
|
20053
|
+
* Verifies a TaskGetRequest message.
|
|
20054
|
+
* @param message Plain object to verify
|
|
20055
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
20056
|
+
*/
|
|
20057
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
20058
|
+
}
|
|
20059
|
+
|
|
20060
|
+
/** Properties of a TaskGetResponse. */
|
|
20061
|
+
interface ITaskGetResponse {
|
|
20062
|
+
|
|
20063
|
+
/** TaskGetResponse state */
|
|
20064
|
+
state?: (flyteidl.service.State|null);
|
|
20065
|
+
|
|
20066
|
+
/** TaskGetResponse outputs */
|
|
20067
|
+
outputs?: (flyteidl.core.ILiteralMap|null);
|
|
20068
|
+
}
|
|
20069
|
+
|
|
20070
|
+
/** Represents a TaskGetResponse. */
|
|
20071
|
+
class TaskGetResponse implements ITaskGetResponse {
|
|
20072
|
+
|
|
20073
|
+
/**
|
|
20074
|
+
* Constructs a new TaskGetResponse.
|
|
20075
|
+
* @param [properties] Properties to set
|
|
20076
|
+
*/
|
|
20077
|
+
constructor(properties?: flyteidl.service.ITaskGetResponse);
|
|
20078
|
+
|
|
20079
|
+
/** TaskGetResponse state. */
|
|
20080
|
+
public state: flyteidl.service.State;
|
|
20081
|
+
|
|
20082
|
+
/** TaskGetResponse outputs. */
|
|
20083
|
+
public outputs?: (flyteidl.core.ILiteralMap|null);
|
|
20084
|
+
|
|
20085
|
+
/**
|
|
20086
|
+
* Creates a new TaskGetResponse instance using the specified properties.
|
|
20087
|
+
* @param [properties] Properties to set
|
|
20088
|
+
* @returns TaskGetResponse instance
|
|
20089
|
+
*/
|
|
20090
|
+
public static create(properties?: flyteidl.service.ITaskGetResponse): flyteidl.service.TaskGetResponse;
|
|
20091
|
+
|
|
20092
|
+
/**
|
|
20093
|
+
* Encodes the specified TaskGetResponse message. Does not implicitly {@link flyteidl.service.TaskGetResponse.verify|verify} messages.
|
|
20094
|
+
* @param message TaskGetResponse message or plain object to encode
|
|
20095
|
+
* @param [writer] Writer to encode to
|
|
20096
|
+
* @returns Writer
|
|
20097
|
+
*/
|
|
20098
|
+
public static encode(message: flyteidl.service.ITaskGetResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
20099
|
+
|
|
20100
|
+
/**
|
|
20101
|
+
* Decodes a TaskGetResponse message from the specified reader or buffer.
|
|
20102
|
+
* @param reader Reader or buffer to decode from
|
|
20103
|
+
* @param [length] Message length if known beforehand
|
|
20104
|
+
* @returns TaskGetResponse
|
|
20105
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
20106
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
20107
|
+
*/
|
|
20108
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.service.TaskGetResponse;
|
|
20109
|
+
|
|
20110
|
+
/**
|
|
20111
|
+
* Verifies a TaskGetResponse message.
|
|
20112
|
+
* @param message Plain object to verify
|
|
20113
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
20114
|
+
*/
|
|
20115
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
20116
|
+
}
|
|
20117
|
+
|
|
20118
|
+
/** Properties of a TaskDeleteRequest. */
|
|
20119
|
+
interface ITaskDeleteRequest {
|
|
20120
|
+
|
|
20121
|
+
/** TaskDeleteRequest taskType */
|
|
20122
|
+
taskType?: (string|null);
|
|
20123
|
+
|
|
20124
|
+
/** TaskDeleteRequest jobId */
|
|
20125
|
+
jobId?: (string|null);
|
|
20126
|
+
}
|
|
20127
|
+
|
|
20128
|
+
/** Represents a TaskDeleteRequest. */
|
|
20129
|
+
class TaskDeleteRequest implements ITaskDeleteRequest {
|
|
20130
|
+
|
|
20131
|
+
/**
|
|
20132
|
+
* Constructs a new TaskDeleteRequest.
|
|
20133
|
+
* @param [properties] Properties to set
|
|
20134
|
+
*/
|
|
20135
|
+
constructor(properties?: flyteidl.service.ITaskDeleteRequest);
|
|
20136
|
+
|
|
20137
|
+
/** TaskDeleteRequest taskType. */
|
|
20138
|
+
public taskType: string;
|
|
20139
|
+
|
|
20140
|
+
/** TaskDeleteRequest jobId. */
|
|
20141
|
+
public jobId: string;
|
|
20142
|
+
|
|
20143
|
+
/**
|
|
20144
|
+
* Creates a new TaskDeleteRequest instance using the specified properties.
|
|
20145
|
+
* @param [properties] Properties to set
|
|
20146
|
+
* @returns TaskDeleteRequest instance
|
|
20147
|
+
*/
|
|
20148
|
+
public static create(properties?: flyteidl.service.ITaskDeleteRequest): flyteidl.service.TaskDeleteRequest;
|
|
20149
|
+
|
|
20150
|
+
/**
|
|
20151
|
+
* Encodes the specified TaskDeleteRequest message. Does not implicitly {@link flyteidl.service.TaskDeleteRequest.verify|verify} messages.
|
|
20152
|
+
* @param message TaskDeleteRequest message or plain object to encode
|
|
20153
|
+
* @param [writer] Writer to encode to
|
|
20154
|
+
* @returns Writer
|
|
20155
|
+
*/
|
|
20156
|
+
public static encode(message: flyteidl.service.ITaskDeleteRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
20157
|
+
|
|
20158
|
+
/**
|
|
20159
|
+
* Decodes a TaskDeleteRequest message from the specified reader or buffer.
|
|
20160
|
+
* @param reader Reader or buffer to decode from
|
|
20161
|
+
* @param [length] Message length if known beforehand
|
|
20162
|
+
* @returns TaskDeleteRequest
|
|
20163
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
20164
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
20165
|
+
*/
|
|
20166
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.service.TaskDeleteRequest;
|
|
20167
|
+
|
|
20168
|
+
/**
|
|
20169
|
+
* Verifies a TaskDeleteRequest message.
|
|
20170
|
+
* @param message Plain object to verify
|
|
20171
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
20172
|
+
*/
|
|
20173
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
20174
|
+
}
|
|
20175
|
+
|
|
20176
|
+
/** Properties of a TaskDeleteResponse. */
|
|
20177
|
+
interface ITaskDeleteResponse {
|
|
20178
|
+
}
|
|
20179
|
+
|
|
20180
|
+
/** Represents a TaskDeleteResponse. */
|
|
20181
|
+
class TaskDeleteResponse implements ITaskDeleteResponse {
|
|
20182
|
+
|
|
20183
|
+
/**
|
|
20184
|
+
* Constructs a new TaskDeleteResponse.
|
|
20185
|
+
* @param [properties] Properties to set
|
|
20186
|
+
*/
|
|
20187
|
+
constructor(properties?: flyteidl.service.ITaskDeleteResponse);
|
|
20188
|
+
|
|
20189
|
+
/**
|
|
20190
|
+
* Creates a new TaskDeleteResponse instance using the specified properties.
|
|
20191
|
+
* @param [properties] Properties to set
|
|
20192
|
+
* @returns TaskDeleteResponse instance
|
|
20193
|
+
*/
|
|
20194
|
+
public static create(properties?: flyteidl.service.ITaskDeleteResponse): flyteidl.service.TaskDeleteResponse;
|
|
20195
|
+
|
|
20196
|
+
/**
|
|
20197
|
+
* Encodes the specified TaskDeleteResponse message. Does not implicitly {@link flyteidl.service.TaskDeleteResponse.verify|verify} messages.
|
|
20198
|
+
* @param message TaskDeleteResponse message or plain object to encode
|
|
20199
|
+
* @param [writer] Writer to encode to
|
|
20200
|
+
* @returns Writer
|
|
20201
|
+
*/
|
|
20202
|
+
public static encode(message: flyteidl.service.ITaskDeleteResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
20203
|
+
|
|
20204
|
+
/**
|
|
20205
|
+
* Decodes a TaskDeleteResponse message from the specified reader or buffer.
|
|
20206
|
+
* @param reader Reader or buffer to decode from
|
|
20207
|
+
* @param [length] Message length if known beforehand
|
|
20208
|
+
* @returns TaskDeleteResponse
|
|
20209
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
20210
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
20211
|
+
*/
|
|
20212
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.service.TaskDeleteResponse;
|
|
20213
|
+
|
|
20214
|
+
/**
|
|
20215
|
+
* Verifies a TaskDeleteResponse message.
|
|
20216
|
+
* @param message Plain object to verify
|
|
20217
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
20218
|
+
*/
|
|
20219
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
19092
20220
|
}
|
|
19093
20221
|
|
|
19094
20222
|
/** Properties of a UserInfoRequest. */
|
|
@@ -19160,6 +20288,9 @@ export namespace flyteidl {
|
|
|
19160
20288
|
|
|
19161
20289
|
/** UserInfoResponse picture */
|
|
19162
20290
|
picture?: (string|null);
|
|
20291
|
+
|
|
20292
|
+
/** UserInfoResponse additionalClaims */
|
|
20293
|
+
additionalClaims?: (google.protobuf.IStruct|null);
|
|
19163
20294
|
}
|
|
19164
20295
|
|
|
19165
20296
|
/** Represents a UserInfoResponse. */
|
|
@@ -19192,6 +20323,9 @@ export namespace flyteidl {
|
|
|
19192
20323
|
/** UserInfoResponse picture. */
|
|
19193
20324
|
public picture: string;
|
|
19194
20325
|
|
|
20326
|
+
/** UserInfoResponse additionalClaims. */
|
|
20327
|
+
public additionalClaims?: (google.protobuf.IStruct|null);
|
|
20328
|
+
|
|
19195
20329
|
/**
|
|
19196
20330
|
* Creates a new UserInfoResponse instance using the specified properties.
|
|
19197
20331
|
* @param [properties] Properties to set
|