@flyteorg/flyteidl 1.2.9 → 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 +1106 -2
- package/gen/pb-js/flyteidl.js +2723 -196
- package/package.json +1 -1
- 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 +21 -13
- package/protos/flyteidl/event/event.proto +16 -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/service/admin.proto +10 -1
- package/protos/flyteidl/service/dataproxy.proto +40 -0
- package/protos/flyteidl/service/external_plugin_service.proto +74 -0
package/gen/pb-js/flyteidl.d.ts
CHANGED
|
@@ -5635,6 +5635,9 @@ export namespace flyteidl {
|
|
|
5635
5635
|
|
|
5636
5636
|
/** K8sPod podSpec */
|
|
5637
5637
|
podSpec?: (google.protobuf.IStruct|null);
|
|
5638
|
+
|
|
5639
|
+
/** K8sPod dataConfig */
|
|
5640
|
+
dataConfig?: (flyteidl.core.IDataLoadingConfig|null);
|
|
5638
5641
|
}
|
|
5639
5642
|
|
|
5640
5643
|
/** Represents a K8sPod. */
|
|
@@ -5652,6 +5655,9 @@ export namespace flyteidl {
|
|
|
5652
5655
|
/** K8sPod podSpec. */
|
|
5653
5656
|
public podSpec?: (google.protobuf.IStruct|null);
|
|
5654
5657
|
|
|
5658
|
+
/** K8sPod dataConfig. */
|
|
5659
|
+
public dataConfig?: (flyteidl.core.IDataLoadingConfig|null);
|
|
5660
|
+
|
|
5655
5661
|
/**
|
|
5656
5662
|
* Creates a new K8sPod instance using the specified properties.
|
|
5657
5663
|
* @param [properties] Properties to set
|
|
@@ -5961,6 +5967,9 @@ export namespace flyteidl {
|
|
|
5961
5967
|
|
|
5962
5968
|
/** Identity oauth2Client */
|
|
5963
5969
|
oauth2Client?: (flyteidl.core.IOAuth2Client|null);
|
|
5970
|
+
|
|
5971
|
+
/** Identity executionIdentity */
|
|
5972
|
+
executionIdentity?: (string|null);
|
|
5964
5973
|
}
|
|
5965
5974
|
|
|
5966
5975
|
/** Represents an Identity. */
|
|
@@ -5981,6 +5990,9 @@ export namespace flyteidl {
|
|
|
5981
5990
|
/** Identity oauth2Client. */
|
|
5982
5991
|
public oauth2Client?: (flyteidl.core.IOAuth2Client|null);
|
|
5983
5992
|
|
|
5993
|
+
/** Identity executionIdentity. */
|
|
5994
|
+
public executionIdentity: string;
|
|
5995
|
+
|
|
5984
5996
|
/**
|
|
5985
5997
|
* Creates a new Identity instance using the specified properties.
|
|
5986
5998
|
* @param [properties] Properties to set
|
|
@@ -6369,6 +6381,97 @@ export namespace flyteidl {
|
|
|
6369
6381
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
6370
6382
|
}
|
|
6371
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
|
+
|
|
6372
6475
|
/** Properties of a WorkflowClosure. */
|
|
6373
6476
|
interface IWorkflowClosure {
|
|
6374
6477
|
|
|
@@ -6584,6 +6687,9 @@ export namespace flyteidl {
|
|
|
6584
6687
|
|
|
6585
6688
|
/** NodeExecutionEvent deckUri */
|
|
6586
6689
|
deckUri?: (string|null);
|
|
6690
|
+
|
|
6691
|
+
/** NodeExecutionEvent reportedAt */
|
|
6692
|
+
reportedAt?: (google.protobuf.ITimestamp|null);
|
|
6587
6693
|
}
|
|
6588
6694
|
|
|
6589
6695
|
/** Represents a NodeExecutionEvent. */
|
|
@@ -6655,6 +6761,9 @@ export namespace flyteidl {
|
|
|
6655
6761
|
/** NodeExecutionEvent deckUri. */
|
|
6656
6762
|
public deckUri: string;
|
|
6657
6763
|
|
|
6764
|
+
/** NodeExecutionEvent reportedAt. */
|
|
6765
|
+
public reportedAt?: (google.protobuf.ITimestamp|null);
|
|
6766
|
+
|
|
6658
6767
|
/** NodeExecutionEvent inputValue. */
|
|
6659
6768
|
public inputValue?: ("inputUri"|"inputData");
|
|
6660
6769
|
|
|
@@ -6833,6 +6942,9 @@ export namespace flyteidl {
|
|
|
6833
6942
|
|
|
6834
6943
|
/** DynamicWorkflowNodeMetadata compiledWorkflow */
|
|
6835
6944
|
compiledWorkflow?: (flyteidl.core.ICompiledWorkflowClosure|null);
|
|
6945
|
+
|
|
6946
|
+
/** DynamicWorkflowNodeMetadata dynamicJobSpecUri */
|
|
6947
|
+
dynamicJobSpecUri?: (string|null);
|
|
6836
6948
|
}
|
|
6837
6949
|
|
|
6838
6950
|
/** Represents a DynamicWorkflowNodeMetadata. */
|
|
@@ -6850,6 +6962,9 @@ export namespace flyteidl {
|
|
|
6850
6962
|
/** DynamicWorkflowNodeMetadata compiledWorkflow. */
|
|
6851
6963
|
public compiledWorkflow?: (flyteidl.core.ICompiledWorkflowClosure|null);
|
|
6852
6964
|
|
|
6965
|
+
/** DynamicWorkflowNodeMetadata dynamicJobSpecUri. */
|
|
6966
|
+
public dynamicJobSpecUri: string;
|
|
6967
|
+
|
|
6853
6968
|
/**
|
|
6854
6969
|
* Creates a new DynamicWorkflowNodeMetadata instance using the specified properties.
|
|
6855
6970
|
* @param [properties] Properties to set
|
|
@@ -7043,6 +7158,9 @@ export namespace flyteidl {
|
|
|
7043
7158
|
|
|
7044
7159
|
/** TaskExecutionEvent eventVersion */
|
|
7045
7160
|
eventVersion?: (number|null);
|
|
7161
|
+
|
|
7162
|
+
/** TaskExecutionEvent reportedAt */
|
|
7163
|
+
reportedAt?: (google.protobuf.ITimestamp|null);
|
|
7046
7164
|
}
|
|
7047
7165
|
|
|
7048
7166
|
/** Represents a TaskExecutionEvent. */
|
|
@@ -7108,6 +7226,9 @@ export namespace flyteidl {
|
|
|
7108
7226
|
/** TaskExecutionEvent eventVersion. */
|
|
7109
7227
|
public eventVersion: number;
|
|
7110
7228
|
|
|
7229
|
+
/** TaskExecutionEvent reportedAt. */
|
|
7230
|
+
public reportedAt?: (google.protobuf.ITimestamp|null);
|
|
7231
|
+
|
|
7111
7232
|
/** TaskExecutionEvent inputValue. */
|
|
7112
7233
|
public inputValue?: ("inputUri"|"inputData");
|
|
7113
7234
|
|
|
@@ -8661,6 +8782,58 @@ export namespace flyteidl {
|
|
|
8661
8782
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
8662
8783
|
}
|
|
8663
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
|
+
|
|
8664
8837
|
/** Properties of an AuthRole. */
|
|
8665
8838
|
interface IAuthRole {
|
|
8666
8839
|
|
|
@@ -8771,6 +8944,70 @@ export namespace flyteidl {
|
|
|
8771
8944
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
8772
8945
|
}
|
|
8773
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
|
+
|
|
8774
9011
|
/** Properties of a DescriptionEntity. */
|
|
8775
9012
|
interface IDescriptionEntity {
|
|
8776
9013
|
|
|
@@ -10531,6 +10768,9 @@ export namespace flyteidl {
|
|
|
10531
10768
|
|
|
10532
10769
|
/** ExecutionSpec overwriteCache */
|
|
10533
10770
|
overwriteCache?: (boolean|null);
|
|
10771
|
+
|
|
10772
|
+
/** ExecutionSpec envs */
|
|
10773
|
+
envs?: (flyteidl.admin.IEnvs|null);
|
|
10534
10774
|
}
|
|
10535
10775
|
|
|
10536
10776
|
/** Represents an ExecutionSpec. */
|
|
@@ -10587,6 +10827,9 @@ export namespace flyteidl {
|
|
|
10587
10827
|
/** ExecutionSpec overwriteCache. */
|
|
10588
10828
|
public overwriteCache: boolean;
|
|
10589
10829
|
|
|
10830
|
+
/** ExecutionSpec envs. */
|
|
10831
|
+
public envs?: (flyteidl.admin.IEnvs|null);
|
|
10832
|
+
|
|
10590
10833
|
/** ExecutionSpec notificationOverrides. */
|
|
10591
10834
|
public notificationOverrides?: ("notifications"|"disableAll");
|
|
10592
10835
|
|
|
@@ -11023,6 +11266,116 @@ export namespace flyteidl {
|
|
|
11023
11266
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
11024
11267
|
}
|
|
11025
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
|
+
|
|
11026
11379
|
/** Properties of a LaunchPlanCreateRequest. */
|
|
11027
11380
|
interface ILaunchPlanCreateRequest {
|
|
11028
11381
|
|
|
@@ -11360,6 +11713,9 @@ export namespace flyteidl {
|
|
|
11360
11713
|
|
|
11361
11714
|
/** LaunchPlanSpec overwriteCache */
|
|
11362
11715
|
overwriteCache?: (boolean|null);
|
|
11716
|
+
|
|
11717
|
+
/** LaunchPlanSpec envs */
|
|
11718
|
+
envs?: (flyteidl.admin.IEnvs|null);
|
|
11363
11719
|
}
|
|
11364
11720
|
|
|
11365
11721
|
/** Represents a LaunchPlanSpec. */
|
|
@@ -11416,6 +11772,9 @@ export namespace flyteidl {
|
|
|
11416
11772
|
/** LaunchPlanSpec overwriteCache. */
|
|
11417
11773
|
public overwriteCache: boolean;
|
|
11418
11774
|
|
|
11775
|
+
/** LaunchPlanSpec envs. */
|
|
11776
|
+
public envs?: (flyteidl.admin.IEnvs|null);
|
|
11777
|
+
|
|
11419
11778
|
/**
|
|
11420
11779
|
* Creates a new LaunchPlanSpec instance using the specified properties.
|
|
11421
11780
|
* @param [properties] Properties to set
|
|
@@ -12461,6 +12820,9 @@ export namespace flyteidl {
|
|
|
12461
12820
|
|
|
12462
12821
|
/** WorkflowExecutionConfig overwriteCache */
|
|
12463
12822
|
overwriteCache?: (boolean|null);
|
|
12823
|
+
|
|
12824
|
+
/** WorkflowExecutionConfig envs */
|
|
12825
|
+
envs?: (flyteidl.admin.IEnvs|null);
|
|
12464
12826
|
}
|
|
12465
12827
|
|
|
12466
12828
|
/** Represents a WorkflowExecutionConfig. */
|
|
@@ -12493,6 +12855,9 @@ export namespace flyteidl {
|
|
|
12493
12855
|
/** WorkflowExecutionConfig overwriteCache. */
|
|
12494
12856
|
public overwriteCache: boolean;
|
|
12495
12857
|
|
|
12858
|
+
/** WorkflowExecutionConfig envs. */
|
|
12859
|
+
public envs?: (flyteidl.admin.IEnvs|null);
|
|
12860
|
+
|
|
12496
12861
|
/**
|
|
12497
12862
|
* Creates a new WorkflowExecutionConfig instance using the specified properties.
|
|
12498
12863
|
* @param [properties] Properties to set
|
|
@@ -13246,6 +13611,9 @@ export namespace flyteidl {
|
|
|
13246
13611
|
|
|
13247
13612
|
/** NodeExecutionClosure deckUri */
|
|
13248
13613
|
deckUri?: (string|null);
|
|
13614
|
+
|
|
13615
|
+
/** NodeExecutionClosure dynamicJobSpecUri */
|
|
13616
|
+
dynamicJobSpecUri?: (string|null);
|
|
13249
13617
|
}
|
|
13250
13618
|
|
|
13251
13619
|
/** Represents a NodeExecutionClosure. */
|
|
@@ -13290,6 +13658,9 @@ export namespace flyteidl {
|
|
|
13290
13658
|
/** NodeExecutionClosure deckUri. */
|
|
13291
13659
|
public deckUri: string;
|
|
13292
13660
|
|
|
13661
|
+
/** NodeExecutionClosure dynamicJobSpecUri. */
|
|
13662
|
+
public dynamicJobSpecUri: string;
|
|
13663
|
+
|
|
13293
13664
|
/** NodeExecutionClosure outputResult. */
|
|
13294
13665
|
public outputResult?: ("outputUri"|"error"|"outputData");
|
|
13295
13666
|
|
|
@@ -13453,6 +13824,9 @@ export namespace flyteidl {
|
|
|
13453
13824
|
|
|
13454
13825
|
/** DynamicWorkflowNodeMetadata compiledWorkflow */
|
|
13455
13826
|
compiledWorkflow?: (flyteidl.core.ICompiledWorkflowClosure|null);
|
|
13827
|
+
|
|
13828
|
+
/** DynamicWorkflowNodeMetadata dynamicJobSpecUri */
|
|
13829
|
+
dynamicJobSpecUri?: (string|null);
|
|
13456
13830
|
}
|
|
13457
13831
|
|
|
13458
13832
|
/** Represents a DynamicWorkflowNodeMetadata. */
|
|
@@ -13470,6 +13844,9 @@ export namespace flyteidl {
|
|
|
13470
13844
|
/** DynamicWorkflowNodeMetadata compiledWorkflow. */
|
|
13471
13845
|
public compiledWorkflow?: (flyteidl.core.ICompiledWorkflowClosure|null);
|
|
13472
13846
|
|
|
13847
|
+
/** DynamicWorkflowNodeMetadata dynamicJobSpecUri. */
|
|
13848
|
+
public dynamicJobSpecUri: string;
|
|
13849
|
+
|
|
13473
13850
|
/**
|
|
13474
13851
|
* Creates a new DynamicWorkflowNodeMetadata instance using the specified properties.
|
|
13475
13852
|
* @param [properties] Properties to set
|
|
@@ -13572,6 +13949,9 @@ export namespace flyteidl {
|
|
|
13572
13949
|
|
|
13573
13950
|
/** NodeExecutionGetDataResponse dynamicWorkflow */
|
|
13574
13951
|
dynamicWorkflow?: (flyteidl.admin.IDynamicWorkflowNodeMetadata|null);
|
|
13952
|
+
|
|
13953
|
+
/** NodeExecutionGetDataResponse flyteUrls */
|
|
13954
|
+
flyteUrls?: (flyteidl.admin.IFlyteURLs|null);
|
|
13575
13955
|
}
|
|
13576
13956
|
|
|
13577
13957
|
/** Represents a NodeExecutionGetDataResponse. */
|
|
@@ -13598,6 +13978,9 @@ export namespace flyteidl {
|
|
|
13598
13978
|
/** NodeExecutionGetDataResponse dynamicWorkflow. */
|
|
13599
13979
|
public dynamicWorkflow?: (flyteidl.admin.IDynamicWorkflowNodeMetadata|null);
|
|
13600
13980
|
|
|
13981
|
+
/** NodeExecutionGetDataResponse flyteUrls. */
|
|
13982
|
+
public flyteUrls?: (flyteidl.admin.IFlyteURLs|null);
|
|
13983
|
+
|
|
13601
13984
|
/**
|
|
13602
13985
|
* Creates a new NodeExecutionGetDataResponse instance using the specified properties.
|
|
13603
13986
|
* @param [properties] Properties to set
|
|
@@ -15883,6 +16266,9 @@ export namespace flyteidl {
|
|
|
15883
16266
|
|
|
15884
16267
|
/** TaskExecutionClosure eventVersion */
|
|
15885
16268
|
eventVersion?: (number|null);
|
|
16269
|
+
|
|
16270
|
+
/** TaskExecutionClosure reasons */
|
|
16271
|
+
reasons?: (flyteidl.admin.IReason[]|null);
|
|
15886
16272
|
}
|
|
15887
16273
|
|
|
15888
16274
|
/** Represents a TaskExecutionClosure. */
|
|
@@ -15936,6 +16322,9 @@ export namespace flyteidl {
|
|
|
15936
16322
|
/** TaskExecutionClosure eventVersion. */
|
|
15937
16323
|
public eventVersion: number;
|
|
15938
16324
|
|
|
16325
|
+
/** TaskExecutionClosure reasons. */
|
|
16326
|
+
public reasons: flyteidl.admin.IReason[];
|
|
16327
|
+
|
|
15939
16328
|
/** TaskExecutionClosure outputResult. */
|
|
15940
16329
|
public outputResult?: ("outputUri"|"error"|"outputData");
|
|
15941
16330
|
|
|
@@ -15972,6 +16361,64 @@ export namespace flyteidl {
|
|
|
15972
16361
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
15973
16362
|
}
|
|
15974
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
|
+
|
|
15975
16422
|
/** Properties of a TaskExecutionGetDataRequest. */
|
|
15976
16423
|
interface ITaskExecutionGetDataRequest {
|
|
15977
16424
|
|
|
@@ -16038,6 +16485,9 @@ export namespace flyteidl {
|
|
|
16038
16485
|
|
|
16039
16486
|
/** TaskExecutionGetDataResponse fullOutputs */
|
|
16040
16487
|
fullOutputs?: (flyteidl.core.ILiteralMap|null);
|
|
16488
|
+
|
|
16489
|
+
/** TaskExecutionGetDataResponse flyteUrls */
|
|
16490
|
+
flyteUrls?: (flyteidl.admin.IFlyteURLs|null);
|
|
16041
16491
|
}
|
|
16042
16492
|
|
|
16043
16493
|
/** Represents a TaskExecutionGetDataResponse. */
|
|
@@ -16061,6 +16511,9 @@ export namespace flyteidl {
|
|
|
16061
16511
|
/** TaskExecutionGetDataResponse fullOutputs. */
|
|
16062
16512
|
public fullOutputs?: (flyteidl.core.ILiteralMap|null);
|
|
16063
16513
|
|
|
16514
|
+
/** TaskExecutionGetDataResponse flyteUrls. */
|
|
16515
|
+
public flyteUrls?: (flyteidl.admin.IFlyteURLs|null);
|
|
16516
|
+
|
|
16064
16517
|
/**
|
|
16065
16518
|
* Creates a new TaskExecutionGetDataResponse instance using the specified properties.
|
|
16066
16519
|
* @param [properties] Properties to set
|
|
@@ -17926,6 +18379,20 @@ export namespace flyteidl {
|
|
|
17926
18379
|
* @returns Promise
|
|
17927
18380
|
*/
|
|
17928
18381
|
public listDescriptionEntities(request: flyteidl.admin.IDescriptionEntityListRequest): Promise<flyteidl.admin.DescriptionEntityList>;
|
|
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>;
|
|
17929
18396
|
}
|
|
17930
18397
|
|
|
17931
18398
|
namespace AdminService {
|
|
@@ -18293,9 +18760,16 @@ export namespace flyteidl {
|
|
|
18293
18760
|
* @param [response] DescriptionEntityList
|
|
18294
18761
|
*/
|
|
18295
18762
|
type ListDescriptionEntitiesCallback = (error: (Error|null), response?: flyteidl.admin.DescriptionEntityList) => void;
|
|
18296
|
-
}
|
|
18297
18763
|
|
|
18298
|
-
|
|
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;
|
|
18770
|
+
}
|
|
18771
|
+
|
|
18772
|
+
/** Properties of a OAuth2MetadataRequest. */
|
|
18299
18773
|
interface IOAuth2MetadataRequest {
|
|
18300
18774
|
}
|
|
18301
18775
|
|
|
@@ -18978,6 +19452,9 @@ export namespace flyteidl {
|
|
|
18978
19452
|
|
|
18979
19453
|
/** CreateDownloadLinkResponse expiresAt */
|
|
18980
19454
|
expiresAt?: (google.protobuf.ITimestamp|null);
|
|
19455
|
+
|
|
19456
|
+
/** CreateDownloadLinkResponse preSignedUrls */
|
|
19457
|
+
preSignedUrls?: (flyteidl.service.IPreSignedURLs|null);
|
|
18981
19458
|
}
|
|
18982
19459
|
|
|
18983
19460
|
/** Represents a CreateDownloadLinkResponse. */
|
|
@@ -18995,6 +19472,9 @@ export namespace flyteidl {
|
|
|
18995
19472
|
/** CreateDownloadLinkResponse expiresAt. */
|
|
18996
19473
|
public expiresAt?: (google.protobuf.ITimestamp|null);
|
|
18997
19474
|
|
|
19475
|
+
/** CreateDownloadLinkResponse preSignedUrls. */
|
|
19476
|
+
public preSignedUrls?: (flyteidl.service.IPreSignedURLs|null);
|
|
19477
|
+
|
|
18998
19478
|
/**
|
|
18999
19479
|
* Creates a new CreateDownloadLinkResponse instance using the specified properties.
|
|
19000
19480
|
* @param [properties] Properties to set
|
|
@@ -19028,6 +19508,177 @@ export namespace flyteidl {
|
|
|
19028
19508
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
19029
19509
|
}
|
|
19030
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
|
+
|
|
19031
19682
|
/** Represents a DataProxyService */
|
|
19032
19683
|
class DataProxyService extends $protobuf.rpc.Service {
|
|
19033
19684
|
|
|
@@ -19089,6 +19740,20 @@ export namespace flyteidl {
|
|
|
19089
19740
|
* @returns Promise
|
|
19090
19741
|
*/
|
|
19091
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>;
|
|
19092
19757
|
}
|
|
19093
19758
|
|
|
19094
19759
|
namespace DataProxyService {
|
|
@@ -19113,6 +19778,445 @@ export namespace flyteidl {
|
|
|
19113
19778
|
* @param [response] CreateDownloadLinkResponse
|
|
19114
19779
|
*/
|
|
19115
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);
|
|
19116
20220
|
}
|
|
19117
20221
|
|
|
19118
20222
|
/** Properties of a UserInfoRequest. */
|