@flyteorg/flyteidl 1.2.3 → 1.2.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5092,6 +5092,9 @@ export namespace flyteidl {
5092
5092
 
5093
5093
  /** TaskMetadata cacheSerializable */
5094
5094
  cacheSerializable?: (boolean|null);
5095
+
5096
+ /** TaskMetadata generatesDeck */
5097
+ generatesDeck?: (boolean|null);
5095
5098
  }
5096
5099
 
5097
5100
  /** Represents a TaskMetadata. */
@@ -5127,6 +5130,9 @@ export namespace flyteidl {
5127
5130
  /** TaskMetadata cacheSerializable. */
5128
5131
  public cacheSerializable: boolean;
5129
5132
 
5133
+ /** TaskMetadata generatesDeck. */
5134
+ public generatesDeck: boolean;
5135
+
5130
5136
  /** TaskMetadata interruptibleValue. */
5131
5137
  public interruptibleValue?: "interruptible";
5132
5138
 
@@ -8729,6 +8735,355 @@ export namespace flyteidl {
8729
8735
  public static verify(message: { [k: string]: any }): (string|null);
8730
8736
  }
8731
8737
 
8738
+ /** Properties of a DescriptionEntity. */
8739
+ interface IDescriptionEntity {
8740
+
8741
+ /** DescriptionEntity id */
8742
+ id?: (flyteidl.core.IIdentifier|null);
8743
+
8744
+ /** DescriptionEntity shortDescription */
8745
+ shortDescription?: (string|null);
8746
+
8747
+ /** DescriptionEntity longDescription */
8748
+ longDescription?: (flyteidl.admin.IDescription|null);
8749
+
8750
+ /** DescriptionEntity sourceCode */
8751
+ sourceCode?: (flyteidl.admin.ISourceCode|null);
8752
+
8753
+ /** DescriptionEntity tags */
8754
+ tags?: (string[]|null);
8755
+ }
8756
+
8757
+ /** Represents a DescriptionEntity. */
8758
+ class DescriptionEntity implements IDescriptionEntity {
8759
+
8760
+ /**
8761
+ * Constructs a new DescriptionEntity.
8762
+ * @param [properties] Properties to set
8763
+ */
8764
+ constructor(properties?: flyteidl.admin.IDescriptionEntity);
8765
+
8766
+ /** DescriptionEntity id. */
8767
+ public id?: (flyteidl.core.IIdentifier|null);
8768
+
8769
+ /** DescriptionEntity shortDescription. */
8770
+ public shortDescription: string;
8771
+
8772
+ /** DescriptionEntity longDescription. */
8773
+ public longDescription?: (flyteidl.admin.IDescription|null);
8774
+
8775
+ /** DescriptionEntity sourceCode. */
8776
+ public sourceCode?: (flyteidl.admin.ISourceCode|null);
8777
+
8778
+ /** DescriptionEntity tags. */
8779
+ public tags: string[];
8780
+
8781
+ /**
8782
+ * Creates a new DescriptionEntity instance using the specified properties.
8783
+ * @param [properties] Properties to set
8784
+ * @returns DescriptionEntity instance
8785
+ */
8786
+ public static create(properties?: flyteidl.admin.IDescriptionEntity): flyteidl.admin.DescriptionEntity;
8787
+
8788
+ /**
8789
+ * Encodes the specified DescriptionEntity message. Does not implicitly {@link flyteidl.admin.DescriptionEntity.verify|verify} messages.
8790
+ * @param message DescriptionEntity message or plain object to encode
8791
+ * @param [writer] Writer to encode to
8792
+ * @returns Writer
8793
+ */
8794
+ public static encode(message: flyteidl.admin.IDescriptionEntity, writer?: $protobuf.Writer): $protobuf.Writer;
8795
+
8796
+ /**
8797
+ * Decodes a DescriptionEntity message from the specified reader or buffer.
8798
+ * @param reader Reader or buffer to decode from
8799
+ * @param [length] Message length if known beforehand
8800
+ * @returns DescriptionEntity
8801
+ * @throws {Error} If the payload is not a reader or valid buffer
8802
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
8803
+ */
8804
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.DescriptionEntity;
8805
+
8806
+ /**
8807
+ * Verifies a DescriptionEntity message.
8808
+ * @param message Plain object to verify
8809
+ * @returns `null` if valid, otherwise the reason why it is not
8810
+ */
8811
+ public static verify(message: { [k: string]: any }): (string|null);
8812
+ }
8813
+
8814
+ /** DescriptionFormat enum. */
8815
+ enum DescriptionFormat {
8816
+ DESCRIPTION_FORMAT_UNKNOWN = 0,
8817
+ DESCRIPTION_FORMAT_MARKDOWN = 1,
8818
+ DESCRIPTION_FORMAT_HTML = 2,
8819
+ DESCRIPTION_FORMAT_RST = 3
8820
+ }
8821
+
8822
+ /** Properties of a Description. */
8823
+ interface IDescription {
8824
+
8825
+ /** Description value */
8826
+ value?: (string|null);
8827
+
8828
+ /** Description uri */
8829
+ uri?: (string|null);
8830
+
8831
+ /** Description format */
8832
+ format?: (flyteidl.admin.DescriptionFormat|null);
8833
+
8834
+ /** Description iconLink */
8835
+ iconLink?: (string|null);
8836
+ }
8837
+
8838
+ /** Represents a Description. */
8839
+ class Description implements IDescription {
8840
+
8841
+ /**
8842
+ * Constructs a new Description.
8843
+ * @param [properties] Properties to set
8844
+ */
8845
+ constructor(properties?: flyteidl.admin.IDescription);
8846
+
8847
+ /** Description value. */
8848
+ public value: string;
8849
+
8850
+ /** Description uri. */
8851
+ public uri: string;
8852
+
8853
+ /** Description format. */
8854
+ public format: flyteidl.admin.DescriptionFormat;
8855
+
8856
+ /** Description iconLink. */
8857
+ public iconLink: string;
8858
+
8859
+ /** Description content. */
8860
+ public content?: ("value"|"uri");
8861
+
8862
+ /**
8863
+ * Creates a new Description instance using the specified properties.
8864
+ * @param [properties] Properties to set
8865
+ * @returns Description instance
8866
+ */
8867
+ public static create(properties?: flyteidl.admin.IDescription): flyteidl.admin.Description;
8868
+
8869
+ /**
8870
+ * Encodes the specified Description message. Does not implicitly {@link flyteidl.admin.Description.verify|verify} messages.
8871
+ * @param message Description message or plain object to encode
8872
+ * @param [writer] Writer to encode to
8873
+ * @returns Writer
8874
+ */
8875
+ public static encode(message: flyteidl.admin.IDescription, writer?: $protobuf.Writer): $protobuf.Writer;
8876
+
8877
+ /**
8878
+ * Decodes a Description message from the specified reader or buffer.
8879
+ * @param reader Reader or buffer to decode from
8880
+ * @param [length] Message length if known beforehand
8881
+ * @returns Description
8882
+ * @throws {Error} If the payload is not a reader or valid buffer
8883
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
8884
+ */
8885
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.Description;
8886
+
8887
+ /**
8888
+ * Verifies a Description message.
8889
+ * @param message Plain object to verify
8890
+ * @returns `null` if valid, otherwise the reason why it is not
8891
+ */
8892
+ public static verify(message: { [k: string]: any }): (string|null);
8893
+ }
8894
+
8895
+ /** Properties of a SourceCode. */
8896
+ interface ISourceCode {
8897
+
8898
+ /** SourceCode link */
8899
+ link?: (string|null);
8900
+ }
8901
+
8902
+ /** Represents a SourceCode. */
8903
+ class SourceCode implements ISourceCode {
8904
+
8905
+ /**
8906
+ * Constructs a new SourceCode.
8907
+ * @param [properties] Properties to set
8908
+ */
8909
+ constructor(properties?: flyteidl.admin.ISourceCode);
8910
+
8911
+ /** SourceCode link. */
8912
+ public link: string;
8913
+
8914
+ /**
8915
+ * Creates a new SourceCode instance using the specified properties.
8916
+ * @param [properties] Properties to set
8917
+ * @returns SourceCode instance
8918
+ */
8919
+ public static create(properties?: flyteidl.admin.ISourceCode): flyteidl.admin.SourceCode;
8920
+
8921
+ /**
8922
+ * Encodes the specified SourceCode message. Does not implicitly {@link flyteidl.admin.SourceCode.verify|verify} messages.
8923
+ * @param message SourceCode message or plain object to encode
8924
+ * @param [writer] Writer to encode to
8925
+ * @returns Writer
8926
+ */
8927
+ public static encode(message: flyteidl.admin.ISourceCode, writer?: $protobuf.Writer): $protobuf.Writer;
8928
+
8929
+ /**
8930
+ * Decodes a SourceCode message from the specified reader or buffer.
8931
+ * @param reader Reader or buffer to decode from
8932
+ * @param [length] Message length if known beforehand
8933
+ * @returns SourceCode
8934
+ * @throws {Error} If the payload is not a reader or valid buffer
8935
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
8936
+ */
8937
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.SourceCode;
8938
+
8939
+ /**
8940
+ * Verifies a SourceCode message.
8941
+ * @param message Plain object to verify
8942
+ * @returns `null` if valid, otherwise the reason why it is not
8943
+ */
8944
+ public static verify(message: { [k: string]: any }): (string|null);
8945
+ }
8946
+
8947
+ /** Properties of a DescriptionEntityList. */
8948
+ interface IDescriptionEntityList {
8949
+
8950
+ /** DescriptionEntityList descriptionEntities */
8951
+ descriptionEntities?: (flyteidl.admin.IDescriptionEntity[]|null);
8952
+
8953
+ /** DescriptionEntityList token */
8954
+ token?: (string|null);
8955
+ }
8956
+
8957
+ /** Represents a DescriptionEntityList. */
8958
+ class DescriptionEntityList implements IDescriptionEntityList {
8959
+
8960
+ /**
8961
+ * Constructs a new DescriptionEntityList.
8962
+ * @param [properties] Properties to set
8963
+ */
8964
+ constructor(properties?: flyteidl.admin.IDescriptionEntityList);
8965
+
8966
+ /** DescriptionEntityList descriptionEntities. */
8967
+ public descriptionEntities: flyteidl.admin.IDescriptionEntity[];
8968
+
8969
+ /** DescriptionEntityList token. */
8970
+ public token: string;
8971
+
8972
+ /**
8973
+ * Creates a new DescriptionEntityList instance using the specified properties.
8974
+ * @param [properties] Properties to set
8975
+ * @returns DescriptionEntityList instance
8976
+ */
8977
+ public static create(properties?: flyteidl.admin.IDescriptionEntityList): flyteidl.admin.DescriptionEntityList;
8978
+
8979
+ /**
8980
+ * Encodes the specified DescriptionEntityList message. Does not implicitly {@link flyteidl.admin.DescriptionEntityList.verify|verify} messages.
8981
+ * @param message DescriptionEntityList message or plain object to encode
8982
+ * @param [writer] Writer to encode to
8983
+ * @returns Writer
8984
+ */
8985
+ public static encode(message: flyteidl.admin.IDescriptionEntityList, writer?: $protobuf.Writer): $protobuf.Writer;
8986
+
8987
+ /**
8988
+ * Decodes a DescriptionEntityList message from the specified reader or buffer.
8989
+ * @param reader Reader or buffer to decode from
8990
+ * @param [length] Message length if known beforehand
8991
+ * @returns DescriptionEntityList
8992
+ * @throws {Error} If the payload is not a reader or valid buffer
8993
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
8994
+ */
8995
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.DescriptionEntityList;
8996
+
8997
+ /**
8998
+ * Verifies a DescriptionEntityList message.
8999
+ * @param message Plain object to verify
9000
+ * @returns `null` if valid, otherwise the reason why it is not
9001
+ */
9002
+ public static verify(message: { [k: string]: any }): (string|null);
9003
+ }
9004
+
9005
+ /** Properties of a DescriptionEntityListRequest. */
9006
+ interface IDescriptionEntityListRequest {
9007
+
9008
+ /** DescriptionEntityListRequest resourceType */
9009
+ resourceType?: (flyteidl.core.ResourceType|null);
9010
+
9011
+ /** DescriptionEntityListRequest id */
9012
+ id?: (flyteidl.admin.INamedEntityIdentifier|null);
9013
+
9014
+ /** DescriptionEntityListRequest limit */
9015
+ limit?: (number|null);
9016
+
9017
+ /** DescriptionEntityListRequest token */
9018
+ token?: (string|null);
9019
+
9020
+ /** DescriptionEntityListRequest filters */
9021
+ filters?: (string|null);
9022
+
9023
+ /** DescriptionEntityListRequest sortBy */
9024
+ sortBy?: (flyteidl.admin.ISort|null);
9025
+ }
9026
+
9027
+ /** Represents a DescriptionEntityListRequest. */
9028
+ class DescriptionEntityListRequest implements IDescriptionEntityListRequest {
9029
+
9030
+ /**
9031
+ * Constructs a new DescriptionEntityListRequest.
9032
+ * @param [properties] Properties to set
9033
+ */
9034
+ constructor(properties?: flyteidl.admin.IDescriptionEntityListRequest);
9035
+
9036
+ /** DescriptionEntityListRequest resourceType. */
9037
+ public resourceType: flyteidl.core.ResourceType;
9038
+
9039
+ /** DescriptionEntityListRequest id. */
9040
+ public id?: (flyteidl.admin.INamedEntityIdentifier|null);
9041
+
9042
+ /** DescriptionEntityListRequest limit. */
9043
+ public limit: number;
9044
+
9045
+ /** DescriptionEntityListRequest token. */
9046
+ public token: string;
9047
+
9048
+ /** DescriptionEntityListRequest filters. */
9049
+ public filters: string;
9050
+
9051
+ /** DescriptionEntityListRequest sortBy. */
9052
+ public sortBy?: (flyteidl.admin.ISort|null);
9053
+
9054
+ /**
9055
+ * Creates a new DescriptionEntityListRequest instance using the specified properties.
9056
+ * @param [properties] Properties to set
9057
+ * @returns DescriptionEntityListRequest instance
9058
+ */
9059
+ public static create(properties?: flyteidl.admin.IDescriptionEntityListRequest): flyteidl.admin.DescriptionEntityListRequest;
9060
+
9061
+ /**
9062
+ * Encodes the specified DescriptionEntityListRequest message. Does not implicitly {@link flyteidl.admin.DescriptionEntityListRequest.verify|verify} messages.
9063
+ * @param message DescriptionEntityListRequest message or plain object to encode
9064
+ * @param [writer] Writer to encode to
9065
+ * @returns Writer
9066
+ */
9067
+ public static encode(message: flyteidl.admin.IDescriptionEntityListRequest, writer?: $protobuf.Writer): $protobuf.Writer;
9068
+
9069
+ /**
9070
+ * Decodes a DescriptionEntityListRequest message from the specified reader or buffer.
9071
+ * @param reader Reader or buffer to decode from
9072
+ * @param [length] Message length if known beforehand
9073
+ * @returns DescriptionEntityListRequest
9074
+ * @throws {Error} If the payload is not a reader or valid buffer
9075
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
9076
+ */
9077
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.admin.DescriptionEntityListRequest;
9078
+
9079
+ /**
9080
+ * Verifies a DescriptionEntityListRequest message.
9081
+ * @param message Plain object to verify
9082
+ * @returns `null` if valid, otherwise the reason why it is not
9083
+ */
9084
+ public static verify(message: { [k: string]: any }): (string|null);
9085
+ }
9086
+
8732
9087
  /** Properties of an EventErrorAlreadyInTerminalState. */
8733
9088
  interface IEventErrorAlreadyInTerminalState {
8734
9089
 
@@ -14962,6 +15317,9 @@ export namespace flyteidl {
14962
15317
 
14963
15318
  /** Task closure */
14964
15319
  closure?: (flyteidl.admin.ITaskClosure|null);
15320
+
15321
+ /** Task shortDescription */
15322
+ shortDescription?: (string|null);
14965
15323
  }
14966
15324
 
14967
15325
  /** Represents a Task. */
@@ -14979,6 +15337,9 @@ export namespace flyteidl {
14979
15337
  /** Task closure. */
14980
15338
  public closure?: (flyteidl.admin.ITaskClosure|null);
14981
15339
 
15340
+ /** Task shortDescription. */
15341
+ public shortDescription: string;
15342
+
14982
15343
  /**
14983
15344
  * Creates a new Task instance using the specified properties.
14984
15345
  * @param [properties] Properties to set
@@ -15075,6 +15436,9 @@ export namespace flyteidl {
15075
15436
 
15076
15437
  /** TaskSpec template */
15077
15438
  template?: (flyteidl.core.ITaskTemplate|null);
15439
+
15440
+ /** TaskSpec description */
15441
+ description?: (flyteidl.admin.IDescriptionEntity|null);
15078
15442
  }
15079
15443
 
15080
15444
  /** Represents a TaskSpec. */
@@ -15089,6 +15453,9 @@ export namespace flyteidl {
15089
15453
  /** TaskSpec template. */
15090
15454
  public template?: (flyteidl.core.ITaskTemplate|null);
15091
15455
 
15456
+ /** TaskSpec description. */
15457
+ public description?: (flyteidl.admin.IDescriptionEntity|null);
15458
+
15092
15459
  /**
15093
15460
  * Creates a new TaskSpec instance using the specified properties.
15094
15461
  * @param [properties] Properties to set
@@ -15965,6 +16332,9 @@ export namespace flyteidl {
15965
16332
 
15966
16333
  /** Workflow closure */
15967
16334
  closure?: (flyteidl.admin.IWorkflowClosure|null);
16335
+
16336
+ /** Workflow shortDescription */
16337
+ shortDescription?: (string|null);
15968
16338
  }
15969
16339
 
15970
16340
  /** Represents a Workflow. */
@@ -15982,6 +16352,9 @@ export namespace flyteidl {
15982
16352
  /** Workflow closure. */
15983
16353
  public closure?: (flyteidl.admin.IWorkflowClosure|null);
15984
16354
 
16355
+ /** Workflow shortDescription. */
16356
+ public shortDescription: string;
16357
+
15985
16358
  /**
15986
16359
  * Creates a new Workflow instance using the specified properties.
15987
16360
  * @param [properties] Properties to set
@@ -16081,6 +16454,9 @@ export namespace flyteidl {
16081
16454
 
16082
16455
  /** WorkflowSpec subWorkflows */
16083
16456
  subWorkflows?: (flyteidl.core.IWorkflowTemplate[]|null);
16457
+
16458
+ /** WorkflowSpec description */
16459
+ description?: (flyteidl.admin.IDescriptionEntity|null);
16084
16460
  }
16085
16461
 
16086
16462
  /** Represents a WorkflowSpec. */
@@ -16098,6 +16474,9 @@ export namespace flyteidl {
16098
16474
  /** WorkflowSpec subWorkflows. */
16099
16475
  public subWorkflows: flyteidl.core.IWorkflowTemplate[];
16100
16476
 
16477
+ /** WorkflowSpec description. */
16478
+ public description?: (flyteidl.admin.IDescriptionEntity|null);
16479
+
16101
16480
  /**
16102
16481
  * Creates a new WorkflowSpec instance using the specified properties.
16103
16482
  * @param [properties] Properties to set
@@ -17483,6 +17862,34 @@ export namespace flyteidl {
17483
17862
  * @returns Promise
17484
17863
  */
17485
17864
  public getVersion(request: flyteidl.admin.IGetVersionRequest): Promise<flyteidl.admin.GetVersionResponse>;
17865
+
17866
+ /**
17867
+ * Calls GetDescriptionEntity.
17868
+ * @param request ObjectGetRequest message or plain object
17869
+ * @param callback Node-style callback called with the error, if any, and DescriptionEntity
17870
+ */
17871
+ public getDescriptionEntity(request: flyteidl.admin.IObjectGetRequest, callback: flyteidl.service.AdminService.GetDescriptionEntityCallback): void;
17872
+
17873
+ /**
17874
+ * Calls GetDescriptionEntity.
17875
+ * @param request ObjectGetRequest message or plain object
17876
+ * @returns Promise
17877
+ */
17878
+ public getDescriptionEntity(request: flyteidl.admin.IObjectGetRequest): Promise<flyteidl.admin.DescriptionEntity>;
17879
+
17880
+ /**
17881
+ * Calls ListDescriptionEntities.
17882
+ * @param request DescriptionEntityListRequest message or plain object
17883
+ * @param callback Node-style callback called with the error, if any, and DescriptionEntityList
17884
+ */
17885
+ public listDescriptionEntities(request: flyteidl.admin.IDescriptionEntityListRequest, callback: flyteidl.service.AdminService.ListDescriptionEntitiesCallback): void;
17886
+
17887
+ /**
17888
+ * Calls ListDescriptionEntities.
17889
+ * @param request DescriptionEntityListRequest message or plain object
17890
+ * @returns Promise
17891
+ */
17892
+ public listDescriptionEntities(request: flyteidl.admin.IDescriptionEntityListRequest): Promise<flyteidl.admin.DescriptionEntityList>;
17486
17893
  }
17487
17894
 
17488
17895
  namespace AdminService {
@@ -17836,6 +18243,20 @@ export namespace flyteidl {
17836
18243
  * @param [response] GetVersionResponse
17837
18244
  */
17838
18245
  type GetVersionCallback = (error: (Error|null), response?: flyteidl.admin.GetVersionResponse) => void;
18246
+
18247
+ /**
18248
+ * Callback as used by {@link flyteidl.service.AdminService#getDescriptionEntity}.
18249
+ * @param error Error, if any
18250
+ * @param [response] DescriptionEntity
18251
+ */
18252
+ type GetDescriptionEntityCallback = (error: (Error|null), response?: flyteidl.admin.DescriptionEntity) => void;
18253
+
18254
+ /**
18255
+ * Callback as used by {@link flyteidl.service.AdminService#listDescriptionEntities}.
18256
+ * @param error Error, if any
18257
+ * @param [response] DescriptionEntityList
18258
+ */
18259
+ type ListDescriptionEntitiesCallback = (error: (Error|null), response?: flyteidl.admin.DescriptionEntityList) => void;
17839
18260
  }
17840
18261
 
17841
18262
  /** Properties of a OAuth2MetadataRequest. */
@@ -18440,6 +18861,137 @@ export namespace flyteidl {
18440
18861
  public static verify(message: { [k: string]: any }): (string|null);
18441
18862
  }
18442
18863
 
18864
+ /** ArtifactType enum. */
18865
+ enum ArtifactType {
18866
+ ARTIFACT_TYPE_UNDEFINED = 0,
18867
+ ARTIFACT_TYPE_DECK = 1
18868
+ }
18869
+
18870
+ /** Properties of a CreateDownloadLinkRequest. */
18871
+ interface ICreateDownloadLinkRequest {
18872
+
18873
+ /** CreateDownloadLinkRequest artifactType */
18874
+ artifactType?: (flyteidl.service.ArtifactType|null);
18875
+
18876
+ /** CreateDownloadLinkRequest expiresIn */
18877
+ expiresIn?: (google.protobuf.IDuration|null);
18878
+
18879
+ /** CreateDownloadLinkRequest nodeExecutionId */
18880
+ nodeExecutionId?: (flyteidl.core.INodeExecutionIdentifier|null);
18881
+ }
18882
+
18883
+ /** Represents a CreateDownloadLinkRequest. */
18884
+ class CreateDownloadLinkRequest implements ICreateDownloadLinkRequest {
18885
+
18886
+ /**
18887
+ * Constructs a new CreateDownloadLinkRequest.
18888
+ * @param [properties] Properties to set
18889
+ */
18890
+ constructor(properties?: flyteidl.service.ICreateDownloadLinkRequest);
18891
+
18892
+ /** CreateDownloadLinkRequest artifactType. */
18893
+ public artifactType: flyteidl.service.ArtifactType;
18894
+
18895
+ /** CreateDownloadLinkRequest expiresIn. */
18896
+ public expiresIn?: (google.protobuf.IDuration|null);
18897
+
18898
+ /** CreateDownloadLinkRequest nodeExecutionId. */
18899
+ public nodeExecutionId?: (flyteidl.core.INodeExecutionIdentifier|null);
18900
+
18901
+ /** CreateDownloadLinkRequest source. */
18902
+ public source?: "nodeExecutionId";
18903
+
18904
+ /**
18905
+ * Creates a new CreateDownloadLinkRequest instance using the specified properties.
18906
+ * @param [properties] Properties to set
18907
+ * @returns CreateDownloadLinkRequest instance
18908
+ */
18909
+ public static create(properties?: flyteidl.service.ICreateDownloadLinkRequest): flyteidl.service.CreateDownloadLinkRequest;
18910
+
18911
+ /**
18912
+ * Encodes the specified CreateDownloadLinkRequest message. Does not implicitly {@link flyteidl.service.CreateDownloadLinkRequest.verify|verify} messages.
18913
+ * @param message CreateDownloadLinkRequest message or plain object to encode
18914
+ * @param [writer] Writer to encode to
18915
+ * @returns Writer
18916
+ */
18917
+ public static encode(message: flyteidl.service.ICreateDownloadLinkRequest, writer?: $protobuf.Writer): $protobuf.Writer;
18918
+
18919
+ /**
18920
+ * Decodes a CreateDownloadLinkRequest message from the specified reader or buffer.
18921
+ * @param reader Reader or buffer to decode from
18922
+ * @param [length] Message length if known beforehand
18923
+ * @returns CreateDownloadLinkRequest
18924
+ * @throws {Error} If the payload is not a reader or valid buffer
18925
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
18926
+ */
18927
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.service.CreateDownloadLinkRequest;
18928
+
18929
+ /**
18930
+ * Verifies a CreateDownloadLinkRequest message.
18931
+ * @param message Plain object to verify
18932
+ * @returns `null` if valid, otherwise the reason why it is not
18933
+ */
18934
+ public static verify(message: { [k: string]: any }): (string|null);
18935
+ }
18936
+
18937
+ /** Properties of a CreateDownloadLinkResponse. */
18938
+ interface ICreateDownloadLinkResponse {
18939
+
18940
+ /** CreateDownloadLinkResponse signedUrl */
18941
+ signedUrl?: (string[]|null);
18942
+
18943
+ /** CreateDownloadLinkResponse expiresAt */
18944
+ expiresAt?: (google.protobuf.ITimestamp|null);
18945
+ }
18946
+
18947
+ /** Represents a CreateDownloadLinkResponse. */
18948
+ class CreateDownloadLinkResponse implements ICreateDownloadLinkResponse {
18949
+
18950
+ /**
18951
+ * Constructs a new CreateDownloadLinkResponse.
18952
+ * @param [properties] Properties to set
18953
+ */
18954
+ constructor(properties?: flyteidl.service.ICreateDownloadLinkResponse);
18955
+
18956
+ /** CreateDownloadLinkResponse signedUrl. */
18957
+ public signedUrl: string[];
18958
+
18959
+ /** CreateDownloadLinkResponse expiresAt. */
18960
+ public expiresAt?: (google.protobuf.ITimestamp|null);
18961
+
18962
+ /**
18963
+ * Creates a new CreateDownloadLinkResponse instance using the specified properties.
18964
+ * @param [properties] Properties to set
18965
+ * @returns CreateDownloadLinkResponse instance
18966
+ */
18967
+ public static create(properties?: flyteidl.service.ICreateDownloadLinkResponse): flyteidl.service.CreateDownloadLinkResponse;
18968
+
18969
+ /**
18970
+ * Encodes the specified CreateDownloadLinkResponse message. Does not implicitly {@link flyteidl.service.CreateDownloadLinkResponse.verify|verify} messages.
18971
+ * @param message CreateDownloadLinkResponse message or plain object to encode
18972
+ * @param [writer] Writer to encode to
18973
+ * @returns Writer
18974
+ */
18975
+ public static encode(message: flyteidl.service.ICreateDownloadLinkResponse, writer?: $protobuf.Writer): $protobuf.Writer;
18976
+
18977
+ /**
18978
+ * Decodes a CreateDownloadLinkResponse message from the specified reader or buffer.
18979
+ * @param reader Reader or buffer to decode from
18980
+ * @param [length] Message length if known beforehand
18981
+ * @returns CreateDownloadLinkResponse
18982
+ * @throws {Error} If the payload is not a reader or valid buffer
18983
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
18984
+ */
18985
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): flyteidl.service.CreateDownloadLinkResponse;
18986
+
18987
+ /**
18988
+ * Verifies a CreateDownloadLinkResponse message.
18989
+ * @param message Plain object to verify
18990
+ * @returns `null` if valid, otherwise the reason why it is not
18991
+ */
18992
+ public static verify(message: { [k: string]: any }): (string|null);
18993
+ }
18994
+
18443
18995
  /** Represents a DataProxyService */
18444
18996
  class DataProxyService extends $protobuf.rpc.Service {
18445
18997
 
@@ -18487,6 +19039,20 @@ export namespace flyteidl {
18487
19039
  * @returns Promise
18488
19040
  */
18489
19041
  public createDownloadLocation(request: flyteidl.service.ICreateDownloadLocationRequest): Promise<flyteidl.service.CreateDownloadLocationResponse>;
19042
+
19043
+ /**
19044
+ * Calls CreateDownloadLink.
19045
+ * @param request CreateDownloadLinkRequest message or plain object
19046
+ * @param callback Node-style callback called with the error, if any, and CreateDownloadLinkResponse
19047
+ */
19048
+ public createDownloadLink(request: flyteidl.service.ICreateDownloadLinkRequest, callback: flyteidl.service.DataProxyService.CreateDownloadLinkCallback): void;
19049
+
19050
+ /**
19051
+ * Calls CreateDownloadLink.
19052
+ * @param request CreateDownloadLinkRequest message or plain object
19053
+ * @returns Promise
19054
+ */
19055
+ public createDownloadLink(request: flyteidl.service.ICreateDownloadLinkRequest): Promise<flyteidl.service.CreateDownloadLinkResponse>;
18490
19056
  }
18491
19057
 
18492
19058
  namespace DataProxyService {
@@ -18504,6 +19070,13 @@ export namespace flyteidl {
18504
19070
  * @param [response] CreateDownloadLocationResponse
18505
19071
  */
18506
19072
  type CreateDownloadLocationCallback = (error: (Error|null), response?: flyteidl.service.CreateDownloadLocationResponse) => void;
19073
+
19074
+ /**
19075
+ * Callback as used by {@link flyteidl.service.DataProxyService#createDownloadLink}.
19076
+ * @param error Error, if any
19077
+ * @param [response] CreateDownloadLinkResponse
19078
+ */
19079
+ type CreateDownloadLinkCallback = (error: (Error|null), response?: flyteidl.service.CreateDownloadLinkResponse) => void;
18507
19080
  }
18508
19081
 
18509
19082
  /** Properties of a UserInfoRequest. */