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