Get desktop application:
View/edit binary Protocol Buffers messages
Version of servers assigned to client
Version of discovery servers
success
unknown error
discovery server is not ready, client need wait for a while and try again.
redirect to another discovery server, client need disconnect current link, reconnect with another discovery server.
client argument invalid
client already register
client already register & register service != pre register service name, currently classified as error
client unregistered, maybe timeout or discovery server change, client need register again
client token unauthorized with service
Used as response type in: DiscoveryService.HeartBeat, DiscoveryService.Register
from https://github.com/googleapis/googleapis/blob/master/google/rpc/status.proto
Used in:
status code, should be an enum value of Code
https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/any.proto Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() any.Pack(foo) ... if any.Is(Foo.DESCRIPTOR): any.Unpack(foo) ...