blob: 585f863e9da101ce90ab2d0ef3b5a38518116a6e [file] [log] [blame]
ss412g1acbc2c2019-11-12 19:34:17 +02001//
2// Copyright 2019 AT&T Intellectual Property
3// Copyright 2019 Nokia
4//
5// Licensed under the Apache License, Version 2.0 (the "License");
6// you may not use this file except in compliance with the License.
7// You may obtain a copy of the License at
8//
9// http://www.apache.org/licenses/LICENSE-2.0
10//
11// Unless required by applicable law or agreed to in writing, software
12// distributed under the License is distributed on an "AS IS" BASIS,
13// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14// See the License for the specific language governing permissions and
15// limitations under the License.
16
idanshal63df85b2020-05-20 12:13:00 +030017//
18// This source code is part of the near-RT RIC (RAN Intelligent Controller)
19// platform project (RICP).
nm755n31ed7872019-11-28 16:57:55 +000020
ss412g286ce412019-07-04 14:00:29 +030021// Code generated by protoc-gen-go. DO NOT EDIT.
idanshal63df85b2020-05-20 12:13:00 +030022// versions:
dhirajverma651d3e82022-05-18 02:15:45 -040023// protoc-gen-go v1.26.0
24// protoc v3.15.8
ss412g286ce412019-07-04 14:00:29 +030025// source: nb_identity.proto
26
27package entities
28
29import (
idanshal63df85b2020-05-20 12:13:00 +030030 protoreflect "google.golang.org/protobuf/reflect/protoreflect"
31 protoimpl "google.golang.org/protobuf/runtime/protoimpl"
32 reflect "reflect"
33 sync "sync"
ss412g286ce412019-07-04 14:00:29 +030034)
35
idanshal63df85b2020-05-20 12:13:00 +030036const (
37 // Verify that this generated code is sufficiently up-to-date.
38 _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
39 // Verify that runtime/protoimpl is sufficiently up-to-date.
40 _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
41)
ss412g286ce412019-07-04 14:00:29 +030042
idanshal1c894172020-07-09 08:51:23 +000043type ConnectionStatus int32
idanshal63df85b2020-05-20 12:13:00 +030044
idanshal1c894172020-07-09 08:51:23 +000045const (
46 ConnectionStatus_UNKNOWN_CONNECTION_STATUS ConnectionStatus = 0
47 ConnectionStatus_CONNECTED ConnectionStatus = 1
48 ConnectionStatus_DISCONNECTED ConnectionStatus = 2
49 ConnectionStatus_CONNECTED_SETUP_FAILED ConnectionStatus = 3
50 ConnectionStatus_CONNECTING ConnectionStatus = 4
51 ConnectionStatus_SHUTTING_DOWN ConnectionStatus = 5
52 ConnectionStatus_SHUT_DOWN ConnectionStatus = 6
naman.guptaf23cb1a2023-02-08 18:16:30 +053053 ConnectionStatus_UNDER_RESET ConnectionStatus = 7
idanshal1c894172020-07-09 08:51:23 +000054)
ss412g286ce412019-07-04 14:00:29 +030055
idanshal1c894172020-07-09 08:51:23 +000056// Enum value maps for ConnectionStatus.
57var (
58 ConnectionStatus_name = map[int32]string{
59 0: "UNKNOWN_CONNECTION_STATUS",
60 1: "CONNECTED",
61 2: "DISCONNECTED",
62 3: "CONNECTED_SETUP_FAILED",
63 4: "CONNECTING",
64 5: "SHUTTING_DOWN",
65 6: "SHUT_DOWN",
naman.guptaf23cb1a2023-02-08 18:16:30 +053066 7: "UNDER_RESET",
idanshal63df85b2020-05-20 12:13:00 +030067 }
idanshal1c894172020-07-09 08:51:23 +000068 ConnectionStatus_value = map[string]int32{
69 "UNKNOWN_CONNECTION_STATUS": 0,
70 "CONNECTED": 1,
71 "DISCONNECTED": 2,
72 "CONNECTED_SETUP_FAILED": 3,
73 "CONNECTING": 4,
74 "SHUTTING_DOWN": 5,
75 "SHUT_DOWN": 6,
naman.guptaf23cb1a2023-02-08 18:16:30 +053076 "UNDER_RESET": 7,
idanshal63df85b2020-05-20 12:13:00 +030077 }
idanshal1c894172020-07-09 08:51:23 +000078)
79
80func (x ConnectionStatus) Enum() *ConnectionStatus {
81 p := new(ConnectionStatus)
82 *p = x
83 return p
idanshal63df85b2020-05-20 12:13:00 +030084}
85
idanshal1c894172020-07-09 08:51:23 +000086func (x ConnectionStatus) String() string {
87 return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
88}
89
90func (ConnectionStatus) Descriptor() protoreflect.EnumDescriptor {
91 return file_nb_identity_proto_enumTypes[0].Descriptor()
92}
93
94func (ConnectionStatus) Type() protoreflect.EnumType {
95 return &file_nb_identity_proto_enumTypes[0]
96}
97
98func (x ConnectionStatus) Number() protoreflect.EnumNumber {
99 return protoreflect.EnumNumber(x)
100}
101
102// Deprecated: Use ConnectionStatus.Descriptor instead.
103func (ConnectionStatus) EnumDescriptor() ([]byte, []int) {
idanshal63df85b2020-05-20 12:13:00 +0300104 return file_nb_identity_proto_rawDescGZIP(), []int{0}
ss412g286ce412019-07-04 14:00:29 +0300105}
106
ss412g286ce412019-07-04 14:00:29 +0300107type GlobalNbId struct {
idanshal63df85b2020-05-20 12:13:00 +0300108 state protoimpl.MessageState
109 sizeCache protoimpl.SizeCache
110 unknownFields protoimpl.UnknownFields
111
112 PlmnId string `protobuf:"bytes,1,opt,name=plmn_id,json=plmnId,proto3" json:"plmn_id,omitempty"`
113 NbId string `protobuf:"bytes,2,opt,name=nb_id,json=nbId,proto3" json:"nb_id,omitempty"`
ss412g286ce412019-07-04 14:00:29 +0300114}
115
idanshal63df85b2020-05-20 12:13:00 +0300116func (x *GlobalNbId) Reset() {
117 *x = GlobalNbId{}
118 if protoimpl.UnsafeEnabled {
idanshal1c894172020-07-09 08:51:23 +0000119 mi := &file_nb_identity_proto_msgTypes[0]
idanshal63df85b2020-05-20 12:13:00 +0300120 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
121 ms.StoreMessageInfo(mi)
122 }
123}
124
125func (x *GlobalNbId) String() string {
126 return protoimpl.X.MessageStringOf(x)
127}
128
129func (*GlobalNbId) ProtoMessage() {}
130
131func (x *GlobalNbId) ProtoReflect() protoreflect.Message {
idanshal1c894172020-07-09 08:51:23 +0000132 mi := &file_nb_identity_proto_msgTypes[0]
idanshal63df85b2020-05-20 12:13:00 +0300133 if protoimpl.UnsafeEnabled && x != nil {
134 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
135 if ms.LoadMessageInfo() == nil {
136 ms.StoreMessageInfo(mi)
137 }
138 return ms
139 }
140 return mi.MessageOf(x)
141}
142
143// Deprecated: Use GlobalNbId.ProtoReflect.Descriptor instead.
ss412g286ce412019-07-04 14:00:29 +0300144func (*GlobalNbId) Descriptor() ([]byte, []int) {
idanshal1c894172020-07-09 08:51:23 +0000145 return file_nb_identity_proto_rawDescGZIP(), []int{0}
ss412g286ce412019-07-04 14:00:29 +0300146}
147
idanshal63df85b2020-05-20 12:13:00 +0300148func (x *GlobalNbId) GetPlmnId() string {
149 if x != nil {
150 return x.PlmnId
ss412g286ce412019-07-04 14:00:29 +0300151 }
152 return ""
153}
154
idanshal63df85b2020-05-20 12:13:00 +0300155func (x *GlobalNbId) GetNbId() string {
156 if x != nil {
157 return x.NbId
ss412g286ce412019-07-04 14:00:29 +0300158 }
159 return ""
160}
161
idanshal1c894172020-07-09 08:51:23 +0000162type NbIdentity struct {
163 state protoimpl.MessageState
164 sizeCache protoimpl.SizeCache
165 unknownFields protoimpl.UnknownFields
166
Rahul Banerjiefb09442020-07-21 09:47:05 +0000167 InventoryName string `protobuf:"bytes,1,opt,name=inventory_name,json=inventoryName,proto3" json:"inventory_name,omitempty"`
168 GlobalNbId *GlobalNbId `protobuf:"bytes,2,opt,name=global_nb_id,json=globalNbId,proto3" json:"global_nb_id,omitempty"`
169 ConnectionStatus ConnectionStatus `protobuf:"varint,3,opt,name=connection_status,json=connectionStatus,proto3,enum=entities.ConnectionStatus" json:"connection_status,omitempty"`
170 HealthCheckTimestampSent int64 `protobuf:"varint,4,opt,name=health_check_timestamp_sent,json=healthCheckTimestampSent,proto3" json:"health_check_timestamp_sent,omitempty"`
171 HealthCheckTimestampReceived int64 `protobuf:"varint,5,opt,name=health_check_timestamp_received,json=healthCheckTimestampReceived,proto3" json:"health_check_timestamp_received,omitempty"`
idanshal1c894172020-07-09 08:51:23 +0000172}
173
174func (x *NbIdentity) Reset() {
175 *x = NbIdentity{}
176 if protoimpl.UnsafeEnabled {
177 mi := &file_nb_identity_proto_msgTypes[1]
178 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
179 ms.StoreMessageInfo(mi)
180 }
181}
182
183func (x *NbIdentity) String() string {
184 return protoimpl.X.MessageStringOf(x)
185}
186
187func (*NbIdentity) ProtoMessage() {}
188
189func (x *NbIdentity) ProtoReflect() protoreflect.Message {
190 mi := &file_nb_identity_proto_msgTypes[1]
191 if protoimpl.UnsafeEnabled && x != nil {
192 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
193 if ms.LoadMessageInfo() == nil {
194 ms.StoreMessageInfo(mi)
195 }
196 return ms
197 }
198 return mi.MessageOf(x)
199}
200
201// Deprecated: Use NbIdentity.ProtoReflect.Descriptor instead.
202func (*NbIdentity) Descriptor() ([]byte, []int) {
203 return file_nb_identity_proto_rawDescGZIP(), []int{1}
204}
205
206func (x *NbIdentity) GetInventoryName() string {
207 if x != nil {
208 return x.InventoryName
209 }
210 return ""
211}
212
213func (x *NbIdentity) GetGlobalNbId() *GlobalNbId {
214 if x != nil {
215 return x.GlobalNbId
216 }
217 return nil
218}
219
220func (x *NbIdentity) GetConnectionStatus() ConnectionStatus {
221 if x != nil {
222 return x.ConnectionStatus
223 }
224 return ConnectionStatus_UNKNOWN_CONNECTION_STATUS
225}
226
Rahul Banerjiefb09442020-07-21 09:47:05 +0000227func (x *NbIdentity) GetHealthCheckTimestampSent() int64 {
228 if x != nil {
229 return x.HealthCheckTimestampSent
230 }
231 return 0
232}
233
234func (x *NbIdentity) GetHealthCheckTimestampReceived() int64 {
235 if x != nil {
236 return x.HealthCheckTimestampReceived
237 }
238 return 0
239}
240
idanshal63df85b2020-05-20 12:13:00 +0300241var File_nb_identity_proto protoreflect.FileDescriptor
242
243var file_nb_identity_proto_rawDesc = []byte{
244 0x0a, 0x11, 0x6e, 0x62, 0x5f, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x2e, 0x70, 0x72,
idanshal1c894172020-07-09 08:51:23 +0000245 0x6f, 0x74, 0x6f, 0x12, 0x08, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x69, 0x65, 0x73, 0x22, 0x3a, 0x0a,
246 0x0a, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x4e, 0x62, 0x49, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x70,
247 0x6c, 0x6d, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x6c,
248 0x6d, 0x6e, 0x49, 0x64, 0x12, 0x13, 0x0a, 0x05, 0x6e, 0x62, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20,
Rahul Banerjiefb09442020-07-21 09:47:05 +0000249 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x62, 0x49, 0x64, 0x22, 0xba, 0x02, 0x0a, 0x0a, 0x4e, 0x62,
idanshal1c894172020-07-09 08:51:23 +0000250 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x12, 0x25, 0x0a, 0x0e, 0x69, 0x6e, 0x76, 0x65,
251 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
252 0x52, 0x0d, 0x69, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12,
253 0x36, 0x0a, 0x0c, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x5f, 0x6e, 0x62, 0x5f, 0x69, 0x64, 0x18,
254 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x69, 0x65, 0x73,
255 0x2e, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x4e, 0x62, 0x49, 0x64, 0x52, 0x0a, 0x67, 0x6c, 0x6f,
256 0x62, 0x61, 0x6c, 0x4e, 0x62, 0x49, 0x64, 0x12, 0x47, 0x0a, 0x11, 0x63, 0x6f, 0x6e, 0x6e, 0x65,
257 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01,
258 0x28, 0x0e, 0x32, 0x1a, 0x2e, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x69, 0x65, 0x73, 0x2e, 0x43, 0x6f,
259 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x10,
260 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
Rahul Banerjiefb09442020-07-21 09:47:05 +0000261 0x12, 0x3d, 0x0a, 0x1b, 0x68, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x5f, 0x63, 0x68, 0x65, 0x63, 0x6b,
262 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x5f, 0x73, 0x65, 0x6e, 0x74, 0x18,
263 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x18, 0x68, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x43, 0x68, 0x65,
264 0x63, 0x6b, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x53, 0x65, 0x6e, 0x74, 0x12,
265 0x45, 0x0a, 0x1f, 0x68, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x5f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x5f,
266 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x5f, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76,
267 0x65, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x1c, 0x68, 0x65, 0x61, 0x6c, 0x74, 0x68,
268 0x43, 0x68, 0x65, 0x63, 0x6b, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x65,
naman.guptaf23cb1a2023-02-08 18:16:30 +0530269 0x63, 0x65, 0x69, 0x76, 0x65, 0x64, 0x2a, 0xb1, 0x01, 0x0a, 0x10, 0x43, 0x6f, 0x6e, 0x6e, 0x65,
Rahul Banerjiefb09442020-07-21 09:47:05 +0000270 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1d, 0x0a, 0x19, 0x55,
271 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x5f, 0x43, 0x4f, 0x4e, 0x4e, 0x45, 0x43, 0x54, 0x49, 0x4f,
272 0x4e, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x10, 0x00, 0x12, 0x0d, 0x0a, 0x09, 0x43, 0x4f,
273 0x4e, 0x4e, 0x45, 0x43, 0x54, 0x45, 0x44, 0x10, 0x01, 0x12, 0x10, 0x0a, 0x0c, 0x44, 0x49, 0x53,
274 0x43, 0x4f, 0x4e, 0x4e, 0x45, 0x43, 0x54, 0x45, 0x44, 0x10, 0x02, 0x12, 0x1a, 0x0a, 0x16, 0x43,
275 0x4f, 0x4e, 0x4e, 0x45, 0x43, 0x54, 0x45, 0x44, 0x5f, 0x53, 0x45, 0x54, 0x55, 0x50, 0x5f, 0x46,
276 0x41, 0x49, 0x4c, 0x45, 0x44, 0x10, 0x03, 0x12, 0x0e, 0x0a, 0x0a, 0x43, 0x4f, 0x4e, 0x4e, 0x45,
277 0x43, 0x54, 0x49, 0x4e, 0x47, 0x10, 0x04, 0x12, 0x11, 0x0a, 0x0d, 0x53, 0x48, 0x55, 0x54, 0x54,
278 0x49, 0x4e, 0x47, 0x5f, 0x44, 0x4f, 0x57, 0x4e, 0x10, 0x05, 0x12, 0x0d, 0x0a, 0x09, 0x53, 0x48,
naman.guptaf23cb1a2023-02-08 18:16:30 +0530279 0x55, 0x54, 0x5f, 0x44, 0x4f, 0x57, 0x4e, 0x10, 0x06, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x44,
280 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x45, 0x54, 0x10, 0x07, 0x42, 0x33, 0x5a, 0x31, 0x67, 0x65,
281 0x72, 0x72, 0x69, 0x74, 0x2e, 0x6f, 0x2d, 0x72, 0x61, 0x6e, 0x2d, 0x73, 0x63, 0x2e, 0x6f, 0x72,
282 0x67, 0x2f, 0x72, 0x2f, 0x72, 0x69, 0x63, 0x2d, 0x70, 0x6c, 0x74, 0x2f, 0x6e, 0x6f, 0x64, 0x65,
283 0x62, 0x2d, 0x72, 0x6e, 0x69, 0x62, 0x2f, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x69, 0x65, 0x73, 0x62,
284 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
ss412g286ce412019-07-04 14:00:29 +0300285}
286
idanshal63df85b2020-05-20 12:13:00 +0300287var (
288 file_nb_identity_proto_rawDescOnce sync.Once
289 file_nb_identity_proto_rawDescData = file_nb_identity_proto_rawDesc
290)
ss412g286ce412019-07-04 14:00:29 +0300291
idanshal63df85b2020-05-20 12:13:00 +0300292func file_nb_identity_proto_rawDescGZIP() []byte {
293 file_nb_identity_proto_rawDescOnce.Do(func() {
294 file_nb_identity_proto_rawDescData = protoimpl.X.CompressGZIP(file_nb_identity_proto_rawDescData)
295 })
296 return file_nb_identity_proto_rawDescData
297}
298
idanshal1c894172020-07-09 08:51:23 +0000299var file_nb_identity_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
idanshal63df85b2020-05-20 12:13:00 +0300300var file_nb_identity_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
301var file_nb_identity_proto_goTypes = []interface{}{
idanshal1c894172020-07-09 08:51:23 +0000302 (ConnectionStatus)(0), // 0: entities.ConnectionStatus
303 (*GlobalNbId)(nil), // 1: entities.GlobalNbId
304 (*NbIdentity)(nil), // 2: entities.NbIdentity
idanshal63df85b2020-05-20 12:13:00 +0300305}
306var file_nb_identity_proto_depIdxs = []int32{
307 1, // 0: entities.NbIdentity.global_nb_id:type_name -> entities.GlobalNbId
idanshal1c894172020-07-09 08:51:23 +0000308 0, // 1: entities.NbIdentity.connection_status:type_name -> entities.ConnectionStatus
309 2, // [2:2] is the sub-list for method output_type
310 2, // [2:2] is the sub-list for method input_type
311 2, // [2:2] is the sub-list for extension type_name
312 2, // [2:2] is the sub-list for extension extendee
313 0, // [0:2] is the sub-list for field type_name
idanshal63df85b2020-05-20 12:13:00 +0300314}
315
316func init() { file_nb_identity_proto_init() }
317func file_nb_identity_proto_init() {
318 if File_nb_identity_proto != nil {
319 return
320 }
321 if !protoimpl.UnsafeEnabled {
322 file_nb_identity_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
idanshal1c894172020-07-09 08:51:23 +0000323 switch v := v.(*GlobalNbId); i {
idanshal63df85b2020-05-20 12:13:00 +0300324 case 0:
325 return &v.state
326 case 1:
327 return &v.sizeCache
328 case 2:
329 return &v.unknownFields
330 default:
331 return nil
332 }
333 }
334 file_nb_identity_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
idanshal1c894172020-07-09 08:51:23 +0000335 switch v := v.(*NbIdentity); i {
idanshal63df85b2020-05-20 12:13:00 +0300336 case 0:
337 return &v.state
338 case 1:
339 return &v.sizeCache
340 case 2:
341 return &v.unknownFields
342 default:
343 return nil
344 }
345 }
346 }
347 type x struct{}
348 out := protoimpl.TypeBuilder{
349 File: protoimpl.DescBuilder{
350 GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
351 RawDescriptor: file_nb_identity_proto_rawDesc,
idanshal1c894172020-07-09 08:51:23 +0000352 NumEnums: 1,
idanshal63df85b2020-05-20 12:13:00 +0300353 NumMessages: 2,
354 NumExtensions: 0,
355 NumServices: 0,
356 },
357 GoTypes: file_nb_identity_proto_goTypes,
358 DependencyIndexes: file_nb_identity_proto_depIdxs,
idanshal1c894172020-07-09 08:51:23 +0000359 EnumInfos: file_nb_identity_proto_enumTypes,
idanshal63df85b2020-05-20 12:13:00 +0300360 MessageInfos: file_nb_identity_proto_msgTypes,
361 }.Build()
362 File_nb_identity_proto = out.File
363 file_nb_identity_proto_rawDesc = nil
364 file_nb_identity_proto_goTypes = nil
365 file_nb_identity_proto_depIdxs = nil
ss412g286ce412019-07-04 14:00:29 +0300366}