@flyteorg/flyteidl 1.2.1 → 1.2.3

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.
@@ -12,7 +12,8 @@ export namespace flyteidl {
12
12
  CACHE_HIT = 2,
13
13
  CACHE_POPULATED = 3,
14
14
  CACHE_LOOKUP_FAILURE = 4,
15
- CACHE_PUT_FAILURE = 5
15
+ CACHE_PUT_FAILURE = 5,
16
+ CACHE_SKIPPED = 6
16
17
  }
17
18
 
18
19
  /** Properties of a CatalogArtifactTag. */
@@ -9289,6 +9290,9 @@ export namespace flyteidl {
9289
9290
 
9290
9291
  /** ExecutionRelaunchRequest name */
9291
9292
  name?: (string|null);
9293
+
9294
+ /** ExecutionRelaunchRequest overwriteCache */
9295
+ overwriteCache?: (boolean|null);
9292
9296
  }
9293
9297
 
9294
9298
  /** Represents an ExecutionRelaunchRequest. */
@@ -9306,6 +9310,9 @@ export namespace flyteidl {
9306
9310
  /** ExecutionRelaunchRequest name. */
9307
9311
  public name: string;
9308
9312
 
9313
+ /** ExecutionRelaunchRequest overwriteCache. */
9314
+ public overwriteCache: boolean;
9315
+
9309
9316
  /**
9310
9317
  * Creates a new ExecutionRelaunchRequest instance using the specified properties.
9311
9318
  * @param [properties] Properties to set
@@ -10130,6 +10137,9 @@ export namespace flyteidl {
10130
10137
 
10131
10138
  /** ExecutionSpec interruptible */
10132
10139
  interruptible?: (google.protobuf.IBoolValue|null);
10140
+
10141
+ /** ExecutionSpec overwriteCache */
10142
+ overwriteCache?: (boolean|null);
10133
10143
  }
10134
10144
 
10135
10145
  /** Represents an ExecutionSpec. */
@@ -10183,6 +10193,9 @@ export namespace flyteidl {
10183
10193
  /** ExecutionSpec interruptible. */
10184
10194
  public interruptible?: (google.protobuf.IBoolValue|null);
10185
10195
 
10196
+ /** ExecutionSpec overwriteCache. */
10197
+ public overwriteCache: boolean;
10198
+
10186
10199
  /** ExecutionSpec notificationOverrides. */
10187
10200
  public notificationOverrides?: ("notifications"|"disableAll");
10188
10201
 
@@ -10953,6 +10966,9 @@ export namespace flyteidl {
10953
10966
 
10954
10967
  /** LaunchPlanSpec interruptible */
10955
10968
  interruptible?: (google.protobuf.IBoolValue|null);
10969
+
10970
+ /** LaunchPlanSpec overwriteCache */
10971
+ overwriteCache?: (boolean|null);
10956
10972
  }
10957
10973
 
10958
10974
  /** Represents a LaunchPlanSpec. */
@@ -11006,6 +11022,9 @@ export namespace flyteidl {
11006
11022
  /** LaunchPlanSpec interruptible. */
11007
11023
  public interruptible?: (google.protobuf.IBoolValue|null);
11008
11024
 
11025
+ /** LaunchPlanSpec overwriteCache. */
11026
+ public overwriteCache: boolean;
11027
+
11009
11028
  /**
11010
11029
  * Creates a new LaunchPlanSpec instance using the specified properties.
11011
11030
  * @param [properties] Properties to set
@@ -12048,6 +12067,9 @@ export namespace flyteidl {
12048
12067
 
12049
12068
  /** WorkflowExecutionConfig interruptible */
12050
12069
  interruptible?: (google.protobuf.IBoolValue|null);
12070
+
12071
+ /** WorkflowExecutionConfig overwriteCache */
12072
+ overwriteCache?: (boolean|null);
12051
12073
  }
12052
12074
 
12053
12075
  /** Represents a WorkflowExecutionConfig. */
@@ -12077,6 +12099,9 @@ export namespace flyteidl {
12077
12099
  /** WorkflowExecutionConfig interruptible. */
12078
12100
  public interruptible?: (google.protobuf.IBoolValue|null);
12079
12101
 
12102
+ /** WorkflowExecutionConfig overwriteCache. */
12103
+ public overwriteCache: boolean;
12104
+
12080
12105
  /**
12081
12106
  * Creates a new WorkflowExecutionConfig instance using the specified properties.
12082
12107
  * @param [properties] Properties to set