|
|
|
@@ -25,7 +25,7 @@ const (
|
|
|
|
type RouteSpec struct {
|
|
|
|
type RouteSpec struct {
|
|
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
|
|
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // route name (used for $PORT_<NAME>)
|
|
|
|
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // route name (used for $PORT_<NAME>)
|
|
|
|
Port int32 `protobuf:"varint,2,opt,name=port,proto3" json:"port,omitempty"` // external port on mc-proxy
|
|
|
|
Port int32 `protobuf:"varint,2,opt,name=port,proto3" json:"port,omitempty"` // mc-proxy listener port (e.g. 443, 8443, 9443); NOT the container internal port
|
|
|
|
Mode string `protobuf:"bytes,3,opt,name=mode,proto3" json:"mode,omitempty"` // "l4" or "l7"
|
|
|
|
Mode string `protobuf:"bytes,3,opt,name=mode,proto3" json:"mode,omitempty"` // "l4" or "l7"
|
|
|
|
Hostname string `protobuf:"bytes,4,opt,name=hostname,proto3" json:"hostname,omitempty"` // optional public hostname override
|
|
|
|
Hostname string `protobuf:"bytes,4,opt,name=hostname,proto3" json:"hostname,omitempty"` // optional public hostname override
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
@@ -687,6 +687,94 @@ func (x *RestartServiceResponse) GetResults() []*ComponentResult {
|
|
|
|
return nil
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
type UndeployServiceRequest struct {
|
|
|
|
|
|
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
|
|
|
|
|
|
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
|
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UndeployServiceRequest) Reset() {
|
|
|
|
|
|
|
|
*x = UndeployServiceRequest{}
|
|
|
|
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[12]
|
|
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UndeployServiceRequest) String() string {
|
|
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (*UndeployServiceRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UndeployServiceRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[12]
|
|
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return ms
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use UndeployServiceRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
|
|
func (*UndeployServiceRequest) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{12}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UndeployServiceRequest) GetName() string {
|
|
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
|
|
return x.Name
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return ""
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
type UndeployServiceResponse struct {
|
|
|
|
|
|
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
|
|
|
|
|
|
Results []*ComponentResult `protobuf:"bytes,1,rep,name=results,proto3" json:"results,omitempty"`
|
|
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UndeployServiceResponse) Reset() {
|
|
|
|
|
|
|
|
*x = UndeployServiceResponse{}
|
|
|
|
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[13]
|
|
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UndeployServiceResponse) String() string {
|
|
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (*UndeployServiceResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UndeployServiceResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[13]
|
|
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return ms
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use UndeployServiceResponse.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
|
|
func (*UndeployServiceResponse) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{13}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UndeployServiceResponse) GetResults() []*ComponentResult {
|
|
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
|
|
return x.Results
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type SyncDesiredStateRequest struct {
|
|
|
|
type SyncDesiredStateRequest struct {
|
|
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
|
|
// All services for this node.
|
|
|
|
// All services for this node.
|
|
|
|
@@ -697,7 +785,7 @@ type SyncDesiredStateRequest struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *SyncDesiredStateRequest) Reset() {
|
|
|
|
func (x *SyncDesiredStateRequest) Reset() {
|
|
|
|
*x = SyncDesiredStateRequest{}
|
|
|
|
*x = SyncDesiredStateRequest{}
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[12]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[14]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@@ -709,7 +797,7 @@ func (x *SyncDesiredStateRequest) String() string {
|
|
|
|
func (*SyncDesiredStateRequest) ProtoMessage() {}
|
|
|
|
func (*SyncDesiredStateRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *SyncDesiredStateRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *SyncDesiredStateRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[12]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[14]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@@ -722,7 +810,7 @@ func (x *SyncDesiredStateRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use SyncDesiredStateRequest.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use SyncDesiredStateRequest.ProtoReflect.Descriptor instead.
|
|
|
|
func (*SyncDesiredStateRequest) Descriptor() ([]byte, []int) {
|
|
|
|
func (*SyncDesiredStateRequest) Descriptor() ([]byte, []int) {
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{12}
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{14}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *SyncDesiredStateRequest) GetServices() []*ServiceSpec {
|
|
|
|
func (x *SyncDesiredStateRequest) GetServices() []*ServiceSpec {
|
|
|
|
@@ -741,7 +829,7 @@ type SyncDesiredStateResponse struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *SyncDesiredStateResponse) Reset() {
|
|
|
|
func (x *SyncDesiredStateResponse) Reset() {
|
|
|
|
*x = SyncDesiredStateResponse{}
|
|
|
|
*x = SyncDesiredStateResponse{}
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[13]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[15]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@@ -753,7 +841,7 @@ func (x *SyncDesiredStateResponse) String() string {
|
|
|
|
func (*SyncDesiredStateResponse) ProtoMessage() {}
|
|
|
|
func (*SyncDesiredStateResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *SyncDesiredStateResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *SyncDesiredStateResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[13]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[15]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@@ -766,7 +854,7 @@ func (x *SyncDesiredStateResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use SyncDesiredStateResponse.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use SyncDesiredStateResponse.ProtoReflect.Descriptor instead.
|
|
|
|
func (*SyncDesiredStateResponse) Descriptor() ([]byte, []int) {
|
|
|
|
func (*SyncDesiredStateResponse) Descriptor() ([]byte, []int) {
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{13}
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{15}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *SyncDesiredStateResponse) GetResults() []*ServiceSyncResult {
|
|
|
|
func (x *SyncDesiredStateResponse) GetResults() []*ServiceSyncResult {
|
|
|
|
@@ -788,7 +876,7 @@ type ServiceSyncResult struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ServiceSyncResult) Reset() {
|
|
|
|
func (x *ServiceSyncResult) Reset() {
|
|
|
|
*x = ServiceSyncResult{}
|
|
|
|
*x = ServiceSyncResult{}
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[14]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[16]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@@ -800,7 +888,7 @@ func (x *ServiceSyncResult) String() string {
|
|
|
|
func (*ServiceSyncResult) ProtoMessage() {}
|
|
|
|
func (*ServiceSyncResult) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ServiceSyncResult) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *ServiceSyncResult) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[14]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[16]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@@ -813,7 +901,7 @@ func (x *ServiceSyncResult) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use ServiceSyncResult.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use ServiceSyncResult.ProtoReflect.Descriptor instead.
|
|
|
|
func (*ServiceSyncResult) Descriptor() ([]byte, []int) {
|
|
|
|
func (*ServiceSyncResult) Descriptor() ([]byte, []int) {
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{14}
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{16}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ServiceSyncResult) GetName() string {
|
|
|
|
func (x *ServiceSyncResult) GetName() string {
|
|
|
|
@@ -845,7 +933,7 @@ type ListServicesRequest struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ListServicesRequest) Reset() {
|
|
|
|
func (x *ListServicesRequest) Reset() {
|
|
|
|
*x = ListServicesRequest{}
|
|
|
|
*x = ListServicesRequest{}
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[15]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[17]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@@ -857,7 +945,7 @@ func (x *ListServicesRequest) String() string {
|
|
|
|
func (*ListServicesRequest) ProtoMessage() {}
|
|
|
|
func (*ListServicesRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ListServicesRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *ListServicesRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[15]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[17]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@@ -870,7 +958,7 @@ func (x *ListServicesRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use ListServicesRequest.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use ListServicesRequest.ProtoReflect.Descriptor instead.
|
|
|
|
func (*ListServicesRequest) Descriptor() ([]byte, []int) {
|
|
|
|
func (*ListServicesRequest) Descriptor() ([]byte, []int) {
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{15}
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{17}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type ServiceInfo struct {
|
|
|
|
type ServiceInfo struct {
|
|
|
|
@@ -884,7 +972,7 @@ type ServiceInfo struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ServiceInfo) Reset() {
|
|
|
|
func (x *ServiceInfo) Reset() {
|
|
|
|
*x = ServiceInfo{}
|
|
|
|
*x = ServiceInfo{}
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[16]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[18]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@@ -896,7 +984,7 @@ func (x *ServiceInfo) String() string {
|
|
|
|
func (*ServiceInfo) ProtoMessage() {}
|
|
|
|
func (*ServiceInfo) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ServiceInfo) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *ServiceInfo) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[16]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[18]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@@ -909,7 +997,7 @@ func (x *ServiceInfo) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use ServiceInfo.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use ServiceInfo.ProtoReflect.Descriptor instead.
|
|
|
|
func (*ServiceInfo) Descriptor() ([]byte, []int) {
|
|
|
|
func (*ServiceInfo) Descriptor() ([]byte, []int) {
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{16}
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{18}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ServiceInfo) GetName() string {
|
|
|
|
func (x *ServiceInfo) GetName() string {
|
|
|
|
@@ -950,7 +1038,7 @@ type ComponentInfo struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ComponentInfo) Reset() {
|
|
|
|
func (x *ComponentInfo) Reset() {
|
|
|
|
*x = ComponentInfo{}
|
|
|
|
*x = ComponentInfo{}
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[17]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[19]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@@ -962,7 +1050,7 @@ func (x *ComponentInfo) String() string {
|
|
|
|
func (*ComponentInfo) ProtoMessage() {}
|
|
|
|
func (*ComponentInfo) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ComponentInfo) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *ComponentInfo) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[17]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[19]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@@ -975,7 +1063,7 @@ func (x *ComponentInfo) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use ComponentInfo.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use ComponentInfo.ProtoReflect.Descriptor instead.
|
|
|
|
func (*ComponentInfo) Descriptor() ([]byte, []int) {
|
|
|
|
func (*ComponentInfo) Descriptor() ([]byte, []int) {
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{17}
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{19}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ComponentInfo) GetName() string {
|
|
|
|
func (x *ComponentInfo) GetName() string {
|
|
|
|
@@ -1029,7 +1117,7 @@ type ListServicesResponse struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ListServicesResponse) Reset() {
|
|
|
|
func (x *ListServicesResponse) Reset() {
|
|
|
|
*x = ListServicesResponse{}
|
|
|
|
*x = ListServicesResponse{}
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[18]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[20]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@@ -1041,7 +1129,7 @@ func (x *ListServicesResponse) String() string {
|
|
|
|
func (*ListServicesResponse) ProtoMessage() {}
|
|
|
|
func (*ListServicesResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ListServicesResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *ListServicesResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[18]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[20]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@@ -1054,7 +1142,7 @@ func (x *ListServicesResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use ListServicesResponse.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use ListServicesResponse.ProtoReflect.Descriptor instead.
|
|
|
|
func (*ListServicesResponse) Descriptor() ([]byte, []int) {
|
|
|
|
func (*ListServicesResponse) Descriptor() ([]byte, []int) {
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{18}
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{20}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ListServicesResponse) GetServices() []*ServiceInfo {
|
|
|
|
func (x *ListServicesResponse) GetServices() []*ServiceInfo {
|
|
|
|
@@ -1074,7 +1162,7 @@ type GetServiceStatusRequest struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *GetServiceStatusRequest) Reset() {
|
|
|
|
func (x *GetServiceStatusRequest) Reset() {
|
|
|
|
*x = GetServiceStatusRequest{}
|
|
|
|
*x = GetServiceStatusRequest{}
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[19]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[21]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@@ -1086,7 +1174,7 @@ func (x *GetServiceStatusRequest) String() string {
|
|
|
|
func (*GetServiceStatusRequest) ProtoMessage() {}
|
|
|
|
func (*GetServiceStatusRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *GetServiceStatusRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *GetServiceStatusRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[19]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[21]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@@ -1099,7 +1187,7 @@ func (x *GetServiceStatusRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use GetServiceStatusRequest.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use GetServiceStatusRequest.ProtoReflect.Descriptor instead.
|
|
|
|
func (*GetServiceStatusRequest) Descriptor() ([]byte, []int) {
|
|
|
|
func (*GetServiceStatusRequest) Descriptor() ([]byte, []int) {
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{19}
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{21}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *GetServiceStatusRequest) GetName() string {
|
|
|
|
func (x *GetServiceStatusRequest) GetName() string {
|
|
|
|
@@ -1121,7 +1209,7 @@ type DriftInfo struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *DriftInfo) Reset() {
|
|
|
|
func (x *DriftInfo) Reset() {
|
|
|
|
*x = DriftInfo{}
|
|
|
|
*x = DriftInfo{}
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[20]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[22]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@@ -1133,7 +1221,7 @@ func (x *DriftInfo) String() string {
|
|
|
|
func (*DriftInfo) ProtoMessage() {}
|
|
|
|
func (*DriftInfo) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *DriftInfo) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *DriftInfo) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[20]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[22]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@@ -1146,7 +1234,7 @@ func (x *DriftInfo) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use DriftInfo.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use DriftInfo.ProtoReflect.Descriptor instead.
|
|
|
|
func (*DriftInfo) Descriptor() ([]byte, []int) {
|
|
|
|
func (*DriftInfo) Descriptor() ([]byte, []int) {
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{20}
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{22}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *DriftInfo) GetService() string {
|
|
|
|
func (x *DriftInfo) GetService() string {
|
|
|
|
@@ -1190,7 +1278,7 @@ type EventInfo struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *EventInfo) Reset() {
|
|
|
|
func (x *EventInfo) Reset() {
|
|
|
|
*x = EventInfo{}
|
|
|
|
*x = EventInfo{}
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[21]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[23]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@@ -1202,7 +1290,7 @@ func (x *EventInfo) String() string {
|
|
|
|
func (*EventInfo) ProtoMessage() {}
|
|
|
|
func (*EventInfo) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *EventInfo) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *EventInfo) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[21]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[23]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@@ -1215,7 +1303,7 @@ func (x *EventInfo) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use EventInfo.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use EventInfo.ProtoReflect.Descriptor instead.
|
|
|
|
func (*EventInfo) Descriptor() ([]byte, []int) {
|
|
|
|
func (*EventInfo) Descriptor() ([]byte, []int) {
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{21}
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{23}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *EventInfo) GetService() string {
|
|
|
|
func (x *EventInfo) GetService() string {
|
|
|
|
@@ -1264,7 +1352,7 @@ type GetServiceStatusResponse struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *GetServiceStatusResponse) Reset() {
|
|
|
|
func (x *GetServiceStatusResponse) Reset() {
|
|
|
|
*x = GetServiceStatusResponse{}
|
|
|
|
*x = GetServiceStatusResponse{}
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[22]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[24]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@@ -1276,7 +1364,7 @@ func (x *GetServiceStatusResponse) String() string {
|
|
|
|
func (*GetServiceStatusResponse) ProtoMessage() {}
|
|
|
|
func (*GetServiceStatusResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *GetServiceStatusResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *GetServiceStatusResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[22]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[24]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@@ -1289,7 +1377,7 @@ func (x *GetServiceStatusResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use GetServiceStatusResponse.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use GetServiceStatusResponse.ProtoReflect.Descriptor instead.
|
|
|
|
func (*GetServiceStatusResponse) Descriptor() ([]byte, []int) {
|
|
|
|
func (*GetServiceStatusResponse) Descriptor() ([]byte, []int) {
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{22}
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{24}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *GetServiceStatusResponse) GetServices() []*ServiceInfo {
|
|
|
|
func (x *GetServiceStatusResponse) GetServices() []*ServiceInfo {
|
|
|
|
@@ -1321,7 +1409,7 @@ type LiveCheckRequest struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *LiveCheckRequest) Reset() {
|
|
|
|
func (x *LiveCheckRequest) Reset() {
|
|
|
|
*x = LiveCheckRequest{}
|
|
|
|
*x = LiveCheckRequest{}
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[23]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[25]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@@ -1333,7 +1421,7 @@ func (x *LiveCheckRequest) String() string {
|
|
|
|
func (*LiveCheckRequest) ProtoMessage() {}
|
|
|
|
func (*LiveCheckRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *LiveCheckRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *LiveCheckRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[23]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[25]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@@ -1346,7 +1434,7 @@ func (x *LiveCheckRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use LiveCheckRequest.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use LiveCheckRequest.ProtoReflect.Descriptor instead.
|
|
|
|
func (*LiveCheckRequest) Descriptor() ([]byte, []int) {
|
|
|
|
func (*LiveCheckRequest) Descriptor() ([]byte, []int) {
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{23}
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{25}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type LiveCheckResponse struct {
|
|
|
|
type LiveCheckResponse struct {
|
|
|
|
@@ -1359,7 +1447,7 @@ type LiveCheckResponse struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *LiveCheckResponse) Reset() {
|
|
|
|
func (x *LiveCheckResponse) Reset() {
|
|
|
|
*x = LiveCheckResponse{}
|
|
|
|
*x = LiveCheckResponse{}
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[24]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[26]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@@ -1371,7 +1459,7 @@ func (x *LiveCheckResponse) String() string {
|
|
|
|
func (*LiveCheckResponse) ProtoMessage() {}
|
|
|
|
func (*LiveCheckResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *LiveCheckResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *LiveCheckResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[24]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[26]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@@ -1384,7 +1472,7 @@ func (x *LiveCheckResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use LiveCheckResponse.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use LiveCheckResponse.ProtoReflect.Descriptor instead.
|
|
|
|
func (*LiveCheckResponse) Descriptor() ([]byte, []int) {
|
|
|
|
func (*LiveCheckResponse) Descriptor() ([]byte, []int) {
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{24}
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{26}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *LiveCheckResponse) GetServices() []*ServiceInfo {
|
|
|
|
func (x *LiveCheckResponse) GetServices() []*ServiceInfo {
|
|
|
|
@@ -1404,7 +1492,7 @@ type AdoptContainersRequest struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *AdoptContainersRequest) Reset() {
|
|
|
|
func (x *AdoptContainersRequest) Reset() {
|
|
|
|
*x = AdoptContainersRequest{}
|
|
|
|
*x = AdoptContainersRequest{}
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[25]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[27]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@@ -1416,7 +1504,7 @@ func (x *AdoptContainersRequest) String() string {
|
|
|
|
func (*AdoptContainersRequest) ProtoMessage() {}
|
|
|
|
func (*AdoptContainersRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *AdoptContainersRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *AdoptContainersRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[25]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[27]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@@ -1429,7 +1517,7 @@ func (x *AdoptContainersRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use AdoptContainersRequest.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use AdoptContainersRequest.ProtoReflect.Descriptor instead.
|
|
|
|
func (*AdoptContainersRequest) Descriptor() ([]byte, []int) {
|
|
|
|
func (*AdoptContainersRequest) Descriptor() ([]byte, []int) {
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{25}
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{27}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *AdoptContainersRequest) GetService() string {
|
|
|
|
func (x *AdoptContainersRequest) GetService() string {
|
|
|
|
@@ -1453,7 +1541,7 @@ type AdoptResult struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *AdoptResult) Reset() {
|
|
|
|
func (x *AdoptResult) Reset() {
|
|
|
|
*x = AdoptResult{}
|
|
|
|
*x = AdoptResult{}
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[26]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[28]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@@ -1465,7 +1553,7 @@ func (x *AdoptResult) String() string {
|
|
|
|
func (*AdoptResult) ProtoMessage() {}
|
|
|
|
func (*AdoptResult) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *AdoptResult) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *AdoptResult) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[26]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[28]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@@ -1478,7 +1566,7 @@ func (x *AdoptResult) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use AdoptResult.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use AdoptResult.ProtoReflect.Descriptor instead.
|
|
|
|
func (*AdoptResult) Descriptor() ([]byte, []int) {
|
|
|
|
func (*AdoptResult) Descriptor() ([]byte, []int) {
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{26}
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{28}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *AdoptResult) GetContainer() string {
|
|
|
|
func (x *AdoptResult) GetContainer() string {
|
|
|
|
@@ -1518,7 +1606,7 @@ type AdoptContainersResponse struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *AdoptContainersResponse) Reset() {
|
|
|
|
func (x *AdoptContainersResponse) Reset() {
|
|
|
|
*x = AdoptContainersResponse{}
|
|
|
|
*x = AdoptContainersResponse{}
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[27]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[29]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@@ -1530,7 +1618,7 @@ func (x *AdoptContainersResponse) String() string {
|
|
|
|
func (*AdoptContainersResponse) ProtoMessage() {}
|
|
|
|
func (*AdoptContainersResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *AdoptContainersResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *AdoptContainersResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[27]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[29]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@@ -1543,7 +1631,7 @@ func (x *AdoptContainersResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use AdoptContainersResponse.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use AdoptContainersResponse.ProtoReflect.Descriptor instead.
|
|
|
|
func (*AdoptContainersResponse) Descriptor() ([]byte, []int) {
|
|
|
|
func (*AdoptContainersResponse) Descriptor() ([]byte, []int) {
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{27}
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{29}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *AdoptContainersResponse) GetResults() []*AdoptResult {
|
|
|
|
func (x *AdoptContainersResponse) GetResults() []*AdoptResult {
|
|
|
|
@@ -1567,7 +1655,7 @@ type PushFileRequest struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *PushFileRequest) Reset() {
|
|
|
|
func (x *PushFileRequest) Reset() {
|
|
|
|
*x = PushFileRequest{}
|
|
|
|
*x = PushFileRequest{}
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[28]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[30]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@@ -1579,7 +1667,7 @@ func (x *PushFileRequest) String() string {
|
|
|
|
func (*PushFileRequest) ProtoMessage() {}
|
|
|
|
func (*PushFileRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *PushFileRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *PushFileRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[28]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[30]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@@ -1592,7 +1680,7 @@ func (x *PushFileRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use PushFileRequest.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use PushFileRequest.ProtoReflect.Descriptor instead.
|
|
|
|
func (*PushFileRequest) Descriptor() ([]byte, []int) {
|
|
|
|
func (*PushFileRequest) Descriptor() ([]byte, []int) {
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{28}
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{30}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *PushFileRequest) GetService() string {
|
|
|
|
func (x *PushFileRequest) GetService() string {
|
|
|
|
@@ -1633,7 +1721,7 @@ type PushFileResponse struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *PushFileResponse) Reset() {
|
|
|
|
func (x *PushFileResponse) Reset() {
|
|
|
|
*x = PushFileResponse{}
|
|
|
|
*x = PushFileResponse{}
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[29]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[31]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@@ -1645,7 +1733,7 @@ func (x *PushFileResponse) String() string {
|
|
|
|
func (*PushFileResponse) ProtoMessage() {}
|
|
|
|
func (*PushFileResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *PushFileResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *PushFileResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[29]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[31]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@@ -1658,7 +1746,7 @@ func (x *PushFileResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use PushFileResponse.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use PushFileResponse.ProtoReflect.Descriptor instead.
|
|
|
|
func (*PushFileResponse) Descriptor() ([]byte, []int) {
|
|
|
|
func (*PushFileResponse) Descriptor() ([]byte, []int) {
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{29}
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{31}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *PushFileResponse) GetSuccess() bool {
|
|
|
|
func (x *PushFileResponse) GetSuccess() bool {
|
|
|
|
@@ -1686,7 +1774,7 @@ type PullFileRequest struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *PullFileRequest) Reset() {
|
|
|
|
func (x *PullFileRequest) Reset() {
|
|
|
|
*x = PullFileRequest{}
|
|
|
|
*x = PullFileRequest{}
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[30]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[32]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@@ -1698,7 +1786,7 @@ func (x *PullFileRequest) String() string {
|
|
|
|
func (*PullFileRequest) ProtoMessage() {}
|
|
|
|
func (*PullFileRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *PullFileRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *PullFileRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[30]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[32]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@@ -1711,7 +1799,7 @@ func (x *PullFileRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use PullFileRequest.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use PullFileRequest.ProtoReflect.Descriptor instead.
|
|
|
|
func (*PullFileRequest) Descriptor() ([]byte, []int) {
|
|
|
|
func (*PullFileRequest) Descriptor() ([]byte, []int) {
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{30}
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{32}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *PullFileRequest) GetService() string {
|
|
|
|
func (x *PullFileRequest) GetService() string {
|
|
|
|
@@ -1739,7 +1827,7 @@ type PullFileResponse struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *PullFileResponse) Reset() {
|
|
|
|
func (x *PullFileResponse) Reset() {
|
|
|
|
*x = PullFileResponse{}
|
|
|
|
*x = PullFileResponse{}
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[31]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[33]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@@ -1751,7 +1839,7 @@ func (x *PullFileResponse) String() string {
|
|
|
|
func (*PullFileResponse) ProtoMessage() {}
|
|
|
|
func (*PullFileResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *PullFileResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *PullFileResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[31]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[33]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@@ -1764,7 +1852,7 @@ func (x *PullFileResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use PullFileResponse.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use PullFileResponse.ProtoReflect.Descriptor instead.
|
|
|
|
func (*PullFileResponse) Descriptor() ([]byte, []int) {
|
|
|
|
func (*PullFileResponse) Descriptor() ([]byte, []int) {
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{31}
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{33}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *PullFileResponse) GetContent() []byte {
|
|
|
|
func (x *PullFileResponse) GetContent() []byte {
|
|
|
|
@@ -1796,7 +1884,7 @@ type NodeStatusRequest struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *NodeStatusRequest) Reset() {
|
|
|
|
func (x *NodeStatusRequest) Reset() {
|
|
|
|
*x = NodeStatusRequest{}
|
|
|
|
*x = NodeStatusRequest{}
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[32]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[34]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@@ -1808,7 +1896,7 @@ func (x *NodeStatusRequest) String() string {
|
|
|
|
func (*NodeStatusRequest) ProtoMessage() {}
|
|
|
|
func (*NodeStatusRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *NodeStatusRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *NodeStatusRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[32]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[34]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@@ -1821,7 +1909,7 @@ func (x *NodeStatusRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use NodeStatusRequest.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use NodeStatusRequest.ProtoReflect.Descriptor instead.
|
|
|
|
func (*NodeStatusRequest) Descriptor() ([]byte, []int) {
|
|
|
|
func (*NodeStatusRequest) Descriptor() ([]byte, []int) {
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{32}
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{34}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type NodeStatusResponse struct {
|
|
|
|
type NodeStatusResponse struct {
|
|
|
|
@@ -1844,7 +1932,7 @@ type NodeStatusResponse struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *NodeStatusResponse) Reset() {
|
|
|
|
func (x *NodeStatusResponse) Reset() {
|
|
|
|
*x = NodeStatusResponse{}
|
|
|
|
*x = NodeStatusResponse{}
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[33]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[35]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@@ -1856,7 +1944,7 @@ func (x *NodeStatusResponse) String() string {
|
|
|
|
func (*NodeStatusResponse) ProtoMessage() {}
|
|
|
|
func (*NodeStatusResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *NodeStatusResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *NodeStatusResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[33]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[35]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@@ -1869,7 +1957,7 @@ func (x *NodeStatusResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use NodeStatusResponse.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use NodeStatusResponse.ProtoReflect.Descriptor instead.
|
|
|
|
func (*NodeStatusResponse) Descriptor() ([]byte, []int) {
|
|
|
|
func (*NodeStatusResponse) Descriptor() ([]byte, []int) {
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{33}
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{35}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *NodeStatusResponse) GetNodeName() string {
|
|
|
|
func (x *NodeStatusResponse) GetNodeName() string {
|
|
|
|
@@ -1966,7 +2054,7 @@ type PurgeRequest struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *PurgeRequest) Reset() {
|
|
|
|
func (x *PurgeRequest) Reset() {
|
|
|
|
*x = PurgeRequest{}
|
|
|
|
*x = PurgeRequest{}
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[34]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[36]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@@ -1978,7 +2066,7 @@ func (x *PurgeRequest) String() string {
|
|
|
|
func (*PurgeRequest) ProtoMessage() {}
|
|
|
|
func (*PurgeRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *PurgeRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *PurgeRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[34]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[36]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@@ -1991,7 +2079,7 @@ func (x *PurgeRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use PurgeRequest.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use PurgeRequest.ProtoReflect.Descriptor instead.
|
|
|
|
func (*PurgeRequest) Descriptor() ([]byte, []int) {
|
|
|
|
func (*PurgeRequest) Descriptor() ([]byte, []int) {
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{34}
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{36}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *PurgeRequest) GetService() string {
|
|
|
|
func (x *PurgeRequest) GetService() string {
|
|
|
|
@@ -2031,7 +2119,7 @@ type PurgeResponse struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *PurgeResponse) Reset() {
|
|
|
|
func (x *PurgeResponse) Reset() {
|
|
|
|
*x = PurgeResponse{}
|
|
|
|
*x = PurgeResponse{}
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[35]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[37]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@@ -2043,7 +2131,7 @@ func (x *PurgeResponse) String() string {
|
|
|
|
func (*PurgeResponse) ProtoMessage() {}
|
|
|
|
func (*PurgeResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *PurgeResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *PurgeResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[35]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[37]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@@ -2056,7 +2144,7 @@ func (x *PurgeResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use PurgeResponse.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use PurgeResponse.ProtoReflect.Descriptor instead.
|
|
|
|
func (*PurgeResponse) Descriptor() ([]byte, []int) {
|
|
|
|
func (*PurgeResponse) Descriptor() ([]byte, []int) {
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{35}
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{37}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *PurgeResponse) GetResults() []*PurgeResult {
|
|
|
|
func (x *PurgeResponse) GetResults() []*PurgeResult {
|
|
|
|
@@ -2080,7 +2168,7 @@ type PurgeResult struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *PurgeResult) Reset() {
|
|
|
|
func (x *PurgeResult) Reset() {
|
|
|
|
*x = PurgeResult{}
|
|
|
|
*x = PurgeResult{}
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[36]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[38]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@@ -2092,7 +2180,7 @@ func (x *PurgeResult) String() string {
|
|
|
|
func (*PurgeResult) ProtoMessage() {}
|
|
|
|
func (*PurgeResult) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *PurgeResult) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *PurgeResult) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[36]
|
|
|
|
mi := &file_proto_mcp_v1_mcp_proto_msgTypes[38]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@@ -2105,7 +2193,7 @@ func (x *PurgeResult) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use PurgeResult.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use PurgeResult.ProtoReflect.Descriptor instead.
|
|
|
|
func (*PurgeResult) Descriptor() ([]byte, []int) {
|
|
|
|
func (*PurgeResult) Descriptor() ([]byte, []int) {
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{36}
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescGZIP(), []int{38}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *PurgeResult) GetService() string {
|
|
|
|
func (x *PurgeResult) GetService() string {
|
|
|
|
@@ -2184,6 +2272,10 @@ const file_proto_mcp_v1_mcp_proto_rawDesc = "" +
|
|
|
|
"\x15RestartServiceRequest\x12\x12\n" +
|
|
|
|
"\x15RestartServiceRequest\x12\x12\n" +
|
|
|
|
"\x04name\x18\x01 \x01(\tR\x04name\"K\n" +
|
|
|
|
"\x04name\x18\x01 \x01(\tR\x04name\"K\n" +
|
|
|
|
"\x16RestartServiceResponse\x121\n" +
|
|
|
|
"\x16RestartServiceResponse\x121\n" +
|
|
|
|
|
|
|
|
"\aresults\x18\x01 \x03(\v2\x17.mcp.v1.ComponentResultR\aresults\",\n" +
|
|
|
|
|
|
|
|
"\x16UndeployServiceRequest\x12\x12\n" +
|
|
|
|
|
|
|
|
"\x04name\x18\x01 \x01(\tR\x04name\"L\n" +
|
|
|
|
|
|
|
|
"\x17UndeployServiceResponse\x121\n" +
|
|
|
|
"\aresults\x18\x01 \x03(\v2\x17.mcp.v1.ComponentResultR\aresults\"J\n" +
|
|
|
|
"\aresults\x18\x01 \x03(\v2\x17.mcp.v1.ComponentResultR\aresults\"J\n" +
|
|
|
|
"\x17SyncDesiredStateRequest\x12/\n" +
|
|
|
|
"\x17SyncDesiredStateRequest\x12/\n" +
|
|
|
|
"\bservices\x18\x01 \x03(\v2\x13.mcp.v1.ServiceSpecR\bservices\"O\n" +
|
|
|
|
"\bservices\x18\x01 \x03(\v2\x13.mcp.v1.ServiceSpecR\bservices\"O\n" +
|
|
|
|
@@ -2279,9 +2371,10 @@ const file_proto_mcp_v1_mcp_proto_rawDesc = "" +
|
|
|
|
"\aservice\x18\x01 \x01(\tR\aservice\x12\x1c\n" +
|
|
|
|
"\aservice\x18\x01 \x01(\tR\aservice\x12\x1c\n" +
|
|
|
|
"\tcomponent\x18\x02 \x01(\tR\tcomponent\x12\x16\n" +
|
|
|
|
"\tcomponent\x18\x02 \x01(\tR\tcomponent\x12\x16\n" +
|
|
|
|
"\x06purged\x18\x03 \x01(\bR\x06purged\x12\x16\n" +
|
|
|
|
"\x06purged\x18\x03 \x01(\bR\x06purged\x12\x16\n" +
|
|
|
|
"\x06reason\x18\x04 \x01(\tR\x06reason2\xbf\a\n" +
|
|
|
|
"\x06reason\x18\x04 \x01(\tR\x06reason2\x93\b\n" +
|
|
|
|
"\x0fMcpAgentService\x127\n" +
|
|
|
|
"\x0fMcpAgentService\x127\n" +
|
|
|
|
"\x06Deploy\x12\x15.mcp.v1.DeployRequest\x1a\x16.mcp.v1.DeployResponse\x12F\n" +
|
|
|
|
"\x06Deploy\x12\x15.mcp.v1.DeployRequest\x1a\x16.mcp.v1.DeployResponse\x12R\n" +
|
|
|
|
|
|
|
|
"\x0fUndeployService\x12\x1e.mcp.v1.UndeployServiceRequest\x1a\x1f.mcp.v1.UndeployServiceResponse\x12F\n" +
|
|
|
|
"\vStopService\x12\x1a.mcp.v1.StopServiceRequest\x1a\x1b.mcp.v1.StopServiceResponse\x12I\n" +
|
|
|
|
"\vStopService\x12\x1a.mcp.v1.StopServiceRequest\x1a\x1b.mcp.v1.StopServiceResponse\x12I\n" +
|
|
|
|
"\fStartService\x12\x1b.mcp.v1.StartServiceRequest\x1a\x1c.mcp.v1.StartServiceResponse\x12O\n" +
|
|
|
|
"\fStartService\x12\x1b.mcp.v1.StartServiceRequest\x1a\x1c.mcp.v1.StartServiceResponse\x12O\n" +
|
|
|
|
"\x0eRestartService\x12\x1d.mcp.v1.RestartServiceRequest\x1a\x1e.mcp.v1.RestartServiceResponse\x12U\n" +
|
|
|
|
"\x0eRestartService\x12\x1d.mcp.v1.RestartServiceRequest\x1a\x1e.mcp.v1.RestartServiceResponse\x12U\n" +
|
|
|
|
@@ -2308,7 +2401,7 @@ func file_proto_mcp_v1_mcp_proto_rawDescGZIP() []byte {
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescData
|
|
|
|
return file_proto_mcp_v1_mcp_proto_rawDescData
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
var file_proto_mcp_v1_mcp_proto_msgTypes = make([]protoimpl.MessageInfo, 37)
|
|
|
|
var file_proto_mcp_v1_mcp_proto_msgTypes = make([]protoimpl.MessageInfo, 39)
|
|
|
|
var file_proto_mcp_v1_mcp_proto_goTypes = []any{
|
|
|
|
var file_proto_mcp_v1_mcp_proto_goTypes = []any{
|
|
|
|
(*RouteSpec)(nil), // 0: mcp.v1.RouteSpec
|
|
|
|
(*RouteSpec)(nil), // 0: mcp.v1.RouteSpec
|
|
|
|
(*ComponentSpec)(nil), // 1: mcp.v1.ComponentSpec
|
|
|
|
(*ComponentSpec)(nil), // 1: mcp.v1.ComponentSpec
|
|
|
|
@@ -2322,32 +2415,34 @@ var file_proto_mcp_v1_mcp_proto_goTypes = []any{
|
|
|
|
(*StartServiceResponse)(nil), // 9: mcp.v1.StartServiceResponse
|
|
|
|
(*StartServiceResponse)(nil), // 9: mcp.v1.StartServiceResponse
|
|
|
|
(*RestartServiceRequest)(nil), // 10: mcp.v1.RestartServiceRequest
|
|
|
|
(*RestartServiceRequest)(nil), // 10: mcp.v1.RestartServiceRequest
|
|
|
|
(*RestartServiceResponse)(nil), // 11: mcp.v1.RestartServiceResponse
|
|
|
|
(*RestartServiceResponse)(nil), // 11: mcp.v1.RestartServiceResponse
|
|
|
|
(*SyncDesiredStateRequest)(nil), // 12: mcp.v1.SyncDesiredStateRequest
|
|
|
|
(*UndeployServiceRequest)(nil), // 12: mcp.v1.UndeployServiceRequest
|
|
|
|
(*SyncDesiredStateResponse)(nil), // 13: mcp.v1.SyncDesiredStateResponse
|
|
|
|
(*UndeployServiceResponse)(nil), // 13: mcp.v1.UndeployServiceResponse
|
|
|
|
(*ServiceSyncResult)(nil), // 14: mcp.v1.ServiceSyncResult
|
|
|
|
(*SyncDesiredStateRequest)(nil), // 14: mcp.v1.SyncDesiredStateRequest
|
|
|
|
(*ListServicesRequest)(nil), // 15: mcp.v1.ListServicesRequest
|
|
|
|
(*SyncDesiredStateResponse)(nil), // 15: mcp.v1.SyncDesiredStateResponse
|
|
|
|
(*ServiceInfo)(nil), // 16: mcp.v1.ServiceInfo
|
|
|
|
(*ServiceSyncResult)(nil), // 16: mcp.v1.ServiceSyncResult
|
|
|
|
(*ComponentInfo)(nil), // 17: mcp.v1.ComponentInfo
|
|
|
|
(*ListServicesRequest)(nil), // 17: mcp.v1.ListServicesRequest
|
|
|
|
(*ListServicesResponse)(nil), // 18: mcp.v1.ListServicesResponse
|
|
|
|
(*ServiceInfo)(nil), // 18: mcp.v1.ServiceInfo
|
|
|
|
(*GetServiceStatusRequest)(nil), // 19: mcp.v1.GetServiceStatusRequest
|
|
|
|
(*ComponentInfo)(nil), // 19: mcp.v1.ComponentInfo
|
|
|
|
(*DriftInfo)(nil), // 20: mcp.v1.DriftInfo
|
|
|
|
(*ListServicesResponse)(nil), // 20: mcp.v1.ListServicesResponse
|
|
|
|
(*EventInfo)(nil), // 21: mcp.v1.EventInfo
|
|
|
|
(*GetServiceStatusRequest)(nil), // 21: mcp.v1.GetServiceStatusRequest
|
|
|
|
(*GetServiceStatusResponse)(nil), // 22: mcp.v1.GetServiceStatusResponse
|
|
|
|
(*DriftInfo)(nil), // 22: mcp.v1.DriftInfo
|
|
|
|
(*LiveCheckRequest)(nil), // 23: mcp.v1.LiveCheckRequest
|
|
|
|
(*EventInfo)(nil), // 23: mcp.v1.EventInfo
|
|
|
|
(*LiveCheckResponse)(nil), // 24: mcp.v1.LiveCheckResponse
|
|
|
|
(*GetServiceStatusResponse)(nil), // 24: mcp.v1.GetServiceStatusResponse
|
|
|
|
(*AdoptContainersRequest)(nil), // 25: mcp.v1.AdoptContainersRequest
|
|
|
|
(*LiveCheckRequest)(nil), // 25: mcp.v1.LiveCheckRequest
|
|
|
|
(*AdoptResult)(nil), // 26: mcp.v1.AdoptResult
|
|
|
|
(*LiveCheckResponse)(nil), // 26: mcp.v1.LiveCheckResponse
|
|
|
|
(*AdoptContainersResponse)(nil), // 27: mcp.v1.AdoptContainersResponse
|
|
|
|
(*AdoptContainersRequest)(nil), // 27: mcp.v1.AdoptContainersRequest
|
|
|
|
(*PushFileRequest)(nil), // 28: mcp.v1.PushFileRequest
|
|
|
|
(*AdoptResult)(nil), // 28: mcp.v1.AdoptResult
|
|
|
|
(*PushFileResponse)(nil), // 29: mcp.v1.PushFileResponse
|
|
|
|
(*AdoptContainersResponse)(nil), // 29: mcp.v1.AdoptContainersResponse
|
|
|
|
(*PullFileRequest)(nil), // 30: mcp.v1.PullFileRequest
|
|
|
|
(*PushFileRequest)(nil), // 30: mcp.v1.PushFileRequest
|
|
|
|
(*PullFileResponse)(nil), // 31: mcp.v1.PullFileResponse
|
|
|
|
(*PushFileResponse)(nil), // 31: mcp.v1.PushFileResponse
|
|
|
|
(*NodeStatusRequest)(nil), // 32: mcp.v1.NodeStatusRequest
|
|
|
|
(*PullFileRequest)(nil), // 32: mcp.v1.PullFileRequest
|
|
|
|
(*NodeStatusResponse)(nil), // 33: mcp.v1.NodeStatusResponse
|
|
|
|
(*PullFileResponse)(nil), // 33: mcp.v1.PullFileResponse
|
|
|
|
(*PurgeRequest)(nil), // 34: mcp.v1.PurgeRequest
|
|
|
|
(*NodeStatusRequest)(nil), // 34: mcp.v1.NodeStatusRequest
|
|
|
|
(*PurgeResponse)(nil), // 35: mcp.v1.PurgeResponse
|
|
|
|
(*NodeStatusResponse)(nil), // 35: mcp.v1.NodeStatusResponse
|
|
|
|
(*PurgeResult)(nil), // 36: mcp.v1.PurgeResult
|
|
|
|
(*PurgeRequest)(nil), // 36: mcp.v1.PurgeRequest
|
|
|
|
(*timestamppb.Timestamp)(nil), // 37: google.protobuf.Timestamp
|
|
|
|
(*PurgeResponse)(nil), // 37: mcp.v1.PurgeResponse
|
|
|
|
|
|
|
|
(*PurgeResult)(nil), // 38: mcp.v1.PurgeResult
|
|
|
|
|
|
|
|
(*timestamppb.Timestamp)(nil), // 39: google.protobuf.Timestamp
|
|
|
|
}
|
|
|
|
}
|
|
|
|
var file_proto_mcp_v1_mcp_proto_depIdxs = []int32{
|
|
|
|
var file_proto_mcp_v1_mcp_proto_depIdxs = []int32{
|
|
|
|
0, // 0: mcp.v1.ComponentSpec.routes:type_name -> mcp.v1.RouteSpec
|
|
|
|
0, // 0: mcp.v1.ComponentSpec.routes:type_name -> mcp.v1.RouteSpec
|
|
|
|
@@ -2357,50 +2452,53 @@ var file_proto_mcp_v1_mcp_proto_depIdxs = []int32{
|
|
|
|
5, // 4: mcp.v1.StopServiceResponse.results:type_name -> mcp.v1.ComponentResult
|
|
|
|
5, // 4: mcp.v1.StopServiceResponse.results:type_name -> mcp.v1.ComponentResult
|
|
|
|
5, // 5: mcp.v1.StartServiceResponse.results:type_name -> mcp.v1.ComponentResult
|
|
|
|
5, // 5: mcp.v1.StartServiceResponse.results:type_name -> mcp.v1.ComponentResult
|
|
|
|
5, // 6: mcp.v1.RestartServiceResponse.results:type_name -> mcp.v1.ComponentResult
|
|
|
|
5, // 6: mcp.v1.RestartServiceResponse.results:type_name -> mcp.v1.ComponentResult
|
|
|
|
2, // 7: mcp.v1.SyncDesiredStateRequest.services:type_name -> mcp.v1.ServiceSpec
|
|
|
|
5, // 7: mcp.v1.UndeployServiceResponse.results:type_name -> mcp.v1.ComponentResult
|
|
|
|
14, // 8: mcp.v1.SyncDesiredStateResponse.results:type_name -> mcp.v1.ServiceSyncResult
|
|
|
|
2, // 8: mcp.v1.SyncDesiredStateRequest.services:type_name -> mcp.v1.ServiceSpec
|
|
|
|
17, // 9: mcp.v1.ServiceInfo.components:type_name -> mcp.v1.ComponentInfo
|
|
|
|
16, // 9: mcp.v1.SyncDesiredStateResponse.results:type_name -> mcp.v1.ServiceSyncResult
|
|
|
|
37, // 10: mcp.v1.ComponentInfo.started:type_name -> google.protobuf.Timestamp
|
|
|
|
19, // 10: mcp.v1.ServiceInfo.components:type_name -> mcp.v1.ComponentInfo
|
|
|
|
16, // 11: mcp.v1.ListServicesResponse.services:type_name -> mcp.v1.ServiceInfo
|
|
|
|
39, // 11: mcp.v1.ComponentInfo.started:type_name -> google.protobuf.Timestamp
|
|
|
|
37, // 12: mcp.v1.EventInfo.timestamp:type_name -> google.protobuf.Timestamp
|
|
|
|
18, // 12: mcp.v1.ListServicesResponse.services:type_name -> mcp.v1.ServiceInfo
|
|
|
|
16, // 13: mcp.v1.GetServiceStatusResponse.services:type_name -> mcp.v1.ServiceInfo
|
|
|
|
39, // 13: mcp.v1.EventInfo.timestamp:type_name -> google.protobuf.Timestamp
|
|
|
|
20, // 14: mcp.v1.GetServiceStatusResponse.drift:type_name -> mcp.v1.DriftInfo
|
|
|
|
18, // 14: mcp.v1.GetServiceStatusResponse.services:type_name -> mcp.v1.ServiceInfo
|
|
|
|
21, // 15: mcp.v1.GetServiceStatusResponse.recent_events:type_name -> mcp.v1.EventInfo
|
|
|
|
22, // 15: mcp.v1.GetServiceStatusResponse.drift:type_name -> mcp.v1.DriftInfo
|
|
|
|
16, // 16: mcp.v1.LiveCheckResponse.services:type_name -> mcp.v1.ServiceInfo
|
|
|
|
23, // 16: mcp.v1.GetServiceStatusResponse.recent_events:type_name -> mcp.v1.EventInfo
|
|
|
|
26, // 17: mcp.v1.AdoptContainersResponse.results:type_name -> mcp.v1.AdoptResult
|
|
|
|
18, // 17: mcp.v1.LiveCheckResponse.services:type_name -> mcp.v1.ServiceInfo
|
|
|
|
37, // 18: mcp.v1.NodeStatusResponse.uptime_since:type_name -> google.protobuf.Timestamp
|
|
|
|
28, // 18: mcp.v1.AdoptContainersResponse.results:type_name -> mcp.v1.AdoptResult
|
|
|
|
36, // 19: mcp.v1.PurgeResponse.results:type_name -> mcp.v1.PurgeResult
|
|
|
|
39, // 19: mcp.v1.NodeStatusResponse.uptime_since:type_name -> google.protobuf.Timestamp
|
|
|
|
3, // 20: mcp.v1.McpAgentService.Deploy:input_type -> mcp.v1.DeployRequest
|
|
|
|
38, // 20: mcp.v1.PurgeResponse.results:type_name -> mcp.v1.PurgeResult
|
|
|
|
6, // 21: mcp.v1.McpAgentService.StopService:input_type -> mcp.v1.StopServiceRequest
|
|
|
|
3, // 21: mcp.v1.McpAgentService.Deploy:input_type -> mcp.v1.DeployRequest
|
|
|
|
8, // 22: mcp.v1.McpAgentService.StartService:input_type -> mcp.v1.StartServiceRequest
|
|
|
|
12, // 22: mcp.v1.McpAgentService.UndeployService:input_type -> mcp.v1.UndeployServiceRequest
|
|
|
|
10, // 23: mcp.v1.McpAgentService.RestartService:input_type -> mcp.v1.RestartServiceRequest
|
|
|
|
6, // 23: mcp.v1.McpAgentService.StopService:input_type -> mcp.v1.StopServiceRequest
|
|
|
|
12, // 24: mcp.v1.McpAgentService.SyncDesiredState:input_type -> mcp.v1.SyncDesiredStateRequest
|
|
|
|
8, // 24: mcp.v1.McpAgentService.StartService:input_type -> mcp.v1.StartServiceRequest
|
|
|
|
15, // 25: mcp.v1.McpAgentService.ListServices:input_type -> mcp.v1.ListServicesRequest
|
|
|
|
10, // 25: mcp.v1.McpAgentService.RestartService:input_type -> mcp.v1.RestartServiceRequest
|
|
|
|
19, // 26: mcp.v1.McpAgentService.GetServiceStatus:input_type -> mcp.v1.GetServiceStatusRequest
|
|
|
|
14, // 26: mcp.v1.McpAgentService.SyncDesiredState:input_type -> mcp.v1.SyncDesiredStateRequest
|
|
|
|
23, // 27: mcp.v1.McpAgentService.LiveCheck:input_type -> mcp.v1.LiveCheckRequest
|
|
|
|
17, // 27: mcp.v1.McpAgentService.ListServices:input_type -> mcp.v1.ListServicesRequest
|
|
|
|
25, // 28: mcp.v1.McpAgentService.AdoptContainers:input_type -> mcp.v1.AdoptContainersRequest
|
|
|
|
21, // 28: mcp.v1.McpAgentService.GetServiceStatus:input_type -> mcp.v1.GetServiceStatusRequest
|
|
|
|
34, // 29: mcp.v1.McpAgentService.PurgeComponent:input_type -> mcp.v1.PurgeRequest
|
|
|
|
25, // 29: mcp.v1.McpAgentService.LiveCheck:input_type -> mcp.v1.LiveCheckRequest
|
|
|
|
28, // 30: mcp.v1.McpAgentService.PushFile:input_type -> mcp.v1.PushFileRequest
|
|
|
|
27, // 30: mcp.v1.McpAgentService.AdoptContainers:input_type -> mcp.v1.AdoptContainersRequest
|
|
|
|
30, // 31: mcp.v1.McpAgentService.PullFile:input_type -> mcp.v1.PullFileRequest
|
|
|
|
36, // 31: mcp.v1.McpAgentService.PurgeComponent:input_type -> mcp.v1.PurgeRequest
|
|
|
|
32, // 32: mcp.v1.McpAgentService.NodeStatus:input_type -> mcp.v1.NodeStatusRequest
|
|
|
|
30, // 32: mcp.v1.McpAgentService.PushFile:input_type -> mcp.v1.PushFileRequest
|
|
|
|
4, // 33: mcp.v1.McpAgentService.Deploy:output_type -> mcp.v1.DeployResponse
|
|
|
|
32, // 33: mcp.v1.McpAgentService.PullFile:input_type -> mcp.v1.PullFileRequest
|
|
|
|
7, // 34: mcp.v1.McpAgentService.StopService:output_type -> mcp.v1.StopServiceResponse
|
|
|
|
34, // 34: mcp.v1.McpAgentService.NodeStatus:input_type -> mcp.v1.NodeStatusRequest
|
|
|
|
9, // 35: mcp.v1.McpAgentService.StartService:output_type -> mcp.v1.StartServiceResponse
|
|
|
|
4, // 35: mcp.v1.McpAgentService.Deploy:output_type -> mcp.v1.DeployResponse
|
|
|
|
11, // 36: mcp.v1.McpAgentService.RestartService:output_type -> mcp.v1.RestartServiceResponse
|
|
|
|
13, // 36: mcp.v1.McpAgentService.UndeployService:output_type -> mcp.v1.UndeployServiceResponse
|
|
|
|
13, // 37: mcp.v1.McpAgentService.SyncDesiredState:output_type -> mcp.v1.SyncDesiredStateResponse
|
|
|
|
7, // 37: mcp.v1.McpAgentService.StopService:output_type -> mcp.v1.StopServiceResponse
|
|
|
|
18, // 38: mcp.v1.McpAgentService.ListServices:output_type -> mcp.v1.ListServicesResponse
|
|
|
|
9, // 38: mcp.v1.McpAgentService.StartService:output_type -> mcp.v1.StartServiceResponse
|
|
|
|
22, // 39: mcp.v1.McpAgentService.GetServiceStatus:output_type -> mcp.v1.GetServiceStatusResponse
|
|
|
|
11, // 39: mcp.v1.McpAgentService.RestartService:output_type -> mcp.v1.RestartServiceResponse
|
|
|
|
24, // 40: mcp.v1.McpAgentService.LiveCheck:output_type -> mcp.v1.LiveCheckResponse
|
|
|
|
15, // 40: mcp.v1.McpAgentService.SyncDesiredState:output_type -> mcp.v1.SyncDesiredStateResponse
|
|
|
|
27, // 41: mcp.v1.McpAgentService.AdoptContainers:output_type -> mcp.v1.AdoptContainersResponse
|
|
|
|
20, // 41: mcp.v1.McpAgentService.ListServices:output_type -> mcp.v1.ListServicesResponse
|
|
|
|
35, // 42: mcp.v1.McpAgentService.PurgeComponent:output_type -> mcp.v1.PurgeResponse
|
|
|
|
24, // 42: mcp.v1.McpAgentService.GetServiceStatus:output_type -> mcp.v1.GetServiceStatusResponse
|
|
|
|
29, // 43: mcp.v1.McpAgentService.PushFile:output_type -> mcp.v1.PushFileResponse
|
|
|
|
26, // 43: mcp.v1.McpAgentService.LiveCheck:output_type -> mcp.v1.LiveCheckResponse
|
|
|
|
31, // 44: mcp.v1.McpAgentService.PullFile:output_type -> mcp.v1.PullFileResponse
|
|
|
|
29, // 44: mcp.v1.McpAgentService.AdoptContainers:output_type -> mcp.v1.AdoptContainersResponse
|
|
|
|
33, // 45: mcp.v1.McpAgentService.NodeStatus:output_type -> mcp.v1.NodeStatusResponse
|
|
|
|
37, // 45: mcp.v1.McpAgentService.PurgeComponent:output_type -> mcp.v1.PurgeResponse
|
|
|
|
33, // [33:46] is the sub-list for method output_type
|
|
|
|
31, // 46: mcp.v1.McpAgentService.PushFile:output_type -> mcp.v1.PushFileResponse
|
|
|
|
20, // [20:33] is the sub-list for method input_type
|
|
|
|
33, // 47: mcp.v1.McpAgentService.PullFile:output_type -> mcp.v1.PullFileResponse
|
|
|
|
20, // [20:20] is the sub-list for extension type_name
|
|
|
|
35, // 48: mcp.v1.McpAgentService.NodeStatus:output_type -> mcp.v1.NodeStatusResponse
|
|
|
|
20, // [20:20] is the sub-list for extension extendee
|
|
|
|
35, // [35:49] is the sub-list for method output_type
|
|
|
|
0, // [0:20] is the sub-list for field type_name
|
|
|
|
21, // [21:35] is the sub-list for method input_type
|
|
|
|
|
|
|
|
21, // [21:21] is the sub-list for extension type_name
|
|
|
|
|
|
|
|
21, // [21:21] is the sub-list for extension extendee
|
|
|
|
|
|
|
|
0, // [0:21] is the sub-list for field type_name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func init() { file_proto_mcp_v1_mcp_proto_init() }
|
|
|
|
func init() { file_proto_mcp_v1_mcp_proto_init() }
|
|
|
|
@@ -2414,7 +2512,7 @@ func file_proto_mcp_v1_mcp_proto_init() {
|
|
|
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
|
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
|
|
RawDescriptor: unsafe.Slice(unsafe.StringData(file_proto_mcp_v1_mcp_proto_rawDesc), len(file_proto_mcp_v1_mcp_proto_rawDesc)),
|
|
|
|
RawDescriptor: unsafe.Slice(unsafe.StringData(file_proto_mcp_v1_mcp_proto_rawDesc), len(file_proto_mcp_v1_mcp_proto_rawDesc)),
|
|
|
|
NumEnums: 0,
|
|
|
|
NumEnums: 0,
|
|
|
|
NumMessages: 37,
|
|
|
|
NumMessages: 39,
|
|
|
|
NumExtensions: 0,
|
|
|
|
NumExtensions: 0,
|
|
|
|
NumServices: 1,
|
|
|
|
NumServices: 1,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|