mirror of
				https://github.com/onepanelio/onepanel.git
				synced 2025-10-31 16:56:19 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			539 lines
		
	
	
		
			18 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			539 lines
		
	
	
		
			18 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Code generated by protoc-gen-go. DO NOT EDIT.
 | |
| // versions:
 | |
| // 	protoc-gen-go v1.22.0
 | |
| // 	protoc        v3.11.4
 | |
| // source: namespace.proto
 | |
| 
 | |
| package api
 | |
| 
 | |
| import (
 | |
| 	context "context"
 | |
| 	proto "github.com/golang/protobuf/proto"
 | |
| 	_ "google.golang.org/genproto/googleapis/api/annotations"
 | |
| 	grpc "google.golang.org/grpc"
 | |
| 	codes "google.golang.org/grpc/codes"
 | |
| 	status "google.golang.org/grpc/status"
 | |
| 	protoreflect "google.golang.org/protobuf/reflect/protoreflect"
 | |
| 	protoimpl "google.golang.org/protobuf/runtime/protoimpl"
 | |
| 	reflect "reflect"
 | |
| 	sync "sync"
 | |
| )
 | |
| 
 | |
| const (
 | |
| 	// Verify that this generated code is sufficiently up-to-date.
 | |
| 	_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
 | |
| 	// Verify that runtime/protoimpl is sufficiently up-to-date.
 | |
| 	_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
 | |
| )
 | |
| 
 | |
| // This is a compile-time assertion that a sufficiently up-to-date version
 | |
| // of the legacy proto package is being used.
 | |
| const _ = proto.ProtoPackageIsVersion4
 | |
| 
 | |
| type ListNamespacesRequest struct {
 | |
| 	state         protoimpl.MessageState
 | |
| 	sizeCache     protoimpl.SizeCache
 | |
| 	unknownFields protoimpl.UnknownFields
 | |
| 
 | |
| 	PageSize int32  `protobuf:"varint,1,opt,name=pageSize,proto3" json:"pageSize,omitempty"`
 | |
| 	Page     int32  `protobuf:"varint,2,opt,name=page,proto3" json:"page,omitempty"`
 | |
| 	Query    string `protobuf:"bytes,3,opt,name=query,proto3" json:"query,omitempty"`
 | |
| }
 | |
| 
 | |
