@flyteorg/flyteidl 1.0.1 → 1.1.2

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.
@@ -10002,6 +10002,9 @@ export namespace flyteidl {
10002
10002
 
10003
10003
  /** ExecutionSpec clusterAssignment */
10004
10004
  clusterAssignment?: (flyteidl.admin.IClusterAssignment|null);
10005
+
10006
+ /** ExecutionSpec interruptible */
10007
+ interruptible?: (google.protobuf.IBoolValue|null);
10005
10008
  }
10006
10009
 
10007
10010
  /** Represents an ExecutionSpec. */
@@ -10052,6 +10055,9 @@ export namespace flyteidl {
10052
10055
  /** ExecutionSpec clusterAssignment. */
10053
10056
  public clusterAssignment?: (flyteidl.admin.IClusterAssignment|null);
10054
10057
 
10058
+ /** ExecutionSpec interruptible. */
10059
+ public interruptible?: (google.protobuf.IBoolValue|null);
10060
+
10055
10061
  /** ExecutionSpec notificationOverrides. */
10056
10062
  public notificationOverrides?: ("notifications"|"disableAll");
10057
10063
 
@@ -10819,6 +10825,9 @@ export namespace flyteidl {
10819
10825
 
10820
10826
  /** LaunchPlanSpec maxParallelism */
10821
10827
  maxParallelism?: (number|null);
10828
+
10829
+ /** LaunchPlanSpec interruptible */
10830
+ interruptible?: (google.protobuf.IBoolValue|null);
10822
10831
  }
10823
10832
 
10824
10833
  /** Represents a LaunchPlanSpec. */
@@ -10869,6 +10878,9 @@ export namespace flyteidl {
10869
10878
  /** LaunchPlanSpec maxParallelism. */
10870
10879
  public maxParallelism: number;
10871
10880
 
10881
+ /** LaunchPlanSpec interruptible. */
10882
+ public interruptible?: (google.protobuf.IBoolValue|null);
10883
+
10872
10884
  /**
10873
10885
  * Creates a new LaunchPlanSpec instance using the specified properties.
10874
10886
  * @param [properties] Properties to set
@@ -11908,6 +11920,9 @@ export namespace flyteidl {
11908
11920
 
11909
11921
  /** WorkflowExecutionConfig annotations */
11910
11922
  annotations?: (flyteidl.admin.IAnnotations|null);
11923
+
11924
+ /** WorkflowExecutionConfig interruptible */
11925
+ interruptible?: (google.protobuf.IBoolValue|null);
11911
11926
  }
11912
11927
 
11913
11928
  /** Represents a WorkflowExecutionConfig. */
@@ -11934,6 +11949,9 @@ export namespace flyteidl {
11934
11949
  /** WorkflowExecutionConfig annotations. */
11935
11950
  public annotations?: (flyteidl.admin.IAnnotations|null);
11936
11951
 
11952
+ /** WorkflowExecutionConfig interruptible. */
11953
+ public interruptible?: (google.protobuf.IBoolValue|null);
11954
+
11937
11955
  /**
11938
11956
  * Creates a new WorkflowExecutionConfig instance using the specified properties.
11939
11957
  * @param [properties] Properties to set
@@ -17716,6 +17734,474 @@ export namespace google {
17716
17734
  public static verify(message: { [k: string]: any }): (string|null);
17717
17735
  }
17718
17736
 
17737
+ /** Properties of a DoubleValue. */
17738
+ interface IDoubleValue {
17739
+
17740
+ /** DoubleValue value */
17741
+ value?: (number|null);
17742
+ }
17743
+
17744
+ /** Represents a DoubleValue. */
17745
+ class DoubleValue implements IDoubleValue {
17746
+
17747
+ /**
17748
+ * Constructs a new DoubleValue.
17749
+ * @param [properties] Properties to set
17750
+ */
17751
+ constructor(properties?: google.protobuf.IDoubleValue);
17752
+
17753
+ /** DoubleValue value. */
17754
+ public value: number;
17755
+
17756
+ /**
17757
+ * Creates a new DoubleValue instance using the specified properties.
17758
+ * @param [properties] Properties to set
17759
+ * @returns DoubleValue instance
17760
+ */
17761
+ public static create(properties?: google.protobuf.IDoubleValue): google.protobuf.DoubleValue;
17762
+
17763
+ /**
17764
+ * Encodes the specified DoubleValue message. Does not implicitly {@link google.protobuf.DoubleValue.verify|verify} messages.
17765
+ * @param message DoubleValue message or plain object to encode
17766
+ * @param [writer] Writer to encode to
17767
+ * @returns Writer
17768
+ */
17769
+ public static encode(message: google.protobuf.IDoubleValue, writer?: $protobuf.Writer): $protobuf.Writer;
17770
+
17771
+ /**
17772
+ * Decodes a DoubleValue message from the specified reader or buffer.
17773
+ * @param reader Reader or buffer to decode from
17774
+ * @param [length] Message length if known beforehand
17775
+ * @returns DoubleValue
17776
+ * @throws {Error} If the payload is not a reader or valid buffer
17777
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
17778
+ */
17779
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.DoubleValue;
17780
+
17781
+ /**
17782
+ * Verifies a DoubleValue message.
17783
+ * @param message Plain object to verify
17784
+ * @returns `null` if valid, otherwise the reason why it is not
17785
+ */
17786
+ public static verify(message: { [k: string]: any }): (string|null);
17787
+ }
17788
+
17789
+ /** Properties of a FloatValue. */
17790
+ interface IFloatValue {
17791
+
17792
+ /** FloatValue value */
17793
+ value?: (number|null);
17794
+ }
17795
+
17796
+ /** Represents a FloatValue. */
17797
+ class FloatValue implements IFloatValue {
17798
+
17799
+ /**
17800
+ * Constructs a new FloatValue.
17801
+ * @param [properties] Properties to set
17802
+ */
17803
+ constructor(properties?: google.protobuf.IFloatValue);
17804
+
17805
+ /** FloatValue value. */
17806
+ public value: number;
17807
+
17808
+ /**
17809
+ * Creates a new FloatValue instance using the specified properties.
17810
+ * @param [properties] Properties to set
17811
+ * @returns FloatValue instance
17812
+ */
17813
+ public static create(properties?: google.protobuf.IFloatValue): google.protobuf.FloatValue;
17814
+
17815
+ /**
17816
+ * Encodes the specified FloatValue message. Does not implicitly {@link google.protobuf.FloatValue.verify|verify} messages.
17817
+ * @param message FloatValue message or plain object to encode
17818
+ * @param [writer] Writer to encode to
17819
+ * @returns Writer
17820
+ */
17821
+ public static encode(message: google.protobuf.IFloatValue, writer?: $protobuf.Writer): $protobuf.Writer;
17822
+
17823
+ /**
17824
+ * Decodes a FloatValue message from the specified reader or buffer.
17825
+ * @param reader Reader or buffer to decode from
17826
+ * @param [length] Message length if known beforehand
17827
+ * @returns FloatValue
17828
+ * @throws {Error} If the payload is not a reader or valid buffer
17829
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
17830
+ */
17831
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FloatValue;
17832
+
17833
+ /**
17834
+ * Verifies a FloatValue message.
17835
+ * @param message Plain object to verify
17836
+ * @returns `null` if valid, otherwise the reason why it is not
17837
+ */
17838
+ public static verify(message: { [k: string]: any }): (string|null);
17839
+ }
17840
+
17841
+ /** Properties of an Int64Value. */
17842
+ interface IInt64Value {
17843
+
17844
+ /** Int64Value value */
17845
+ value?: (Long|null);
17846
+ }
17847
+
17848
+ /** Represents an Int64Value. */
17849
+ class Int64Value implements IInt64Value {
17850
+
17851
+ /**
17852
+ * Constructs a new Int64Value.
17853
+ * @param [properties] Properties to set
17854
+ */
17855
+ constructor(properties?: google.protobuf.IInt64Value);
17856
+
17857
+ /** Int64Value value. */
17858
+ public value: Long;
17859
+
17860
+ /**
17861
+ * Creates a new Int64Value instance using the specified properties.
17862
+ * @param [properties] Properties to set
17863
+ * @returns Int64Value instance
17864
+ */
17865
+ public static create(properties?: google.protobuf.IInt64Value): google.protobuf.Int64Value;
17866
+
17867
+ /**
17868
+ * Encodes the specified Int64Value message. Does not implicitly {@link google.protobuf.Int64Value.verify|verify} messages.
17869
+ * @param message Int64Value message or plain object to encode
17870
+ * @param [writer] Writer to encode to
17871
+ * @returns Writer
17872
+ */
17873
+ public static encode(message: google.protobuf.IInt64Value, writer?: $protobuf.Writer): $protobuf.Writer;
17874
+
17875
+ /**
17876
+ * Decodes an Int64Value message from the specified reader or buffer.
17877
+ * @param reader Reader or buffer to decode from
17878
+ * @param [length] Message length if known beforehand
17879
+ * @returns Int64Value
17880
+ * @throws {Error} If the payload is not a reader or valid buffer
17881
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
17882
+ */
17883
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.Int64Value;
17884
+
17885
+ /**
17886
+ * Verifies an Int64Value message.
17887
+ * @param message Plain object to verify
17888
+ * @returns `null` if valid, otherwise the reason why it is not
17889
+ */
17890
+ public static verify(message: { [k: string]: any }): (string|null);
17891
+ }
17892
+
17893
+ /** Properties of a UInt64Value. */
17894
+ interface IUInt64Value {
17895
+
17896
+ /** UInt64Value value */
17897
+ value?: (Long|null);
17898
+ }
17899
+
17900
+ /** Represents a UInt64Value. */
17901
+ class UInt64Value implements IUInt64Value {
17902
+
17903
+ /**
17904
+ * Constructs a new UInt64Value.
17905
+ * @param [properties] Properties to set
17906
+ */
17907
+ constructor(properties?: google.protobuf.IUInt64Value);
17908
+
17909
+ /** UInt64Value value. */
17910
+ public value: Long;
17911
+
17912
+ /**
17913
+ * Creates a new UInt64Value instance using the specified properties.
17914
+ * @param [properties] Properties to set
17915
+ * @returns UInt64Value instance
17916
+ */
17917
+ public static create(properties?: google.protobuf.IUInt64Value): google.protobuf.UInt64Value;
17918
+
17919
+ /**
17920
+ * Encodes the specified UInt64Value message. Does not implicitly {@link google.protobuf.UInt64Value.verify|verify} messages.
17921
+ * @param message UInt64Value message or plain object to encode
17922
+ * @param [writer] Writer to encode to
17923
+ * @returns Writer
17924
+ */
17925
+ public static encode(message: google.protobuf.IUInt64Value, writer?: $protobuf.Writer): $protobuf.Writer;
17926
+
17927
+ /**
17928
+ * Decodes a UInt64Value message from the specified reader or buffer.
17929
+ * @param reader Reader or buffer to decode from
17930
+ * @param [length] Message length if known beforehand
17931
+ * @returns UInt64Value
17932
+ * @throws {Error} If the payload is not a reader or valid buffer
17933
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
17934
+ */
17935
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.UInt64Value;
17936
+
17937
+ /**
17938
+ * Verifies a UInt64Value message.
17939
+ * @param message Plain object to verify
17940
+ * @returns `null` if valid, otherwise the reason why it is not
17941
+ */
17942
+ public static verify(message: { [k: string]: any }): (string|null);
17943
+ }
17944
+
17945
+ /** Properties of an Int32Value. */
17946
+ interface IInt32Value {
17947
+
17948
+ /** Int32Value value */
17949
+ value?: (number|null);
17950
+ }
17951
+
17952
+ /** Represents an Int32Value. */
17953
+ class Int32Value implements IInt32Value {
17954
+
17955
+ /**
17956
+ * Constructs a new Int32Value.
17957
+ * @param [properties] Properties to set
17958
+ */
17959
+ constructor(properties?: google.protobuf.IInt32Value);
17960
+
17961
+ /** Int32Value value. */
17962
+ public value: number;
17963
+
17964
+ /**
17965
+ * Creates a new Int32Value instance using the specified properties.
17966
+ * @param [properties] Properties to set
17967
+ * @returns Int32Value instance
17968
+ */
17969
+ public static create(properties?: google.protobuf.IInt32Value): google.protobuf.Int32Value;
17970
+
17971
+ /**
17972
+ * Encodes the specified Int32Value message. Does not implicitly {@link google.protobuf.Int32Value.verify|verify} messages.
17973
+ * @param message Int32Value message or plain object to encode
17974
+ * @param [writer] Writer to encode to
17975
+ * @returns Writer
17976
+ */
17977
+ public static encode(message: google.protobuf.IInt32Value, writer?: $protobuf.Writer): $protobuf.Writer;
17978
+
17979
+ /**
17980
+ * Decodes an Int32Value message from the specified reader or buffer.
17981
+ * @param reader Reader or buffer to decode from
17982
+ * @param [length] Message length if known beforehand
17983
+ * @returns Int32Value
17984
+ * @throws {Error} If the payload is not a reader or valid buffer
17985
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
17986
+ */
17987
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.Int32Value;
17988
+
17989
+ /**
17990
+ * Verifies an Int32Value message.
17991
+ * @param message Plain object to verify
17992
+ * @returns `null` if valid, otherwise the reason why it is not
17993
+ */
17994
+ public static verify(message: { [k: string]: any }): (string|null);
17995
+ }
17996
+
17997
+ /** Properties of a UInt32Value. */
17998
+ interface IUInt32Value {
17999
+
18000
+ /** UInt32Value value */
18001
+ value?: (number|null);
18002
+ }
18003
+
18004
+ /** Represents a UInt32Value. */
18005
+ class UInt32Value implements IUInt32Value {
18006
+
18007
+ /**
18008
+ * Constructs a new UInt32Value.
18009
+ * @param [properties] Properties to set
18010
+ */
18011
+ constructor(properties?: google.protobuf.IUInt32Value);
18012
+
18013
+ /** UInt32Value value. */
18014
+ public value: number;
18015
+
18016
+ /**
18017
+ * Creates a new UInt32Value instance using the specified properties.
18018
+ * @param [properties] Properties to set
18019
+ * @returns UInt32Value instance
18020
+ */
18021
+ public static create(properties?: google.protobuf.IUInt32Value): google.protobuf.UInt32Value;
18022
+
18023
+ /**
18024
+ * Encodes the specified UInt32Value message. Does not implicitly {@link google.protobuf.UInt32Value.verify|verify} messages.
18025
+ * @param message UInt32Value message or plain object to encode
18026
+ * @param [writer] Writer to encode to
18027
+ * @returns Writer
18028
+ */
18029
+ public static encode(message: google.protobuf.IUInt32Value, writer?: $protobuf.Writer): $protobuf.Writer;
18030
+
18031
+ /**
18032
+ * Decodes a UInt32Value message from the specified reader or buffer.
18033
+ * @param reader Reader or buffer to decode from
18034
+ * @param [length] Message length if known beforehand
18035
+ * @returns UInt32Value
18036
+ * @throws {Error} If the payload is not a reader or valid buffer
18037
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
18038
+ */
18039
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.UInt32Value;
18040
+
18041
+ /**
18042
+ * Verifies a UInt32Value message.
18043
+ * @param message Plain object to verify
18044
+ * @returns `null` if valid, otherwise the reason why it is not
18045
+ */
18046
+ public static verify(message: { [k: string]: any }): (string|null);
18047
+ }
18048
+
18049
+ /** Properties of a BoolValue. */
18050
+ interface IBoolValue {
18051
+
18052
+ /** BoolValue value */
18053
+ value?: (boolean|null);
18054
+ }
18055
+
18056
+ /** Represents a BoolValue. */
18057
+ class BoolValue implements IBoolValue {
18058
+
18059
+ /**
18060
+ * Constructs a new BoolValue.
18061
+ * @param [properties] Properties to set
18062
+ */
18063
+ constructor(properties?: google.protobuf.IBoolValue);
18064
+
18065
+ /** BoolValue value. */
18066
+ public value: boolean;
18067
+
18068
+ /**
18069
+ * Creates a new BoolValue instance using the specified properties.
18070
+ * @param [properties] Properties to set
18071
+ * @returns BoolValue instance
18072
+ */
18073
+ public static create(properties?: google.protobuf.IBoolValue): google.protobuf.BoolValue;
18074
+
18075
+ /**
18076
+ * Encodes the specified BoolValue message. Does not implicitly {@link google.protobuf.BoolValue.verify|verify} messages.
18077
+ * @param message BoolValue message or plain object to encode
18078
+ * @param [writer] Writer to encode to
18079
+ * @returns Writer
18080
+ */
18081
+ public static encode(message: google.protobuf.IBoolValue, writer?: $protobuf.Writer): $protobuf.Writer;
18082
+
18083
+ /**
18084
+ * Decodes a BoolValue message from the specified reader or buffer.
18085
+ * @param reader Reader or buffer to decode from
18086
+ * @param [length] Message length if known beforehand
18087
+ * @returns BoolValue
18088
+ * @throws {Error} If the payload is not a reader or valid buffer
18089
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
18090
+ */
18091
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.BoolValue;
18092
+
18093
+ /**
18094
+ * Verifies a BoolValue message.
18095
+ * @param message Plain object to verify
18096
+ * @returns `null` if valid, otherwise the reason why it is not
18097
+ */
18098
+ public static verify(message: { [k: string]: any }): (string|null);
18099
+ }
18100
+
18101
+ /** Properties of a StringValue. */
18102
+ interface IStringValue {
18103
+
18104
+ /** StringValue value */
18105
+ value?: (string|null);
18106
+ }
18107
+
18108
+ /** Represents a StringValue. */
18109
+ class StringValue implements IStringValue {
18110
+
18111
+ /**
18112
+ * Constructs a new StringValue.
18113
+ * @param [properties] Properties to set
18114
+ */
18115
+ constructor(properties?: google.protobuf.IStringValue);
18116
+
18117
+ /** StringValue value. */
18118
+ public value: string;
18119
+
18120
+ /**
18121
+ * Creates a new StringValue instance using the specified properties.
18122
+ * @param [properties] Properties to set
18123
+ * @returns StringValue instance
18124
+ */
18125
+ public static create(properties?: google.protobuf.IStringValue): google.protobuf.StringValue;
18126
+
18127
+ /**
18128
+ * Encodes the specified StringValue message. Does not implicitly {@link google.protobuf.StringValue.verify|verify} messages.
18129
+ * @param message StringValue message or plain object to encode
18130
+ * @param [writer] Writer to encode to
18131
+ * @returns Writer
18132
+ */
18133
+ public static encode(message: google.protobuf.IStringValue, writer?: $protobuf.Writer): $protobuf.Writer;
18134
+
18135
+ /**
18136
+ * Decodes a StringValue message from the specified reader or buffer.
18137
+ * @param reader Reader or buffer to decode from
18138
+ * @param [length] Message length if known beforehand
18139
+ * @returns StringValue
18140
+ * @throws {Error} If the payload is not a reader or valid buffer
18141
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
18142
+ */
18143
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.StringValue;
18144
+
18145
+ /**
18146
+ * Verifies a StringValue message.
18147
+ * @param message Plain object to verify
18148
+ * @returns `null` if valid, otherwise the reason why it is not
18149
+ */
18150
+ public static verify(message: { [k: string]: any }): (string|null);
18151
+ }
18152
+
18153
+ /** Properties of a BytesValue. */
18154
+ interface IBytesValue {
18155
+
18156
+ /** BytesValue value */
18157
+ value?: (Uint8Array|null);
18158
+ }
18159
+
18160
+ /** Represents a BytesValue. */
18161
+ class BytesValue implements IBytesValue {
18162
+
18163
+ /**
18164
+ * Constructs a new BytesValue.
18165
+ * @param [properties] Properties to set
18166
+ */
18167
+ constructor(properties?: google.protobuf.IBytesValue);
18168
+
18169
+ /** BytesValue value. */
18170
+ public value: Uint8Array;
18171
+
18172
+ /**
18173
+ * Creates a new BytesValue instance using the specified properties.
18174
+ * @param [properties] Properties to set
18175
+ * @returns BytesValue instance
18176
+ */
18177
+ public static create(properties?: google.protobuf.IBytesValue): google.protobuf.BytesValue;
18178
+
18179
+ /**
18180
+ * Encodes the specified BytesValue message. Does not implicitly {@link google.protobuf.BytesValue.verify|verify} messages.
18181
+ * @param message BytesValue message or plain object to encode
18182
+ * @param [writer] Writer to encode to
18183
+ * @returns Writer
18184
+ */
18185
+ public static encode(message: google.protobuf.IBytesValue, writer?: $protobuf.Writer): $protobuf.Writer;
18186
+
18187
+ /**
18188
+ * Decodes a BytesValue message from the specified reader or buffer.
18189
+ * @param reader Reader or buffer to decode from
18190
+ * @param [length] Message length if known beforehand
18191
+ * @returns BytesValue
18192
+ * @throws {Error} If the payload is not a reader or valid buffer
18193
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
18194
+ */
18195
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.BytesValue;
18196
+
18197
+ /**
18198
+ * Verifies a BytesValue message.
18199
+ * @param message Plain object to verify
18200
+ * @returns `null` if valid, otherwise the reason why it is not
18201
+ */
18202
+ public static verify(message: { [k: string]: any }): (string|null);
18203
+ }
18204
+
17719
18205
  /** Properties of a FileDescriptorSet. */
17720
18206
  interface IFileDescriptorSet {
17721
18207