{ "swagger": "2.0", "info": { "version": "0.0.1", "title": "Hello World App" }, "host":"{{host}}", "basePath":"{{basePath}}", "schemes":[ "{{schemes}}" ], "consumes": [ "application/json", "application/xml" ], "produces": [ "application/json", "application/xml" ], "paths": { "/redis/server/get/clientConf": { "get": { "description": "Method Description -- getClientConfigType", "operationId": "getClientConfigType", "tags": [ "RedisServerResource" ], "responses": { "200": { "schema": { "type": "integer" }, "description": "Response OK" } } } }, "/redis/server/get/info": { "get": { "description": "Method Description -- getInfoByHostAndPort", "operationId": "getInfoByHostAndPort", "tags": [ "RedisServerResource" ], "parameters": [ { "name": "hostAndPort", "in": "query", "required": "false", "type": "string", "description": "parameter name -- hostAndPort" } ], "responses": { "200": { "schema": { "type": "string" }, "description": "Response OK" } } } }, "/redis/server/get/sentinelNode": { "get": { "description": "Method Description -- getSentinelNodes", "operationId": "getSentinelNodes", "tags": [ "RedisServerResource" ], "responses": { "200": { "schema": { "$ref": "#/definitions/Set" }, "description": "Response OK" } } } }, "/redis/server/get/tree": { "get": { "description": "Method Description -- getSentinelTree", "operationId": "getSentinelTree", "tags": [ "RedisServerResource" ], "responses": { "200": { "schema": { "$ref": "#/definitions/Set" }, "description": "Response OK" } } } }, "/redis/server/get/clusterNode": { "get": { "description": "Method Description -- getClusterNodes", "operationId": "getClusterNodes", "tags": [ "RedisServerResource" ], "responses": { "200": { "schema": { "$ref": "#/definitions/Set" }, "description": "Response OK" } } } }, "/redis/server/get/singleNode": { "get": { "description": "Method Description -- getSingleNodes", "operationId": "getSingleNodes", "tags": [ "RedisServerResource" ], "responses": { "200": { "schema": { "$ref": "#/definitions/Set" }, "description": "Response OK" } } } }, "/redis/server/get/clusterConf": { "get": { "description": "Method Description -- getClusterConf", "operationId": "getClusterConf", "tags": [ "RedisServerResource" ], "parameters": [ { "name": "hostAndPort", "in": "query", "required": "false", "type": "string", "description": "parameter name -- hostAndPort" } ], "responses": { "200": { "schema": { "type": "array", "items": { "type": "map" } }, "description": "Response OK" } } } } }, "definitions": { "Set": { "type": "object", "properties": { } } } }