grpc/proxy/testservice/test.swagger.json
Adphi 3a3d77169c
interceptors: migrate to otel and add logging interceptor
Signed-off-by: Adphi <philippe.adrien.nousse@gmail.com>
2024-10-17 17:15:05 +02:00

62 lines
1.1 KiB
JSON

{
"swagger": "2.0",
"info": {
"title": "proxy/testservice/test.proto",
"version": "version not set"
},
"tags": [
{
"name": "TestService"
}
],
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"paths": {},
"definitions": {
"protobufAny": {
"type": "object",
"properties": {
"@type": {
"type": "string"
}
},
"additionalProperties": {}
},
"rpcStatus": {
"type": "object",
"properties": {
"code": {
"type": "integer",
"format": "int32"
},
"message": {
"type": "string"
},
"details": {
"type": "array",
"items": {
"type": "object",
"$ref": "#/definitions/protobufAny"
}
}
}
},
"testprotoPingResponse": {
"type": "object",
"properties": {
"value": {
"type": "string"
},
"counter": {
"type": "integer",
"format": "int32"
}
}
}
}
}