@flyteorg/flyteidl 0.23.0 → 0.23.1

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.
@@ -9484,6 +9484,9 @@ export namespace flyteidl {
9484
9484
 
9485
9485
  /** ExecutionSpec maxParallelism */
9486
9486
  maxParallelism?: (number|null);
9487
+
9488
+ /** ExecutionSpec rawOutputDataConfig */
9489
+ rawOutputDataConfig?: (flyteidl.admin.IRawOutputDataConfig|null);
9487
9490
  }
9488
9491
 
9489
9492
  /** Represents an ExecutionSpec. */
@@ -9528,6 +9531,9 @@ export namespace flyteidl {
9528
9531
  /** ExecutionSpec maxParallelism. */
9529
9532
  public maxParallelism: number;
9530
9533
 
9534
+ /** ExecutionSpec rawOutputDataConfig. */
9535
+ public rawOutputDataConfig?: (flyteidl.admin.IRawOutputDataConfig|null);
9536
+
9531
9537
  /** ExecutionSpec notificationOverrides. */
9532
9538
  public notificationOverrides?: ("notifications"|"disableAll");
9533
9539
 
@@ -22689,6 +22689,7 @@ export const flyteidl = $root.flyteidl = (() => {
22689
22689
  * @property {flyteidl.admin.IAuthRole|null} [authRole] ExecutionSpec authRole
22690
22690
  * @property {flyteidl.core.IQualityOfService|null} [qualityOfService] ExecutionSpec qualityOfService
22691
22691
  * @property {number|null} [maxParallelism] ExecutionSpec maxParallelism
22692
+ * @property {flyteidl.admin.IRawOutputDataConfig|null} [rawOutputDataConfig] ExecutionSpec rawOutputDataConfig
22692
22693
  */
22693
22694
 
22694
22695
  /**
@@ -22794,6 +22795,14 @@ export const flyteidl = $root.flyteidl = (() => {
22794
22795
  */
22795
22796
  ExecutionSpec.prototype.maxParallelism = 0;
22796
22797
 
22798
+ /**
22799
+ * ExecutionSpec rawOutputDataConfig.
22800
+ * @member {flyteidl.admin.IRawOutputDataConfig|null|undefined} rawOutputDataConfig
22801
+ * @memberof flyteidl.admin.ExecutionSpec
22802
+ * @instance
22803
+ */
22804
+ ExecutionSpec.prototype.rawOutputDataConfig = null;
22805
+
22797
22806
  // OneOf field names bound to virtual getters and setters
22798
22807
  let $oneOfFields;
22799
22808
 
@@ -22854,6 +22863,8 @@ export const flyteidl = $root.flyteidl = (() => {
22854
22863
  $root.flyteidl.core.QualityOfService.encode(message.qualityOfService, writer.uint32(/* id 17, wireType 2 =*/138).fork()).ldelim();
22855
22864
  if (message.maxParallelism != null && message.hasOwnProperty("maxParallelism"))
22856
22865
  writer.uint32(/* id 18, wireType 0 =*/144).int32(message.maxParallelism);
22866
+ if (message.rawOutputDataConfig != null && message.hasOwnProperty("rawOutputDataConfig"))
22867
+ $root.flyteidl.admin.RawOutputDataConfig.encode(message.rawOutputDataConfig, writer.uint32(/* id 19, wireType 2 =*/154).fork()).ldelim();
22857
22868
  return writer;
22858
22869
  };
22859
22870
 
@@ -22908,6 +22919,9 @@ export const flyteidl = $root.flyteidl = (() => {
22908
22919
  case 18:
22909
22920
  message.maxParallelism = reader.int32();
22910
22921
  break;
22922
+ case 19:
22923
+ message.rawOutputDataConfig = $root.flyteidl.admin.RawOutputDataConfig.decode(reader, reader.uint32());
22924
+ break;
22911
22925
  default:
22912
22926
  reader.skipType(tag & 7);
22913
22927
  break;
@@ -22986,6 +23000,11 @@ export const flyteidl = $root.flyteidl = (() => {
22986
23000
  if (message.maxParallelism != null && message.hasOwnProperty("maxParallelism"))
22987
23001
  if (!$util.isInteger(message.maxParallelism))
22988
23002
  return "maxParallelism: integer expected";
23003
+ if (message.rawOutputDataConfig != null && message.hasOwnProperty("rawOutputDataConfig")) {
23004
+ let error = $root.flyteidl.admin.RawOutputDataConfig.verify(message.rawOutputDataConfig);
23005
+ if (error)
23006
+ return "rawOutputDataConfig." + error;
23007
+ }
22989
23008
  return null;
22990
23009
  };
22991
23010
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flyteorg/flyteidl",
3
- "version": "0.23.0",
3
+ "version": "0.23.1",
4
4
  "description": "Compiled protocol buffers and gRPC service clients/servers for Flyte IDLs",
5
5
  "repository": {
6
6
  "type": "git",
@@ -281,6 +281,10 @@ message ExecutionSpec {
281
281
  // This is useful to achieve fairness. Note: MapTasks are regarded as one unit,
282
282
  // and parallelism/concurrency of MapTasks is independent from this.
283
283
  int32 max_parallelism = 18;
284
+
285
+ // User setting to configure where to store offloaded data (i.e. Blobs, structured datasets, query data, etc.).
286
+ // This should be a prefix like s3://my-bucket/my-data
287
+ RawOutputDataConfig raw_output_data_config = 19;
284
288
  }
285
289
 
286
290
  // Request to terminate an in-progress execution. This action is irreversible.