diff options
Diffstat (limited to 'docs/swagger/swagger.json')
-rw-r--r-- | docs/swagger/swagger.json | 40 |
1 files changed, 32 insertions, 8 deletions
diff --git a/docs/swagger/swagger.json b/docs/swagger/swagger.json index b8f422c8d..c79449210 100644 --- a/docs/swagger/swagger.json +++ b/docs/swagger/swagger.json @@ -2,7 +2,7 @@ { "swagger":"2.0", "info":{ - "version":"2.0.2-SNAPSHOT", + "version":"3.0.0-SNAPSHOT", "title":"clamp" }, "host":"", @@ -635,7 +635,37 @@ } } }, - "/user/{userName}":{ + "/healthcheck":{ + "get":{ + "description":"REST service that retrieves clds healthcheck information.", + "consumes":[ + ], + "produces":[ + "application/json" + ], + "parameters":[ + ], + "responses":{ + "200":{ + "description":"OK", + "headers":{ + }, + "schema":{ + "$ref":"#/definitions/CldsHealthCheck" + } + }, + "500":{ + "description":"Internal Server Error", + "headers":{ + }, + "schema":{ + "$ref":"#/definitions/CldsHealthCheck" + } + } + } + } + }, + "/user/getUser":{ "get":{ "description":"REST service that returns the username.", "consumes":[ @@ -644,12 +674,6 @@ "text/plain" ], "parameters":[ - { - "type":"string", - "name":"userName", - "in":"path", - "required":true - } ], "responses":{ "200":{ |