Skip to content

Commit d96368c

Browse files
app-services-ciwtrocki
authored andcommitted
chore(openapi): update kafka-mgmt/v1 OpenAPI document
1 parent e4eda49 commit d96368c

1 file changed

Lines changed: 28 additions & 1 deletion

File tree

.openapi/kas-fleet-manager.yaml

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ openapi: 3.0.0 # need this as first line to allow some IDEs to know this is an o
22
# All endpoints defined here will be discoverable by all users. If there is a need to keep some endpoints "private", add them to the "managed-services-api-private.yaml" file
33
info:
44
title: Kafka Service Fleet Manager
5-
version: 1.1.2
5+
version: 1.1.3
66
description: Kafka Service Fleet Manager is a Rest API to manage Kafka instances.
77
servers:
88
- url: https://api.openshift.com
@@ -25,6 +25,33 @@ paths:
2525
$ref: '#/components/schemas/VersionMetadata'
2626
description: Version metadata
2727
summary: Returns the version metadata
28+
29+
/api/kafkas_mgmt/v1/errors/{id}:
30+
get:
31+
operationId: getErrorById
32+
responses:
33+
"200":
34+
content:
35+
application/json:
36+
schema:
37+
$ref: '#/components/schemas/Error'
38+
description: Get error by Id
39+
summary: Returns the error by id
40+
parameters:
41+
- $ref: "#/components/parameters/id"
42+
43+
/api/kafkas_mgmt/v1/errors:
44+
get:
45+
operationId: getErrors
46+
responses:
47+
"200":
48+
content:
49+
application/json:
50+
schema:
51+
$ref: '#/components/schemas/ErrorList'
52+
description: List of possible errors
53+
summary: Returns the list of possible API errors
54+
2855
/api/kafkas_mgmt/v1/status:
2956
get:
3057
operationId: getServiceStatus

0 commit comments

Comments
 (0)