-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpostexe.json
57 lines (57 loc) · 1.3 KB
/
postexe.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"swagger" : "2.0",
"info" : {
"title" : "queueProcess",
"version" : "1.0.0",
"description" : "queueProcess"
},
"paths" : {
"/execute" : {
"post" : {
"operationId" : "postExecute",
"responses" : {
"200" : {
"description" : "The operation was successful.",
"schema" : {
"$ref" : "#/definitions/batch"
}
}
},
"consumes" : [ "application/json" ],
"produces" : [ "application/json" ],
"description" : "Insert a execute",
"parameters" : [ {
"name" : "body",
"in" : "body",
"schema" : {
"type" : "boolean"
},
"description" : "The request body for the operation",
"required" : true
} ]
}
}
},
"basePath" : "/queueprocess/v1",
"definitions" : {
"batch" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"processTime" : {
"type" : "string"
},
"processFlag" : {
"type" : "string"
},
"batchid" : {
"type" : "string"
}
}
}
}
},
"schemes" : [ "http" ],
"host" : "postexe.icp-proxy.apps.drogo.169.63.145.240.nip.io:31873"
}