Skip to content

Commit

Permalink
proto changes
Browse files Browse the repository at this point in the history
  • Loading branch information
squiishyy committed Feb 27, 2024
1 parent 7799bf1 commit 989f70c
Show file tree
Hide file tree
Showing 14 changed files with 1,055 additions and 253 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 @@ -8764,20 +8764,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 @@ -11048,8 +11034,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 @@ -11314,7 +11300,7 @@
"type": "object",
"properties": {
"operator": {
"$ref": "#/definitions/ComparisonExpressionOperator"
"$ref": "#/definitions/coreComparisonExpressionOperator"
},
"left_value": {
"$ref": "#/definitions/coreOperand"
Expand All @@ -11325,6 +11311,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 @@ -11602,6 +11602,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 @@ -12701,6 +12712,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 @@ -13394,6 +13419,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 989f70c

Please sign in to comment.