diff options
author | Pamela Dragosh <pdragosh@research.att.com> | 2019-05-30 14:56:28 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-05-30 14:56:28 +0000 |
commit | d0055e3089d11d1667fea55d615bfcabfd5e401c (patch) | |
tree | 45b33757fe2318d83f496e6b5ce1d92f7209dac2 /docs/pap/swagger/health-check-pap.json | |
parent | faa5f939ba2f15f3947e840b91c4d56601655494 (diff) | |
parent | d5cc948b2c25b5e444705ba133b3d619474e1bc6 (diff) |
Merge "Add documentation for PAP"
Diffstat (limited to 'docs/pap/swagger/health-check-pap.json')
-rw-r--r-- | docs/pap/swagger/health-check-pap.json | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/docs/pap/swagger/health-check-pap.json b/docs/pap/swagger/health-check-pap.json new file mode 100644 index 00000000..3bf87e22 --- /dev/null +++ b/docs/pap/swagger/health-check-pap.json @@ -0,0 +1,71 @@ +{ + "swagger" : "2.0", + "basePath" : "/", + "tags" : [ { + "name" : "HealthCheck" + } ], + "schemes" : [ "http", "https" ], + "consumes" : [ "application/json" ], + "produces" : [ "application/json" ], + "paths" : { + "/policy/pap/v1/healthcheck" : { + "get" : { + "tags" : [ "HealthCheck" ], + "summary" : "Perform healthcheck", + "description" : "Returns healthy status of the Policy Administration component", + "operationId" : "healthcheck", + "produces" : [ "application/json" ], + "parameters" : [ ], + "responses" : { + "200" : { + "description" : "successful operation", + "schema" : { + "$ref" : "#/definitions/HealthCheckReport" + } + }, + "401" : { + "description" : "Authentication Error" + }, + "403" : { + "description" : "Authorization Error" + }, + "500" : { + "description" : "Internal Server Error" + } + }, + "security" : [ { + "basicAuth" : [ ] + } ] + } + } + }, + "securityDefinitions" : { + "basicAuth" : { + "description" : "", + "type" : "basic" + } + }, + "definitions" : { + "HealthCheckReport" : { + "type" : "object", + "properties" : { + "name" : { + "type" : "string" + }, + "url" : { + "type" : "string" + }, + "healthy" : { + "type" : "boolean" + }, + "code" : { + "type" : "integer", + "format" : "int32" + }, + "message" : { + "type" : "string" + } + } + } + } +} |