github.com/cloudwan/edgelq-sdk@v1.15.4/logging/resources/v1alpha2/log_descriptor/log_descriptor.pb.go (about)

     1  // Code generated by protoc-gen-goten-go
     2  // File: edgelq/logging/proto/v1alpha2/log_descriptor.proto
     3  // DO NOT EDIT!!!
     4  
     5  package log_descriptor
     6  
     7  import (
     8  	"fmt"
     9  	"reflect"
    10  	"sync"
    11  
    12  	"google.golang.org/protobuf/encoding/protojson"
    13  	"google.golang.org/protobuf/proto"
    14  	preflect "google.golang.org/protobuf/reflect/protoreflect"
    15  	"google.golang.org/protobuf/runtime/protoimpl"
    16  )
    17  
    18  // proto imports
    19  import (
    20  	iam_organization "github.com/cloudwan/edgelq-sdk/iam/resources/v1alpha2/organization"
    21  	iam_project "github.com/cloudwan/edgelq-sdk/iam/resources/v1alpha2/project"
    22  	common "github.com/cloudwan/edgelq-sdk/logging/resources/v1alpha2/common"
    23  	meta "github.com/cloudwan/goten-sdk/types/meta"
    24  )
    25  
    26  // Reference imports to suppress errors if they are not otherwise used.
    27  var (
    28  	_ = fmt.Errorf
    29  	_ = reflect.Method{}
    30  	_ = sync.Once{}
    31  
    32  	_ = protojson.MarshalOptions{}
    33  	_ = proto.MarshalOptions{}
    34  	_ = preflect.Value{}
    35  	_ = protoimpl.DescBuilder{}
    36  )
    37  
    38  // make sure we're using proto imports
    39  var (
    40  	_ = &iam_organization.Organization{}
    41  	_ = &iam_project.Project{}
    42  	_ = &common.LabelDescriptor{}
    43  	_ = &meta.Meta{}
    44  )
    45  
    46  const (
    47  	// Verify that this generated code is sufficiently up-to-date.
    48  	_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
    49  	// Verify that runtime/protoimpl is sufficiently up-to-date.
    50  	_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
    51  )
    52  
    53  // LogDescriptor Resource
    54  type LogDescriptor struct {
    55  	state         protoimpl.MessageState
    56  	sizeCache     protoimpl.SizeCache
    57  	unknownFields protoimpl.UnknownFields
    58  	// Name of LogDescriptor - contains service name followed by name defined
    59  	// by developer, separated by '/' sign. Example name:
    60  	// "devices.edgelq.com/DeviceFailure"
    61  	Name *Name `protobuf:"bytes,1,opt,customtype=Name,name=name,proto3" json:"name,omitempty"`
    62  	// Optional. A concise name for the log type that might be
    63  	// displayed in user interfaces. It should be a Title Cased Noun Phrase,
    64  	// without any article or other determiners.
    65  	DisplayName string `protobuf:"bytes,2,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
    66  	// Optional. A detailed description of the log type that might
    67  	// be used in documentation.
    68  	Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
    69  	// A set of labels used to describe instances of this log type.
    70  	Labels []*common.LabelDescriptor `protobuf:"bytes,4,rep,name=labels,proto3" json:"labels,omitempty"`
    71  	// Promoted Label Key Sets allow defining multiple indexing rules for
    72  	// underlying backend enabling query optimizations.
    73  	PromotedLabelKeySets []*common.LabelKeySet `protobuf:"bytes,5,rep,name=promoted_label_key_sets,json=promotedLabelKeySets,proto3" json:"promoted_label_key_sets,omitempty"`
    74  	// Metadata
    75  	Metadata *meta.Meta `protobuf:"bytes,6,opt,name=metadata,proto3" json:"metadata,omitempty"`
    76  }
    77  
    78  func (m *LogDescriptor) Reset() {
    79  	*m = LogDescriptor{}
    80  	if protoimpl.UnsafeEnabled {
    81  		mi := &edgelq_logging_proto_v1alpha2_log_descriptor_proto_msgTypes[0]
    82  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m))
    83  		ms.StoreMessageInfo(mi)
    84  	}
    85  }
    86  
    87  func (m *LogDescriptor) String() string {
    88  	return protoimpl.X.MessageStringOf(m)
    89  }
    90  
    91  func (*LogDescriptor) ProtoMessage() {}
    92  
    93  func (m *LogDescriptor) ProtoReflect() preflect.Message {
    94  	mi := &edgelq_logging_proto_v1alpha2_log_descriptor_proto_msgTypes[0]
    95  	if protoimpl.UnsafeEnabled && m != nil {
    96  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m))
    97  		if ms.LoadMessageInfo() == nil {
    98  			ms.StoreMessageInfo(mi)
    99  		}
   100  		return ms
   101  	}
   102  	return mi.MessageOf(m)
   103  }
   104  
   105  func (*LogDescriptor) GotenMessage() {}
   106  
   107  // Deprecated, Use LogDescriptor.ProtoReflect.Descriptor instead.
   108  func (*LogDescriptor) Descriptor() ([]byte, []int) {
   109  	return edgelq_logging_proto_v1alpha2_log_descriptor_proto_rawDescGZIP(), []int{0}
   110  }
   111  
   112  func (m *LogDescriptor) Unmarshal(b []byte) error {
   113  	return proto.Unmarshal(b, m)
   114  }
   115  
   116  func (m *LogDescriptor) Marshal() ([]byte, error) {
   117  	return proto.Marshal(m)
   118  }
   119  
   120  func (m *LogDescriptor) MarshalJSON() ([]byte, error) {
   121  	return protojson.MarshalOptions{}.Marshal(m)
   122  }
   123  
   124  func (m *LogDescriptor) UnmarshalJSON(data []byte) error {
   125  	return protojson.Unmarshal(data, m)
   126  }
   127  
   128  func (m *LogDescriptor) GetName() *Name {
   129  	if m != nil {
   130  		return m.Name
   131  	}
   132  	return nil
   133  }
   134  
   135  func (m *LogDescriptor) GetDisplayName() string {
   136  	if m != nil {
   137  		return m.DisplayName
   138  	}
   139  	return ""
   140  }
   141  
   142  func (m *LogDescriptor) GetDescription() string {
   143  	if m != nil {
   144  		return m.Description
   145  	}
   146  	return ""
   147  }
   148  
   149  func (m *LogDescriptor) GetLabels() []*common.LabelDescriptor {
   150  	if m != nil {
   151  		return m.Labels
   152  	}
   153  	return nil
   154  }
   155  
   156  func (m *LogDescriptor) GetPromotedLabelKeySets() []*common.LabelKeySet {
   157  	if m != nil {
   158  		return m.PromotedLabelKeySets
   159  	}
   160  	return nil
   161  }
   162  
   163  func (m *LogDescriptor) GetMetadata() *meta.Meta {
   164  	if m != nil {
   165  		return m.Metadata
   166  	}
   167  	return nil
   168  }
   169  
   170  func (m *LogDescriptor) SetName(fv *Name) {
   171  	if m == nil {
   172  		panic(fmt.Errorf("can't set %s on nil %s", "Name", "LogDescriptor"))
   173  	}
   174  	m.Name = fv
   175  }
   176  
   177  func (m *LogDescriptor) SetDisplayName(fv string) {
   178  	if m == nil {
   179  		panic(fmt.Errorf("can't set %s on nil %s", "DisplayName", "LogDescriptor"))
   180  	}
   181  	m.DisplayName = fv
   182  }
   183  
   184  func (m *LogDescriptor) SetDescription(fv string) {
   185  	if m == nil {
   186  		panic(fmt.Errorf("can't set %s on nil %s", "Description", "LogDescriptor"))
   187  	}
   188  	m.Description = fv
   189  }
   190  
   191  func (m *LogDescriptor) SetLabels(fv []*common.LabelDescriptor) {
   192  	if m == nil {
   193  		panic(fmt.Errorf("can't set %s on nil %s", "Labels", "LogDescriptor"))
   194  	}
   195  	m.Labels = fv
   196  }
   197  
   198  func (m *LogDescriptor) SetPromotedLabelKeySets(fv []*common.LabelKeySet) {
   199  	if m == nil {
   200  		panic(fmt.Errorf("can't set %s on nil %s", "PromotedLabelKeySets", "LogDescriptor"))
   201  	}
   202  	m.PromotedLabelKeySets = fv
   203  }
   204  
   205  func (m *LogDescriptor) SetMetadata(fv *meta.Meta) {
   206  	if m == nil {
   207  		panic(fmt.Errorf("can't set %s on nil %s", "Metadata", "LogDescriptor"))
   208  	}
   209  	m.Metadata = fv
   210  }
   211  
   212  var edgelq_logging_proto_v1alpha2_log_descriptor_proto preflect.FileDescriptor
   213  
   214  var edgelq_logging_proto_v1alpha2_log_descriptor_proto_rawDesc = []byte{
   215  	0x0a, 0x32, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2f, 0x6c, 0x6f, 0x67, 0x67, 0x69, 0x6e, 0x67,
   216  	0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2f,
   217  	0x6c, 0x6f, 0x67, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x2e, 0x70,
   218  	0x72, 0x6f, 0x74, 0x6f, 0x12, 0x14, 0x6e, 0x74, 0x74, 0x2e, 0x6c, 0x6f, 0x67, 0x67, 0x69, 0x6e,
   219  	0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x1a, 0x19, 0x67, 0x6f, 0x6f, 0x67,
   220  	0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e,
   221  	0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x20, 0x67, 0x6f, 0x74, 0x65, 0x6e, 0x2f, 0x61, 0x6e, 0x6e,
   222  	0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74,
   223  	0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1d, 0x67, 0x6f, 0x74, 0x65, 0x6e, 0x2f, 0x61,
   224  	0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x67, 0x6f, 0x74, 0x65, 0x6e,
   225  	0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x20, 0x67, 0x6f, 0x74, 0x65, 0x6e, 0x2f, 0x61, 0x6e,
   226  	0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72,
   227  	0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1d, 0x67, 0x6f, 0x74, 0x65, 0x6e, 0x2f,
   228  	0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x73, 0x74, 0x6f, 0x72,
   229  	0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x67, 0x6f, 0x74, 0x65, 0x6e, 0x2f, 0x61,
   230  	0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69,
   231  	0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x20, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71,
   232  	0x2f, 0x69, 0x61, 0x6d, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73,
   233  	0x2f, 0x69, 0x61, 0x6d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x24, 0x65, 0x64, 0x67, 0x65,
   234  	0x6c, 0x71, 0x2f, 0x61, 0x75, 0x64, 0x69, 0x74, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74,
   235  	0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x61, 0x75, 0x64, 0x69, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
   236  	0x1a, 0x16, 0x67, 0x6f, 0x74, 0x65, 0x6e, 0x2f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x2f, 0x6d, 0x65,
   237  	0x74, 0x61, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x2a, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71,
   238  	0x2f, 0x6c, 0x6f, 0x67, 0x67, 0x69, 0x6e, 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x76,
   239  	0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70,
   240  	0x72, 0x6f, 0x74, 0x6f, 0x22, 0x83, 0x07, 0x0a, 0x0d, 0x4c, 0x6f, 0x67, 0x44, 0x65, 0x73, 0x63,
   241  	0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x12, 0x29, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01,
   242  	0x20, 0x01, 0x28, 0x09, 0x42, 0x15, 0xb2, 0xda, 0x21, 0x11, 0x0a, 0x0f, 0x0a, 0x0d, 0x4c, 0x6f,
   243  	0x67, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x52, 0x04, 0x6e, 0x61, 0x6d,
   244  	0x65, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d,
   245  	0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79,
   246  	0x4e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
   247  	0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72,
   248  	0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x3d, 0x0a, 0x06, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73,
   249  	0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x6c, 0x6f, 0x67,
   250  	0x67, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2e, 0x4c, 0x61,
   251  	0x62, 0x65, 0x6c, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x52, 0x06, 0x6c,
   252  	0x61, 0x62, 0x65, 0x6c, 0x73, 0x12, 0x58, 0x0a, 0x17, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x65,
   253  	0x64, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x6b, 0x65, 0x79, 0x5f, 0x73, 0x65, 0x74, 0x73,
   254  	0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x6c, 0x6f, 0x67,
   255  	0x67, 0x69, 0x6e, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2e, 0x4c, 0x61,
   256  	0x62, 0x65, 0x6c, 0x4b, 0x65, 0x79, 0x53, 0x65, 0x74, 0x52, 0x14, 0x70, 0x72, 0x6f, 0x6d, 0x6f,
   257  	0x74, 0x65, 0x64, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x4b, 0x65, 0x79, 0x53, 0x65, 0x74, 0x73, 0x12,
   258  	0x2d, 0x0a, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x06, 0x20, 0x01, 0x28,
   259  	0x0b, 0x32, 0x11, 0x2e, 0x67, 0x6f, 0x74, 0x65, 0x6e, 0x2e, 0x74, 0x79, 0x70, 0x65, 0x73, 0x2e,
   260  	0x4d, 0x65, 0x74, 0x61, 0x52, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x3a, 0xb9,
   261  	0x04, 0xea, 0x41, 0xb5, 0x01, 0x0a, 0x20, 0x6c, 0x6f, 0x67, 0x67, 0x69, 0x6e, 0x67, 0x2e, 0x65,
   262  	0x64, 0x67, 0x65, 0x6c, 0x71, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x4c, 0x6f, 0x67, 0x44, 0x65, 0x73,
   263  	0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x12, 0x1f, 0x6c, 0x6f, 0x67, 0x44, 0x65, 0x73, 0x63,
   264  	0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x73, 0x2f, 0x7b, 0x6c, 0x6f, 0x67, 0x5f, 0x64, 0x65, 0x73,
   265  	0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x7d, 0x12, 0x32, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63,
   266  	0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x7d, 0x2f, 0x6c, 0x6f, 0x67,
   267  	0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x73, 0x2f, 0x7b, 0x6c, 0x6f, 0x67,
   268  	0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x7d, 0x12, 0x3c, 0x6f, 0x72,
   269  	0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x7b, 0x6f, 0x72, 0x67,
   270  	0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x7d, 0x2f, 0x6c, 0x6f, 0x67, 0x44, 0x65,
   271  	0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x73, 0x2f, 0x7b, 0x6c, 0x6f, 0x67, 0x5f, 0x64,
   272  	0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x7d, 0x92, 0xd9, 0x21, 0x8a, 0x01, 0x0a,
   273  	0x0e, 0x6c, 0x6f, 0x67, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x73, 0x12,
   274  	0x0e, 0x6c, 0x6f, 0x67, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x73, 0x1a,
   275  	0x12, 0x67, 0x6f, 0x74, 0x65, 0x6e, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x4e,
   276  	0x6f, 0x6e, 0x65, 0x1a, 0x16, 0x69, 0x61, 0x6d, 0x2e, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2e,
   277  	0x63, 0x6f, 0x6d, 0x2f, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x1a, 0x1b, 0x69, 0x61, 0x6d,
   278  	0x2e, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x4f, 0x72, 0x67, 0x61,
   279  	0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2a, 0x1d, 0x5b, 0x5c, 0x77, 0x2e, 0x2f, 0x2d,
   280  	0x5d, 0x7b, 0x31, 0x2c, 0x31, 0x32, 0x38, 0x7d, 0x2f, 0x5b, 0x5c, 0x77, 0x2e, 0x2f, 0x2d, 0x5d,
   281  	0x7b, 0x31, 0x2c, 0x31, 0x32, 0x38, 0x7d, 0x38, 0x05, 0xb2, 0xdf, 0x21, 0x90, 0x01, 0x0a, 0x8d,
   282  	0x01, 0x0a, 0x8a, 0x01, 0x0a, 0x0d, 0x62, 0x79, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e,
   283  	0x61, 0x6d, 0x65, 0x12, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d,
   284  	0x65, 0x1a, 0x2d, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73,
   285  	0x2f, 0x7b, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x7d, 0x2f,
   286  	0x6c, 0x6f, 0x67, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x73, 0x2f, 0x2d,
   287  	0x1a, 0x23, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a,
   288  	0x65, 0x63, 0x74, 0x7d, 0x2f, 0x6c, 0x6f, 0x67, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
   289  	0x6f, 0x72, 0x73, 0x2f, 0x2d, 0x1a, 0x10, 0x6c, 0x6f, 0x67, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69,
   290  	0x70, 0x74, 0x6f, 0x72, 0x73, 0x2f, 0x2d, 0x2a, 0x05, 0x6d, 0x6f, 0x6e, 0x67, 0x6f, 0xda, 0x94,
   291  	0x23, 0x08, 0x12, 0x06, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0xc2, 0x85, 0x2c, 0x4c, 0x22, 0x04,
   292  	0x6e, 0x61, 0x6d, 0x65, 0x22, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61,
   293  	0x6d, 0x65, 0x22, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x22,
   294  	0x06, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x22, 0x17, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x65,
   295  	0x64, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x6b, 0x65, 0x79, 0x5f, 0x73, 0x65, 0x74, 0x73,
   296  	0x42, 0x08, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x42, 0xc8, 0x02, 0xe8, 0xde, 0x21,
   297  	0x01, 0xd2, 0xff, 0xd0, 0x02, 0x58, 0x0a, 0x14, 0x6c, 0x6f, 0x67, 0x5f, 0x64, 0x65, 0x73, 0x63,
   298  	0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x12, 0x40, 0x67, 0x69,
   299  	0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x77, 0x61,
   300  	0x6e, 0x2f, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2f, 0x6c, 0x6f, 0x67, 0x67, 0x69, 0x6e, 0x67,
   301  	0x2f, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2f,
   302  	0x6c, 0x6f, 0x67, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0xa2, 0x80,
   303  	0xd1, 0x02, 0x5a, 0x0a, 0x15, 0x6c, 0x6f, 0x67, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70,
   304  	0x74, 0x6f, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x41, 0x67, 0x69, 0x74, 0x68,
   305  	0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x77, 0x61, 0x6e, 0x2f,
   306  	0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2f, 0x6c, 0x6f, 0x67, 0x67, 0x69, 0x6e, 0x67, 0x2f, 0x61,
   307  	0x63, 0x63, 0x65, 0x73, 0x73, 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2f, 0x6c,
   308  	0x6f, 0x67, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x0a, 0x1b, 0x63,
   309  	0x6f, 0x6d, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x6c, 0x6f, 0x67, 0x67, 0x69, 0x6e, 0x67, 0x2e, 0x70,
   310  	0x62, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x42, 0x12, 0x4c, 0x6f, 0x67, 0x44,
   311  	0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
   312  	0x5a, 0x53, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6c, 0x6f,
   313  	0x75, 0x64, 0x77, 0x61, 0x6e, 0x2f, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2f, 0x6c, 0x6f, 0x67,
   314  	0x67, 0x69, 0x6e, 0x67, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x76,
   315  	0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x32, 0x2f, 0x6c, 0x6f, 0x67, 0x5f, 0x64, 0x65, 0x73, 0x63,
   316  	0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x3b, 0x6c, 0x6f, 0x67, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72,
   317  	0x69, 0x70, 0x74, 0x6f, 0x72, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
   318  }
   319  
   320  var (
   321  	edgelq_logging_proto_v1alpha2_log_descriptor_proto_rawDescOnce sync.Once
   322  	edgelq_logging_proto_v1alpha2_log_descriptor_proto_rawDescData = edgelq_logging_proto_v1alpha2_log_descriptor_proto_rawDesc
   323  )
   324  
   325  func edgelq_logging_proto_v1alpha2_log_descriptor_proto_rawDescGZIP() []byte {
   326  	edgelq_logging_proto_v1alpha2_log_descriptor_proto_rawDescOnce.Do(func() {
   327  		edgelq_logging_proto_v1alpha2_log_descriptor_proto_rawDescData = protoimpl.X.CompressGZIP(edgelq_logging_proto_v1alpha2_log_descriptor_proto_rawDescData)
   328  	})
   329  	return edgelq_logging_proto_v1alpha2_log_descriptor_proto_rawDescData
   330  }
   331  
   332  var edgelq_logging_proto_v1alpha2_log_descriptor_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
   333  var edgelq_logging_proto_v1alpha2_log_descriptor_proto_goTypes = []interface{}{
   334  	(*LogDescriptor)(nil),          // 0: ntt.logging.v1alpha2.LogDescriptor
   335  	(*common.LabelDescriptor)(nil), // 1: ntt.logging.v1alpha2.LabelDescriptor
   336  	(*common.LabelKeySet)(nil),     // 2: ntt.logging.v1alpha2.LabelKeySet
   337  	(*meta.Meta)(nil),              // 3: goten.types.Meta
   338  }
   339  var edgelq_logging_proto_v1alpha2_log_descriptor_proto_depIdxs = []int32{
   340  	1, // 0: ntt.logging.v1alpha2.LogDescriptor.labels:type_name -> ntt.logging.v1alpha2.LabelDescriptor
   341  	2, // 1: ntt.logging.v1alpha2.LogDescriptor.promoted_label_key_sets:type_name -> ntt.logging.v1alpha2.LabelKeySet
   342  	3, // 2: ntt.logging.v1alpha2.LogDescriptor.metadata:type_name -> goten.types.Meta
   343  	3, // [3:3] is the sub-list for method output_type
   344  	3, // [3:3] is the sub-list for method input_type
   345  	3, // [3:3] is the sub-list for extension type_name
   346  	3, // [3:3] is the sub-list for extension extendee
   347  	0, // [0:3] is the sub-list for field type_name
   348  }
   349  
   350  func init() { edgelq_logging_proto_v1alpha2_log_descriptor_proto_init() }
   351  func edgelq_logging_proto_v1alpha2_log_descriptor_proto_init() {
   352  	if edgelq_logging_proto_v1alpha2_log_descriptor_proto != nil {
   353  		return
   354  	}
   355  	if !protoimpl.UnsafeEnabled {
   356  
   357  		edgelq_logging_proto_v1alpha2_log_descriptor_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
   358  			switch v := v.(*LogDescriptor); i {
   359  			case 0:
   360  				return &v.state
   361  			case 1:
   362  				return &v.sizeCache
   363  			case 2:
   364  				return &v.unknownFields
   365  			default:
   366  				return nil
   367  			}
   368  		}
   369  	}
   370  
   371  	type x struct{}
   372  	out := protoimpl.TypeBuilder{
   373  		File: protoimpl.DescBuilder{
   374  			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
   375  			RawDescriptor: edgelq_logging_proto_v1alpha2_log_descriptor_proto_rawDesc,
   376  			NumEnums:      0,
   377  			NumMessages:   1,
   378  			NumExtensions: 0,
   379  			NumServices:   0,
   380  		},
   381  		GoTypes:           edgelq_logging_proto_v1alpha2_log_descriptor_proto_goTypes,
   382  		DependencyIndexes: edgelq_logging_proto_v1alpha2_log_descriptor_proto_depIdxs,
   383  		MessageInfos:      edgelq_logging_proto_v1alpha2_log_descriptor_proto_msgTypes,
   384  	}.Build()
   385  	edgelq_logging_proto_v1alpha2_log_descriptor_proto = out.File
   386  	edgelq_logging_proto_v1alpha2_log_descriptor_proto_rawDesc = nil
   387  	edgelq_logging_proto_v1alpha2_log_descriptor_proto_goTypes = nil
   388  	edgelq_logging_proto_v1alpha2_log_descriptor_proto_depIdxs = nil
   389  }