Skip to content

Commit fdd6dd0

Browse files
committed
RHINENG-22023: update openapi specs
1 parent 8b5bde2 commit fdd6dd0

2 files changed

Lines changed: 59 additions & 57 deletions

File tree

docs/admin/openapi.json

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -650,6 +650,65 @@
650650
}
651651
]
652652
}
653+
},
654+
"/systems/{inventory_id}": {
655+
"delete": {
656+
"summary": "Delete system by inventory id",
657+
"description": "Delete system by inventory id",
658+
"operationId": "deletesystem",
659+
"parameters": [
660+
{
661+
"name": "inventory_id",
662+
"in": "path",
663+
"description": "Inventory ID",
664+
"required": true,
665+
"schema": {
666+
"type": "string"
667+
}
668+
}
669+
],
670+
"responses": {
671+
"200": {
672+
"description": "OK",
673+
"content": {}
674+
},
675+
"400": {
676+
"description": "Bad Request",
677+
"content": {
678+
"application/json": {
679+
"schema": {
680+
"type": "string"
681+
}
682+
}
683+
}
684+
},
685+
"404": {
686+
"description": "Not Found",
687+
"content": {
688+
"application/json": {
689+
"schema": {
690+
"type": "string"
691+
}
692+
}
693+
}
694+
},
695+
"500": {
696+
"description": "Internal Server Error",
697+
"content": {
698+
"application/json": {
699+
"schema": {
700+
"type": "string"
701+
}
702+
}
703+
}
704+
}
705+
},
706+
"security": [
707+
{
708+
"RhIdentity": []
709+
}
710+
]
711+
}
653712
}
654713
},
655714
"components": {

docs/v3/openapi.json

Lines changed: 0 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -4699,63 +4699,6 @@
46994699
"RhIdentity": []
47004700
}
47014701
]
4702-
},
4703-
"delete": {
4704-
"summary": "Delete system by inventory id",
4705-
"description": "Delete system by inventory id",
4706-
"operationId": "deletesystem",
4707-
"parameters": [
4708-
{
4709-
"name": "inventory_id",
4710-
"in": "path",
4711-
"description": "Inventory ID",
4712-
"required": true,
4713-
"schema": {
4714-
"type": "string"
4715-
}
4716-
}
4717-
],
4718-
"responses": {
4719-
"200": {
4720-
"description": "OK",
4721-
"content": {}
4722-
},
4723-
"400": {
4724-
"description": "Bad Request",
4725-
"content": {
4726-
"application/json": {
4727-
"schema": {
4728-
"$ref": "#/components/schemas/utils.ErrorResponse"
4729-
}
4730-
}
4731-
}
4732-
},
4733-
"404": {
4734-
"description": "Not Found",
4735-
"content": {
4736-
"application/json": {
4737-
"schema": {
4738-
"$ref": "#/components/schemas/utils.ErrorResponse"
4739-
}
4740-
}
4741-
}
4742-
},
4743-
"500": {
4744-
"description": "Internal Server Error",
4745-
"content": {
4746-
"application/json": {
4747-
"schema": {
4748-
"$ref": "#/components/schemas/utils.ErrorResponse"
4749-
}
4750-
}
4751-
}
4752-
}
4753-
},
4754-
"security": [
4755-
{
4756-
"RhIdentity": []
4757-
}
4758-
]
47594702
}
47604703
},
47614704
"/systems/{inventory_id}/advisories": {

0 commit comments

Comments
 (0)