{ "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/client/get/info/remote": { "get": { "description": "Method Description -- getJedisPoolConfig", "operationId": "getJedisPoolConfig", "tags": [ "RedisClientResource" ], "parameters": [ { "name": "serverIp", "in": "query", "required": "false", "type": "string", "description": "parameter name -- serverIp" } ], "responses": { "200": { "schema": { "type": "array", "items": { "type": "map" } }, "description": "Response OK" } } } }, "/redis/client/get/info": { "get": { "description": "Method Description -- getJedisPoolConfig", "operationId": "getJedisPoolConfig", "tags": [ "RedisClientResource" ], "responses": { "200": { "schema": { "type": "array", "items": { "type": "map" } }, "description": "Response OK" } } } }, "/redis/client/set/info/remote": { "post": { "description": "Method Description -- setJedisPoolConfig", "operationId": "setJedisPoolConfig", "tags": [ "RedisClientResource" ], "parameters": [ { "name": "serverIp", "in": "query", "required": "false", "type": "string", "description": "parameter name -- serverIp" } ], "responses": { "200": { "schema": { "type": "boolean" }, "description": "Response OK" } } } }, "/redis/client/set/info": { "post": { "description": "Method Description -- setJedisPoolConfig", "operationId": "setJedisPoolConfig", "tags": [ "RedisClientResource" ], "parameters": [], "responses": { "200": { "schema": { "type": "boolean" }, "description": "Response OK" } } } } }, "definitions": { } }