Skip to content

Commit

Permalink
proto changes
Browse files Browse the repository at this point in the history
  • Loading branch information
squiishyy authored and wild-endeavor committed Feb 28, 2024
1 parent 2b709f1 commit bdc6818
Show file tree
Hide file tree
Showing 14 changed files with 1,071 additions and 145 deletions.
66 changes: 49 additions & 17 deletions flyteidl/clients/go/assets/admin.swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -4197,20 +4197,6 @@
],
"default": "SINGLE"
},
"ComparisonExpressionOperator": {
"type": "string",
"enum": [
"EQ",
"NEQ",
"GT",
"GTE",
"LT",
"LTE"
],
"default": "EQ",
"description": "- GT: Greater Than\n - LT: Less Than",
"title": "Binary Operator for each expression"
},
"ConjunctionExpressionLogicalOperator": {
"type": "string",
"enum": [
Expand Down Expand Up @@ -6481,8 +6467,8 @@
"bind_to_time_partition": {
"type": "boolean"
},
"transform": {
"type": "string",
"time_transform": {
"$ref": "#/definitions/coreTimeTransform",
"title": "This is only relevant in the time partition case"
}
},
Expand Down Expand Up @@ -6750,7 +6736,7 @@
"type": "object",
"properties": {
"operator": {
"$ref": "#/definitions/ComparisonExpressionOperator"
"$ref": "#/definitions/coreComparisonExpressionOperator"
},
"left_value": {
"$ref": "#/definitions/coreOperand"
Expand All @@ -6761,6 +6747,20 @@
},
"description": "Defines a 2-level tree where the root is a comparison operator and Operands are primitives or known variables.\nEach expression results in a boolean result."
},
"coreComparisonExpressionOperator": {
"type": "string",
"enum": [
"EQ",
"NEQ",
"GT",
"GTE",
"LT",
"LTE"
],
"default": "EQ",
"description": "- GT: Greater Than\n - LT: Less Than",
"title": "Binary Operator for each expression"
},
"coreCompiledLaunchPlan": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -7038,6 +7038,17 @@
},
"description": "GateNode refers to the condition that is required for the gate to successfully complete."
},
"coreGranularity": {
"type": "string",
"enum": [
"MINUTE",
"HOUR",
"DAY",
"MONTH"
],
"default": "MINUTE",
"title": "- DAY: default"
},
"coreIOStrategy": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -8145,6 +8156,20 @@
"properties": {
"value": {
"$ref": "#/definitions/coreLabelValue"
},
"granularity": {
"$ref": "#/definitions/coreGranularity"
}
}
},
"coreTimeTransform": {
"type": "object",
"properties": {
"transform": {
"type": "string"
},
"op": {
"$ref": "#/definitions/flyteidlcoreOperator"
}
}
},
Expand Down Expand Up @@ -8838,6 +8863,13 @@
},
"description": "A generic key value pair."
},
"flyteidlcoreOperator": {
"type": "string",
"enum": [
"MINUS"
],
"default": "MINUS"
},
"flyteidlcoreSchema": {
"type": "object",
"properties": {
Expand Down
111 changes: 104 additions & 7 deletions flyteidl/gen/pb-es/flyteidl/core/artifact_id_pb.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit bdc6818

Please sign in to comment.