| func (x *ListNamespacesRequest) Reset() {
 | |
| 	*x = ListNamespacesRequest{}
 | |
| 	if protoimpl.UnsafeEnabled {
 | |
| 		mi := &file_namespace_proto_msgTypes[0]
 | |
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 		ms.StoreMessageInfo(mi)
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func (x *ListNamespacesRequest) String() string {
 | |
| 	return protoimpl.X.MessageStringOf(x)
 | |
| }
 | |
| 
 | |
| func (*ListNamespacesRequest) ProtoMessage() {}
 | |
| 
 | |
| func (x *ListNamespacesRequest) ProtoReflect() protoreflect.Message {
 | |
| 	mi := &file_namespace_proto_msgTypes[0]
 | |
| 	if protoimpl.UnsafeEnabled && x != nil {
 | |
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 		if ms.LoadMessageInfo() == nil {
 | |
| 			ms.StoreMessageInfo(mi)
 | |
| 		}
 | |
| 		return ms
 | |
| 	}
 | |
| 	return mi.MessageOf(x)
 | |
| }
 | |
| 
 | |
| // Deprecated: Use ListNamespacesRequest.ProtoReflect.Descriptor instead.
 | |
| func (*ListNamespacesRequest) Descriptor() ([]byte, []int) {
 | |
| 	return file_namespace_proto_rawDescGZIP(), []int{0}
 | |
| }
 | |
| 
 | |
| func (x *ListNamespacesRequest) GetPageSize() int32 {
 | |
| 	if x != nil {
 | |
| 		return x.PageSize
 | |
| 	}
 | |
| 	return 0
 | |
| }
 | |
| 
 | |
| func (x *ListNamespacesRequest) GetPage() int32 {
 | |
| 	if x != nil {
 | |
| 		return x.Page
 | |
| 	}
 | |
| 	return 0
 | |
| }
 | |
| 
 | |
| func (x *ListNamespacesRequest) GetQuery() string {
 | |
| 	if x != nil {
 | |
| 		return x.Query
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| type ListNamespacesResponse struct {
 | |
| 	state         protoimpl.MessageState
 | |
| 	sizeCache     protoimpl.SizeCache
 | |
| 	unknownFields protoimpl.UnknownFields
 | |
| 
 | |
| 	Count      int32        `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"`
 | |
| 	Namespaces []*Namespace `protobuf:"bytes,2,rep,name=namespaces,proto3" json:"namespaces,omitempty"`
 | |
| 	Page       int32        `protobuf:"varint,3,opt,name=page,proto3" json:"page,omitempty"`
 | |
| 	Pages      int32        `protobuf:"varint,4,opt,name=pages,proto3" json:"pages,omitempty"`
 | |
| 	TotalCount int32        `protobuf:"varint,5,opt,name=totalCount,proto3" json:"totalCount,omitempty"`
 | |
| }
 | |
| 
 | |
| func (x *ListNamespacesResponse) Reset() {
 | |
| 	*x = ListNamespacesResponse{}
 | |
| 	if protoimpl.UnsafeEnabled {
 | |
| 		mi := &file_namespace_proto_msgTypes[1]
 | |
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 		ms.StoreMessageInfo(mi)
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func (x *ListNamespacesResponse) String() string {
 | |
| 	return protoimpl.X.MessageStringOf(x)
 | |
| }
 | |
| 
 | |
| func (*ListNamespacesResponse) ProtoMessage() {}
 | |
| 
 | |
| func (x *ListNamespacesResponse) ProtoReflect() protoreflect.Message {
 | |
| 	mi := &file_namespace_proto_msgTypes[1]
 | |
| 	if protoimpl.UnsafeEnabled && x != nil {
 | |
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 		if ms.LoadMessageInfo() == nil {
 | |
| 			ms.StoreMessageInfo(mi)
 | |
| 		}
 | |
| 		return ms
 | |
| 	}
 | |
| 	return mi.MessageOf(x)
 | |
| }
 | |
| 
 | |
| // Deprecated: Use ListNamespacesResponse.ProtoReflect.Descriptor instead.
 | |
| func (*ListNamespacesResponse) Descriptor() ([]byte, []int) {
 | |
| 	return file_namespace_proto_rawDescGZIP(), []int{1}
 | |
| }
 | |
| 
 | |
| func (x *ListNamespacesResponse) GetCount() int32 {
 | |
| 	if x != nil {
 | |
| 		return x.Count
 | |
| 	}
 | |
| 	return 0
 | |
| }
 | |
| 
 | |
| func (x *ListNamespacesResponse) GetNamespaces() []*Namespace {
 | |
| 	if x != nil {
 | |
| 		return x.Namespaces
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (x *ListNamespacesResponse) GetPage() int32 {
 | |
| 	if x != nil {
 | |
| 		return x.Page
 | |
| 	}
 | |
| 	return 0
 | |
| }
 | |
| 
 | |
| func (x *ListNamespacesResponse) GetPages() int32 {
 | |
| 	if x != nil {
 | |
| 		return x.Pages
 | |
| 	}
 | |
| 	return 0
 | |
| }
 | |
| 
 | |
| func (x *ListNamespacesResponse) GetTotalCount() int32 {
 | |
| 	if x != nil {
 | |
| 		return x.TotalCount
 | |
| 	}
 | |
| 	return 0
 | |
| }
 | |
| 
 | |
| type CreateNamespaceRequest struct {
 | |
| 	state         protoimpl.MessageState
 | |
| 	sizeCache     protoimpl.SizeCache
 | |
| 	unknownFields protoimpl.UnknownFields
 | |
| 
 | |
| 	Namespace *Namespace `protobuf:"bytes,1,opt,name=namespace,proto3" json:"namespace,omitempty"`
 | |
| }
 | |
| 
 | |
| func (x *CreateNamespaceRequest) Reset() {
 | |
| 	*x = CreateNamespaceRequest{}
 | |
| 	if protoimpl.UnsafeEnabled {
 | |
| 		mi := &file_namespace_proto_msgTypes[2]
 | |
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 		ms.StoreMessageInfo(mi)
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func (x *CreateNamespaceRequest) String() string {
 | |
| 	return protoimpl.X.MessageStringOf(x)
 | |
| }
 | |
| 
 | |
| func (*CreateNamespaceRequest) ProtoMessage() {}
 | |
| 
 | |
| func (x *CreateNamespaceRequest) ProtoReflect() protoreflect.Message {
 | |
| 	mi := &file_namespace_proto_msgTypes[2]
 | |
| 	if protoimpl.UnsafeEnabled && x != nil {
 | |
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 		if ms.LoadMessageInfo() == nil {
 | |
| 			ms.StoreMessageInfo(mi)
 | |
| 		}
 | |
| 		return ms
 | |
| 	}
 | |
| 	return mi.MessageOf(x)
 | |
| }
 | |
| 
 | |
| // Deprecated: Use CreateNamespaceRequest.ProtoReflect.Descriptor instead.
 | |
| func (*CreateNamespaceRequest) Descriptor() ([]byte, []int) {
 | |
| 	return file_namespace_proto_rawDescGZIP(), []int{2}
 | |
| }
 | |
| 
 | |
| func (x *CreateNamespaceRequest) GetNamespace() *Namespace {
 | |
| 	if x != nil {
 | |
| 		return x.Namespace
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| type Namespace struct {
 | |
| 	state         protoimpl.MessageState
 | |
| 	sizeCache     protoimpl.SizeCache
 | |
| 	unknownFields protoimpl.UnknownFields
 | |
| 
 | |
| 	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
 | |
| }
 | |
| 
 | |
| func (x *Namespace) Reset() {
 | |
| 	*x = Namespace{}
 | |
| 	if protoimpl.UnsafeEnabled {
 | |
| 		mi := &file_namespace_proto_msgTypes[3]
 | |
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 		ms.StoreMessageInfo(mi)
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func (x *Namespace) String() string {
 | |
| 	return protoimpl.X.MessageStringOf(x)
 | |
| }
 | |
| 
 | |
| func (*Namespace) ProtoMessage() {}
 | |
| 
 | |
| func (x *Namespace) ProtoReflect() protoreflect.Message {
 | |
| 	mi := &file_namespace_proto_msgTypes[3]
 | |
| 	if protoimpl.UnsafeEnabled && x != nil {
 | |
| 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | |
| 		if ms.LoadMessageInfo() == nil {
 | |
| 			ms.StoreMessageInfo(mi)
 | |
| 		}
 | |
| 		return ms
 | |
| 	}
 | |
| 	return mi.MessageOf(x)
 | |
| }
 | |
| 
 | |
| // Deprecated: Use Namespace.ProtoReflect.Descriptor instead.
 | |
| func (*Namespace) Descriptor() ([]byte, []int) {
 | |
| 	return file_namespace_proto_rawDescGZIP(), []int{3}
 | |
| }
 | |
| 
 | |
| func (x *Namespace) GetName() string {
 | |
| 	if x != nil {
 | |
| 		return x.Name
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| var File_namespace_proto protoreflect.FileDescriptor
 | |
| 
 | |
| var file_namespace_proto_rawDesc = []byte{
 | |
| 	0x0a, 0x0f, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
 | |
| 	0x6f, 0x12, 0x03, 0x61, 0x70, 0x69, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
 | |
| 	0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70,
 | |
| 	0x72, 0x6f, 0x74, 0x6f, 0x22, 0x5d, 0x0a, 0x15, 0x4c, 0x69, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65,
 | |
| 	0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a,
 | |
| 	0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52,
 | |
| 	0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x67,
 | |
| 	0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x70, 0x61, 0x67, 0x65, 0x12, 0x14, 0x0a,
 | |
| 	0x05, 0x71, 0x75, 0x65, 0x72, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x71, 0x75,
 | |
| 	0x65, 0x72, 0x79, 0x22, 0xa8, 0x01, 0x0a, 0x16, 0x4c, 0x69, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65,
 | |
| 	0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14,
 | |
| 	0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x63,
 | |
| 	0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2e, 0x0a, 0x0a, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63,
 | |
| 	0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x4e,
 | |
| 	0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x0a, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x70,
 | |
| 	0x61, 0x63, 0x65, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x67, 0x65, 0x18, 0x03, 0x20, 0x01,
 | |
| 	0x28, 0x05, 0x52, 0x04, 0x70, 0x61, 0x67, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x61, 0x67, 0x65,
 | |
| 	0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x70, 0x61, 0x67, 0x65, 0x73, 0x12, 0x1e,
 | |
| 	0x0a, 0x0a, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x05, 0x20, 0x01,
 | |
| 	0x28, 0x05, 0x52, 0x0a, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0x46,
 | |
| 	0x0a, 0x16, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63,
 | |
| 	0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2c, 0x0a, 0x09, 0x6e, 0x61, 0x6d, 0x65,
 | |
| 	0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x61, 0x70,
 | |
| 	0x69, 0x2e, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x09, 0x6e, 0x61, 0x6d,
 | |
| 	0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x22, 0x1f, 0x0a, 0x09, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x70,
 | |
| 	0x61, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
 | |
| 	0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x32, 0xec, 0x01, 0x0a, 0x10, 0x4e, 0x61, 0x6d, 0x65,
 | |
| 	0x73, 0x70, 0x61, 0x63, 0x65, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x6b, 0x0a, 0x0e,
 | |
| 	0x4c, 0x69, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x12, 0x1a,
 | |
| 	0x2e, 0x61, 0x70, 0x69, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61,
 | |
| 	0x63, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e, 0x61, 0x70, 0x69,
 | |
| 	0x2e, 0x4c, 0x69, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x52,
 | |
| 	0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x12,
 | |
| 	0x18, 0x2f, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x31, 0x2f, 0x6e,
 | |
| 	0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x12, 0x6b, 0x0a, 0x0f, 0x43, 0x72, 0x65,
 | |
| 	0x61, 0x74, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x1b, 0x2e, 0x61,
 | |
| 	0x70, 0x69, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61,
 | |
| 	0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x0e, 0x2e, 0x61, 0x70, 0x69, 0x2e,
 | |
| 	0x4e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x22, 0x2b, 0x82, 0xd3, 0xe4, 0x93, 0x02,
 | |
| 	0x25, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x31,
 | |
| 	0x2f, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x73, 0x3a, 0x09, 0x6e, 0x61, 0x6d,
 | |
| 	0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
 | |
| }
 | |
| 
 | |
| var (
 | |
| 	file_namespace_proto_rawDescOnce sync.Once
 | |
| 	file_namespace_proto_rawDescData = file_namespace_proto_rawDesc
 | |
| )
 | |
| 
 | |
| func file_namespace_proto_rawDescGZIP() []byte {
 | |
| 	file_namespace_proto_rawDescOnce.Do(func() {
 | |
| 		file_namespace_proto_rawDescData = protoimpl.X.CompressGZIP(file_namespace_proto_rawDescData)
 | |
| 	})
 | |
| 	return file_namespace_proto_rawDescData
 | |
| }
 | |
| 
 | |
| var file_namespace_proto_msgTypes = make([]protoimpl.MessageInfo, 4)
 | |
| var file_namespace_proto_goTypes = []interface{}{
 | |
| 	(*ListNamespacesRequest)(nil),  // 0: api.ListNamespacesRequest
 | |
| 	(*ListNamespacesResponse)(nil), // 1: api.ListNamespacesResponse
 | |
| 	(*CreateNamespaceRequest)(nil), // 2: api.CreateNamespaceRequest
 | |
| 	(*Namespace)(nil),              // 3: api.Namespace
 | |
| }
 | |
| var file_namespace_proto_depIdxs = []int32{
 | |
| 	3, // 0: api.ListNamespacesResponse.namespaces:type_name -> api.Namespace
 | |
| 	3, // 1: api.CreateNamespaceRequest.namespace:type_name -> api.Namespace
 | |
| 	0, // 2: api.NamespaceService.ListNamespaces:input_type -> api.ListNamespacesRequest
 | |
| 	2, // 3: api.NamespaceService.CreateNamespace:input_type -> api.CreateNamespaceRequest
 | |
| 	1, // 4: api.NamespaceService.ListNamespaces:output_type -> api.ListNamespacesResponse
 | |
| 	3, // 5: api.NamespaceService.CreateNamespace:output_type -> api.Namespace
 | |
| 	4, // [4:6] is the sub-list for method output_type
 | |
| 	2, // [2:4] is the sub-list for method input_type
 | |
| 	2, // [2:2] is the sub-list for extension type_name
 | |
| 	2, // [2:2] is the sub-list for extension extendee
 | |
| 	0, // [0:2] is the sub-list for field type_name
 | |
| }
 | |
| 
 | |
| func init() { file_namespace_proto_init() }
 | |
| func file_namespace_proto_init() {
 | |
| 	if File_namespace_proto != nil {
 | |
| 		return
 | |
| 	}
 | |
| 	if !protoimpl.UnsafeEnabled {
 | |
| 		file_namespace_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
 | |
| 			switch v := v.(*ListNamespacesRequest); i {
 | |
| 			case 0:
 | |
| 				return &v.state
 | |
| 			case 1:
 | |
| 				return &v.sizeCache
 | |
| 			case 2:
 | |
| 				return &v.unknownFields
 | |
| 			default:
 | |
| 				return nil
 | |
| 			}
 | |
| 		}
 | |
| 		file_namespace_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
 | |
| 			switch v := v.(*ListNamespacesResponse); i {
 | |
| 			case 0:
 | |
| 				return &v.state
 | |
| 			case 1:
 | |
| 				return &v.sizeCache
 | |
| 			case 2:
 | |
| 				return &v.unknownFields
 | |
| 			default:
 | |
| 				return nil
 | |
| 			}
 | |
| 		}
 | |
| 		file_namespace_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
 | |
| 			switch v := v.(*CreateNamespaceRequest); i {
 | |
| 			case 0:
 | |
| 				return &v.state
 | |
| 			case 1:
 | |
| 				return &v.sizeCache
 | |
| 			case 2:
 | |
| 				return &v.unknownFields
 | |
| 			default:
 | |
| 				return nil
 | |
| 			}
 | |
| 		}
 | |
| 		file_namespace_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
 | |
| 			switch v := v.(*Namespace); i {
 | |
| 			case 0:
 | |
| 				return &v.state
 | |
| 			case 1:
 | |
| 				return &v.sizeCache
 | |
| 			case 2:
 | |
| 				return &v.unknownFields
 | |
| 			default:
 | |
| 				return nil
 | |
| 			}
 | |
| 		}
 | |
| 	}
 | |
| 	type x struct{}
 | |
| 	out := protoimpl.TypeBuilder{
 | |
| 		File: protoimpl.DescBuilder{
 | |
| 			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
 | |
| 			RawDescriptor: file_namespace_proto_rawDesc,
 | |
| 			NumEnums:      0,
 | |
| 			NumMessages:   4,
 | |
| 			NumExtensions: 0,
 | |
| 			NumServices:   1,
 | |
| 		},
 | |
| 		GoTypes:           file_namespace_proto_goTypes,
 | |
| 		DependencyIndexes: file_namespace_proto_depIdxs,
 | |
| 		MessageInfos:      file_namespace_proto_msgTypes,
 | |
| 	}.Build()
 | |
| 	File_namespace_proto = out.File
 | |
| 	file_namespace_proto_rawDesc = nil
 | |
| 	file_namespace_proto_goTypes = nil
 | |
| 	file_namespace_proto_depIdxs = nil
 | |
| }
 | |
| 
 | |
| // Reference imports to suppress errors if they are not otherwise used.
 | |
| var _ context.Context
 | |
| var _ grpc.ClientConnInterface
 | |
| 
 | |
| // 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.SupportPackageIsVersion6
 | |
| 
 | |
| // NamespaceServiceClient is the client API for NamespaceService service.
 | |
| //
 | |
| // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
 | |
| type NamespaceServiceClient interface {
 | |
| 	ListNamespaces(ctx context.Context, in *ListNamespacesRequest, opts ...grpc.CallOption) (*ListNamespacesResponse, error)
 | |
| 	CreateNamespace(ctx context.Context, in *CreateNamespaceRequest, opts ...grpc.CallOption) (*Namespace, error)
 | |
| }
 | |
| 
 | |
| type namespaceServiceClient struct {
 | |
| 	cc grpc.ClientConnInterface
 | |
| }
 | |
| 
 | |
| func NewNamespaceServiceClient(cc grpc.ClientConnInterface) NamespaceServiceClient {
 | |
| 	return &namespaceServiceClient{cc}
 | |
| }
 | |
| 
 | |
| func (c *namespaceServiceClient) ListNamespaces(ctx context.Context, in *ListNamespacesRequest, opts ...grpc.CallOption) (*ListNamespacesResponse, error) {
 | |
| 	out := new(ListNamespacesResponse)
 | |
| 	err := c.cc.Invoke(ctx, "/api.NamespaceService/ListNamespaces", in, out, opts...)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return out, nil
 | |
| }
 | |
| 
 | |
| func (c *namespaceServiceClient) CreateNamespace(ctx context.Context, in *CreateNamespaceRequest, opts ...grpc.CallOption) (*Namespace, error) {
 | |
| 	out := new(Namespace)
 | |
| 	err := c.cc.Invoke(ctx, "/api.NamespaceService/CreateNamespace", in, out, opts...)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return out, nil
 | |
| }
 | |
| 
 | |
| // NamespaceServiceServer is the server API for NamespaceService service.
 | |
| type NamespaceServiceServer interface {
 | |
| 	ListNamespaces(context.Context, *ListNamespacesRequest) (*ListNamespacesResponse, error)
 | |
| 	CreateNamespace(context.Context, *CreateNamespaceRequest) (*Namespace, error)
 | |
| }
 | |
| 
 | |
| // UnimplementedNamespaceServiceServer can be embedded to have forward compatible implementations.
 | |
| type UnimplementedNamespaceServiceServer struct {
 | |
| }
 | |
| 
 | |
| func (*UnimplementedNamespaceServiceServer) ListNamespaces(context.Context, *ListNamespacesRequest) (*ListNamespacesResponse, error) {
 | |
| 	return nil, status.Errorf(codes.Unimplemented, "method ListNamespaces not implemented")
 | |
| }
 | |
| func (*UnimplementedNamespaceServiceServer) CreateNamespace(context.Context, *CreateNamespaceRequest) (*Namespace, error) {
 | |
| 	return nil, status.Errorf(codes.Unimplemented, "method CreateNamespace not implemented")
 | |
| }
 | |
| 
 | |
| func RegisterNamespaceServiceServer(s *grpc.Server, srv NamespaceServiceServer) {
 | |
| 	s.RegisterService(&_NamespaceService_serviceDesc, srv)
 | |
| }
 | |
| 
 | |
| func _NamespaceService_ListNamespaces_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | |
| 	in := new(ListNamespacesRequest)
 | |
| 	if err := dec(in); err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	if interceptor == nil {
 | |
| 		return srv.(NamespaceServiceServer).ListNamespaces(ctx, in)
 | |
| 	}
 | |
| 	info := &grpc.UnaryServerInfo{
 | |
| 		Server:     srv,
 | |
| 		FullMethod: "/api.NamespaceService/ListNamespaces",
 | |
| 	}
 | |
| 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | |
| 		return srv.(NamespaceServiceServer).ListNamespaces(ctx, req.(*ListNamespacesRequest))
 | |
| 	}
 | |
| 	return interceptor(ctx, in, info, handler)
 | |
| }
 | |
| 
 | |
| func _NamespaceService_CreateNamespace_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | |
| 	in := new(CreateNamespaceRequest)
 | |
| 	if err := dec(in); err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	if interceptor == nil {
 | |
| 		return srv.(NamespaceServiceServer).CreateNamespace(ctx, in)
 | |
| 	}
 | |
| 	info := &grpc.UnaryServerInfo{
 | |
| 		Server:     srv,
 | |
| 		FullMethod: "/api.NamespaceService/CreateNamespace",
 | |
| 	}
 | |
| 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | |
| 		return srv.(NamespaceServiceServer).CreateNamespace(ctx, req.(*CreateNamespaceRequest))
 | |
| 	}
 | |
| 	return interceptor(ctx, in, info, handler)
 | |
| }
 | |
| 
 | |
| var _NamespaceService_serviceDesc = grpc.ServiceDesc{
 | |
| 	ServiceName: "api.NamespaceService",
 | |
| 	HandlerType: (*NamespaceServiceServer)(nil),
 | |
| 	Methods: []grpc.MethodDesc{
 | |
| 		{
 | |
| 			MethodName: "ListNamespaces",
 | |
| 			Handler:    _NamespaceService_ListNamespaces_Handler,
 | |
| 		},
 | |
| 		{
 | |
| 			MethodName: "CreateNamespace",
 | |
| 			Handler:    _NamespaceService_CreateNamespace_Handler,
 | |
| 		},
 | |
| 	},
 | |
| 	Streams:  []grpc.StreamDesc{},
 | |
| 	Metadata: "namespace.proto",
 | |
| }
 | 
