oc-catalog update

This commit is contained in:
mr
2026-02-12 11:33:23 +01:00
parent 9da08a1a97
commit 7dbc9cb842
12 changed files with 348 additions and 40 deletions

View File

@@ -39,7 +39,7 @@
window.onload = function() {
// Begin Swagger UI call region
const ui = SwaggerUIBundle({
url: "https://petstore.swagger.io/v2/swagger.json",
url: "swagger.json",
dom_id: '#swagger-ui',
deepLinking: true,
presets: [

View File

@@ -89,6 +89,35 @@
}
}
},
"/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": [
@@ -220,6 +249,35 @@
}
}
},
"/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": [
@@ -576,6 +634,35 @@
}
}
},
"/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": [
@@ -769,6 +856,35 @@
}
}
},
"/resource/decentralized/{type}/search/{search}": {
"get": {
"tags": [
"resource"
],
"description": "find workflow by key word\n\u003cbr\u003e",
"operationId": "ResourceController.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"
}
}
}
},
"/resource/search/{search}": {
"get": {
"tags": [
@@ -819,27 +935,6 @@
"description": "{resource} models.resource"
}
}
},
"delete": {
"tags": [
"resource"
],
"description": "delete the resource\n\u003cbr\u003e",
"operationId": "ResourceController.Delete",
"parameters": [
{
"in": "path",
"name": "id",
"description": "The id you want to deleteDeleteOne",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"description": "{resource} delete success!"
}
}
}
},
"/storage/": {
@@ -916,6 +1011,35 @@
}
}
},
"/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": [
@@ -1069,7 +1193,36 @@
"workflow"
],
"description": "find workflow by key word\n\u003cbr\u003e",
"operationId": "WorkflowController.Get",
"operationId": "WorkflowController.Search",
"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/search/{search}/decentralized/{type}": {
"get": {
"tags": [
"workflow"
],
"description": "find workflow by key word\n\u003cbr\u003e",
"operationId": "WorkflowController.Search Decentralized",
"parameters": [
{
"in": "path",

View File

@@ -121,6 +121,27 @@ 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:
@@ -216,6 +237,27 @@ 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:
@@ -487,6 +529,27 @@ 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:
@@ -591,22 +654,27 @@ paths:
responses:
"200":
description: '{resource} models.resource'
delete:
/resource/decentralized/{type}/search/{search}:
get:
tags:
- resource
description: |-
delete the resource
find workflow by key word
<br>
operationId: ResourceController.Delete
operationId: ResourceController.Search Decentralized
parameters:
- in: path
name: id
description: The id you want to deleteDeleteOne
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: '{resource} delete success!'
description: '{workflow} models.workflow'
/resource/search/{search}:
get:
tags:
@@ -737,6 +805,27 @@ 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:
@@ -854,7 +943,28 @@ paths:
description: |-
find workflow by key word
<br>
operationId: WorkflowController.Get
operationId: WorkflowController.Search
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/search/{search}/decentralized/{type}:
get:
tags:
- workflow
description: |-
find workflow by key word
<br>
operationId: WorkflowController.Search Decentralized
parameters:
- in: path
name: search