Documentation ¶
Index ¶
- func RegisterCCIInfoServiceServer(s *grpc.Server, srv CCIInfoServiceServer)
- type CCIHasCvmIpRequest
- func (*CCIHasCvmIpRequest) Descriptor() ([]byte, []int)
- func (m *CCIHasCvmIpRequest) GetIp() string
- func (*CCIHasCvmIpRequest) ProtoMessage()
- func (m *CCIHasCvmIpRequest) Reset()
- func (m *CCIHasCvmIpRequest) String() string
- func (m *CCIHasCvmIpRequest) XXX_DiscardUnknown()
- func (m *CCIHasCvmIpRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *CCIHasCvmIpRequest) XXX_Merge(src proto.Message)
- func (m *CCIHasCvmIpRequest) XXX_Size() int
- func (m *CCIHasCvmIpRequest) XXX_Unmarshal(b []byte) error
- type CCIHasCvmIpResponse
- func (*CCIHasCvmIpResponse) Descriptor() ([]byte, []int)
- func (m *CCIHasCvmIpResponse) GetHas() bool
- func (*CCIHasCvmIpResponse) ProtoMessage()
- func (m *CCIHasCvmIpResponse) Reset()
- func (m *CCIHasCvmIpResponse) String() string
- func (m *CCIHasCvmIpResponse) XXX_DiscardUnknown()
- func (m *CCIHasCvmIpResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *CCIHasCvmIpResponse) XXX_Merge(src proto.Message)
- func (m *CCIHasCvmIpResponse) XXX_Size() int
- func (m *CCIHasCvmIpResponse) XXX_Unmarshal(b []byte) error
- type CCIInfoServiceClient
- type CCIInfoServiceServer
- type UnimplementedCCIInfoServiceServer
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func RegisterCCIInfoServiceServer ¶
func RegisterCCIInfoServiceServer(s *grpc.Server, srv CCIInfoServiceServer)
Types ¶
type CCIHasCvmIpRequest ¶
type CCIHasCvmIpRequest struct { Ip string `protobuf:"bytes,1,opt,name=ip,proto3" json:"ip,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*CCIHasCvmIpRequest) Descriptor ¶
func (*CCIHasCvmIpRequest) Descriptor() ([]byte, []int)
func (*CCIHasCvmIpRequest) GetIp ¶
func (m *CCIHasCvmIpRequest) GetIp() string
func (*CCIHasCvmIpRequest) ProtoMessage ¶
func (*CCIHasCvmIpRequest) ProtoMessage()
func (*CCIHasCvmIpRequest) Reset ¶
func (m *CCIHasCvmIpRequest) Reset()
func (*CCIHasCvmIpRequest) String ¶
func (m *CCIHasCvmIpRequest) String() string
func (*CCIHasCvmIpRequest) XXX_DiscardUnknown ¶
func (m *CCIHasCvmIpRequest) XXX_DiscardUnknown()
func (*CCIHasCvmIpRequest) XXX_Marshal ¶
func (m *CCIHasCvmIpRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*CCIHasCvmIpRequest) XXX_Merge ¶
func (m *CCIHasCvmIpRequest) XXX_Merge(src proto.Message)
func (*CCIHasCvmIpRequest) XXX_Size ¶
func (m *CCIHasCvmIpRequest) XXX_Size() int
func (*CCIHasCvmIpRequest) XXX_Unmarshal ¶
func (m *CCIHasCvmIpRequest) XXX_Unmarshal(b []byte) error
type CCIHasCvmIpResponse ¶
type CCIHasCvmIpResponse struct { Has bool `protobuf:"varint,1,opt,name=has,proto3" json:"has,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*CCIHasCvmIpResponse) Descriptor ¶
func (*CCIHasCvmIpResponse) Descriptor() ([]byte, []int)
func (*CCIHasCvmIpResponse) GetHas ¶
func (m *CCIHasCvmIpResponse) GetHas() bool
func (*CCIHasCvmIpResponse) ProtoMessage ¶
func (*CCIHasCvmIpResponse) ProtoMessage()
func (*CCIHasCvmIpResponse) Reset ¶
func (m *CCIHasCvmIpResponse) Reset()
func (*CCIHasCvmIpResponse) String ¶
func (m *CCIHasCvmIpResponse) String() string
func (*CCIHasCvmIpResponse) XXX_DiscardUnknown ¶
func (m *CCIHasCvmIpResponse) XXX_DiscardUnknown()
func (*CCIHasCvmIpResponse) XXX_Marshal ¶
func (m *CCIHasCvmIpResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*CCIHasCvmIpResponse) XXX_Merge ¶
func (m *CCIHasCvmIpResponse) XXX_Merge(src proto.Message)
func (*CCIHasCvmIpResponse) XXX_Size ¶
func (m *CCIHasCvmIpResponse) XXX_Size() int
func (*CCIHasCvmIpResponse) XXX_Unmarshal ¶
func (m *CCIHasCvmIpResponse) XXX_Unmarshal(b []byte) error
type CCIInfoServiceClient ¶
type CCIInfoServiceClient interface {
HasCvmIp(ctx context.Context, in *CCIHasCvmIpRequest, opts ...grpc.CallOption) (*CCIHasCvmIpResponse, error)
}
CCIInfoServiceClient is the client API for CCIInfoService service.
For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
func NewCCIInfoServiceClient ¶
func NewCCIInfoServiceClient(cc *grpc.ClientConn) CCIInfoServiceClient
type CCIInfoServiceServer ¶
type CCIInfoServiceServer interface {
HasCvmIp(context.Context, *CCIHasCvmIpRequest) (*CCIHasCvmIpResponse, error)
}
CCIInfoServiceServer is the server API for CCIInfoService service.
type UnimplementedCCIInfoServiceServer ¶
type UnimplementedCCIInfoServiceServer struct { }
UnimplementedCCIInfoServiceServer can be embedded to have forward compatible implementations.
func (*UnimplementedCCIInfoServiceServer) HasCvmIp ¶
func (*UnimplementedCCIInfoServiceServer) HasCvmIp(ctx context.Context, req *CCIHasCvmIpRequest) (*CCIHasCvmIpResponse, error)
Click to show internal directories.
Click to hide internal directories.