Skip to content

Commit

Permalink
remove scanners from openapi
Browse files Browse the repository at this point in the history
  • Loading branch information
undera committed Aug 21, 2023
1 parent c235632 commit 63bae69
Showing 1 changed file with 0 additions and 73 deletions.
73 changes: 0 additions & 73 deletions dashboard/public/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@
{
"name": "K8s"
},
{
"name": "Scanners"
},
{
"name": "Miscellaneous"
}
Expand Down Expand Up @@ -649,76 +646,6 @@
}
}
},
"/api/scanners": {
"get": {
"tags": [
"Scanners"
],
"description": "Get list of discovered scanners",
"responses": {
"200": {
"description": "List of scanners"
}
}
}
},
"/api/scanners/manifests": {
"post": {
"tags": [
"Scanners"
],
"description": "Scan manifests using all applicable scanners",
"requestBody": {
"content": {
"multipart/form-data": {
"schema": {
"type": "object",
"properties": {
"manifest": {
"type": "string",
"description": "Text of manifest to scan"
}
}
}
}
}
},
"responses": {
"200": {
"description": "Map of scan results per scanner type"
}
}
}
},
"/api/scanners/resource/{kind}": {
"parameters": [
{
"in": "path",
"name": "kind"
},
{
"in": "query",
"name": "namespace",
"required": true
},
{
"in": "query",
"name": "name",
"required": true
}
],
"get": {
"tags": [
"Scanners"
],
"description": "Scan specified k8s resource in cluster",
"responses": {
"200": {
"description": "Information with scan results per scanner type"
}
}
}
},
"/": {
"delete": {
"tags": [
Expand Down

0 comments on commit 63bae69

Please sign in to comment.