Last active
August 12, 2018 14:37
-
-
Save maniankara/3759539f8c134840943938e3f42b892f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
service Identity { | |
// return the version and name of the plugin | |
rpc GetPluginInfo(GetPluginInfoRequest) | |
returns (GetPluginInfoResponse) {} | |
// reports whether the plugin has the ability of serving the Controller interface | |
rpc GetPluginCapabilities(GetPluginCapabilitiesRequest) | |
returns (GetPluginCapabilitiesResponse) {} | |
// called by the CO just to check whether the plugin is running or not | |
rpc Probe (ProbeRequest) | |
returns (ProbeResponse) {} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment