Skip to content

Commit

Permalink
feat(docs): update api swagger
Browse files Browse the repository at this point in the history
  • Loading branch information
loicmathieu authored and github-actions[bot] committed Aug 29, 2024
1 parent bc92eb6 commit 0a25e3b
Show file tree
Hide file tree
Showing 2 changed files with 129 additions and 37 deletions.
92 changes: 71 additions & 21 deletions public/kestra-ee.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4092,6 +4092,14 @@ paths:
required: true
schema:
type: string
- name: subflows
in: query
description: The subflow tasks to display
schema:
type: array
nullable: true
items:
type: string
responses:
"200":
description: flowGraph 200 response
Expand All @@ -4112,6 +4120,14 @@ paths:
required: true
schema:
type: string
- name: subflows
in: query
description: The subflow tasks to display
schema:
type: array
nullable: true
items:
type: string
responses:
"200":
description: flowGraph_1 200 response
Expand Down Expand Up @@ -4803,7 +4819,7 @@ paths:
nullable: true
- name: labels
in: query
description: A labels filter
description: A labels filter as a list of 'key:value'
schema:
type: array
nullable: true
Expand Down Expand Up @@ -4837,7 +4853,7 @@ paths:
nullable: true
- name: labels
in: query
description: A labels filter
description: A labels filter as a list of 'key:value'
schema:
type: array
nullable: true
Expand Down Expand Up @@ -4913,7 +4929,7 @@ paths:
nullable: true
- name: labels
in: query
description: A labels filter
description: A labels filter as a list of 'key:value'
schema:
type: array
nullable: true
Expand Down Expand Up @@ -4947,7 +4963,7 @@ paths:
nullable: true
- name: labels
in: query
description: A labels filter
description: A labels filter as a list of 'key:value'
schema:
type: array
nullable: true
Expand Down Expand Up @@ -5067,7 +5083,7 @@ paths:
nullable: true
- name: labels
in: query
description: A labels filter
description: A labels filter as a list of 'key:value'
schema:
type: array
nullable: true
Expand Down Expand Up @@ -5101,7 +5117,7 @@ paths:
nullable: true
- name: labels
in: query
description: A labels filter
description: A labels filter as a list of 'key:value'
schema:
type: array
nullable: true
Expand Down Expand Up @@ -5183,7 +5199,7 @@ paths:
nullable: true
- name: labels
in: query
description: A labels filter
description: A labels filter as a list of 'key:value'
schema:
type: array
nullable: true
Expand Down Expand Up @@ -5220,7 +5236,7 @@ paths:
nullable: true
- name: labels
in: query
description: A labels filter
description: A labels filter as a list of 'key:value'
schema:
type: array
nullable: true
Expand Down Expand Up @@ -5391,7 +5407,7 @@ paths:
nullable: true
- name: labels
in: query
description: A labels filter
description: A labels filter as a list of 'key:value'
schema:
type: array
nullable: true
Expand Down Expand Up @@ -5449,7 +5465,7 @@ paths:
nullable: true
- name: labels
in: query
description: A labels filter
description: A labels filter as a list of 'key:value'
schema:
type: array
nullable: true
Expand Down Expand Up @@ -17891,6 +17907,8 @@ components:
type: array
items:
$ref: "#/components/schemas/State.Type"
logToFile:
type: boolean
AbstractTriggerForExecution:
required:
- id
Expand Down Expand Up @@ -19229,6 +19247,21 @@ components:
type: string
retry:
$ref: "#/components/schemas/Duration"
ExecutableTask.SubflowId:
required:
- flowId
- namespace
- revision
type: object
properties:
namespace:
type: string
flowId:
type: string
revision:
type: integer
format: int32
nullable: true
Execution:
required:
- deleted
Expand Down Expand Up @@ -19349,6 +19382,7 @@ components:
ExecutionTrigger:
required:
- id
- logFile
- type
- variables
type: object
Expand All @@ -19360,6 +19394,9 @@ components:
variables:
type: object
additionalProperties: true
logFile:
type: string
format: uri
ExecutionUsage:
type: object
properties:
Expand Down Expand Up @@ -19788,24 +19825,14 @@ components:
required:
type: boolean
defaults: {}
KVController.KVType:
type: string
enum:
- STRING
- NUMBER
- BOOLEAN
- DATETIME
- DATE
- DURATION
- JSON
KVController.TypedValue:
required:
- type
- value
type: object
properties:
type:
$ref: "#/components/schemas/KVController.KVType"
$ref: "#/components/schemas/KVType"
value: {}
KVEntry:
required:
Expand All @@ -19826,6 +19853,16 @@ components:
expirationDate:
type: string
format: date-time
KVType:
type: string
enum:
- STRING
- NUMBER
- BOOLEAN
- DATETIME
- DATE
- DURATION
- JSON
Label:
required:
- key
Expand Down Expand Up @@ -20106,6 +20143,11 @@ components:
type: string
version:
type: string
commitId:
type: string
commitDate:
type: string
format: date-time
isTaskRunEnabled:
type: boolean
isAnonymousUsageEnabled:
Expand Down Expand Up @@ -21510,6 +21552,8 @@ components:
$ref: "#/components/schemas/Level"
allowFailure:
type: boolean
logToFile:
type: boolean
TaskForExecution:
required:
- id
Expand All @@ -21533,6 +21577,8 @@ components:
type: array
items:
$ref: "#/components/schemas/Input_Object_"
subflowId:
$ref: "#/components/schemas/ExecutableTask.SubflowId"
TaskRun:
required:
- attempts
Expand Down Expand Up @@ -21579,6 +21625,7 @@ components:
format: int32
TaskRunAttempt:
required:
- logFile
- state
type: object
properties:
Expand All @@ -21589,6 +21636,9 @@ components:
$ref: "#/components/schemas/AbstractMetricEntry_Object_"
state:
$ref: "#/components/schemas/State"
logFile:
type: string
format: uri
Template:
required:
- deleted
Expand Down
Loading

0 comments on commit 0a25e3b

Please sign in to comment.