Files
Nirav Parikh 1b7a9a1fa3 changes to view auditlogs by project role users (#247)
feat: changes to view audit logs by project and cluster role users
---------

Signed-off-by: niravparikh05 <nir.parikh05@gmail.com>
2023-09-21 11:34:56 +05:30

101 lines
2.1 KiB
JSON

{
"swagger": "2.0",
"info": {
"title": "proto/rpc/sentry/relaypeer.proto",
"version": "version not set"
},
"tags": [
{
"name": "RelayPeerService"
}
],
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"paths": {},
"definitions": {
"googlerpcStatus": {
"type": "object",
"properties": {
"code": {
"type": "integer",
"format": "int32"
},
"message": {
"type": "string"
},
"details": {
"type": "array",
"items": {
"type": "object",
"$ref": "#/definitions/protobufAny"
}
}
}
},
"protobufAny": {
"type": "object",
"properties": {
"@type": {
"type": "string"
}
},
"additionalProperties": {}
},
"rpcPeerHelloResponse": {
"type": "object",
"properties": {
"serviceuuid": {
"type": "string",
"title": "the uuid of the service"
},
"serviceip": {
"type": "string",
"title": "the ip address of the relay"
}
}
},
"rpcPeerProbeResponse": {
"type": "object",
"properties": {
"clustersni": {
"type": "string"
},
"items": {
"type": "array",
"items": {
"type": "object",
"$ref": "#/definitions/rpcRelayClusterConnectionInfo"
}
}
},
"title": "Probe Response from service to relay"
},
"rpcPeerSurveyRequest": {
"type": "object",
"properties": {
"clustersni": {
"type": "string"
}
},
"title": "Survey request sent from the service to all relays"
},
"rpcRelayClusterConnectionInfo": {
"type": "object",
"properties": {
"relayuuid": {
"type": "string",
"title": "the uuid of the relay"
},
"relayip": {
"type": "string",
"title": "the ip address of the relay"
}
}
}
}
}