working import
This commit is contained in:
@@ -60,6 +60,35 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"/compute/plantuml": {
|
||||
"post": {
|
||||
"tags": [
|
||||
"compute"
|
||||
],
|
||||
"description": "parse plantuml text and return the formed compute resources\n\u003cbr\u003e",
|
||||
"operationId": "ComputeController.PostPlantUML",
|
||||
"parameters": [
|
||||
{
|
||||
"in": "body",
|
||||
"name": "body",
|
||||
"description": "PlantUML text content",
|
||||
"required": true,
|
||||
"schema": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": "string"
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "{compute} models.compute"
|
||||
},
|
||||
"406": {
|
||||
"description": "{string} string \"Bad request\""
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/compute/search/{search}": {
|
||||
"get": {
|
||||
"tags": [
|
||||
@@ -89,35 +118,6 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"/compute/search/{search}/decentralized/{type}": {
|
||||
"get": {
|
||||
"tags": [
|
||||
"compute"
|
||||
],
|
||||
"description": "find workflow by key word\n\u003cbr\u003e",
|
||||
"operationId": "ComputeController.Search Decentralized",
|
||||
"parameters": [
|
||||
{
|
||||
"in": "path",
|
||||
"name": "search",
|
||||
"description": "the search you want to get",
|
||||
"required": true,
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"in": "query",
|
||||
"name": "is_draft",
|
||||
"description": "draft wished",
|
||||
"type": "string"
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "{workflow} models.workflow"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/compute/{id}": {
|
||||
"get": {
|
||||
"tags": [
|
||||
@@ -237,6 +237,35 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"/data/plantuml": {
|
||||
"post": {
|
||||
"tags": [
|
||||
"data"
|
||||
],
|
||||
"description": "parse plantuml text and return the formed data resources\n\u003cbr\u003e",
|
||||
"operationId": "DataController.PostPlantUML",
|
||||
"parameters": [
|
||||
{
|
||||
"in": "body",
|
||||
"name": "body",
|
||||
"description": "PlantUML text content",
|
||||
"required": true,
|
||||
"schema": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": "string"
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "{data} models.data"
|
||||
},
|
||||
"406": {
|
||||
"description": "{string} string \"Bad request\""
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/data/search/{search}": {
|
||||
"get": {
|
||||
"tags": [
|
||||
@@ -249,35 +278,6 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"/data/search/{search}/decentralized/{type}": {
|
||||
"get": {
|
||||
"tags": [
|
||||
"data"
|
||||
],
|
||||
"description": "find workflow by key word\n\u003cbr\u003e",
|
||||
"operationId": "DataController.Search Decentralized",
|
||||
"parameters": [
|
||||
{
|
||||
"in": "path",
|
||||
"name": "search",
|
||||
"description": "the search you want to get",
|
||||
"required": true,
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"in": "query",
|
||||
"name": "is_draft",
|
||||
"description": "draft wished",
|
||||
"type": "string"
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "{workflow} models.workflow"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/data/{id}": {
|
||||
"get": {
|
||||
"tags": [
|
||||
@@ -560,6 +560,38 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"/generic/plantuml": {
|
||||
"post": {
|
||||
"tags": [
|
||||
"generic"
|
||||
],
|
||||
"description": "parse plantuml text and return the formed workflow object\n\u003cbr\u003e",
|
||||
"operationId": "GeneralController.PostPlantUML",
|
||||
"parameters": [
|
||||
{
|
||||
"in": "body",
|
||||
"name": "body",
|
||||
"description": "PlantUML text content",
|
||||
"required": true,
|
||||
"schema": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": "string"
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "",
|
||||
"schema": {
|
||||
"$ref": "#/definitions/models.workflow"
|
||||
}
|
||||
},
|
||||
"406": {
|
||||
"description": "{string} string \"Bad request\""
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/processing/": {
|
||||
"get": {
|
||||
"tags": [
|
||||
@@ -605,6 +637,35 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"/processing/plantuml": {
|
||||
"post": {
|
||||
"tags": [
|
||||
"processing"
|
||||
],
|
||||
"description": "parse plantuml text and return the formed processing resources\n\u003cbr\u003e",
|
||||
"operationId": "ProcessingController.PostPlantUML",
|
||||
"parameters": [
|
||||
{
|
||||
"in": "body",
|
||||
"name": "body",
|
||||
"description": "PlantUML text content",
|
||||
"required": true,
|
||||
"schema": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": "string"
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "{processing} models.processing"
|
||||
},
|
||||
"406": {
|
||||
"description": "{string} string \"Bad request\""
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/processing/search/{search}": {
|
||||
"get": {
|
||||
"tags": [
|
||||
@@ -634,35 +695,6 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"/processing/search/{search}/decentralized/{type}": {
|
||||
"get": {
|
||||
"tags": [
|
||||
"processing"
|
||||
],
|
||||
"description": "find workflow by key word\n\u003cbr\u003e",
|
||||
"operationId": "ProcessingController.Search Decentralized",
|
||||
"parameters": [
|
||||
{
|
||||
"in": "path",
|
||||
"name": "search",
|
||||
"description": "the search you want to get",
|
||||
"required": true,
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"in": "query",
|
||||
"name": "is_draft",
|
||||
"description": "draft wished",
|
||||
"type": "string"
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "{workflow} models.workflow"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/processing/{id}": {
|
||||
"get": {
|
||||
"tags": [
|
||||
@@ -856,31 +888,31 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"/resource/decentralized/{type}/search/{search}": {
|
||||
"get": {
|
||||
"/resource/plantuml": {
|
||||
"post": {
|
||||
"tags": [
|
||||
"resource"
|
||||
],
|
||||
"description": "find workflow by key word\n\u003cbr\u003e",
|
||||
"operationId": "ResourceController.Search Decentralized",
|
||||
"description": "parse plantuml text and return all formed resource objects\n\u003cbr\u003e",
|
||||
"operationId": "ResourceController.PostPlantUML",
|
||||
"parameters": [
|
||||
{
|
||||
"in": "path",
|
||||
"name": "search",
|
||||
"description": "the search you want to get",
|
||||
"in": "body",
|
||||
"name": "body",
|
||||
"description": "PlantUML text content",
|
||||
"required": true,
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"in": "query",
|
||||
"name": "is_draft",
|
||||
"description": "draft wished",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": "string"
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "{workflow} models.workflow"
|
||||
"description": "{resource} models.resource"
|
||||
},
|
||||
"406": {
|
||||
"description": "{string} string \"Bad request\""
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -982,6 +1014,35 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"/storage/plantuml": {
|
||||
"post": {
|
||||
"tags": [
|
||||
"storage"
|
||||
],
|
||||
"description": "parse plantuml text and return the formed storage resources\n\u003cbr\u003e",
|
||||
"operationId": "StorageController.PostPlantUML",
|
||||
"parameters": [
|
||||
{
|
||||
"in": "body",
|
||||
"name": "body",
|
||||
"description": "PlantUML text content",
|
||||
"required": true,
|
||||
"schema": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": "string"
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "{storage} models.storage"
|
||||
},
|
||||
"406": {
|
||||
"description": "{string} string \"Bad request\""
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/storage/search/{search}": {
|
||||
"get": {
|
||||
"tags": [
|
||||
@@ -1011,35 +1072,6 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"/storage/search/{search}/decentralized/{type}": {
|
||||
"get": {
|
||||
"tags": [
|
||||
"storage"
|
||||
],
|
||||
"description": "find workflow by key word\n\u003cbr\u003e",
|
||||
"operationId": "StorageController.Search Decentralized",
|
||||
"parameters": [
|
||||
{
|
||||
"in": "path",
|
||||
"name": "search",
|
||||
"description": "the search you want to get",
|
||||
"required": true,
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"in": "query",
|
||||
"name": "is_draft",
|
||||
"description": "draft wished",
|
||||
"type": "string"
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "{workflow} models.workflow"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/storage/{id}": {
|
||||
"get": {
|
||||
"tags": [
|
||||
@@ -1187,6 +1219,35 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"/workflow/plantuml": {
|
||||
"post": {
|
||||
"tags": [
|
||||
"workflow"
|
||||
],
|
||||
"description": "parse plantuml text and return the formed workflow object\n\u003cbr\u003e",
|
||||
"operationId": "WorkflowController.PostPlantUML",
|
||||
"parameters": [
|
||||
{
|
||||
"in": "body",
|
||||
"name": "body",
|
||||
"description": "PlantUML text content",
|
||||
"required": true,
|
||||
"schema": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": "string"
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "{workflow} models.workflow"
|
||||
},
|
||||
"406": {
|
||||
"description": "{string} string \"Bad request\""
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/workflow/search/{search}": {
|
||||
"get": {
|
||||
"tags": [
|
||||
@@ -1216,35 +1277,6 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"/workflow/search/{search}/decentralized/{type}": {
|
||||
"get": {
|
||||
"tags": [
|
||||
"workflow"
|
||||
],
|
||||
"description": "find workflow by key word\n\u003cbr\u003e",
|
||||
"operationId": "WorkflowController.Search Decentralized",
|
||||
"parameters": [
|
||||
{
|
||||
"in": "path",
|
||||
"name": "search",
|
||||
"description": "the search you want to get",
|
||||
"required": true,
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"in": "query",
|
||||
"name": "is_draft",
|
||||
"description": "draft wished",
|
||||
"type": "string"
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "{workflow} models.workflow"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/workflow/{id}": {
|
||||
"get": {
|
||||
"tags": [
|
||||
|
||||
@@ -100,6 +100,27 @@ paths:
|
||||
responses:
|
||||
"200":
|
||||
description: '{compute} delete success!'
|
||||
/compute/plantuml:
|
||||
post:
|
||||
tags:
|
||||
- compute
|
||||
description: |-
|
||||
parse plantuml text and return the formed compute resources
|
||||
<br>
|
||||
operationId: ComputeController.PostPlantUML
|
||||
parameters:
|
||||
- in: body
|
||||
name: body
|
||||
description: PlantUML text content
|
||||
required: true
|
||||
schema:
|
||||
type: string
|
||||
type: string
|
||||
responses:
|
||||
"200":
|
||||
description: '{compute} models.compute'
|
||||
"406":
|
||||
description: '{string} string "Bad request"'
|
||||
/compute/search/{search}:
|
||||
get:
|
||||
tags:
|
||||
@@ -121,27 +142,6 @@ paths:
|
||||
responses:
|
||||
"200":
|
||||
description: '{compute} models.compute'
|
||||
/compute/search/{search}/decentralized/{type}:
|
||||
get:
|
||||
tags:
|
||||
- compute
|
||||
description: |-
|
||||
find workflow by key word
|
||||
<br>
|
||||
operationId: ComputeController.Search Decentralized
|
||||
parameters:
|
||||
- in: path
|
||||
name: search
|
||||
description: the search you want to get
|
||||
required: true
|
||||
type: string
|
||||
- in: query
|
||||
name: is_draft
|
||||
description: draft wished
|
||||
type: string
|
||||
responses:
|
||||
"200":
|
||||
description: '{workflow} models.workflow'
|
||||
/data/:
|
||||
get:
|
||||
tags:
|
||||
@@ -230,6 +230,27 @@ paths:
|
||||
responses:
|
||||
"200":
|
||||
description: '{data} delete success!'
|
||||
/data/plantuml:
|
||||
post:
|
||||
tags:
|
||||
- data
|
||||
description: |-
|
||||
parse plantuml text and return the formed data resources
|
||||
<br>
|
||||
operationId: DataController.PostPlantUML
|
||||
parameters:
|
||||
- in: body
|
||||
name: body
|
||||
description: PlantUML text content
|
||||
required: true
|
||||
schema:
|
||||
type: string
|
||||
type: string
|
||||
responses:
|
||||
"200":
|
||||
description: '{data} models.data'
|
||||
"406":
|
||||
description: '{string} string "Bad request"'
|
||||
/data/search/{search}:
|
||||
get:
|
||||
tags:
|
||||
@@ -237,27 +258,6 @@ paths:
|
||||
responses:
|
||||
"200":
|
||||
description: '{data} models.data'
|
||||
/data/search/{search}/decentralized/{type}:
|
||||
get:
|
||||
tags:
|
||||
- data
|
||||
description: |-
|
||||
find workflow by key word
|
||||
<br>
|
||||
operationId: DataController.Search Decentralized
|
||||
parameters:
|
||||
- in: path
|
||||
name: search
|
||||
description: the search you want to get
|
||||
required: true
|
||||
type: string
|
||||
- in: query
|
||||
name: is_draft
|
||||
description: draft wished
|
||||
type: string
|
||||
responses:
|
||||
"200":
|
||||
description: '{workflow} models.workflow'
|
||||
/enum/booking/status:
|
||||
get:
|
||||
tags:
|
||||
@@ -420,6 +420,29 @@ paths:
|
||||
description: '{compute} models.workflow'
|
||||
"406":
|
||||
description: '{string} string "Bad request"'
|
||||
/generic/plantuml:
|
||||
post:
|
||||
tags:
|
||||
- generic
|
||||
description: |-
|
||||
parse plantuml text and return the formed workflow object
|
||||
<br>
|
||||
operationId: GeneralController.PostPlantUML
|
||||
parameters:
|
||||
- in: body
|
||||
name: body
|
||||
description: PlantUML text content
|
||||
required: true
|
||||
schema:
|
||||
type: string
|
||||
type: string
|
||||
responses:
|
||||
"200":
|
||||
description: ""
|
||||
schema:
|
||||
$ref: '#/definitions/models.workflow'
|
||||
"406":
|
||||
description: '{string} string "Bad request"'
|
||||
/processing/:
|
||||
get:
|
||||
tags:
|
||||
@@ -508,6 +531,27 @@ paths:
|
||||
responses:
|
||||
"200":
|
||||
description: '{processing} delete success!'
|
||||
/processing/plantuml:
|
||||
post:
|
||||
tags:
|
||||
- processing
|
||||
description: |-
|
||||
parse plantuml text and return the formed processing resources
|
||||
<br>
|
||||
operationId: ProcessingController.PostPlantUML
|
||||
parameters:
|
||||
- in: body
|
||||
name: body
|
||||
description: PlantUML text content
|
||||
required: true
|
||||
schema:
|
||||
type: string
|
||||
type: string
|
||||
responses:
|
||||
"200":
|
||||
description: '{processing} models.processing'
|
||||
"406":
|
||||
description: '{string} string "Bad request"'
|
||||
/processing/search/{search}:
|
||||
get:
|
||||
tags:
|
||||
@@ -529,27 +573,6 @@ paths:
|
||||
responses:
|
||||
"200":
|
||||
description: '{processing} models.processing'
|
||||
/processing/search/{search}/decentralized/{type}:
|
||||
get:
|
||||
tags:
|
||||
- processing
|
||||
description: |-
|
||||
find workflow by key word
|
||||
<br>
|
||||
operationId: ProcessingController.Search Decentralized
|
||||
parameters:
|
||||
- in: path
|
||||
name: search
|
||||
description: the search you want to get
|
||||
required: true
|
||||
type: string
|
||||
- in: query
|
||||
name: is_draft
|
||||
description: draft wished
|
||||
type: string
|
||||
responses:
|
||||
"200":
|
||||
description: '{workflow} models.workflow'
|
||||
/purchase/:
|
||||
get:
|
||||
tags:
|
||||
@@ -654,27 +677,27 @@ paths:
|
||||
responses:
|
||||
"200":
|
||||
description: '{resource} models.resource'
|
||||
/resource/decentralized/{type}/search/{search}:
|
||||
get:
|
||||
/resource/plantuml:
|
||||
post:
|
||||
tags:
|
||||
- resource
|
||||
description: |-
|
||||
find workflow by key word
|
||||
parse plantuml text and return all formed resource objects
|
||||
<br>
|
||||
operationId: ResourceController.Search Decentralized
|
||||
operationId: ResourceController.PostPlantUML
|
||||
parameters:
|
||||
- in: path
|
||||
name: search
|
||||
description: the search you want to get
|
||||
- in: body
|
||||
name: body
|
||||
description: PlantUML text content
|
||||
required: true
|
||||
type: string
|
||||
- in: query
|
||||
name: is_draft
|
||||
description: draft wished
|
||||
schema:
|
||||
type: string
|
||||
type: string
|
||||
responses:
|
||||
"200":
|
||||
description: '{workflow} models.workflow'
|
||||
description: '{resource} models.resource'
|
||||
"406":
|
||||
description: '{string} string "Bad request"'
|
||||
/resource/search/{search}:
|
||||
get:
|
||||
tags:
|
||||
@@ -784,6 +807,27 @@ paths:
|
||||
responses:
|
||||
"200":
|
||||
description: '{storage} delete success!'
|
||||
/storage/plantuml:
|
||||
post:
|
||||
tags:
|
||||
- storage
|
||||
description: |-
|
||||
parse plantuml text and return the formed storage resources
|
||||
<br>
|
||||
operationId: StorageController.PostPlantUML
|
||||
parameters:
|
||||
- in: body
|
||||
name: body
|
||||
description: PlantUML text content
|
||||
required: true
|
||||
schema:
|
||||
type: string
|
||||
type: string
|
||||
responses:
|
||||
"200":
|
||||
description: '{storage} models.storage'
|
||||
"406":
|
||||
description: '{string} string "Bad request"'
|
||||
/storage/search/{search}:
|
||||
get:
|
||||
tags:
|
||||
@@ -805,27 +849,6 @@ paths:
|
||||
responses:
|
||||
"200":
|
||||
description: '{storage} models.storage'
|
||||
/storage/search/{search}/decentralized/{type}:
|
||||
get:
|
||||
tags:
|
||||
- storage
|
||||
description: |-
|
||||
find workflow by key word
|
||||
<br>
|
||||
operationId: StorageController.Search Decentralized
|
||||
parameters:
|
||||
- in: path
|
||||
name: search
|
||||
description: the search you want to get
|
||||
required: true
|
||||
type: string
|
||||
- in: query
|
||||
name: is_draft
|
||||
description: draft wished
|
||||
type: string
|
||||
responses:
|
||||
"200":
|
||||
description: '{workflow} models.workflow'
|
||||
/version/:
|
||||
get:
|
||||
tags:
|
||||
@@ -936,6 +959,27 @@ paths:
|
||||
responses:
|
||||
"200":
|
||||
description: '{workflow} delete success!'
|
||||
/workflow/plantuml:
|
||||
post:
|
||||
tags:
|
||||
- workflow
|
||||
description: |-
|
||||
parse plantuml text and return the formed workflow object
|
||||
<br>
|
||||
operationId: WorkflowController.PostPlantUML
|
||||
parameters:
|
||||
- in: body
|
||||
name: body
|
||||
description: PlantUML text content
|
||||
required: true
|
||||
schema:
|
||||
type: string
|
||||
type: string
|
||||
responses:
|
||||
"200":
|
||||
description: '{workflow} models.workflow'
|
||||
"406":
|
||||
description: '{string} string "Bad request"'
|
||||
/workflow/search/{search}:
|
||||
get:
|
||||
tags:
|
||||
@@ -957,27 +1001,6 @@ paths:
|
||||
responses:
|
||||
"200":
|
||||
description: '{workflow} models.workflow'
|
||||
/workflow/search/{search}/decentralized/{type}:
|
||||
get:
|
||||
tags:
|
||||
- workflow
|
||||
description: |-
|
||||
find workflow by key word
|
||||
<br>
|
||||
operationId: WorkflowController.Search Decentralized
|
||||
parameters:
|
||||
- in: path
|
||||
name: search
|
||||
description: the search you want to get
|
||||
required: true
|
||||
type: string
|
||||
- in: query
|
||||
name: is_draft
|
||||
description: draft wished
|
||||
type: string
|
||||
responses:
|
||||
"200":
|
||||
description: '{workflow} models.workflow'
|
||||
definitions:
|
||||
json:
|
||||
title: json
|
||||
|
||||
Reference in New Issue
Block a user