2024-07-11 11:40:11 +02:00
|
|
|
swagger: "2.0"
|
|
|
|
info:
|
2024-09-04 17:23:11 +02:00
|
|
|
title: oc-scheduler
|
2024-07-11 11:40:11 +02:00
|
|
|
description: |
|
2024-09-04 17:23:11 +02:00
|
|
|
Manage workflows booking
|
2024-07-11 11:40:11 +02:00
|
|
|
version: 1.0.0
|
2024-09-04 17:23:11 +02:00
|
|
|
termsOfService: http://cloud.o-forge.io/
|
2024-07-11 11:40:11 +02:00
|
|
|
contact:
|
2024-09-04 17:23:11 +02:00
|
|
|
email: admin@o-cloud.io
|
2024-07-11 11:40:11 +02:00
|
|
|
license:
|
2024-09-05 09:33:57 +02:00
|
|
|
name: MIT
|
|
|
|
url: https://opensource.org/license/mit
|
2024-07-24 10:25:08 +02:00
|
|
|
basePath: /oc/
|
2024-07-11 11:40:11 +02:00
|
|
|
paths:
|
|
|
|
/version/:
|
|
|
|
get:
|
|
|
|
tags:
|
|
|
|
- version
|
|
|
|
description: |-
|
|
|
|
get version
|
|
|
|
<br>
|
|
|
|
operationId: VersionController.GetAll
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: ""
|
2024-08-21 12:06:23 +02:00
|
|
|
/version/status:
|
|
|
|
get:
|
|
|
|
tags:
|
|
|
|
- version
|
|
|
|
description: |-
|
|
|
|
get status
|
|
|
|
<br>
|
|
|
|
operationId: VersionController.Status
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: ""
|
2024-08-08 17:31:17 +02:00
|
|
|
/workflow_execution/:
|
2024-07-24 10:25:08 +02:00
|
|
|
get:
|
|
|
|
tags:
|
2024-08-08 17:31:17 +02:00
|
|
|
- workflow_execution
|
2024-07-24 10:25:08 +02:00
|
|
|
description: |-
|
|
|
|
find workflow by workflowid
|
|
|
|
<br>
|
2024-08-08 17:31:17 +02:00
|
|
|
operationId: WorkflowExecutionController.GetAll
|
2024-07-24 10:25:08 +02:00
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: '{workflow} models.workflow'
|
2024-08-08 17:31:17 +02:00
|
|
|
/workflow_execution/{id}:
|
2024-07-11 11:40:11 +02:00
|
|
|
get:
|
|
|
|
tags:
|
2024-08-08 17:31:17 +02:00
|
|
|
- workflow_execution
|
2024-07-11 11:40:11 +02:00
|
|
|
description: |-
|
|
|
|
find workflow by workflowid
|
|
|
|
<br>
|
2024-08-08 17:31:17 +02:00
|
|
|
operationId: WorkflowExecutionController.Get
|
2024-07-11 11:40:11 +02:00
|
|
|
parameters:
|
|
|
|
- in: path
|
2024-07-24 10:25:08 +02:00
|
|
|
name: id
|
|
|
|
description: the workflowid you want to get
|
2024-07-11 11:40:11 +02:00
|
|
|
required: true
|
|
|
|
type: string
|
2024-07-24 10:25:08 +02:00
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: '{workflow} models.workflow'
|
2024-08-06 11:09:38 +02:00
|
|
|
/workflow_execution/search/{start_date}/{end_date}:
|
|
|
|
get:
|
|
|
|
tags:
|
|
|
|
- workflow_execution
|
|
|
|
description: |-
|
|
|
|
search workspace
|
|
|
|
<br>
|
|
|
|
operationId: WorkflowExecutionController.Search
|
|
|
|
parameters:
|
|
|
|
- in: path
|
|
|
|
name: start_date
|
|
|
|
description: the word search you want to get
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
- in: path
|
|
|
|
name: end_date
|
|
|
|
description: the word search you want to get
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
responses:
|
|
|
|
"200":
|
|
|
|
description: '{workspace} models.workspace'
|
2024-07-11 11:40:11 +02:00
|
|
|
tags:
|
2024-08-06 11:09:38 +02:00
|
|
|
- name: workflow_execution
|
|
|
|
description: |
|
|
|
|
Operations about workflow
|
2024-07-11 11:40:11 +02:00
|
|
|
- name: version
|
|
|
|
description: |
|
|
|
|
VersionController operations for Version
|