diff --git a/pkg/nsm/apis/pod2nsm/api.pb.go b/pkg/nsm/apis/pod2nsm/api.pb.go new file mode 100644 index 0000000000000..6dfcd5b204da5 --- /dev/null +++ b/pkg/nsm/apis/pod2nsm/api.pb.go @@ -0,0 +1,572 @@ +// Code generated by protoc-gen-go. DO NOT EDIT. +// source: api.proto + +/* +Package pod2nsm is a generated protocol buffer package. + +It is generated from these files: + api.proto + +It has these top-level messages: + DiscoverServiceRequest + ServiceDiscoveryResponse + PublishServiceRequest + PublishServiceResponse + DelistServiceRequest + DelistServiceResponse + ExposeChannelRequest + ExposeChannelResponse + ConcealChannelRequest + ConcealChannelResponse + CreateConnectionRequest + CreateConnectionResponse + DestroyConnectionRequest + DestroyConnectionResponse +*/ +package pod2nsm + +import proto "github.com/golang/protobuf/proto" +import fmt "fmt" +import math "math" + +import ( + context "golang.org/x/net/context" + grpc "google.golang.org/grpc" +) + +// Reference imports to suppress errors if they are not otherwise used. +var _ = proto.Marshal +var _ = fmt.Errorf +var _ = math.Inf + +// This is a compile-time assertion to ensure that this generated file +// is compatible with the proto package it is being compiled against. +// A compilation error at this line likely means your copy of the +// proto package needs to be updated. +const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package + +type DiscoverServiceRequest struct { + Labels map[string]string `protobuf:"bytes,1,rep,name=labels" json:"labels,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` +} + +func (m *DiscoverServiceRequest) Reset() { *m = DiscoverServiceRequest{} } +func (m *DiscoverServiceRequest) String() string { return proto.CompactTextString(m) } +func (*DiscoverServiceRequest) ProtoMessage() {} +func (*DiscoverServiceRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} } + +func (m *DiscoverServiceRequest) GetLabels() map[string]string { + if m != nil { + return m.Labels + } + return nil +} + +type ServiceDiscoveryResponse struct { + ServiceIds []string `protobuf:"bytes,1,rep,name=service_ids,json=serviceIds" json:"service_ids,omitempty"` +} + +func (m *ServiceDiscoveryResponse) Reset() { *m = ServiceDiscoveryResponse{} } +func (m *ServiceDiscoveryResponse) String() string { return proto.CompactTextString(m) } +func (*ServiceDiscoveryResponse) ProtoMessage() {} +func (*ServiceDiscoveryResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} } + +func (m *ServiceDiscoveryResponse) GetServiceIds() []string { + if m != nil { + return m.ServiceIds + } + return nil +} + +type PublishServiceRequest struct { + Labels map[string]string `protobuf:"bytes,1,rep,name=labels" json:"labels,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` +} + +func (m *PublishServiceRequest) Reset() { *m = PublishServiceRequest{} } +func (m *PublishServiceRequest) String() string { return proto.CompactTextString(m) } +func (*PublishServiceRequest) ProtoMessage() {} +func (*PublishServiceRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} } + +func (m *PublishServiceRequest) GetLabels() map[string]string { + if m != nil { + return m.Labels + } + return nil +} + +type PublishServiceResponse struct { + ServiceId string `protobuf:"bytes,1,opt,name=service_id,json=serviceId" json:"service_id,omitempty"` +} + +func (m *PublishServiceResponse) Reset() { *m = PublishServiceResponse{} } +func (m *PublishServiceResponse) String() string { return proto.CompactTextString(m) } +func (*PublishServiceResponse) ProtoMessage() {} +func (*PublishServiceResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} } + +func (m *PublishServiceResponse) GetServiceId() string { + if m != nil { + return m.ServiceId + } + return "" +} + +type DelistServiceRequest struct { + ServiceId string `protobuf:"bytes,1,opt,name=service_id,json=serviceId" json:"service_id,omitempty"` +} + +func (m *DelistServiceRequest) Reset() { *m = DelistServiceRequest{} } +func (m *DelistServiceRequest) String() string { return proto.CompactTextString(m) } +func (*DelistServiceRequest) ProtoMessage() {} +func (*DelistServiceRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} } + +func (m *DelistServiceRequest) GetServiceId() string { + if m != nil { + return m.ServiceId + } + return "" +} + +type DelistServiceResponse struct { +} + +func (m *DelistServiceResponse) Reset() { *m = DelistServiceResponse{} } +func (m *DelistServiceResponse) String() string { return proto.CompactTextString(m) } +func (*DelistServiceResponse) ProtoMessage() {} +func (*DelistServiceResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} } + +type ExposeChannelRequest struct { + Labels map[string]string `protobuf:"bytes,1,rep,name=labels" json:"labels,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` +} + +func (m *ExposeChannelRequest) Reset() { *m = ExposeChannelRequest{} } +func (m *ExposeChannelRequest) String() string { return proto.CompactTextString(m) } +func (*ExposeChannelRequest) ProtoMessage() {} +func (*ExposeChannelRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} } + +func (m *ExposeChannelRequest) GetLabels() map[string]string { + if m != nil { + return m.Labels + } + return nil +} + +type ExposeChannelResponse struct { + ChannelId string `protobuf:"bytes,1,opt,name=channel_id,json=channelId" json:"channel_id,omitempty"` +} + +func (m *ExposeChannelResponse) Reset() { *m = ExposeChannelResponse{} } +func (m *ExposeChannelResponse) String() string { return proto.CompactTextString(m) } +func (*ExposeChannelResponse) ProtoMessage() {} +func (*ExposeChannelResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} } + +func (m *ExposeChannelResponse) GetChannelId() string { + if m != nil { + return m.ChannelId + } + return "" +} + +type ConcealChannelRequest struct { + ChannelId string `protobuf:"bytes,1,opt,name=channel_id,json=channelId" json:"channel_id,omitempty"` +} + +func (m *ConcealChannelRequest) Reset() { *m = ConcealChannelRequest{} } +func (m *ConcealChannelRequest) String() string { return proto.CompactTextString(m) } +func (*ConcealChannelRequest) ProtoMessage() {} +func (*ConcealChannelRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} } + +func (m *ConcealChannelRequest) GetChannelId() string { + if m != nil { + return m.ChannelId + } + return "" +} + +type ConcealChannelResponse struct { +} + +func (m *ConcealChannelResponse) Reset() { *m = ConcealChannelResponse{} } +func (m *ConcealChannelResponse) String() string { return proto.CompactTextString(m) } +func (*ConcealChannelResponse) ProtoMessage() {} +func (*ConcealChannelResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{9} } + +type CreateConnectionRequest struct { + Labels map[string]string `protobuf:"bytes,1,rep,name=labels" json:"labels,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` +} + +func (m *CreateConnectionRequest) Reset() { *m = CreateConnectionRequest{} } +func (m *CreateConnectionRequest) String() string { return proto.CompactTextString(m) } +func (*CreateConnectionRequest) ProtoMessage() {} +func (*CreateConnectionRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10} } + +func (m *CreateConnectionRequest) GetLabels() map[string]string { + if m != nil { + return m.Labels + } + return nil +} + +type CreateConnectionResponse struct { + ConnectionId string `protobuf:"bytes,1,opt,name=connection_id,json=connectionId" json:"connection_id,omitempty"` +} + +func (m *CreateConnectionResponse) Reset() { *m = CreateConnectionResponse{} } +func (m *CreateConnectionResponse) String() string { return proto.CompactTextString(m) } +func (*CreateConnectionResponse) ProtoMessage() {} +func (*CreateConnectionResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{11} } + +func (m *CreateConnectionResponse) GetConnectionId() string { + if m != nil { + return m.ConnectionId + } + return "" +} + +type DestroyConnectionRequest struct { + ConnectionId string `protobuf:"bytes,1,opt,name=connection_id,json=connectionId" json:"connection_id,omitempty"` +} + +func (m *DestroyConnectionRequest) Reset() { *m = DestroyConnectionRequest{} } +func (m *DestroyConnectionRequest) String() string { return proto.CompactTextString(m) } +func (*DestroyConnectionRequest) ProtoMessage() {} +func (*DestroyConnectionRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{12} } + +func (m *DestroyConnectionRequest) GetConnectionId() string { + if m != nil { + return m.ConnectionId + } + return "" +} + +type DestroyConnectionResponse struct { +} + +func (m *DestroyConnectionResponse) Reset() { *m = DestroyConnectionResponse{} } +func (m *DestroyConnectionResponse) String() string { return proto.CompactTextString(m) } +func (*DestroyConnectionResponse) ProtoMessage() {} +func (*DestroyConnectionResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{13} } + +func init() { + proto.RegisterType((*DiscoverServiceRequest)(nil), "pod2nsm.DiscoverServiceRequest") + proto.RegisterType((*ServiceDiscoveryResponse)(nil), "pod2nsm.ServiceDiscoveryResponse") + proto.RegisterType((*PublishServiceRequest)(nil), "pod2nsm.PublishServiceRequest") + proto.RegisterType((*PublishServiceResponse)(nil), "pod2nsm.PublishServiceResponse") + proto.RegisterType((*DelistServiceRequest)(nil), "pod2nsm.DelistServiceRequest") + proto.RegisterType((*DelistServiceResponse)(nil), "pod2nsm.DelistServiceResponse") + proto.RegisterType((*ExposeChannelRequest)(nil), "pod2nsm.ExposeChannelRequest") + proto.RegisterType((*ExposeChannelResponse)(nil), "pod2nsm.ExposeChannelResponse") + proto.RegisterType((*ConcealChannelRequest)(nil), "pod2nsm.ConcealChannelRequest") + proto.RegisterType((*ConcealChannelResponse)(nil), "pod2nsm.ConcealChannelResponse") + proto.RegisterType((*CreateConnectionRequest)(nil), "pod2nsm.CreateConnectionRequest") + proto.RegisterType((*CreateConnectionResponse)(nil), "pod2nsm.CreateConnectionResponse") + proto.RegisterType((*DestroyConnectionRequest)(nil), "pod2nsm.DestroyConnectionRequest") + proto.RegisterType((*DestroyConnectionResponse)(nil), "pod2nsm.DestroyConnectionResponse") +} + +// Reference imports to suppress errors if they are not otherwise used. +var _ context.Context +var _ grpc.ClientConn + +// This is a compile-time assertion to ensure that this generated file +// is compatible with the grpc package it is being compiled against. +const _ = grpc.SupportPackageIsVersion4 + +// Client API for NetworkServices service + +type NetworkServicesClient interface { + DiscoverService(ctx context.Context, in *DiscoverServiceRequest, opts ...grpc.CallOption) (*ServiceDiscoveryResponse, error) + PublishService(ctx context.Context, in *PublishServiceRequest, opts ...grpc.CallOption) (*PublishServiceResponse, error) + DelistService(ctx context.Context, in *DelistServiceRequest, opts ...grpc.CallOption) (*DelistServiceResponse, error) + ExposeChannel(ctx context.Context, in *ExposeChannelRequest, opts ...grpc.CallOption) (*ExposeChannelResponse, error) + ConcealChannel(ctx context.Context, in *ConcealChannelRequest, opts ...grpc.CallOption) (*ConcealChannelResponse, error) + CreateConnection(ctx context.Context, in *CreateConnectionRequest, opts ...grpc.CallOption) (*CreateConnectionResponse, error) + DestroyConnection(ctx context.Context, in *DestroyConnectionRequest, opts ...grpc.CallOption) (*DestroyConnectionResponse, error) +} + +type networkServicesClient struct { + cc *grpc.ClientConn +} + +func NewNetworkServicesClient(cc *grpc.ClientConn) NetworkServicesClient { + return &networkServicesClient{cc} +} + +func (c *networkServicesClient) DiscoverService(ctx context.Context, in *DiscoverServiceRequest, opts ...grpc.CallOption) (*ServiceDiscoveryResponse, error) { + out := new(ServiceDiscoveryResponse) + err := grpc.Invoke(ctx, "/pod2nsm.NetworkServices/DiscoverService", in, out, c.cc, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *networkServicesClient) PublishService(ctx context.Context, in *PublishServiceRequest, opts ...grpc.CallOption) (*PublishServiceResponse, error) { + out := new(PublishServiceResponse) + err := grpc.Invoke(ctx, "/pod2nsm.NetworkServices/PublishService", in, out, c.cc, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *networkServicesClient) DelistService(ctx context.Context, in *DelistServiceRequest, opts ...grpc.CallOption) (*DelistServiceResponse, error) { + out := new(DelistServiceResponse) + err := grpc.Invoke(ctx, "/pod2nsm.NetworkServices/DelistService", in, out, c.cc, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *networkServicesClient) ExposeChannel(ctx context.Context, in *ExposeChannelRequest, opts ...grpc.CallOption) (*ExposeChannelResponse, error) { + out := new(ExposeChannelResponse) + err := grpc.Invoke(ctx, "/pod2nsm.NetworkServices/ExposeChannel", in, out, c.cc, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *networkServicesClient) ConcealChannel(ctx context.Context, in *ConcealChannelRequest, opts ...grpc.CallOption) (*ConcealChannelResponse, error) { + out := new(ConcealChannelResponse) + err := grpc.Invoke(ctx, "/pod2nsm.NetworkServices/ConcealChannel", in, out, c.cc, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *networkServicesClient) CreateConnection(ctx context.Context, in *CreateConnectionRequest, opts ...grpc.CallOption) (*CreateConnectionResponse, error) { + out := new(CreateConnectionResponse) + err := grpc.Invoke(ctx, "/pod2nsm.NetworkServices/CreateConnection", in, out, c.cc, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *networkServicesClient) DestroyConnection(ctx context.Context, in *DestroyConnectionRequest, opts ...grpc.CallOption) (*DestroyConnectionResponse, error) { + out := new(DestroyConnectionResponse) + err := grpc.Invoke(ctx, "/pod2nsm.NetworkServices/DestroyConnection", in, out, c.cc, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +// Server API for NetworkServices service + +type NetworkServicesServer interface { + DiscoverService(context.Context, *DiscoverServiceRequest) (*ServiceDiscoveryResponse, error) + PublishService(context.Context, *PublishServiceRequest) (*PublishServiceResponse, error) + DelistService(context.Context, *DelistServiceRequest) (*DelistServiceResponse, error) + ExposeChannel(context.Context, *ExposeChannelRequest) (*ExposeChannelResponse, error) + ConcealChannel(context.Context, *ConcealChannelRequest) (*ConcealChannelResponse, error) + CreateConnection(context.Context, *CreateConnectionRequest) (*CreateConnectionResponse, error) + DestroyConnection(context.Context, *DestroyConnectionRequest) (*DestroyConnectionResponse, error) +} + +func RegisterNetworkServicesServer(s *grpc.Server, srv NetworkServicesServer) { + s.RegisterService(&_NetworkServices_serviceDesc, srv) +} + +func _NetworkServices_DiscoverService_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(DiscoverServiceRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(NetworkServicesServer).DiscoverService(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/pod2nsm.NetworkServices/DiscoverService", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(NetworkServicesServer).DiscoverService(ctx, req.(*DiscoverServiceRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _NetworkServices_PublishService_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(PublishServiceRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(NetworkServicesServer).PublishService(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/pod2nsm.NetworkServices/PublishService", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(NetworkServicesServer).PublishService(ctx, req.(*PublishServiceRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _NetworkServices_DelistService_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(DelistServiceRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(NetworkServicesServer).DelistService(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/pod2nsm.NetworkServices/DelistService", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(NetworkServicesServer).DelistService(ctx, req.(*DelistServiceRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _NetworkServices_ExposeChannel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(ExposeChannelRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(NetworkServicesServer).ExposeChannel(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/pod2nsm.NetworkServices/ExposeChannel", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(NetworkServicesServer).ExposeChannel(ctx, req.(*ExposeChannelRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _NetworkServices_ConcealChannel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(ConcealChannelRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(NetworkServicesServer).ConcealChannel(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/pod2nsm.NetworkServices/ConcealChannel", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(NetworkServicesServer).ConcealChannel(ctx, req.(*ConcealChannelRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _NetworkServices_CreateConnection_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(CreateConnectionRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(NetworkServicesServer).CreateConnection(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/pod2nsm.NetworkServices/CreateConnection", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(NetworkServicesServer).CreateConnection(ctx, req.(*CreateConnectionRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _NetworkServices_DestroyConnection_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(DestroyConnectionRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(NetworkServicesServer).DestroyConnection(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/pod2nsm.NetworkServices/DestroyConnection", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(NetworkServicesServer).DestroyConnection(ctx, req.(*DestroyConnectionRequest)) + } + return interceptor(ctx, in, info, handler) +} + +var _NetworkServices_serviceDesc = grpc.ServiceDesc{ + ServiceName: "pod2nsm.NetworkServices", + HandlerType: (*NetworkServicesServer)(nil), + Methods: []grpc.MethodDesc{ + { + MethodName: "DiscoverService", + Handler: _NetworkServices_DiscoverService_Handler, + }, + { + MethodName: "PublishService", + Handler: _NetworkServices_PublishService_Handler, + }, + { + MethodName: "DelistService", + Handler: _NetworkServices_DelistService_Handler, + }, + { + MethodName: "ExposeChannel", + Handler: _NetworkServices_ExposeChannel_Handler, + }, + { + MethodName: "ConcealChannel", + Handler: _NetworkServices_ConcealChannel_Handler, + }, + { + MethodName: "CreateConnection", + Handler: _NetworkServices_CreateConnection_Handler, + }, + { + MethodName: "DestroyConnection", + Handler: _NetworkServices_DestroyConnection_Handler, + }, + }, + Streams: []grpc.StreamDesc{}, + Metadata: "api.proto", +} + +func init() { proto.RegisterFile("api.proto", fileDescriptor0) } + +var fileDescriptor0 = []byte{ + // 516 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x55, 0x4d, 0x6f, 0xd3, 0x40, + 0x10, 0x95, 0x5b, 0x28, 0xca, 0x84, 0x7e, 0xb0, 0x4a, 0x52, 0x63, 0xd4, 0x26, 0x35, 0x97, 0xf2, + 0xa1, 0x1c, 0x82, 0xf8, 0x3e, 0x20, 0x70, 0x7a, 0x88, 0x84, 0x2a, 0x6a, 0x84, 0x90, 0xb8, 0x20, + 0xc7, 0x1e, 0xa9, 0x56, 0xcd, 0xae, 0xf1, 0x6e, 0x02, 0xf9, 0x1f, 0x08, 0x21, 0xfe, 0x1e, 0x7f, + 0x04, 0x25, 0xde, 0xd8, 0x9b, 0xcd, 0x3a, 0xe9, 0x21, 0xb7, 0x64, 0x76, 0xde, 0x9b, 0x7d, 0x2f, + 0x6f, 0x36, 0x50, 0x0b, 0xd2, 0xb8, 0x9b, 0x66, 0x4c, 0x30, 0x72, 0x2b, 0x65, 0x51, 0x8f, 0xf2, + 0x6f, 0xee, 0x1f, 0x0b, 0x5a, 0xfd, 0x98, 0x87, 0x6c, 0x8c, 0xd9, 0x47, 0xcc, 0xc6, 0x71, 0x88, + 0x3e, 0x7e, 0x1f, 0x21, 0x17, 0xc4, 0x83, 0x9d, 0x24, 0x18, 0x62, 0xc2, 0x6d, 0xab, 0xb3, 0x7d, + 0x5a, 0xef, 0x3d, 0xea, 0x4a, 0x50, 0xd7, 0x0c, 0xe8, 0xbe, 0x9f, 0x75, 0x9f, 0x51, 0x91, 0x4d, + 0x7c, 0x09, 0x75, 0x5e, 0x42, 0x5d, 0x29, 0x93, 0x03, 0xd8, 0xbe, 0xc2, 0x89, 0x6d, 0x75, 0xac, + 0xd3, 0x9a, 0x3f, 0xfd, 0x48, 0x1a, 0x70, 0x73, 0x1c, 0x24, 0x23, 0xb4, 0xb7, 0x66, 0xb5, 0xfc, + 0xcb, 0xab, 0xad, 0x17, 0x96, 0xfb, 0x1a, 0x6c, 0x39, 0x60, 0x3e, 0x6f, 0xe2, 0x23, 0x4f, 0x19, + 0xe5, 0x48, 0xda, 0x50, 0xe7, 0xf9, 0xd9, 0xd7, 0x38, 0xca, 0x2f, 0x58, 0xf3, 0x41, 0x96, 0x06, + 0x11, 0x77, 0x7f, 0x5b, 0xd0, 0xfc, 0x30, 0x1a, 0x26, 0x31, 0xbf, 0xd4, 0x64, 0xbd, 0xd3, 0x64, + 0x3d, 0x2c, 0x64, 0x19, 0xfb, 0x37, 0xad, 0xea, 0x39, 0xb4, 0xf4, 0x39, 0x52, 0xd3, 0x11, 0x40, + 0xa9, 0x49, 0x92, 0xd5, 0x0a, 0x49, 0xee, 0x53, 0x68, 0xf4, 0x31, 0x89, 0xb9, 0xd0, 0xf4, 0xac, + 0x81, 0x1d, 0x42, 0x53, 0x83, 0xe5, 0xe3, 0xdc, 0x5f, 0x16, 0x34, 0xce, 0x7e, 0xa6, 0x8c, 0xa3, + 0x77, 0x19, 0x50, 0x8a, 0xc9, 0x9c, 0xf0, 0xad, 0x66, 0xd0, 0x83, 0xc2, 0x20, 0x53, 0xfb, 0xa6, + 0xfd, 0x79, 0x06, 0x4d, 0x6d, 0x4c, 0x69, 0x4f, 0x98, 0x97, 0x14, 0x9d, 0xb2, 0x32, 0x88, 0xa6, + 0x38, 0x8f, 0xd1, 0x10, 0x83, 0x44, 0x93, 0xb3, 0x06, 0x67, 0x43, 0x4b, 0xc7, 0x49, 0x83, 0xfe, + 0x5a, 0x70, 0xe8, 0x65, 0x18, 0x08, 0xf4, 0x18, 0xa5, 0x18, 0x8a, 0x98, 0xd1, 0x39, 0x69, 0x5f, + 0xf3, 0xe8, 0x71, 0xe1, 0x51, 0x05, 0x62, 0xd3, 0x36, 0xbd, 0x01, 0x7b, 0x79, 0x92, 0x74, 0xea, + 0x3e, 0xec, 0x86, 0x45, 0xb5, 0x14, 0x7d, 0xbb, 0x2c, 0x0e, 0xa2, 0x29, 0x41, 0x1f, 0xb9, 0xc8, + 0xd8, 0x64, 0x59, 0xdd, 0xb5, 0x08, 0xee, 0xc1, 0x5d, 0x03, 0x41, 0x7e, 0x85, 0xde, 0xbf, 0x1b, + 0xb0, 0x7f, 0x8e, 0xe2, 0x07, 0xcb, 0xae, 0x64, 0xee, 0x38, 0xf9, 0x04, 0xfb, 0xda, 0xc3, 0x41, + 0xda, 0x6b, 0x9e, 0x14, 0xe7, 0xa4, 0x68, 0xa8, 0x7c, 0x0a, 0x2e, 0x60, 0x6f, 0x71, 0xa1, 0xc8, + 0xf1, 0xea, 0x8d, 0x76, 0xda, 0x95, 0xe7, 0x92, 0xf2, 0x1c, 0x76, 0x17, 0x76, 0x86, 0x1c, 0x95, + 0xf7, 0x34, 0xac, 0xa0, 0x73, 0x5c, 0x75, 0x5c, 0xf2, 0x2d, 0x64, 0x5a, 0xe1, 0x33, 0xad, 0x94, + 0xc2, 0x67, 0x5e, 0x85, 0x0b, 0xd8, 0x5b, 0xcc, 0xac, 0x22, 0xd9, 0xb8, 0x04, 0x8a, 0x64, 0x73, + 0xd8, 0xc9, 0x67, 0x38, 0xd0, 0xf3, 0x44, 0x3a, 0xeb, 0x42, 0xad, 0xfc, 0x3c, 0x95, 0x61, 0xfc, + 0x02, 0x77, 0x96, 0x62, 0x42, 0x4e, 0x14, 0xc3, 0xcc, 0x19, 0x74, 0xdc, 0x55, 0x2d, 0x39, 0xf7, + 0x70, 0x67, 0xf6, 0x67, 0xf6, 0xe4, 0x7f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x6c, 0x9d, 0x7b, 0x2c, + 0xd9, 0x06, 0x00, 0x00, +} diff --git a/pkg/nsm/apis/pod2nsm/api.proto b/pkg/nsm/apis/pod2nsm/api.proto index 6cc92557c6d34..94eea4ea6c746 100644 --- a/pkg/nsm/apis/pod2nsm/api.proto +++ b/pkg/nsm/apis/pod2nsm/api.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package networkservice; +package pod2nsm; // NETWORK SERVICES