@lansweeper/data-platform-outbound-grpc 0.0.3 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,3688 @@
1
+ //*
2
+ // Copyright Lansweeper (c)
3
+ //
4
+ // This files contains the Data Access API and the definition of outbound model
5
+ //
6
+ // N.B. This file has been documented using the specification available here: https://github.com/pseudomuto/protoc-gen-doc
7
+
8
+ // Code generated by protoc-gen-go. DO NOT EDIT.
9
+ // versions:
10
+ // protoc-gen-go v1.28.1
11
+ // protoc v3.15.8
12
+ // source: outbound.proto
13
+
14
+ package generated_go
15
+
16
+ import (
17
+ protoreflect "google.golang.org/protobuf/reflect/protoreflect"
18
+ protoimpl "google.golang.org/protobuf/runtime/protoimpl"
19
+ timestamppb "google.golang.org/protobuf/types/known/timestamppb"
20
+ reflect "reflect"
21
+ sync "sync"
22
+ )
23
+
24
+ const (
25
+ // Verify that this generated code is sufficiently up-to-date.
26
+ _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
27
+ // Verify that runtime/protoimpl is sufficiently up-to-date.
28
+ _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
29
+ )
30
+
31
+ type GetEntityRequest struct {
32
+ state protoimpl.MessageState
33
+ sizeCache protoimpl.SizeCache
34
+ unknownFields protoimpl.UnknownFields
35
+
36
+ EntityPath *EntityPath `protobuf:"bytes,1,opt,name=entity_path,json=entityPath,proto3" json:"entity_path,omitempty"` // bool send_related = 2; // send also related entities
37
+ }
38
+
39
+ func (x *GetEntityRequest) Reset() {
40
+ *x = GetEntityRequest{}
41
+ if protoimpl.UnsafeEnabled {
42
+ mi := &file_outbound_proto_msgTypes[0]
43
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
44
+ ms.StoreMessageInfo(mi)
45
+ }
46
+ }
47
+
48
+ func (x *GetEntityRequest) String() string {
49
+ return protoimpl.X.MessageStringOf(x)
50
+ }
51
+
52
+ func (*GetEntityRequest) ProtoMessage() {}
53
+
54
+ func (x *GetEntityRequest) ProtoReflect() protoreflect.Message {
55
+ mi := &file_outbound_proto_msgTypes[0]
56
+ if protoimpl.UnsafeEnabled && x != nil {
57
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
58
+ if ms.LoadMessageInfo() == nil {
59
+ ms.StoreMessageInfo(mi)
60
+ }
61
+ return ms
62
+ }
63
+ return mi.MessageOf(x)
64
+ }
65
+
66
+ // Deprecated: Use GetEntityRequest.ProtoReflect.Descriptor instead.
67
+ func (*GetEntityRequest) Descriptor() ([]byte, []int) {
68
+ return file_outbound_proto_rawDescGZIP(), []int{0}
69
+ }
70
+
71
+ func (x *GetEntityRequest) GetEntityPath() *EntityPath {
72
+ if x != nil {
73
+ return x.EntityPath
74
+ }
75
+ return nil
76
+ }
77
+
78
+ type GetEntityResponse struct {
79
+ state protoimpl.MessageState
80
+ sizeCache protoimpl.SizeCache
81
+ unknownFields protoimpl.UnknownFields
82
+
83
+ Entity *Entity `protobuf:"bytes,1,opt,name=entity,proto3" json:"entity,omitempty"`
84
+ Related []*Entity `protobuf:"bytes,2,rep,name=related,proto3" json:"related,omitempty"`
85
+ }
86
+
87
+ func (x *GetEntityResponse) Reset() {
88
+ *x = GetEntityResponse{}
89
+ if protoimpl.UnsafeEnabled {
90
+ mi := &file_outbound_proto_msgTypes[1]
91
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
92
+ ms.StoreMessageInfo(mi)
93
+ }
94
+ }
95
+
96
+ func (x *GetEntityResponse) String() string {
97
+ return protoimpl.X.MessageStringOf(x)
98
+ }
99
+
100
+ func (*GetEntityResponse) ProtoMessage() {}
101
+
102
+ func (x *GetEntityResponse) ProtoReflect() protoreflect.Message {
103
+ mi := &file_outbound_proto_msgTypes[1]
104
+ if protoimpl.UnsafeEnabled && x != nil {
105
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
106
+ if ms.LoadMessageInfo() == nil {
107
+ ms.StoreMessageInfo(mi)
108
+ }
109
+ return ms
110
+ }
111
+ return mi.MessageOf(x)
112
+ }
113
+
114
+ // Deprecated: Use GetEntityResponse.ProtoReflect.Descriptor instead.
115
+ func (*GetEntityResponse) Descriptor() ([]byte, []int) {
116
+ return file_outbound_proto_rawDescGZIP(), []int{1}
117
+ }
118
+
119
+ func (x *GetEntityResponse) GetEntity() *Entity {
120
+ if x != nil {
121
+ return x.Entity
122
+ }
123
+ return nil
124
+ }
125
+
126
+ func (x *GetEntityResponse) GetRelated() []*Entity {
127
+ if x != nil {
128
+ return x.Related
129
+ }
130
+ return nil
131
+ }
132
+
133
+ type ListEntityRequest struct {
134
+ state protoimpl.MessageState
135
+ sizeCache protoimpl.SizeCache
136
+ unknownFields protoimpl.UnknownFields
137
+
138
+ Filter *EntityPath `protobuf:"bytes,1,opt,name=filter,proto3" json:"filter,omitempty"` // minimum is for a site
139
+ }
140
+
141
+ func (x *ListEntityRequest) Reset() {
142
+ *x = ListEntityRequest{}
143
+ if protoimpl.UnsafeEnabled {
144
+ mi := &file_outbound_proto_msgTypes[2]
145
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
146
+ ms.StoreMessageInfo(mi)
147
+ }
148
+ }
149
+
150
+ func (x *ListEntityRequest) String() string {
151
+ return protoimpl.X.MessageStringOf(x)
152
+ }
153
+
154
+ func (*ListEntityRequest) ProtoMessage() {}
155
+
156
+ func (x *ListEntityRequest) ProtoReflect() protoreflect.Message {
157
+ mi := &file_outbound_proto_msgTypes[2]
158
+ if protoimpl.UnsafeEnabled && x != nil {
159
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
160
+ if ms.LoadMessageInfo() == nil {
161
+ ms.StoreMessageInfo(mi)
162
+ }
163
+ return ms
164
+ }
165
+ return mi.MessageOf(x)
166
+ }
167
+
168
+ // Deprecated: Use ListEntityRequest.ProtoReflect.Descriptor instead.
169
+ func (*ListEntityRequest) Descriptor() ([]byte, []int) {
170
+ return file_outbound_proto_rawDescGZIP(), []int{2}
171
+ }
172
+
173
+ func (x *ListEntityRequest) GetFilter() *EntityPath {
174
+ if x != nil {
175
+ return x.Filter
176
+ }
177
+ return nil
178
+ }
179
+
180
+ type ListEntityResponse struct {
181
+ state protoimpl.MessageState
182
+ sizeCache protoimpl.SizeCache
183
+ unknownFields protoimpl.UnknownFields
184
+
185
+ Entity *Entity `protobuf:"bytes,1,opt,name=entity,proto3" json:"entity,omitempty"`
186
+ Related []*Entity `protobuf:"bytes,2,rep,name=related,proto3" json:"related,omitempty"`
187
+ }
188
+
189
+ func (x *ListEntityResponse) Reset() {
190
+ *x = ListEntityResponse{}
191
+ if protoimpl.UnsafeEnabled {
192
+ mi := &file_outbound_proto_msgTypes[3]
193
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
194
+ ms.StoreMessageInfo(mi)
195
+ }
196
+ }
197
+
198
+ func (x *ListEntityResponse) String() string {
199
+ return protoimpl.X.MessageStringOf(x)
200
+ }
201
+
202
+ func (*ListEntityResponse) ProtoMessage() {}
203
+
204
+ func (x *ListEntityResponse) ProtoReflect() protoreflect.Message {
205
+ mi := &file_outbound_proto_msgTypes[3]
206
+ if protoimpl.UnsafeEnabled && x != nil {
207
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
208
+ if ms.LoadMessageInfo() == nil {
209
+ ms.StoreMessageInfo(mi)
210
+ }
211
+ return ms
212
+ }
213
+ return mi.MessageOf(x)
214
+ }
215
+
216
+ // Deprecated: Use ListEntityResponse.ProtoReflect.Descriptor instead.
217
+ func (*ListEntityResponse) Descriptor() ([]byte, []int) {
218
+ return file_outbound_proto_rawDescGZIP(), []int{3}
219
+ }
220
+
221
+ func (x *ListEntityResponse) GetEntity() *Entity {
222
+ if x != nil {
223
+ return x.Entity
224
+ }
225
+ return nil
226
+ }
227
+
228
+ func (x *ListEntityResponse) GetRelated() []*Entity {
229
+ if x != nil {
230
+ return x.Related
231
+ }
232
+ return nil
233
+ }
234
+
235
+ type EntityPath struct {
236
+ state protoimpl.MessageState
237
+ sizeCache protoimpl.SizeCache
238
+ unknownFields protoimpl.UnknownFields
239
+
240
+ SiteId string `protobuf:"bytes,1,opt,name=site_id,json=siteId,proto3" json:"site_id,omitempty"`
241
+ SourceId *string `protobuf:"bytes,2,opt,name=source_id,json=sourceId,proto3,oneof" json:"source_id,omitempty"`
242
+ SourceType *string `protobuf:"bytes,3,opt,name=source_type,json=sourceType,proto3,oneof" json:"source_type,omitempty"` // IT, OT, CDK, 3rdParty
243
+ EntityType *string `protobuf:"bytes,4,opt,name=entity_type,json=entityType,proto3,oneof" json:"entity_type,omitempty"` // "asset" "user" etc
244
+ EntityId *string `protobuf:"bytes,5,opt,name=entity_id,json=entityId,proto3,oneof" json:"entity_id,omitempty"`
245
+ }
246
+
247
+ func (x *EntityPath) Reset() {
248
+ *x = EntityPath{}
249
+ if protoimpl.UnsafeEnabled {
250
+ mi := &file_outbound_proto_msgTypes[4]
251
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
252
+ ms.StoreMessageInfo(mi)
253
+ }
254
+ }
255
+
256
+ func (x *EntityPath) String() string {
257
+ return protoimpl.X.MessageStringOf(x)
258
+ }
259
+
260
+ func (*EntityPath) ProtoMessage() {}
261
+
262
+ func (x *EntityPath) ProtoReflect() protoreflect.Message {
263
+ mi := &file_outbound_proto_msgTypes[4]
264
+ if protoimpl.UnsafeEnabled && x != nil {
265
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
266
+ if ms.LoadMessageInfo() == nil {
267
+ ms.StoreMessageInfo(mi)
268
+ }
269
+ return ms
270
+ }
271
+ return mi.MessageOf(x)
272
+ }
273
+
274
+ // Deprecated: Use EntityPath.ProtoReflect.Descriptor instead.
275
+ func (*EntityPath) Descriptor() ([]byte, []int) {
276
+ return file_outbound_proto_rawDescGZIP(), []int{4}
277
+ }
278
+
279
+ func (x *EntityPath) GetSiteId() string {
280
+ if x != nil {
281
+ return x.SiteId
282
+ }
283
+ return ""
284
+ }
285
+
286
+ func (x *EntityPath) GetSourceId() string {
287
+ if x != nil && x.SourceId != nil {
288
+ return *x.SourceId
289
+ }
290
+ return ""
291
+ }
292
+
293
+ func (x *EntityPath) GetSourceType() string {
294
+ if x != nil && x.SourceType != nil {
295
+ return *x.SourceType
296
+ }
297
+ return ""
298
+ }
299
+
300
+ func (x *EntityPath) GetEntityType() string {
301
+ if x != nil && x.EntityType != nil {
302
+ return *x.EntityType
303
+ }
304
+ return ""
305
+ }
306
+
307
+ func (x *EntityPath) GetEntityId() string {
308
+ if x != nil && x.EntityId != nil {
309
+ return *x.EntityId
310
+ }
311
+ return ""
312
+ }
313
+
314
+ type Entity struct {
315
+ state protoimpl.MessageState
316
+ sizeCache protoimpl.SizeCache
317
+ unknownFields protoimpl.UnknownFields
318
+
319
+ // Types that are assignable to Entity:
320
+ //
321
+ // *Entity_Asset
322
+ Entity isEntity_Entity `protobuf_oneof:"entity"`
323
+ }
324
+
325
+ func (x *Entity) Reset() {
326
+ *x = Entity{}
327
+ if protoimpl.UnsafeEnabled {
328
+ mi := &file_outbound_proto_msgTypes[5]
329
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
330
+ ms.StoreMessageInfo(mi)
331
+ }
332
+ }
333
+
334
+ func (x *Entity) String() string {
335
+ return protoimpl.X.MessageStringOf(x)
336
+ }
337
+
338
+ func (*Entity) ProtoMessage() {}
339
+
340
+ func (x *Entity) ProtoReflect() protoreflect.Message {
341
+ mi := &file_outbound_proto_msgTypes[5]
342
+ if protoimpl.UnsafeEnabled && x != nil {
343
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
344
+ if ms.LoadMessageInfo() == nil {
345
+ ms.StoreMessageInfo(mi)
346
+ }
347
+ return ms
348
+ }
349
+ return mi.MessageOf(x)
350
+ }
351
+
352
+ // Deprecated: Use Entity.ProtoReflect.Descriptor instead.
353
+ func (*Entity) Descriptor() ([]byte, []int) {
354
+ return file_outbound_proto_rawDescGZIP(), []int{5}
355
+ }
356
+
357
+ func (m *Entity) GetEntity() isEntity_Entity {
358
+ if m != nil {
359
+ return m.Entity
360
+ }
361
+ return nil
362
+ }
363
+
364
+ func (x *Entity) GetAsset() *Asset {
365
+ if x, ok := x.GetEntity().(*Entity_Asset); ok {
366
+ return x.Asset
367
+ }
368
+ return nil
369
+ }
370
+
371
+ type isEntity_Entity interface {
372
+ isEntity_Entity()
373
+ }
374
+
375
+ type Entity_Asset struct {
376
+ Asset *Asset `protobuf:"bytes,1,opt,name=asset,proto3,oneof"`
377
+ }
378
+
379
+ func (*Entity_Asset) isEntity_Entity() {}
380
+
381
+ type Asset struct {
382
+ state protoimpl.MessageState
383
+ sizeCache protoimpl.SizeCache
384
+ unknownFields protoimpl.UnknownFields
385
+
386
+ Id *EntityPath `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
387
+ LastSynced *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=last_synced,json=lastSynced,proto3" json:"last_synced,omitempty"`
388
+ FirstSeen *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=first_seen,json=firstSeen,proto3" json:"first_seen,omitempty"`
389
+ LastUpdated *timestamppb.Timestamp `protobuf:"bytes,4,opt,name=last_updated,json=lastUpdated,proto3" json:"last_updated,omitempty"`
390
+ LastEnriched *timestamppb.Timestamp `protobuf:"bytes,5,opt,name=last_enriched,json=lastEnriched,proto3" json:"last_enriched,omitempty"`
391
+ Core *CoreFields `protobuf:"bytes,6,opt,name=core,proto3" json:"core,omitempty"`
392
+ Hw *HardwareInfo `protobuf:"bytes,7,opt,name=hw,proto3,oneof" json:"hw,omitempty"`
393
+ Os *OperatingSystemInfo `protobuf:"bytes,8,opt,name=os,proto3,oneof" json:"os,omitempty"`
394
+ SoftwareInventory *SoftwareInventory `protobuf:"bytes,9,opt,name=software_inventory,json=softwareInventory,proto3,oneof" json:"software_inventory,omitempty"`
395
+ }
396
+
397
+ func (x *Asset) Reset() {
398
+ *x = Asset{}
399
+ if protoimpl.UnsafeEnabled {
400
+ mi := &file_outbound_proto_msgTypes[6]
401
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
402
+ ms.StoreMessageInfo(mi)
403
+ }
404
+ }
405
+
406
+ func (x *Asset) String() string {
407
+ return protoimpl.X.MessageStringOf(x)
408
+ }
409
+
410
+ func (*Asset) ProtoMessage() {}
411
+
412
+ func (x *Asset) ProtoReflect() protoreflect.Message {
413
+ mi := &file_outbound_proto_msgTypes[6]
414
+ if protoimpl.UnsafeEnabled && x != nil {
415
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
416
+ if ms.LoadMessageInfo() == nil {
417
+ ms.StoreMessageInfo(mi)
418
+ }
419
+ return ms
420
+ }
421
+ return mi.MessageOf(x)
422
+ }
423
+
424
+ // Deprecated: Use Asset.ProtoReflect.Descriptor instead.
425
+ func (*Asset) Descriptor() ([]byte, []int) {
426
+ return file_outbound_proto_rawDescGZIP(), []int{6}
427
+ }
428
+
429
+ func (x *Asset) GetId() *EntityPath {
430
+ if x != nil {
431
+ return x.Id
432
+ }
433
+ return nil
434
+ }
435
+
436
+ func (x *Asset) GetLastSynced() *timestamppb.Timestamp {
437
+ if x != nil {
438
+ return x.LastSynced
439
+ }
440
+ return nil
441
+ }
442
+
443
+ func (x *Asset) GetFirstSeen() *timestamppb.Timestamp {
444
+ if x != nil {
445
+ return x.FirstSeen
446
+ }
447
+ return nil
448
+ }
449
+
450
+ func (x *Asset) GetLastUpdated() *timestamppb.Timestamp {
451
+ if x != nil {
452
+ return x.LastUpdated
453
+ }
454
+ return nil
455
+ }
456
+
457
+ func (x *Asset) GetLastEnriched() *timestamppb.Timestamp {
458
+ if x != nil {
459
+ return x.LastEnriched
460
+ }
461
+ return nil
462
+ }
463
+
464
+ func (x *Asset) GetCore() *CoreFields {
465
+ if x != nil {
466
+ return x.Core
467
+ }
468
+ return nil
469
+ }
470
+
471
+ func (x *Asset) GetHw() *HardwareInfo {
472
+ if x != nil {
473
+ return x.Hw
474
+ }
475
+ return nil
476
+ }
477
+
478
+ func (x *Asset) GetOs() *OperatingSystemInfo {
479
+ if x != nil {
480
+ return x.Os
481
+ }
482
+ return nil
483
+ }
484
+
485
+ func (x *Asset) GetSoftwareInventory() *SoftwareInventory {
486
+ if x != nil {
487
+ return x.SoftwareInventory
488
+ }
489
+ return nil
490
+ }
491
+
492
+ // *
493
+ // Asset Type enables customers to manage the settings for a
494
+ // category of information in a centralized, reusable way.
495
+ type AssetType struct {
496
+ state protoimpl.MessageState
497
+ sizeCache protoimpl.SizeCache
498
+ unknownFields protoimpl.UnknownFields
499
+
500
+ // Lansweeper Asset Type. Full list available here: /lansweeperapis/packages/model/masterData/content/masterData.json
501
+ LsName string `protobuf:"bytes,1,opt,name=ls_name,json=lsName,proto3" json:"ls_name,omitempty"`
502
+ // Fing Type
503
+ FingType *string `protobuf:"bytes,2,opt,name=fing_type,json=fingType,proto3,oneof" json:"fing_type,omitempty"`
504
+ }
505
+
506
+ func (x *AssetType) Reset() {
507
+ *x = AssetType{}
508
+ if protoimpl.UnsafeEnabled {
509
+ mi := &file_outbound_proto_msgTypes[7]
510
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
511
+ ms.StoreMessageInfo(mi)
512
+ }
513
+ }
514
+
515
+ func (x *AssetType) String() string {
516
+ return protoimpl.X.MessageStringOf(x)
517
+ }
518
+
519
+ func (*AssetType) ProtoMessage() {}
520
+
521
+ func (x *AssetType) ProtoReflect() protoreflect.Message {
522
+ mi := &file_outbound_proto_msgTypes[7]
523
+ if protoimpl.UnsafeEnabled && x != nil {
524
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
525
+ if ms.LoadMessageInfo() == nil {
526
+ ms.StoreMessageInfo(mi)
527
+ }
528
+ return ms
529
+ }
530
+ return mi.MessageOf(x)
531
+ }
532
+
533
+ // Deprecated: Use AssetType.ProtoReflect.Descriptor instead.
534
+ func (*AssetType) Descriptor() ([]byte, []int) {
535
+ return file_outbound_proto_rawDescGZIP(), []int{7}
536
+ }
537
+
538
+ func (x *AssetType) GetLsName() string {
539
+ if x != nil {
540
+ return x.LsName
541
+ }
542
+ return ""
543
+ }
544
+
545
+ func (x *AssetType) GetFingType() string {
546
+ if x != nil && x.FingType != nil {
547
+ return *x.FingType
548
+ }
549
+ return ""
550
+ }
551
+
552
+ // *
553
+ type CoreFields struct {
554
+ state protoimpl.MessageState
555
+ sizeCache protoimpl.SizeCache
556
+ unknownFields protoimpl.UnknownFields
557
+
558
+ Type *AssetType `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
559
+ Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
560
+ Domain *string `protobuf:"bytes,3,opt,name=domain,proto3,oneof" json:"domain,omitempty"`
561
+ IpAddress *string `protobuf:"bytes,4,opt,name=ip_address,json=ipAddress,proto3,oneof" json:"ip_address,omitempty"`
562
+ Serial *string `protobuf:"bytes,5,opt,name=serial,proto3,oneof" json:"serial,omitempty"`
563
+ Mac *string `protobuf:"bytes,6,opt,name=mac,proto3,oneof" json:"mac,omitempty"`
564
+ MacVendor *string `protobuf:"bytes,7,opt,name=mac_vendor,json=macVendor,proto3,oneof" json:"mac_vendor,omitempty"`
565
+ SensorId *string `protobuf:"bytes,8,opt,name=sensor_id,json=sensorId,proto3,oneof" json:"sensor_id,omitempty"`
566
+ }
567
+
568
+ func (x *CoreFields) Reset() {
569
+ *x = CoreFields{}
570
+ if protoimpl.UnsafeEnabled {
571
+ mi := &file_outbound_proto_msgTypes[8]
572
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
573
+ ms.StoreMessageInfo(mi)
574
+ }
575
+ }
576
+
577
+ func (x *CoreFields) String() string {
578
+ return protoimpl.X.MessageStringOf(x)
579
+ }
580
+
581
+ func (*CoreFields) ProtoMessage() {}
582
+
583
+ func (x *CoreFields) ProtoReflect() protoreflect.Message {
584
+ mi := &file_outbound_proto_msgTypes[8]
585
+ if protoimpl.UnsafeEnabled && x != nil {
586
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
587
+ if ms.LoadMessageInfo() == nil {
588
+ ms.StoreMessageInfo(mi)
589
+ }
590
+ return ms
591
+ }
592
+ return mi.MessageOf(x)
593
+ }
594
+
595
+ // Deprecated: Use CoreFields.ProtoReflect.Descriptor instead.
596
+ func (*CoreFields) Descriptor() ([]byte, []int) {
597
+ return file_outbound_proto_rawDescGZIP(), []int{8}
598
+ }
599
+
600
+ func (x *CoreFields) GetType() *AssetType {
601
+ if x != nil {
602
+ return x.Type
603
+ }
604
+ return nil
605
+ }
606
+
607
+ func (x *CoreFields) GetName() string {
608
+ if x != nil {
609
+ return x.Name
610
+ }
611
+ return ""
612
+ }
613
+
614
+ func (x *CoreFields) GetDomain() string {
615
+ if x != nil && x.Domain != nil {
616
+ return *x.Domain
617
+ }
618
+ return ""
619
+ }
620
+
621
+ func (x *CoreFields) GetIpAddress() string {
622
+ if x != nil && x.IpAddress != nil {
623
+ return *x.IpAddress
624
+ }
625
+ return ""
626
+ }
627
+
628
+ func (x *CoreFields) GetSerial() string {
629
+ if x != nil && x.Serial != nil {
630
+ return *x.Serial
631
+ }
632
+ return ""
633
+ }
634
+
635
+ func (x *CoreFields) GetMac() string {
636
+ if x != nil && x.Mac != nil {
637
+ return *x.Mac
638
+ }
639
+ return ""
640
+ }
641
+
642
+ func (x *CoreFields) GetMacVendor() string {
643
+ if x != nil && x.MacVendor != nil {
644
+ return *x.MacVendor
645
+ }
646
+ return ""
647
+ }
648
+
649
+ func (x *CoreFields) GetSensorId() string {
650
+ if x != nil && x.SensorId != nil {
651
+ return *x.SensorId
652
+ }
653
+ return ""
654
+ }
655
+
656
+ type HardwareInfo struct {
657
+ state protoimpl.MessageState
658
+ sizeCache protoimpl.SizeCache
659
+ unknownFields protoimpl.UnknownFields
660
+
661
+ TypeId *int64 `protobuf:"varint,1,opt,name=type_id,json=typeId,proto3,oneof" json:"type_id,omitempty"`
662
+ MakeId *int64 `protobuf:"varint,2,opt,name=make_id,json=makeId,proto3,oneof" json:"make_id,omitempty"`
663
+ ModelId *int64 `protobuf:"varint,3,opt,name=model_id,json=modelId,proto3,oneof" json:"model_id,omitempty"`
664
+ FamilyId *int64 `protobuf:"varint,4,opt,name=family_id,json=familyId,proto3,oneof" json:"family_id,omitempty"`
665
+ IsFamily *bool `protobuf:"varint,6,opt,name=is_family,json=isFamily,proto3,oneof" json:"is_family,omitempty"`
666
+ Serial *string `protobuf:"bytes,7,opt,name=serial,proto3,oneof" json:"serial,omitempty"`
667
+ TypeName *string `protobuf:"bytes,10,opt,name=type_name,json=typeName,proto3,oneof" json:"type_name,omitempty"`
668
+ MakeName *string `protobuf:"bytes,11,opt,name=make_name,json=makeName,proto3,oneof" json:"make_name,omitempty"`
669
+ ModelName *string `protobuf:"bytes,12,opt,name=model_name,json=modelName,proto3,oneof" json:"model_name,omitempty"`
670
+ FamilyName *string `protobuf:"bytes,13,opt,name=family_name,json=familyName,proto3,oneof" json:"family_name,omitempty"`
671
+ Cpe *string `protobuf:"bytes,21,opt,name=cpe,proto3,oneof" json:"cpe,omitempty"`
672
+ Rank *int32 `protobuf:"varint,20,opt,name=rank,proto3,oneof" json:"rank,omitempty"`
673
+ CatalogBrand *CatalogBrand `protobuf:"bytes,22,opt,name=catalog_brand,json=catalogBrand,proto3,oneof" json:"catalog_brand,omitempty"`
674
+ CatalogModel *CatalogModel `protobuf:"bytes,23,opt,name=catalog_model,json=catalogModel,proto3,oneof" json:"catalog_model,omitempty"`
675
+ Raw *RawHardwareInfo `protobuf:"bytes,24,opt,name=raw,proto3,oneof" json:"raw,omitempty"`
676
+ }
677
+
678
+ func (x *HardwareInfo) Reset() {
679
+ *x = HardwareInfo{}
680
+ if protoimpl.UnsafeEnabled {
681
+ mi := &file_outbound_proto_msgTypes[9]
682
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
683
+ ms.StoreMessageInfo(mi)
684
+ }
685
+ }
686
+
687
+ func (x *HardwareInfo) String() string {
688
+ return protoimpl.X.MessageStringOf(x)
689
+ }
690
+
691
+ func (*HardwareInfo) ProtoMessage() {}
692
+
693
+ func (x *HardwareInfo) ProtoReflect() protoreflect.Message {
694
+ mi := &file_outbound_proto_msgTypes[9]
695
+ if protoimpl.UnsafeEnabled && x != nil {
696
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
697
+ if ms.LoadMessageInfo() == nil {
698
+ ms.StoreMessageInfo(mi)
699
+ }
700
+ return ms
701
+ }
702
+ return mi.MessageOf(x)
703
+ }
704
+
705
+ // Deprecated: Use HardwareInfo.ProtoReflect.Descriptor instead.
706
+ func (*HardwareInfo) Descriptor() ([]byte, []int) {
707
+ return file_outbound_proto_rawDescGZIP(), []int{9}
708
+ }
709
+
710
+ func (x *HardwareInfo) GetTypeId() int64 {
711
+ if x != nil && x.TypeId != nil {
712
+ return *x.TypeId
713
+ }
714
+ return 0
715
+ }
716
+
717
+ func (x *HardwareInfo) GetMakeId() int64 {
718
+ if x != nil && x.MakeId != nil {
719
+ return *x.MakeId
720
+ }
721
+ return 0
722
+ }
723
+
724
+ func (x *HardwareInfo) GetModelId() int64 {
725
+ if x != nil && x.ModelId != nil {
726
+ return *x.ModelId
727
+ }
728
+ return 0
729
+ }
730
+
731
+ func (x *HardwareInfo) GetFamilyId() int64 {
732
+ if x != nil && x.FamilyId != nil {
733
+ return *x.FamilyId
734
+ }
735
+ return 0
736
+ }
737
+
738
+ func (x *HardwareInfo) GetIsFamily() bool {
739
+ if x != nil && x.IsFamily != nil {
740
+ return *x.IsFamily
741
+ }
742
+ return false
743
+ }
744
+
745
+ func (x *HardwareInfo) GetSerial() string {
746
+ if x != nil && x.Serial != nil {
747
+ return *x.Serial
748
+ }
749
+ return ""
750
+ }
751
+
752
+ func (x *HardwareInfo) GetTypeName() string {
753
+ if x != nil && x.TypeName != nil {
754
+ return *x.TypeName
755
+ }
756
+ return ""
757
+ }
758
+
759
+ func (x *HardwareInfo) GetMakeName() string {
760
+ if x != nil && x.MakeName != nil {
761
+ return *x.MakeName
762
+ }
763
+ return ""
764
+ }
765
+
766
+ func (x *HardwareInfo) GetModelName() string {
767
+ if x != nil && x.ModelName != nil {
768
+ return *x.ModelName
769
+ }
770
+ return ""
771
+ }
772
+
773
+ func (x *HardwareInfo) GetFamilyName() string {
774
+ if x != nil && x.FamilyName != nil {
775
+ return *x.FamilyName
776
+ }
777
+ return ""
778
+ }
779
+
780
+ func (x *HardwareInfo) GetCpe() string {
781
+ if x != nil && x.Cpe != nil {
782
+ return *x.Cpe
783
+ }
784
+ return ""
785
+ }
786
+
787
+ func (x *HardwareInfo) GetRank() int32 {
788
+ if x != nil && x.Rank != nil {
789
+ return *x.Rank
790
+ }
791
+ return 0
792
+ }
793
+
794
+ func (x *HardwareInfo) GetCatalogBrand() *CatalogBrand {
795
+ if x != nil {
796
+ return x.CatalogBrand
797
+ }
798
+ return nil
799
+ }
800
+
801
+ func (x *HardwareInfo) GetCatalogModel() *CatalogModel {
802
+ if x != nil {
803
+ return x.CatalogModel
804
+ }
805
+ return nil
806
+ }
807
+
808
+ func (x *HardwareInfo) GetRaw() *RawHardwareInfo {
809
+ if x != nil {
810
+ return x.Raw
811
+ }
812
+ return nil
813
+ }
814
+
815
+ type RawHardwareInfo struct {
816
+ state protoimpl.MessageState
817
+ sizeCache protoimpl.SizeCache
818
+ unknownFields protoimpl.UnknownFields
819
+
820
+ Architecture *string `protobuf:"bytes,1,opt,name=architecture,proto3,oneof" json:"architecture,omitempty"`
821
+ Model *string `protobuf:"bytes,2,opt,name=model,proto3,oneof" json:"model,omitempty"`
822
+ Manufacturer *string `protobuf:"bytes,3,opt,name=manufacturer,proto3,oneof" json:"manufacturer,omitempty"`
823
+ SerialNumber *string `protobuf:"bytes,4,opt,name=serial_number,json=serialNumber,proto3,oneof" json:"serial_number,omitempty"`
824
+ }
825
+
826
+ func (x *RawHardwareInfo) Reset() {
827
+ *x = RawHardwareInfo{}
828
+ if protoimpl.UnsafeEnabled {
829
+ mi := &file_outbound_proto_msgTypes[10]
830
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
831
+ ms.StoreMessageInfo(mi)
832
+ }
833
+ }
834
+
835
+ func (x *RawHardwareInfo) String() string {
836
+ return protoimpl.X.MessageStringOf(x)
837
+ }
838
+
839
+ func (*RawHardwareInfo) ProtoMessage() {}
840
+
841
+ func (x *RawHardwareInfo) ProtoReflect() protoreflect.Message {
842
+ mi := &file_outbound_proto_msgTypes[10]
843
+ if protoimpl.UnsafeEnabled && x != nil {
844
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
845
+ if ms.LoadMessageInfo() == nil {
846
+ ms.StoreMessageInfo(mi)
847
+ }
848
+ return ms
849
+ }
850
+ return mi.MessageOf(x)
851
+ }
852
+
853
+ // Deprecated: Use RawHardwareInfo.ProtoReflect.Descriptor instead.
854
+ func (*RawHardwareInfo) Descriptor() ([]byte, []int) {
855
+ return file_outbound_proto_rawDescGZIP(), []int{10}
856
+ }
857
+
858
+ func (x *RawHardwareInfo) GetArchitecture() string {
859
+ if x != nil && x.Architecture != nil {
860
+ return *x.Architecture
861
+ }
862
+ return ""
863
+ }
864
+
865
+ func (x *RawHardwareInfo) GetModel() string {
866
+ if x != nil && x.Model != nil {
867
+ return *x.Model
868
+ }
869
+ return ""
870
+ }
871
+
872
+ func (x *RawHardwareInfo) GetManufacturer() string {
873
+ if x != nil && x.Manufacturer != nil {
874
+ return *x.Manufacturer
875
+ }
876
+ return ""
877
+ }
878
+
879
+ func (x *RawHardwareInfo) GetSerialNumber() string {
880
+ if x != nil && x.SerialNumber != nil {
881
+ return *x.SerialNumber
882
+ }
883
+ return ""
884
+ }
885
+
886
+ type OperatingSystemInfo struct {
887
+ state protoimpl.MessageState
888
+ sizeCache protoimpl.SizeCache
889
+ unknownFields protoimpl.UnknownFields
890
+
891
+ Id *int64 `protobuf:"varint,1,opt,name=id,proto3,oneof" json:"id,omitempty"`
892
+ Name *string `protobuf:"bytes,2,opt,name=name,proto3,oneof" json:"name,omitempty"`
893
+ Version *string `protobuf:"bytes,3,opt,name=version,proto3,oneof" json:"version,omitempty"`
894
+ Build *string `protobuf:"bytes,4,opt,name=build,proto3,oneof" json:"build,omitempty"`
895
+ FwVersion *string `protobuf:"bytes,5,opt,name=fw_version,json=fwVersion,proto3,oneof" json:"fw_version,omitempty"`
896
+ Cpe *string `protobuf:"bytes,6,opt,name=cpe,proto3,oneof" json:"cpe,omitempty"`
897
+ FwCpe *string `protobuf:"bytes,7,opt,name=fw_cpe,json=fwCpe,proto3,oneof" json:"fw_cpe,omitempty"`
898
+ Rank *int32 `protobuf:"varint,8,opt,name=rank,proto3,oneof" json:"rank,omitempty"`
899
+ CatalogBrand *CatalogBrand `protobuf:"bytes,9,opt,name=catalog_brand,json=catalogBrand,proto3,oneof" json:"catalog_brand,omitempty"`
900
+ CatalogOs *CatalogOs `protobuf:"bytes,10,opt,name=catalog_os,json=catalogOs,proto3,oneof" json:"catalog_os,omitempty"`
901
+ // Types that are assignable to Raw:
902
+ //
903
+ // *OperatingSystemInfo_Windows
904
+ Raw isOperatingSystemInfo_Raw `protobuf_oneof:"raw"`
905
+ }
906
+
907
+ func (x *OperatingSystemInfo) Reset() {
908
+ *x = OperatingSystemInfo{}
909
+ if protoimpl.UnsafeEnabled {
910
+ mi := &file_outbound_proto_msgTypes[11]
911
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
912
+ ms.StoreMessageInfo(mi)
913
+ }
914
+ }
915
+
916
+ func (x *OperatingSystemInfo) String() string {
917
+ return protoimpl.X.MessageStringOf(x)
918
+ }
919
+
920
+ func (*OperatingSystemInfo) ProtoMessage() {}
921
+
922
+ func (x *OperatingSystemInfo) ProtoReflect() protoreflect.Message {
923
+ mi := &file_outbound_proto_msgTypes[11]
924
+ if protoimpl.UnsafeEnabled && x != nil {
925
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
926
+ if ms.LoadMessageInfo() == nil {
927
+ ms.StoreMessageInfo(mi)
928
+ }
929
+ return ms
930
+ }
931
+ return mi.MessageOf(x)
932
+ }
933
+
934
+ // Deprecated: Use OperatingSystemInfo.ProtoReflect.Descriptor instead.
935
+ func (*OperatingSystemInfo) Descriptor() ([]byte, []int) {
936
+ return file_outbound_proto_rawDescGZIP(), []int{11}
937
+ }
938
+
939
+ func (x *OperatingSystemInfo) GetId() int64 {
940
+ if x != nil && x.Id != nil {
941
+ return *x.Id
942
+ }
943
+ return 0
944
+ }
945
+
946
+ func (x *OperatingSystemInfo) GetName() string {
947
+ if x != nil && x.Name != nil {
948
+ return *x.Name
949
+ }
950
+ return ""
951
+ }
952
+
953
+ func (x *OperatingSystemInfo) GetVersion() string {
954
+ if x != nil && x.Version != nil {
955
+ return *x.Version
956
+ }
957
+ return ""
958
+ }
959
+
960
+ func (x *OperatingSystemInfo) GetBuild() string {
961
+ if x != nil && x.Build != nil {
962
+ return *x.Build
963
+ }
964
+ return ""
965
+ }
966
+
967
+ func (x *OperatingSystemInfo) GetFwVersion() string {
968
+ if x != nil && x.FwVersion != nil {
969
+ return *x.FwVersion
970
+ }
971
+ return ""
972
+ }
973
+
974
+ func (x *OperatingSystemInfo) GetCpe() string {
975
+ if x != nil && x.Cpe != nil {
976
+ return *x.Cpe
977
+ }
978
+ return ""
979
+ }
980
+
981
+ func (x *OperatingSystemInfo) GetFwCpe() string {
982
+ if x != nil && x.FwCpe != nil {
983
+ return *x.FwCpe
984
+ }
985
+ return ""
986
+ }
987
+
988
+ func (x *OperatingSystemInfo) GetRank() int32 {
989
+ if x != nil && x.Rank != nil {
990
+ return *x.Rank
991
+ }
992
+ return 0
993
+ }
994
+
995
+ func (x *OperatingSystemInfo) GetCatalogBrand() *CatalogBrand {
996
+ if x != nil {
997
+ return x.CatalogBrand
998
+ }
999
+ return nil
1000
+ }
1001
+
1002
+ func (x *OperatingSystemInfo) GetCatalogOs() *CatalogOs {
1003
+ if x != nil {
1004
+ return x.CatalogOs
1005
+ }
1006
+ return nil
1007
+ }
1008
+
1009
+ func (m *OperatingSystemInfo) GetRaw() isOperatingSystemInfo_Raw {
1010
+ if m != nil {
1011
+ return m.Raw
1012
+ }
1013
+ return nil
1014
+ }
1015
+
1016
+ func (x *OperatingSystemInfo) GetWindows() *WindowsRawOperatingSystemInfo {
1017
+ if x, ok := x.GetRaw().(*OperatingSystemInfo_Windows); ok {
1018
+ return x.Windows
1019
+ }
1020
+ return nil
1021
+ }
1022
+
1023
+ type isOperatingSystemInfo_Raw interface {
1024
+ isOperatingSystemInfo_Raw()
1025
+ }
1026
+
1027
+ type OperatingSystemInfo_Windows struct {
1028
+ Windows *WindowsRawOperatingSystemInfo `protobuf:"bytes,32,opt,name=windows,proto3,oneof"`
1029
+ }
1030
+
1031
+ func (*OperatingSystemInfo_Windows) isOperatingSystemInfo_Raw() {}
1032
+
1033
+ type WindowsRawOperatingSystemInfo struct {
1034
+ state protoimpl.MessageState
1035
+ sizeCache protoimpl.SizeCache
1036
+ unknownFields protoimpl.UnknownFields
1037
+
1038
+ Version *string `protobuf:"bytes,1,opt,name=version,proto3,oneof" json:"version,omitempty"`
1039
+ ServicePack *int32 `protobuf:"varint,2,opt,name=service_pack,json=servicePack,proto3,oneof" json:"service_pack,omitempty"`
1040
+ Build *string `protobuf:"bytes,3,opt,name=build,proto3,oneof" json:"build,omitempty"` // "WindowsVersion": "10.0.19045"
1041
+ VersionName *string `protobuf:"bytes,4,opt,name=version_name,json=versionName,proto3,oneof" json:"version_name,omitempty"` // OsVersion": "22H2",
1042
+ BuildNumber *string `protobuf:"bytes,5,opt,name=build_number,json=buildNumber,proto3,oneof" json:"build_number,omitempty"` // "OsBuildNumber": "2486",
1043
+ ProductType *int32 `protobuf:"varint,6,opt,name=product_type,json=productType,proto3,oneof" json:"product_type,omitempty"` // WindowsProductType: 1
1044
+ IsDomainController *bool `protobuf:"varint,7,opt,name=is_domain_controller,json=isDomainController,proto3,oneof" json:"is_domain_controller,omitempty"`
1045
+ PartOfDomain *bool `protobuf:"varint,8,opt,name=part_of_domain,json=partOfDomain,proto3,oneof" json:"part_of_domain,omitempty"`
1046
+ IsAzureAdJoined *bool `protobuf:"varint,9,opt,name=is_azure_ad_joined,json=isAzureAdJoined,proto3,oneof" json:"is_azure_ad_joined,omitempty"`
1047
+ OsCode *string `protobuf:"bytes,10,opt,name=os_code,json=osCode,proto3,oneof" json:"os_code,omitempty"` // "OsCode": "10.0.19045" - with S if server
1048
+ }
1049
+
1050
+ func (x *WindowsRawOperatingSystemInfo) Reset() {
1051
+ *x = WindowsRawOperatingSystemInfo{}
1052
+ if protoimpl.UnsafeEnabled {
1053
+ mi := &file_outbound_proto_msgTypes[12]
1054
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1055
+ ms.StoreMessageInfo(mi)
1056
+ }
1057
+ }
1058
+
1059
+ func (x *WindowsRawOperatingSystemInfo) String() string {
1060
+ return protoimpl.X.MessageStringOf(x)
1061
+ }
1062
+
1063
+ func (*WindowsRawOperatingSystemInfo) ProtoMessage() {}
1064
+
1065
+ func (x *WindowsRawOperatingSystemInfo) ProtoReflect() protoreflect.Message {
1066
+ mi := &file_outbound_proto_msgTypes[12]
1067
+ if protoimpl.UnsafeEnabled && x != nil {
1068
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1069
+ if ms.LoadMessageInfo() == nil {
1070
+ ms.StoreMessageInfo(mi)
1071
+ }
1072
+ return ms
1073
+ }
1074
+ return mi.MessageOf(x)
1075
+ }
1076
+
1077
+ // Deprecated: Use WindowsRawOperatingSystemInfo.ProtoReflect.Descriptor instead.
1078
+ func (*WindowsRawOperatingSystemInfo) Descriptor() ([]byte, []int) {
1079
+ return file_outbound_proto_rawDescGZIP(), []int{12}
1080
+ }
1081
+
1082
+ func (x *WindowsRawOperatingSystemInfo) GetVersion() string {
1083
+ if x != nil && x.Version != nil {
1084
+ return *x.Version
1085
+ }
1086
+ return ""
1087
+ }
1088
+
1089
+ func (x *WindowsRawOperatingSystemInfo) GetServicePack() int32 {
1090
+ if x != nil && x.ServicePack != nil {
1091
+ return *x.ServicePack
1092
+ }
1093
+ return 0
1094
+ }
1095
+
1096
+ func (x *WindowsRawOperatingSystemInfo) GetBuild() string {
1097
+ if x != nil && x.Build != nil {
1098
+ return *x.Build
1099
+ }
1100
+ return ""
1101
+ }
1102
+
1103
+ func (x *WindowsRawOperatingSystemInfo) GetVersionName() string {
1104
+ if x != nil && x.VersionName != nil {
1105
+ return *x.VersionName
1106
+ }
1107
+ return ""
1108
+ }
1109
+
1110
+ func (x *WindowsRawOperatingSystemInfo) GetBuildNumber() string {
1111
+ if x != nil && x.BuildNumber != nil {
1112
+ return *x.BuildNumber
1113
+ }
1114
+ return ""
1115
+ }
1116
+
1117
+ func (x *WindowsRawOperatingSystemInfo) GetProductType() int32 {
1118
+ if x != nil && x.ProductType != nil {
1119
+ return *x.ProductType
1120
+ }
1121
+ return 0
1122
+ }
1123
+
1124
+ func (x *WindowsRawOperatingSystemInfo) GetIsDomainController() bool {
1125
+ if x != nil && x.IsDomainController != nil {
1126
+ return *x.IsDomainController
1127
+ }
1128
+ return false
1129
+ }
1130
+
1131
+ func (x *WindowsRawOperatingSystemInfo) GetPartOfDomain() bool {
1132
+ if x != nil && x.PartOfDomain != nil {
1133
+ return *x.PartOfDomain
1134
+ }
1135
+ return false
1136
+ }
1137
+
1138
+ func (x *WindowsRawOperatingSystemInfo) GetIsAzureAdJoined() bool {
1139
+ if x != nil && x.IsAzureAdJoined != nil {
1140
+ return *x.IsAzureAdJoined
1141
+ }
1142
+ return false
1143
+ }
1144
+
1145
+ func (x *WindowsRawOperatingSystemInfo) GetOsCode() string {
1146
+ if x != nil && x.OsCode != nil {
1147
+ return *x.OsCode
1148
+ }
1149
+ return ""
1150
+ }
1151
+
1152
+ type SoftwareInventory struct {
1153
+ state protoimpl.MessageState
1154
+ sizeCache protoimpl.SizeCache
1155
+ unknownFields protoimpl.UnknownFields
1156
+
1157
+ Timestamp *timestamppb.Timestamp `protobuf:"bytes,1,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
1158
+ Software []*Software `protobuf:"bytes,2,rep,name=software,proto3" json:"software,omitempty"`
1159
+ }
1160
+
1161
+ func (x *SoftwareInventory) Reset() {
1162
+ *x = SoftwareInventory{}
1163
+ if protoimpl.UnsafeEnabled {
1164
+ mi := &file_outbound_proto_msgTypes[13]
1165
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1166
+ ms.StoreMessageInfo(mi)
1167
+ }
1168
+ }
1169
+
1170
+ func (x *SoftwareInventory) String() string {
1171
+ return protoimpl.X.MessageStringOf(x)
1172
+ }
1173
+
1174
+ func (*SoftwareInventory) ProtoMessage() {}
1175
+
1176
+ func (x *SoftwareInventory) ProtoReflect() protoreflect.Message {
1177
+ mi := &file_outbound_proto_msgTypes[13]
1178
+ if protoimpl.UnsafeEnabled && x != nil {
1179
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1180
+ if ms.LoadMessageInfo() == nil {
1181
+ ms.StoreMessageInfo(mi)
1182
+ }
1183
+ return ms
1184
+ }
1185
+ return mi.MessageOf(x)
1186
+ }
1187
+
1188
+ // Deprecated: Use SoftwareInventory.ProtoReflect.Descriptor instead.
1189
+ func (*SoftwareInventory) Descriptor() ([]byte, []int) {
1190
+ return file_outbound_proto_rawDescGZIP(), []int{13}
1191
+ }
1192
+
1193
+ func (x *SoftwareInventory) GetTimestamp() *timestamppb.Timestamp {
1194
+ if x != nil {
1195
+ return x.Timestamp
1196
+ }
1197
+ return nil
1198
+ }
1199
+
1200
+ func (x *SoftwareInventory) GetSoftware() []*Software {
1201
+ if x != nil {
1202
+ return x.Software
1203
+ }
1204
+ return nil
1205
+ }
1206
+
1207
+ type Software struct {
1208
+ state protoimpl.MessageState
1209
+ sizeCache protoimpl.SizeCache
1210
+ unknownFields protoimpl.UnknownFields
1211
+
1212
+ Rank *int32 `protobuf:"varint,1,opt,name=rank,proto3,oneof" json:"rank,omitempty"`
1213
+ TypeId *int64 `protobuf:"varint,2,opt,name=type_id,json=typeId,proto3,oneof" json:"type_id,omitempty"`
1214
+ CatId *int64 `protobuf:"varint,3,opt,name=cat_id,json=catId,proto3,oneof" json:"cat_id,omitempty"`
1215
+ MakeId *int64 `protobuf:"varint,4,opt,name=make_id,json=makeId,proto3,oneof" json:"make_id,omitempty"`
1216
+ SwId *int64 `protobuf:"varint,5,opt,name=sw_id,json=swId,proto3,oneof" json:"sw_id,omitempty"`
1217
+ ParentId *int64 `protobuf:"varint,6,opt,name=parent_id,json=parentId,proto3,oneof" json:"parent_id,omitempty"`
1218
+ TypeName *string `protobuf:"bytes,7,opt,name=type_name,json=typeName,proto3,oneof" json:"type_name,omitempty"`
1219
+ CatName *string `protobuf:"bytes,8,opt,name=cat_name,json=catName,proto3,oneof" json:"cat_name,omitempty"`
1220
+ MakeName *string `protobuf:"bytes,9,opt,name=make_name,json=makeName,proto3,oneof" json:"make_name,omitempty"`
1221
+ Name *string `protobuf:"bytes,10,opt,name=name,proto3,oneof" json:"name,omitempty"`
1222
+ Version *string `protobuf:"bytes,11,opt,name=version,proto3,oneof" json:"version,omitempty"`
1223
+ MarketVer *string `protobuf:"bytes,12,opt,name=market_ver,json=marketVer,proto3,oneof" json:"market_ver,omitempty"`
1224
+ Edition *string `protobuf:"bytes,13,opt,name=edition,proto3,oneof" json:"edition,omitempty"`
1225
+ Build *string `protobuf:"bytes,14,opt,name=build,proto3,oneof" json:"build,omitempty"`
1226
+ Cpe *string `protobuf:"bytes,15,opt,name=cpe,proto3,oneof" json:"cpe,omitempty"`
1227
+ CatalogSoftware *CatalogSoftware `protobuf:"bytes,16,opt,name=catalog_software,json=catalogSoftware,proto3,oneof" json:"catalog_software,omitempty"`
1228
+ Raw *RawSoftware `protobuf:"bytes,17,opt,name=raw,proto3" json:"raw,omitempty"`
1229
+ }
1230
+
1231
+ func (x *Software) Reset() {
1232
+ *x = Software{}
1233
+ if protoimpl.UnsafeEnabled {
1234
+ mi := &file_outbound_proto_msgTypes[14]
1235
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1236
+ ms.StoreMessageInfo(mi)
1237
+ }
1238
+ }
1239
+
1240
+ func (x *Software) String() string {
1241
+ return protoimpl.X.MessageStringOf(x)
1242
+ }
1243
+
1244
+ func (*Software) ProtoMessage() {}
1245
+
1246
+ func (x *Software) ProtoReflect() protoreflect.Message {
1247
+ mi := &file_outbound_proto_msgTypes[14]
1248
+ if protoimpl.UnsafeEnabled && x != nil {
1249
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1250
+ if ms.LoadMessageInfo() == nil {
1251
+ ms.StoreMessageInfo(mi)
1252
+ }
1253
+ return ms
1254
+ }
1255
+ return mi.MessageOf(x)
1256
+ }
1257
+
1258
+ // Deprecated: Use Software.ProtoReflect.Descriptor instead.
1259
+ func (*Software) Descriptor() ([]byte, []int) {
1260
+ return file_outbound_proto_rawDescGZIP(), []int{14}
1261
+ }
1262
+
1263
+ func (x *Software) GetRank() int32 {
1264
+ if x != nil && x.Rank != nil {
1265
+ return *x.Rank
1266
+ }
1267
+ return 0
1268
+ }
1269
+
1270
+ func (x *Software) GetTypeId() int64 {
1271
+ if x != nil && x.TypeId != nil {
1272
+ return *x.TypeId
1273
+ }
1274
+ return 0
1275
+ }
1276
+
1277
+ func (x *Software) GetCatId() int64 {
1278
+ if x != nil && x.CatId != nil {
1279
+ return *x.CatId
1280
+ }
1281
+ return 0
1282
+ }
1283
+
1284
+ func (x *Software) GetMakeId() int64 {
1285
+ if x != nil && x.MakeId != nil {
1286
+ return *x.MakeId
1287
+ }
1288
+ return 0
1289
+ }
1290
+
1291
+ func (x *Software) GetSwId() int64 {
1292
+ if x != nil && x.SwId != nil {
1293
+ return *x.SwId
1294
+ }
1295
+ return 0
1296
+ }
1297
+
1298
+ func (x *Software) GetParentId() int64 {
1299
+ if x != nil && x.ParentId != nil {
1300
+ return *x.ParentId
1301
+ }
1302
+ return 0
1303
+ }
1304
+
1305
+ func (x *Software) GetTypeName() string {
1306
+ if x != nil && x.TypeName != nil {
1307
+ return *x.TypeName
1308
+ }
1309
+ return ""
1310
+ }
1311
+
1312
+ func (x *Software) GetCatName() string {
1313
+ if x != nil && x.CatName != nil {
1314
+ return *x.CatName
1315
+ }
1316
+ return ""
1317
+ }
1318
+
1319
+ func (x *Software) GetMakeName() string {
1320
+ if x != nil && x.MakeName != nil {
1321
+ return *x.MakeName
1322
+ }
1323
+ return ""
1324
+ }
1325
+
1326
+ func (x *Software) GetName() string {
1327
+ if x != nil && x.Name != nil {
1328
+ return *x.Name
1329
+ }
1330
+ return ""
1331
+ }
1332
+
1333
+ func (x *Software) GetVersion() string {
1334
+ if x != nil && x.Version != nil {
1335
+ return *x.Version
1336
+ }
1337
+ return ""
1338
+ }
1339
+
1340
+ func (x *Software) GetMarketVer() string {
1341
+ if x != nil && x.MarketVer != nil {
1342
+ return *x.MarketVer
1343
+ }
1344
+ return ""
1345
+ }
1346
+
1347
+ func (x *Software) GetEdition() string {
1348
+ if x != nil && x.Edition != nil {
1349
+ return *x.Edition
1350
+ }
1351
+ return ""
1352
+ }
1353
+
1354
+ func (x *Software) GetBuild() string {
1355
+ if x != nil && x.Build != nil {
1356
+ return *x.Build
1357
+ }
1358
+ return ""
1359
+ }
1360
+
1361
+ func (x *Software) GetCpe() string {
1362
+ if x != nil && x.Cpe != nil {
1363
+ return *x.Cpe
1364
+ }
1365
+ return ""
1366
+ }
1367
+
1368
+ func (x *Software) GetCatalogSoftware() *CatalogSoftware {
1369
+ if x != nil {
1370
+ return x.CatalogSoftware
1371
+ }
1372
+ return nil
1373
+ }
1374
+
1375
+ func (x *Software) GetRaw() *RawSoftware {
1376
+ if x != nil {
1377
+ return x.Raw
1378
+ }
1379
+ return nil
1380
+ }
1381
+
1382
+ type RawSoftware struct {
1383
+ state protoimpl.MessageState
1384
+ sizeCache protoimpl.SizeCache
1385
+ unknownFields protoimpl.UnknownFields
1386
+
1387
+ Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
1388
+ Vendor *string `protobuf:"bytes,2,opt,name=vendor,proto3,oneof" json:"vendor,omitempty"`
1389
+ Version *string `protobuf:"bytes,3,opt,name=version,proto3,oneof" json:"version,omitempty"`
1390
+ Info *string `protobuf:"bytes,4,opt,name=info,proto3,oneof" json:"info,omitempty"`
1391
+ ExePath *string `protobuf:"bytes,5,opt,name=exe_path,json=exePath,proto3,oneof" json:"exe_path,omitempty"`
1392
+ Arch *string `protobuf:"bytes,6,opt,name=arch,proto3,oneof" json:"arch,omitempty"` // when available the specific sw arch
1393
+ InstallDate *int64 `protobuf:"varint,7,opt,name=install_date,json=installDate,proto3,oneof" json:"install_date,omitempty"`
1394
+ SourceType *string `protobuf:"bytes,8,opt,name=source_type,json=sourceType,proto3,oneof" json:"source_type,omitempty"` // Registry | System | MsStore | Package | Custom | etc
1395
+ SwId *string `protobuf:"bytes,9,opt,name=sw_id,json=swId,proto3,oneof" json:"sw_id,omitempty"` // optional SW id on the client side
1396
+ }
1397
+
1398
+ func (x *RawSoftware) Reset() {
1399
+ *x = RawSoftware{}
1400
+ if protoimpl.UnsafeEnabled {
1401
+ mi := &file_outbound_proto_msgTypes[15]
1402
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1403
+ ms.StoreMessageInfo(mi)
1404
+ }
1405
+ }
1406
+
1407
+ func (x *RawSoftware) String() string {
1408
+ return protoimpl.X.MessageStringOf(x)
1409
+ }
1410
+
1411
+ func (*RawSoftware) ProtoMessage() {}
1412
+
1413
+ func (x *RawSoftware) ProtoReflect() protoreflect.Message {
1414
+ mi := &file_outbound_proto_msgTypes[15]
1415
+ if protoimpl.UnsafeEnabled && x != nil {
1416
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1417
+ if ms.LoadMessageInfo() == nil {
1418
+ ms.StoreMessageInfo(mi)
1419
+ }
1420
+ return ms
1421
+ }
1422
+ return mi.MessageOf(x)
1423
+ }
1424
+
1425
+ // Deprecated: Use RawSoftware.ProtoReflect.Descriptor instead.
1426
+ func (*RawSoftware) Descriptor() ([]byte, []int) {
1427
+ return file_outbound_proto_rawDescGZIP(), []int{15}
1428
+ }
1429
+
1430
+ func (x *RawSoftware) GetName() string {
1431
+ if x != nil {
1432
+ return x.Name
1433
+ }
1434
+ return ""
1435
+ }
1436
+
1437
+ func (x *RawSoftware) GetVendor() string {
1438
+ if x != nil && x.Vendor != nil {
1439
+ return *x.Vendor
1440
+ }
1441
+ return ""
1442
+ }
1443
+
1444
+ func (x *RawSoftware) GetVersion() string {
1445
+ if x != nil && x.Version != nil {
1446
+ return *x.Version
1447
+ }
1448
+ return ""
1449
+ }
1450
+
1451
+ func (x *RawSoftware) GetInfo() string {
1452
+ if x != nil && x.Info != nil {
1453
+ return *x.Info
1454
+ }
1455
+ return ""
1456
+ }
1457
+
1458
+ func (x *RawSoftware) GetExePath() string {
1459
+ if x != nil && x.ExePath != nil {
1460
+ return *x.ExePath
1461
+ }
1462
+ return ""
1463
+ }
1464
+
1465
+ func (x *RawSoftware) GetArch() string {
1466
+ if x != nil && x.Arch != nil {
1467
+ return *x.Arch
1468
+ }
1469
+ return ""
1470
+ }
1471
+
1472
+ func (x *RawSoftware) GetInstallDate() int64 {
1473
+ if x != nil && x.InstallDate != nil {
1474
+ return *x.InstallDate
1475
+ }
1476
+ return 0
1477
+ }
1478
+
1479
+ func (x *RawSoftware) GetSourceType() string {
1480
+ if x != nil && x.SourceType != nil {
1481
+ return *x.SourceType
1482
+ }
1483
+ return ""
1484
+ }
1485
+
1486
+ func (x *RawSoftware) GetSwId() string {
1487
+ if x != nil && x.SwId != nil {
1488
+ return *x.SwId
1489
+ }
1490
+ return ""
1491
+ }
1492
+
1493
+ type CatalogBrand struct {
1494
+ state protoimpl.MessageState
1495
+ sizeCache protoimpl.SizeCache
1496
+ unknownFields protoimpl.UnknownFields
1497
+
1498
+ Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
1499
+ MakeKey string `protobuf:"bytes,2,opt,name=make_key,json=makeKey,proto3" json:"make_key,omitempty"`
1500
+ MakeName string `protobuf:"bytes,3,opt,name=make_name,json=makeName,proto3" json:"make_name,omitempty"`
1501
+ OverrideId *int64 `protobuf:"varint,4,opt,name=override_id,json=overrideId,proto3,oneof" json:"override_id,omitempty"`
1502
+ ParentId *int64 `protobuf:"varint,18,opt,name=parent_id,json=parentId,proto3,oneof" json:"parent_id,omitempty"`
1503
+ LastUpdateTime *int64 `protobuf:"varint,5,opt,name=last_update_time,json=lastUpdateTime,proto3,oneof" json:"last_update_time,omitempty"`
1504
+ CountryCode *string `protobuf:"bytes,6,opt,name=country_code,json=countryCode,proto3,oneof" json:"country_code,omitempty"`
1505
+ LogoImageUrl *string `protobuf:"bytes,7,opt,name=logo_image_url,json=logoImageUrl,proto3,oneof" json:"logo_image_url,omitempty"`
1506
+ BannerImageUrl *string `protobuf:"bytes,8,opt,name=banner_image_url,json=bannerImageUrl,proto3,oneof" json:"banner_image_url,omitempty"`
1507
+ WikipediaId *string `protobuf:"bytes,9,opt,name=wikipedia_id,json=wikipediaId,proto3,oneof" json:"wikipedia_id,omitempty"`
1508
+ WikipediaLangCode *string `protobuf:"bytes,10,opt,name=wikipedia_lang_code,json=wikipediaLangCode,proto3,oneof" json:"wikipedia_lang_code,omitempty"`
1509
+ WebsiteUrl *string `protobuf:"bytes,11,opt,name=website_url,json=websiteUrl,proto3,oneof" json:"website_url,omitempty"`
1510
+ SupportUrl *string `protobuf:"bytes,12,opt,name=support_url,json=supportUrl,proto3,oneof" json:"support_url,omitempty"`
1511
+ SupportPhone *string `protobuf:"bytes,13,opt,name=support_phone,json=supportPhone,proto3,oneof" json:"support_phone,omitempty"`
1512
+ FacebookAccount *string `protobuf:"bytes,14,opt,name=facebook_account,json=facebookAccount,proto3,oneof" json:"facebook_account,omitempty"`
1513
+ TwitterAccount *string `protobuf:"bytes,15,opt,name=twitter_account,json=twitterAccount,proto3,oneof" json:"twitter_account,omitempty"`
1514
+ WarrantyUrl *string `protobuf:"bytes,16,opt,name=warranty_url,json=warrantyUrl,proto3,oneof" json:"warranty_url,omitempty"`
1515
+ WarrantyDirectUrl *string `protobuf:"bytes,17,opt,name=warranty_direct_url,json=warrantyDirectUrl,proto3,oneof" json:"warranty_direct_url,omitempty"`
1516
+ CommunityUrl *string `protobuf:"bytes,20,opt,name=community_url,json=communityUrl,proto3,oneof" json:"community_url,omitempty"`
1517
+ LinkedinAccount *string `protobuf:"bytes,21,opt,name=linkedin_account,json=linkedinAccount,proto3,oneof" json:"linkedin_account,omitempty"`
1518
+ InstagramAccount *string `protobuf:"bytes,22,opt,name=instagram_account,json=instagramAccount,proto3,oneof" json:"instagram_account,omitempty"`
1519
+ YoutubeAccount *string `protobuf:"bytes,23,opt,name=youtube_account,json=youtubeAccount,proto3,oneof" json:"youtube_account,omitempty"`
1520
+ PinterestAccount *string `protobuf:"bytes,24,opt,name=pinterest_account,json=pinterestAccount,proto3,oneof" json:"pinterest_account,omitempty"`
1521
+ ClassHardware *bool `protobuf:"varint,25,opt,name=class_hardware,json=classHardware,proto3,oneof" json:"class_hardware,omitempty"`
1522
+ ClassSoftware *bool `protobuf:"varint,26,opt,name=class_software,json=classSoftware,proto3,oneof" json:"class_software,omitempty"`
1523
+ ClassConsumer *bool `protobuf:"varint,27,opt,name=class_consumer,json=classConsumer,proto3,oneof" json:"class_consumer,omitempty"`
1524
+ ClassEnterprise *bool `protobuf:"varint,28,opt,name=class_enterprise,json=classEnterprise,proto3,oneof" json:"class_enterprise,omitempty"`
1525
+ ClassIndustrial *bool `protobuf:"varint,29,opt,name=class_industrial,json=classIndustrial,proto3,oneof" json:"class_industrial,omitempty"`
1526
+ ClassIndividual *bool `protobuf:"varint,30,opt,name=class_individual,json=classIndividual,proto3,oneof" json:"class_individual,omitempty"`
1527
+ MatchScore *int32 `protobuf:"varint,19,opt,name=match_score,json=matchScore,proto3,oneof" json:"match_score,omitempty"` // relevant only in search result
1528
+ }
1529
+
1530
+ func (x *CatalogBrand) Reset() {
1531
+ *x = CatalogBrand{}
1532
+ if protoimpl.UnsafeEnabled {
1533
+ mi := &file_outbound_proto_msgTypes[16]
1534
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1535
+ ms.StoreMessageInfo(mi)
1536
+ }
1537
+ }
1538
+
1539
+ func (x *CatalogBrand) String() string {
1540
+ return protoimpl.X.MessageStringOf(x)
1541
+ }
1542
+
1543
+ func (*CatalogBrand) ProtoMessage() {}
1544
+
1545
+ func (x *CatalogBrand) ProtoReflect() protoreflect.Message {
1546
+ mi := &file_outbound_proto_msgTypes[16]
1547
+ if protoimpl.UnsafeEnabled && x != nil {
1548
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1549
+ if ms.LoadMessageInfo() == nil {
1550
+ ms.StoreMessageInfo(mi)
1551
+ }
1552
+ return ms
1553
+ }
1554
+ return mi.MessageOf(x)
1555
+ }
1556
+
1557
+ // Deprecated: Use CatalogBrand.ProtoReflect.Descriptor instead.
1558
+ func (*CatalogBrand) Descriptor() ([]byte, []int) {
1559
+ return file_outbound_proto_rawDescGZIP(), []int{16}
1560
+ }
1561
+
1562
+ func (x *CatalogBrand) GetId() int64 {
1563
+ if x != nil {
1564
+ return x.Id
1565
+ }
1566
+ return 0
1567
+ }
1568
+
1569
+ func (x *CatalogBrand) GetMakeKey() string {
1570
+ if x != nil {
1571
+ return x.MakeKey
1572
+ }
1573
+ return ""
1574
+ }
1575
+
1576
+ func (x *CatalogBrand) GetMakeName() string {
1577
+ if x != nil {
1578
+ return x.MakeName
1579
+ }
1580
+ return ""
1581
+ }
1582
+
1583
+ func (x *CatalogBrand) GetOverrideId() int64 {
1584
+ if x != nil && x.OverrideId != nil {
1585
+ return *x.OverrideId
1586
+ }
1587
+ return 0
1588
+ }
1589
+
1590
+ func (x *CatalogBrand) GetParentId() int64 {
1591
+ if x != nil && x.ParentId != nil {
1592
+ return *x.ParentId
1593
+ }
1594
+ return 0
1595
+ }
1596
+
1597
+ func (x *CatalogBrand) GetLastUpdateTime() int64 {
1598
+ if x != nil && x.LastUpdateTime != nil {
1599
+ return *x.LastUpdateTime
1600
+ }
1601
+ return 0
1602
+ }
1603
+
1604
+ func (x *CatalogBrand) GetCountryCode() string {
1605
+ if x != nil && x.CountryCode != nil {
1606
+ return *x.CountryCode
1607
+ }
1608
+ return ""
1609
+ }
1610
+
1611
+ func (x *CatalogBrand) GetLogoImageUrl() string {
1612
+ if x != nil && x.LogoImageUrl != nil {
1613
+ return *x.LogoImageUrl
1614
+ }
1615
+ return ""
1616
+ }
1617
+
1618
+ func (x *CatalogBrand) GetBannerImageUrl() string {
1619
+ if x != nil && x.BannerImageUrl != nil {
1620
+ return *x.BannerImageUrl
1621
+ }
1622
+ return ""
1623
+ }
1624
+
1625
+ func (x *CatalogBrand) GetWikipediaId() string {
1626
+ if x != nil && x.WikipediaId != nil {
1627
+ return *x.WikipediaId
1628
+ }
1629
+ return ""
1630
+ }
1631
+
1632
+ func (x *CatalogBrand) GetWikipediaLangCode() string {
1633
+ if x != nil && x.WikipediaLangCode != nil {
1634
+ return *x.WikipediaLangCode
1635
+ }
1636
+ return ""
1637
+ }
1638
+
1639
+ func (x *CatalogBrand) GetWebsiteUrl() string {
1640
+ if x != nil && x.WebsiteUrl != nil {
1641
+ return *x.WebsiteUrl
1642
+ }
1643
+ return ""
1644
+ }
1645
+
1646
+ func (x *CatalogBrand) GetSupportUrl() string {
1647
+ if x != nil && x.SupportUrl != nil {
1648
+ return *x.SupportUrl
1649
+ }
1650
+ return ""
1651
+ }
1652
+
1653
+ func (x *CatalogBrand) GetSupportPhone() string {
1654
+ if x != nil && x.SupportPhone != nil {
1655
+ return *x.SupportPhone
1656
+ }
1657
+ return ""
1658
+ }
1659
+
1660
+ func (x *CatalogBrand) GetFacebookAccount() string {
1661
+ if x != nil && x.FacebookAccount != nil {
1662
+ return *x.FacebookAccount
1663
+ }
1664
+ return ""
1665
+ }
1666
+
1667
+ func (x *CatalogBrand) GetTwitterAccount() string {
1668
+ if x != nil && x.TwitterAccount != nil {
1669
+ return *x.TwitterAccount
1670
+ }
1671
+ return ""
1672
+ }
1673
+
1674
+ func (x *CatalogBrand) GetWarrantyUrl() string {
1675
+ if x != nil && x.WarrantyUrl != nil {
1676
+ return *x.WarrantyUrl
1677
+ }
1678
+ return ""
1679
+ }
1680
+
1681
+ func (x *CatalogBrand) GetWarrantyDirectUrl() string {
1682
+ if x != nil && x.WarrantyDirectUrl != nil {
1683
+ return *x.WarrantyDirectUrl
1684
+ }
1685
+ return ""
1686
+ }
1687
+
1688
+ func (x *CatalogBrand) GetCommunityUrl() string {
1689
+ if x != nil && x.CommunityUrl != nil {
1690
+ return *x.CommunityUrl
1691
+ }
1692
+ return ""
1693
+ }
1694
+
1695
+ func (x *CatalogBrand) GetLinkedinAccount() string {
1696
+ if x != nil && x.LinkedinAccount != nil {
1697
+ return *x.LinkedinAccount
1698
+ }
1699
+ return ""
1700
+ }
1701
+
1702
+ func (x *CatalogBrand) GetInstagramAccount() string {
1703
+ if x != nil && x.InstagramAccount != nil {
1704
+ return *x.InstagramAccount
1705
+ }
1706
+ return ""
1707
+ }
1708
+
1709
+ func (x *CatalogBrand) GetYoutubeAccount() string {
1710
+ if x != nil && x.YoutubeAccount != nil {
1711
+ return *x.YoutubeAccount
1712
+ }
1713
+ return ""
1714
+ }
1715
+
1716
+ func (x *CatalogBrand) GetPinterestAccount() string {
1717
+ if x != nil && x.PinterestAccount != nil {
1718
+ return *x.PinterestAccount
1719
+ }
1720
+ return ""
1721
+ }
1722
+
1723
+ func (x *CatalogBrand) GetClassHardware() bool {
1724
+ if x != nil && x.ClassHardware != nil {
1725
+ return *x.ClassHardware
1726
+ }
1727
+ return false
1728
+ }
1729
+
1730
+ func (x *CatalogBrand) GetClassSoftware() bool {
1731
+ if x != nil && x.ClassSoftware != nil {
1732
+ return *x.ClassSoftware
1733
+ }
1734
+ return false
1735
+ }
1736
+
1737
+ func (x *CatalogBrand) GetClassConsumer() bool {
1738
+ if x != nil && x.ClassConsumer != nil {
1739
+ return *x.ClassConsumer
1740
+ }
1741
+ return false
1742
+ }
1743
+
1744
+ func (x *CatalogBrand) GetClassEnterprise() bool {
1745
+ if x != nil && x.ClassEnterprise != nil {
1746
+ return *x.ClassEnterprise
1747
+ }
1748
+ return false
1749
+ }
1750
+
1751
+ func (x *CatalogBrand) GetClassIndustrial() bool {
1752
+ if x != nil && x.ClassIndustrial != nil {
1753
+ return *x.ClassIndustrial
1754
+ }
1755
+ return false
1756
+ }
1757
+
1758
+ func (x *CatalogBrand) GetClassIndividual() bool {
1759
+ if x != nil && x.ClassIndividual != nil {
1760
+ return *x.ClassIndividual
1761
+ }
1762
+ return false
1763
+ }
1764
+
1765
+ func (x *CatalogBrand) GetMatchScore() int32 {
1766
+ if x != nil && x.MatchScore != nil {
1767
+ return *x.MatchScore
1768
+ }
1769
+ return 0
1770
+ }
1771
+
1772
+ type CatalogModel struct {
1773
+ state protoimpl.MessageState
1774
+ sizeCache protoimpl.SizeCache
1775
+ unknownFields protoimpl.UnknownFields
1776
+
1777
+ Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
1778
+ Key string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
1779
+ MakeId int64 `protobuf:"varint,3,opt,name=make_id,json=makeId,proto3" json:"make_id,omitempty"`
1780
+ DeviceModel string `protobuf:"bytes,4,opt,name=device_model,json=deviceModel,proto3" json:"device_model,omitempty"`
1781
+ DeviceType *string `protobuf:"bytes,5,opt,name=device_type,json=deviceType,proto3,oneof" json:"device_type,omitempty"`
1782
+ DeviceModelCode *string `protobuf:"bytes,6,opt,name=device_model_code,json=deviceModelCode,proto3,oneof" json:"device_model_code,omitempty"`
1783
+ OverrideId *int64 `protobuf:"varint,7,opt,name=override_id,json=overrideId,proto3,oneof" json:"override_id,omitempty"`
1784
+ OsDefaultId *int64 `protobuf:"varint,8,opt,name=os_default_id,json=osDefaultId,proto3,oneof" json:"os_default_id,omitempty"`
1785
+ OsLatestId *int64 `protobuf:"varint,9,opt,name=os_latest_id,json=osLatestId,proto3,oneof" json:"os_latest_id,omitempty"`
1786
+ FamilyId *int64 `protobuf:"varint,10,opt,name=family_id,json=familyId,proto3,oneof" json:"family_id,omitempty"`
1787
+ IsFamily *bool `protobuf:"varint,11,opt,name=is_family,json=isFamily,proto3,oneof" json:"is_family,omitempty"`
1788
+ ManualUrl *string `protobuf:"bytes,12,opt,name=manual_url,json=manualUrl,proto3,oneof" json:"manual_url,omitempty"`
1789
+ FaqUrl *string `protobuf:"bytes,13,opt,name=faq_url,json=faqUrl,proto3,oneof" json:"faq_url,omitempty"`
1790
+ ReleaseDate *int64 `protobuf:"varint,14,opt,name=release_date,json=releaseDate,proto3,oneof" json:"release_date,omitempty"`
1791
+ DiscDate *int64 `protobuf:"varint,15,opt,name=disc_date,json=discDate,proto3,oneof" json:"disc_date,omitempty"`
1792
+ EosDate *int64 `protobuf:"varint,26,opt,name=eos_date,json=eosDate,proto3,oneof" json:"eos_date,omitempty"`
1793
+ LifecyleConfidence *string `protobuf:"bytes,29,opt,name=lifecyle_confidence,json=lifecyleConfidence,proto3,oneof" json:"lifecyle_confidence,omitempty"`
1794
+ PriceClass *string `protobuf:"bytes,24,opt,name=price_class,json=priceClass,proto3,oneof" json:"price_class,omitempty"`
1795
+ ProductClass *string `protobuf:"bytes,25,opt,name=product_class,json=productClass,proto3,oneof" json:"product_class,omitempty"`
1796
+ ShIftttHandle *string `protobuf:"bytes,17,opt,name=sh_ifttt_handle,json=shIftttHandle,proto3,oneof" json:"sh_ifttt_handle,omitempty"`
1797
+ ShGoogleAssLangs []string `protobuf:"bytes,18,rep,name=sh_google_ass_langs,json=shGoogleAssLangs,proto3" json:"sh_google_ass_langs,omitempty"`
1798
+ ShAlexaLangs []string `protobuf:"bytes,19,rep,name=sh_alexa_langs,json=shAlexaLangs,proto3" json:"sh_alexa_langs,omitempty"`
1799
+ ShHassHandle *string `protobuf:"bytes,20,opt,name=sh_hass_handle,json=shHassHandle,proto3,oneof" json:"sh_hass_handle,omitempty"`
1800
+ ShAppleHomeKit *bool `protobuf:"varint,21,opt,name=sh_apple_home_kit,json=shAppleHomeKit,proto3,oneof" json:"sh_apple_home_kit,omitempty"`
1801
+ ShOpenHabHandle *string `protobuf:"bytes,22,opt,name=sh_open_hab_handle,json=shOpenHabHandle,proto3,oneof" json:"sh_open_hab_handle,omitempty"`
1802
+ NistCpe *string `protobuf:"bytes,28,opt,name=nist_cpe,json=nistCpe,proto3,oneof" json:"nist_cpe,omitempty"`
1803
+ SpreadInType *float64 `protobuf:"fixed64,23,opt,name=spread_in_type,json=spreadInType,proto3,oneof" json:"spread_in_type,omitempty"`
1804
+ LastUpdateTime *int64 `protobuf:"varint,16,opt,name=last_update_time,json=lastUpdateTime,proto3,oneof" json:"last_update_time,omitempty"`
1805
+ MatchScore *int32 `protobuf:"varint,27,opt,name=match_score,json=matchScore,proto3,oneof" json:"match_score,omitempty"` // filled only when a result of search
1806
+ }
1807
+
1808
+ func (x *CatalogModel) Reset() {
1809
+ *x = CatalogModel{}
1810
+ if protoimpl.UnsafeEnabled {
1811
+ mi := &file_outbound_proto_msgTypes[17]
1812
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1813
+ ms.StoreMessageInfo(mi)
1814
+ }
1815
+ }
1816
+
1817
+ func (x *CatalogModel) String() string {
1818
+ return protoimpl.X.MessageStringOf(x)
1819
+ }
1820
+
1821
+ func (*CatalogModel) ProtoMessage() {}
1822
+
1823
+ func (x *CatalogModel) ProtoReflect() protoreflect.Message {
1824
+ mi := &file_outbound_proto_msgTypes[17]
1825
+ if protoimpl.UnsafeEnabled && x != nil {
1826
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1827
+ if ms.LoadMessageInfo() == nil {
1828
+ ms.StoreMessageInfo(mi)
1829
+ }
1830
+ return ms
1831
+ }
1832
+ return mi.MessageOf(x)
1833
+ }
1834
+
1835
+ // Deprecated: Use CatalogModel.ProtoReflect.Descriptor instead.
1836
+ func (*CatalogModel) Descriptor() ([]byte, []int) {
1837
+ return file_outbound_proto_rawDescGZIP(), []int{17}
1838
+ }
1839
+
1840
+ func (x *CatalogModel) GetId() int64 {
1841
+ if x != nil {
1842
+ return x.Id
1843
+ }
1844
+ return 0
1845
+ }
1846
+
1847
+ func (x *CatalogModel) GetKey() string {
1848
+ if x != nil {
1849
+ return x.Key
1850
+ }
1851
+ return ""
1852
+ }
1853
+
1854
+ func (x *CatalogModel) GetMakeId() int64 {
1855
+ if x != nil {
1856
+ return x.MakeId
1857
+ }
1858
+ return 0
1859
+ }
1860
+
1861
+ func (x *CatalogModel) GetDeviceModel() string {
1862
+ if x != nil {
1863
+ return x.DeviceModel
1864
+ }
1865
+ return ""
1866
+ }
1867
+
1868
+ func (x *CatalogModel) GetDeviceType() string {
1869
+ if x != nil && x.DeviceType != nil {
1870
+ return *x.DeviceType
1871
+ }
1872
+ return ""
1873
+ }
1874
+
1875
+ func (x *CatalogModel) GetDeviceModelCode() string {
1876
+ if x != nil && x.DeviceModelCode != nil {
1877
+ return *x.DeviceModelCode
1878
+ }
1879
+ return ""
1880
+ }
1881
+
1882
+ func (x *CatalogModel) GetOverrideId() int64 {
1883
+ if x != nil && x.OverrideId != nil {
1884
+ return *x.OverrideId
1885
+ }
1886
+ return 0
1887
+ }
1888
+
1889
+ func (x *CatalogModel) GetOsDefaultId() int64 {
1890
+ if x != nil && x.OsDefaultId != nil {
1891
+ return *x.OsDefaultId
1892
+ }
1893
+ return 0
1894
+ }
1895
+
1896
+ func (x *CatalogModel) GetOsLatestId() int64 {
1897
+ if x != nil && x.OsLatestId != nil {
1898
+ return *x.OsLatestId
1899
+ }
1900
+ return 0
1901
+ }
1902
+
1903
+ func (x *CatalogModel) GetFamilyId() int64 {
1904
+ if x != nil && x.FamilyId != nil {
1905
+ return *x.FamilyId
1906
+ }
1907
+ return 0
1908
+ }
1909
+
1910
+ func (x *CatalogModel) GetIsFamily() bool {
1911
+ if x != nil && x.IsFamily != nil {
1912
+ return *x.IsFamily
1913
+ }
1914
+ return false
1915
+ }
1916
+
1917
+ func (x *CatalogModel) GetManualUrl() string {
1918
+ if x != nil && x.ManualUrl != nil {
1919
+ return *x.ManualUrl
1920
+ }
1921
+ return ""
1922
+ }
1923
+
1924
+ func (x *CatalogModel) GetFaqUrl() string {
1925
+ if x != nil && x.FaqUrl != nil {
1926
+ return *x.FaqUrl
1927
+ }
1928
+ return ""
1929
+ }
1930
+
1931
+ func (x *CatalogModel) GetReleaseDate() int64 {
1932
+ if x != nil && x.ReleaseDate != nil {
1933
+ return *x.ReleaseDate
1934
+ }
1935
+ return 0
1936
+ }
1937
+
1938
+ func (x *CatalogModel) GetDiscDate() int64 {
1939
+ if x != nil && x.DiscDate != nil {
1940
+ return *x.DiscDate
1941
+ }
1942
+ return 0
1943
+ }
1944
+
1945
+ func (x *CatalogModel) GetEosDate() int64 {
1946
+ if x != nil && x.EosDate != nil {
1947
+ return *x.EosDate
1948
+ }
1949
+ return 0
1950
+ }
1951
+
1952
+ func (x *CatalogModel) GetLifecyleConfidence() string {
1953
+ if x != nil && x.LifecyleConfidence != nil {
1954
+ return *x.LifecyleConfidence
1955
+ }
1956
+ return ""
1957
+ }
1958
+
1959
+ func (x *CatalogModel) GetPriceClass() string {
1960
+ if x != nil && x.PriceClass != nil {
1961
+ return *x.PriceClass
1962
+ }
1963
+ return ""
1964
+ }
1965
+
1966
+ func (x *CatalogModel) GetProductClass() string {
1967
+ if x != nil && x.ProductClass != nil {
1968
+ return *x.ProductClass
1969
+ }
1970
+ return ""
1971
+ }
1972
+
1973
+ func (x *CatalogModel) GetShIftttHandle() string {
1974
+ if x != nil && x.ShIftttHandle != nil {
1975
+ return *x.ShIftttHandle
1976
+ }
1977
+ return ""
1978
+ }
1979
+
1980
+ func (x *CatalogModel) GetShGoogleAssLangs() []string {
1981
+ if x != nil {
1982
+ return x.ShGoogleAssLangs
1983
+ }
1984
+ return nil
1985
+ }
1986
+
1987
+ func (x *CatalogModel) GetShAlexaLangs() []string {
1988
+ if x != nil {
1989
+ return x.ShAlexaLangs
1990
+ }
1991
+ return nil
1992
+ }
1993
+
1994
+ func (x *CatalogModel) GetShHassHandle() string {
1995
+ if x != nil && x.ShHassHandle != nil {
1996
+ return *x.ShHassHandle
1997
+ }
1998
+ return ""
1999
+ }
2000
+
2001
+ func (x *CatalogModel) GetShAppleHomeKit() bool {
2002
+ if x != nil && x.ShAppleHomeKit != nil {
2003
+ return *x.ShAppleHomeKit
2004
+ }
2005
+ return false
2006
+ }
2007
+
2008
+ func (x *CatalogModel) GetShOpenHabHandle() string {
2009
+ if x != nil && x.ShOpenHabHandle != nil {
2010
+ return *x.ShOpenHabHandle
2011
+ }
2012
+ return ""
2013
+ }
2014
+
2015
+ func (x *CatalogModel) GetNistCpe() string {
2016
+ if x != nil && x.NistCpe != nil {
2017
+ return *x.NistCpe
2018
+ }
2019
+ return ""
2020
+ }
2021
+
2022
+ func (x *CatalogModel) GetSpreadInType() float64 {
2023
+ if x != nil && x.SpreadInType != nil {
2024
+ return *x.SpreadInType
2025
+ }
2026
+ return 0
2027
+ }
2028
+
2029
+ func (x *CatalogModel) GetLastUpdateTime() int64 {
2030
+ if x != nil && x.LastUpdateTime != nil {
2031
+ return *x.LastUpdateTime
2032
+ }
2033
+ return 0
2034
+ }
2035
+
2036
+ func (x *CatalogModel) GetMatchScore() int32 {
2037
+ if x != nil && x.MatchScore != nil {
2038
+ return *x.MatchScore
2039
+ }
2040
+ return 0
2041
+ }
2042
+
2043
+ type CatalogOs struct {
2044
+ state protoimpl.MessageState
2045
+ sizeCache protoimpl.SizeCache
2046
+ unknownFields protoimpl.UnknownFields
2047
+
2048
+ Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
2049
+ OsKey string `protobuf:"bytes,2,opt,name=os_key,json=osKey,proto3" json:"os_key,omitempty"`
2050
+ OsName string `protobuf:"bytes,3,opt,name=os_name,json=osName,proto3" json:"os_name,omitempty"`
2051
+ OsVersion *string `protobuf:"bytes,4,opt,name=os_version,json=osVersion,proto3,oneof" json:"os_version,omitempty"`
2052
+ OsBuild *string `protobuf:"bytes,12,opt,name=os_build,json=osBuild,proto3,oneof" json:"os_build,omitempty"`
2053
+ OsVersionName *string `protobuf:"bytes,5,opt,name=os_version_name,json=osVersionName,proto3,oneof" json:"os_version_name,omitempty"`
2054
+ OverrideId *int64 `protobuf:"varint,6,opt,name=override_id,json=overrideId,proto3,oneof" json:"override_id,omitempty"`
2055
+ MakeId *int64 `protobuf:"varint,7,opt,name=make_id,json=makeId,proto3,oneof" json:"make_id,omitempty"`
2056
+ ParentId *int64 `protobuf:"varint,8,opt,name=parent_id,json=parentId,proto3,oneof" json:"parent_id,omitempty"`
2057
+ ReleaseDate *int64 `protobuf:"varint,9,opt,name=release_date,json=releaseDate,proto3,oneof" json:"release_date,omitempty"`
2058
+ EolDate *int64 `protobuf:"varint,10,opt,name=eol_date,json=eolDate,proto3,oneof" json:"eol_date,omitempty"`
2059
+ EosDate *int64 `protobuf:"varint,22,opt,name=eos_date,json=eosDate,proto3,oneof" json:"eos_date,omitempty"`
2060
+ EosxDate *int64 `protobuf:"varint,25,opt,name=eosx_date,json=eosxDate,proto3,oneof" json:"eosx_date,omitempty"`
2061
+ LifecyleConfidence *string `protobuf:"bytes,26,opt,name=lifecyle_confidence,json=lifecyleConfidence,proto3,oneof" json:"lifecyle_confidence,omitempty"`
2062
+ LogoImageUrl *string `protobuf:"bytes,13,opt,name=logo_image_url,json=logoImageUrl,proto3,oneof" json:"logo_image_url,omitempty"`
2063
+ BannerImageUrl *string `protobuf:"bytes,14,opt,name=banner_image_url,json=bannerImageUrl,proto3,oneof" json:"banner_image_url,omitempty"`
2064
+ WikipediaId *string `protobuf:"bytes,15,opt,name=wikipedia_id,json=wikipediaId,proto3,oneof" json:"wikipedia_id,omitempty"`
2065
+ WikipediaLangCode *string `protobuf:"bytes,16,opt,name=wikipedia_lang_code,json=wikipediaLangCode,proto3,oneof" json:"wikipedia_lang_code,omitempty"`
2066
+ WebsiteUrl *string `protobuf:"bytes,17,opt,name=website_url,json=websiteUrl,proto3,oneof" json:"website_url,omitempty"`
2067
+ SupportUrl *string `protobuf:"bytes,18,opt,name=support_url,json=supportUrl,proto3,oneof" json:"support_url,omitempty"`
2068
+ SupportPhone *string `protobuf:"bytes,19,opt,name=support_phone,json=supportPhone,proto3,oneof" json:"support_phone,omitempty"`
2069
+ FacebookAccount *string `protobuf:"bytes,20,opt,name=facebook_account,json=facebookAccount,proto3,oneof" json:"facebook_account,omitempty"`
2070
+ TwitterAccount *string `protobuf:"bytes,21,opt,name=twitter_account,json=twitterAccount,proto3,oneof" json:"twitter_account,omitempty"`
2071
+ NistCpe *string `protobuf:"bytes,23,opt,name=nist_cpe,json=nistCpe,proto3,oneof" json:"nist_cpe,omitempty"`
2072
+ LastUpdateTime *int64 `protobuf:"varint,11,opt,name=last_update_time,json=lastUpdateTime,proto3,oneof" json:"last_update_time,omitempty"`
2073
+ MatchScore *int32 `protobuf:"varint,24,opt,name=match_score,json=matchScore,proto3,oneof" json:"match_score,omitempty"` // filled only when a result of search
2074
+ }
2075
+
2076
+ func (x *CatalogOs) Reset() {
2077
+ *x = CatalogOs{}
2078
+ if protoimpl.UnsafeEnabled {
2079
+ mi := &file_outbound_proto_msgTypes[18]
2080
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2081
+ ms.StoreMessageInfo(mi)
2082
+ }
2083
+ }
2084
+
2085
+ func (x *CatalogOs) String() string {
2086
+ return protoimpl.X.MessageStringOf(x)
2087
+ }
2088
+
2089
+ func (*CatalogOs) ProtoMessage() {}
2090
+
2091
+ func (x *CatalogOs) ProtoReflect() protoreflect.Message {
2092
+ mi := &file_outbound_proto_msgTypes[18]
2093
+ if protoimpl.UnsafeEnabled && x != nil {
2094
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2095
+ if ms.LoadMessageInfo() == nil {
2096
+ ms.StoreMessageInfo(mi)
2097
+ }
2098
+ return ms
2099
+ }
2100
+ return mi.MessageOf(x)
2101
+ }
2102
+
2103
+ // Deprecated: Use CatalogOs.ProtoReflect.Descriptor instead.
2104
+ func (*CatalogOs) Descriptor() ([]byte, []int) {
2105
+ return file_outbound_proto_rawDescGZIP(), []int{18}
2106
+ }
2107
+
2108
+ func (x *CatalogOs) GetId() int64 {
2109
+ if x != nil {
2110
+ return x.Id
2111
+ }
2112
+ return 0
2113
+ }
2114
+
2115
+ func (x *CatalogOs) GetOsKey() string {
2116
+ if x != nil {
2117
+ return x.OsKey
2118
+ }
2119
+ return ""
2120
+ }
2121
+
2122
+ func (x *CatalogOs) GetOsName() string {
2123
+ if x != nil {
2124
+ return x.OsName
2125
+ }
2126
+ return ""
2127
+ }
2128
+
2129
+ func (x *CatalogOs) GetOsVersion() string {
2130
+ if x != nil && x.OsVersion != nil {
2131
+ return *x.OsVersion
2132
+ }
2133
+ return ""
2134
+ }
2135
+
2136
+ func (x *CatalogOs) GetOsBuild() string {
2137
+ if x != nil && x.OsBuild != nil {
2138
+ return *x.OsBuild
2139
+ }
2140
+ return ""
2141
+ }
2142
+
2143
+ func (x *CatalogOs) GetOsVersionName() string {
2144
+ if x != nil && x.OsVersionName != nil {
2145
+ return *x.OsVersionName
2146
+ }
2147
+ return ""
2148
+ }
2149
+
2150
+ func (x *CatalogOs) GetOverrideId() int64 {
2151
+ if x != nil && x.OverrideId != nil {
2152
+ return *x.OverrideId
2153
+ }
2154
+ return 0
2155
+ }
2156
+
2157
+ func (x *CatalogOs) GetMakeId() int64 {
2158
+ if x != nil && x.MakeId != nil {
2159
+ return *x.MakeId
2160
+ }
2161
+ return 0
2162
+ }
2163
+
2164
+ func (x *CatalogOs) GetParentId() int64 {
2165
+ if x != nil && x.ParentId != nil {
2166
+ return *x.ParentId
2167
+ }
2168
+ return 0
2169
+ }
2170
+
2171
+ func (x *CatalogOs) GetReleaseDate() int64 {
2172
+ if x != nil && x.ReleaseDate != nil {
2173
+ return *x.ReleaseDate
2174
+ }
2175
+ return 0
2176
+ }
2177
+
2178
+ func (x *CatalogOs) GetEolDate() int64 {
2179
+ if x != nil && x.EolDate != nil {
2180
+ return *x.EolDate
2181
+ }
2182
+ return 0
2183
+ }
2184
+
2185
+ func (x *CatalogOs) GetEosDate() int64 {
2186
+ if x != nil && x.EosDate != nil {
2187
+ return *x.EosDate
2188
+ }
2189
+ return 0
2190
+ }
2191
+
2192
+ func (x *CatalogOs) GetEosxDate() int64 {
2193
+ if x != nil && x.EosxDate != nil {
2194
+ return *x.EosxDate
2195
+ }
2196
+ return 0
2197
+ }
2198
+
2199
+ func (x *CatalogOs) GetLifecyleConfidence() string {
2200
+ if x != nil && x.LifecyleConfidence != nil {
2201
+ return *x.LifecyleConfidence
2202
+ }
2203
+ return ""
2204
+ }
2205
+
2206
+ func (x *CatalogOs) GetLogoImageUrl() string {
2207
+ if x != nil && x.LogoImageUrl != nil {
2208
+ return *x.LogoImageUrl
2209
+ }
2210
+ return ""
2211
+ }
2212
+
2213
+ func (x *CatalogOs) GetBannerImageUrl() string {
2214
+ if x != nil && x.BannerImageUrl != nil {
2215
+ return *x.BannerImageUrl
2216
+ }
2217
+ return ""
2218
+ }
2219
+
2220
+ func (x *CatalogOs) GetWikipediaId() string {
2221
+ if x != nil && x.WikipediaId != nil {
2222
+ return *x.WikipediaId
2223
+ }
2224
+ return ""
2225
+ }
2226
+
2227
+ func (x *CatalogOs) GetWikipediaLangCode() string {
2228
+ if x != nil && x.WikipediaLangCode != nil {
2229
+ return *x.WikipediaLangCode
2230
+ }
2231
+ return ""
2232
+ }
2233
+
2234
+ func (x *CatalogOs) GetWebsiteUrl() string {
2235
+ if x != nil && x.WebsiteUrl != nil {
2236
+ return *x.WebsiteUrl
2237
+ }
2238
+ return ""
2239
+ }
2240
+
2241
+ func (x *CatalogOs) GetSupportUrl() string {
2242
+ if x != nil && x.SupportUrl != nil {
2243
+ return *x.SupportUrl
2244
+ }
2245
+ return ""
2246
+ }
2247
+
2248
+ func (x *CatalogOs) GetSupportPhone() string {
2249
+ if x != nil && x.SupportPhone != nil {
2250
+ return *x.SupportPhone
2251
+ }
2252
+ return ""
2253
+ }
2254
+
2255
+ func (x *CatalogOs) GetFacebookAccount() string {
2256
+ if x != nil && x.FacebookAccount != nil {
2257
+ return *x.FacebookAccount
2258
+ }
2259
+ return ""
2260
+ }
2261
+
2262
+ func (x *CatalogOs) GetTwitterAccount() string {
2263
+ if x != nil && x.TwitterAccount != nil {
2264
+ return *x.TwitterAccount
2265
+ }
2266
+ return ""
2267
+ }
2268
+
2269
+ func (x *CatalogOs) GetNistCpe() string {
2270
+ if x != nil && x.NistCpe != nil {
2271
+ return *x.NistCpe
2272
+ }
2273
+ return ""
2274
+ }
2275
+
2276
+ func (x *CatalogOs) GetLastUpdateTime() int64 {
2277
+ if x != nil && x.LastUpdateTime != nil {
2278
+ return *x.LastUpdateTime
2279
+ }
2280
+ return 0
2281
+ }
2282
+
2283
+ func (x *CatalogOs) GetMatchScore() int32 {
2284
+ if x != nil && x.MatchScore != nil {
2285
+ return *x.MatchScore
2286
+ }
2287
+ return 0
2288
+ }
2289
+
2290
+ type CatalogSoftware struct {
2291
+ state protoimpl.MessageState
2292
+ sizeCache protoimpl.SizeCache
2293
+ unknownFields protoimpl.UnknownFields
2294
+
2295
+ Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
2296
+ SwKey string `protobuf:"bytes,2,opt,name=sw_key,json=swKey,proto3" json:"sw_key,omitempty"`
2297
+ SwName string `protobuf:"bytes,3,opt,name=sw_name,json=swName,proto3" json:"sw_name,omitempty"`
2298
+ SwVersion *string `protobuf:"bytes,4,opt,name=sw_version,json=swVersion,proto3,oneof" json:"sw_version,omitempty"`
2299
+ SwMarketVer *string `protobuf:"bytes,5,opt,name=sw_market_ver,json=swMarketVer,proto3,oneof" json:"sw_market_ver,omitempty"`
2300
+ SwEdition *string `protobuf:"bytes,6,opt,name=sw_edition,json=swEdition,proto3,oneof" json:"sw_edition,omitempty"`
2301
+ SwLang *string `protobuf:"bytes,23,opt,name=sw_lang,json=swLang,proto3,oneof" json:"sw_lang,omitempty"`
2302
+ SwBuild *string `protobuf:"bytes,7,opt,name=sw_build,json=swBuild,proto3,oneof" json:"sw_build,omitempty"`
2303
+ OverrideId *int64 `protobuf:"varint,8,opt,name=override_id,json=overrideId,proto3,oneof" json:"override_id,omitempty"`
2304
+ MakeId *int64 `protobuf:"varint,9,opt,name=make_id,json=makeId,proto3,oneof" json:"make_id,omitempty"`
2305
+ ParentId *int64 `protobuf:"varint,10,opt,name=parent_id,json=parentId,proto3,oneof" json:"parent_id,omitempty"`
2306
+ SwType *string `protobuf:"bytes,11,opt,name=sw_type,json=swType,proto3,oneof" json:"sw_type,omitempty"`
2307
+ SwCategory *string `protobuf:"bytes,12,opt,name=sw_category,json=swCategory,proto3,oneof" json:"sw_category,omitempty"`
2308
+ NistCpeTemplate *string `protobuf:"bytes,13,opt,name=nist_cpe_template,json=nistCpeTemplate,proto3,oneof" json:"nist_cpe_template,omitempty"`
2309
+ ReleaseDate *int64 `protobuf:"varint,14,opt,name=release_date,json=releaseDate,proto3,oneof" json:"release_date,omitempty"`
2310
+ EolDate *int64 `protobuf:"varint,15,opt,name=eol_date,json=eolDate,proto3,oneof" json:"eol_date,omitempty"`
2311
+ EosDate *int64 `protobuf:"varint,16,opt,name=eos_date,json=eosDate,proto3,oneof" json:"eos_date,omitempty"`
2312
+ EosxDate *int64 `protobuf:"varint,18,opt,name=eosx_date,json=eosxDate,proto3,oneof" json:"eosx_date,omitempty"`
2313
+ LifecyleConfidence *string `protobuf:"bytes,19,opt,name=lifecyle_confidence,json=lifecyleConfidence,proto3,oneof" json:"lifecyle_confidence,omitempty"`
2314
+ LastUpdateTime *int64 `protobuf:"varint,17,opt,name=last_update_time,json=lastUpdateTime,proto3,oneof" json:"last_update_time,omitempty"`
2315
+ FlagLatest *bool `protobuf:"varint,20,opt,name=flag_latest,json=flagLatest,proto3,oneof" json:"flag_latest,omitempty"`
2316
+ FlagWidespread *bool `protobuf:"varint,21,opt,name=flag_widespread,json=flagWidespread,proto3,oneof" json:"flag_widespread,omitempty"`
2317
+ FlagDeprecated *bool `protobuf:"varint,22,opt,name=flag_deprecated,json=flagDeprecated,proto3,oneof" json:"flag_deprecated,omitempty"`
2318
+ MatchScore *int32 `protobuf:"varint,100,opt,name=match_score,json=matchScore,proto3,oneof" json:"match_score,omitempty"` // filled only when a result of search
2319
+ }
2320
+
2321
+ func (x *CatalogSoftware) Reset() {
2322
+ *x = CatalogSoftware{}
2323
+ if protoimpl.UnsafeEnabled {
2324
+ mi := &file_outbound_proto_msgTypes[19]
2325
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2326
+ ms.StoreMessageInfo(mi)
2327
+ }
2328
+ }
2329
+
2330
+ func (x *CatalogSoftware) String() string {
2331
+ return protoimpl.X.MessageStringOf(x)
2332
+ }
2333
+
2334
+ func (*CatalogSoftware) ProtoMessage() {}
2335
+
2336
+ func (x *CatalogSoftware) ProtoReflect() protoreflect.Message {
2337
+ mi := &file_outbound_proto_msgTypes[19]
2338
+ if protoimpl.UnsafeEnabled && x != nil {
2339
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2340
+ if ms.LoadMessageInfo() == nil {
2341
+ ms.StoreMessageInfo(mi)
2342
+ }
2343
+ return ms
2344
+ }
2345
+ return mi.MessageOf(x)
2346
+ }
2347
+
2348
+ // Deprecated: Use CatalogSoftware.ProtoReflect.Descriptor instead.
2349
+ func (*CatalogSoftware) Descriptor() ([]byte, []int) {
2350
+ return file_outbound_proto_rawDescGZIP(), []int{19}
2351
+ }
2352
+
2353
+ func (x *CatalogSoftware) GetId() int64 {
2354
+ if x != nil {
2355
+ return x.Id
2356
+ }
2357
+ return 0
2358
+ }
2359
+
2360
+ func (x *CatalogSoftware) GetSwKey() string {
2361
+ if x != nil {
2362
+ return x.SwKey
2363
+ }
2364
+ return ""
2365
+ }
2366
+
2367
+ func (x *CatalogSoftware) GetSwName() string {
2368
+ if x != nil {
2369
+ return x.SwName
2370
+ }
2371
+ return ""
2372
+ }
2373
+
2374
+ func (x *CatalogSoftware) GetSwVersion() string {
2375
+ if x != nil && x.SwVersion != nil {
2376
+ return *x.SwVersion
2377
+ }
2378
+ return ""
2379
+ }
2380
+
2381
+ func (x *CatalogSoftware) GetSwMarketVer() string {
2382
+ if x != nil && x.SwMarketVer != nil {
2383
+ return *x.SwMarketVer
2384
+ }
2385
+ return ""
2386
+ }
2387
+
2388
+ func (x *CatalogSoftware) GetSwEdition() string {
2389
+ if x != nil && x.SwEdition != nil {
2390
+ return *x.SwEdition
2391
+ }
2392
+ return ""
2393
+ }
2394
+
2395
+ func (x *CatalogSoftware) GetSwLang() string {
2396
+ if x != nil && x.SwLang != nil {
2397
+ return *x.SwLang
2398
+ }
2399
+ return ""
2400
+ }
2401
+
2402
+ func (x *CatalogSoftware) GetSwBuild() string {
2403
+ if x != nil && x.SwBuild != nil {
2404
+ return *x.SwBuild
2405
+ }
2406
+ return ""
2407
+ }
2408
+
2409
+ func (x *CatalogSoftware) GetOverrideId() int64 {
2410
+ if x != nil && x.OverrideId != nil {
2411
+ return *x.OverrideId
2412
+ }
2413
+ return 0
2414
+ }
2415
+
2416
+ func (x *CatalogSoftware) GetMakeId() int64 {
2417
+ if x != nil && x.MakeId != nil {
2418
+ return *x.MakeId
2419
+ }
2420
+ return 0
2421
+ }
2422
+
2423
+ func (x *CatalogSoftware) GetParentId() int64 {
2424
+ if x != nil && x.ParentId != nil {
2425
+ return *x.ParentId
2426
+ }
2427
+ return 0
2428
+ }
2429
+
2430
+ func (x *CatalogSoftware) GetSwType() string {
2431
+ if x != nil && x.SwType != nil {
2432
+ return *x.SwType
2433
+ }
2434
+ return ""
2435
+ }
2436
+
2437
+ func (x *CatalogSoftware) GetSwCategory() string {
2438
+ if x != nil && x.SwCategory != nil {
2439
+ return *x.SwCategory
2440
+ }
2441
+ return ""
2442
+ }
2443
+
2444
+ func (x *CatalogSoftware) GetNistCpeTemplate() string {
2445
+ if x != nil && x.NistCpeTemplate != nil {
2446
+ return *x.NistCpeTemplate
2447
+ }
2448
+ return ""
2449
+ }
2450
+
2451
+ func (x *CatalogSoftware) GetReleaseDate() int64 {
2452
+ if x != nil && x.ReleaseDate != nil {
2453
+ return *x.ReleaseDate
2454
+ }
2455
+ return 0
2456
+ }
2457
+
2458
+ func (x *CatalogSoftware) GetEolDate() int64 {
2459
+ if x != nil && x.EolDate != nil {
2460
+ return *x.EolDate
2461
+ }
2462
+ return 0
2463
+ }
2464
+
2465
+ func (x *CatalogSoftware) GetEosDate() int64 {
2466
+ if x != nil && x.EosDate != nil {
2467
+ return *x.EosDate
2468
+ }
2469
+ return 0
2470
+ }
2471
+
2472
+ func (x *CatalogSoftware) GetEosxDate() int64 {
2473
+ if x != nil && x.EosxDate != nil {
2474
+ return *x.EosxDate
2475
+ }
2476
+ return 0
2477
+ }
2478
+
2479
+ func (x *CatalogSoftware) GetLifecyleConfidence() string {
2480
+ if x != nil && x.LifecyleConfidence != nil {
2481
+ return *x.LifecyleConfidence
2482
+ }
2483
+ return ""
2484
+ }
2485
+
2486
+ func (x *CatalogSoftware) GetLastUpdateTime() int64 {
2487
+ if x != nil && x.LastUpdateTime != nil {
2488
+ return *x.LastUpdateTime
2489
+ }
2490
+ return 0
2491
+ }
2492
+
2493
+ func (x *CatalogSoftware) GetFlagLatest() bool {
2494
+ if x != nil && x.FlagLatest != nil {
2495
+ return *x.FlagLatest
2496
+ }
2497
+ return false
2498
+ }
2499
+
2500
+ func (x *CatalogSoftware) GetFlagWidespread() bool {
2501
+ if x != nil && x.FlagWidespread != nil {
2502
+ return *x.FlagWidespread
2503
+ }
2504
+ return false
2505
+ }
2506
+
2507
+ func (x *CatalogSoftware) GetFlagDeprecated() bool {
2508
+ if x != nil && x.FlagDeprecated != nil {
2509
+ return *x.FlagDeprecated
2510
+ }
2511
+ return false
2512
+ }
2513
+
2514
+ func (x *CatalogSoftware) GetMatchScore() int32 {
2515
+ if x != nil && x.MatchScore != nil {
2516
+ return *x.MatchScore
2517
+ }
2518
+ return 0
2519
+ }
2520
+
2521
+ type CatalogMonitor struct {
2522
+ state protoimpl.MessageState
2523
+ sizeCache protoimpl.SizeCache
2524
+ unknownFields protoimpl.UnknownFields
2525
+
2526
+ Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
2527
+ }
2528
+
2529
+ func (x *CatalogMonitor) Reset() {
2530
+ *x = CatalogMonitor{}
2531
+ if protoimpl.UnsafeEnabled {
2532
+ mi := &file_outbound_proto_msgTypes[20]
2533
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2534
+ ms.StoreMessageInfo(mi)
2535
+ }
2536
+ }
2537
+
2538
+ func (x *CatalogMonitor) String() string {
2539
+ return protoimpl.X.MessageStringOf(x)
2540
+ }
2541
+
2542
+ func (*CatalogMonitor) ProtoMessage() {}
2543
+
2544
+ func (x *CatalogMonitor) ProtoReflect() protoreflect.Message {
2545
+ mi := &file_outbound_proto_msgTypes[20]
2546
+ if protoimpl.UnsafeEnabled && x != nil {
2547
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
2548
+ if ms.LoadMessageInfo() == nil {
2549
+ ms.StoreMessageInfo(mi)
2550
+ }
2551
+ return ms
2552
+ }
2553
+ return mi.MessageOf(x)
2554
+ }
2555
+
2556
+ // Deprecated: Use CatalogMonitor.ProtoReflect.Descriptor instead.
2557
+ func (*CatalogMonitor) Descriptor() ([]byte, []int) {
2558
+ return file_outbound_proto_rawDescGZIP(), []int{20}
2559
+ }
2560
+
2561
+ func (x *CatalogMonitor) GetId() int64 {
2562
+ if x != nil {
2563
+ return x.Id
2564
+ }
2565
+ return 0
2566
+ }
2567
+
2568
+ var File_outbound_proto protoreflect.FileDescriptor
2569
+
2570
+ var file_outbound_proto_rawDesc = []byte{
2571
+ 0x0a, 0x0e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
2572
+ 0x12, 0x1d, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
2573
+ 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x1a,
2574
+ 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
2575
+ 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
2576
+ 0x22, 0x5e, 0x0a, 0x10, 0x47, 0x65, 0x74, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71,
2577
+ 0x75, 0x65, 0x73, 0x74, 0x12, 0x4a, 0x0a, 0x0b, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x5f, 0x70,
2578
+ 0x61, 0x74, 0x68, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x63, 0x6f, 0x6d, 0x2e,
2579
+ 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75,
2580
+ 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79,
2581
+ 0x50, 0x61, 0x74, 0x68, 0x52, 0x0a, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x50, 0x61, 0x74, 0x68,
2582
+ 0x22, 0x93, 0x01, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65,
2583
+ 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3d, 0x0a, 0x06, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79,
2584
+ 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e,
2585
+ 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f,
2586
+ 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x06, 0x65,
2587
+ 0x6e, 0x74, 0x69, 0x74, 0x79, 0x12, 0x3f, 0x0a, 0x07, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x65, 0x64,
2588
+ 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e,
2589
+ 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f,
2590
+ 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x07, 0x72,
2591
+ 0x65, 0x6c, 0x61, 0x74, 0x65, 0x64, 0x22, 0x56, 0x0a, 0x11, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x6e,
2592
+ 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x41, 0x0a, 0x06, 0x66,
2593
+ 0x69, 0x6c, 0x74, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x63, 0x6f,
2594
+ 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e,
2595
+ 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x45, 0x6e, 0x74, 0x69,
2596
+ 0x74, 0x79, 0x50, 0x61, 0x74, 0x68, 0x52, 0x06, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x22, 0x94,
2597
+ 0x01, 0x0a, 0x12, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x73,
2598
+ 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3d, 0x0a, 0x06, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x18,
2599
+ 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
2600
+ 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75,
2601
+ 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x06, 0x65, 0x6e,
2602
+ 0x74, 0x69, 0x74, 0x79, 0x12, 0x3f, 0x0a, 0x07, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x65, 0x64, 0x18,
2603
+ 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
2604
+ 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75,
2605
+ 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x07, 0x72, 0x65,
2606
+ 0x6c, 0x61, 0x74, 0x65, 0x64, 0x22, 0xf1, 0x01, 0x0a, 0x0a, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79,
2607
+ 0x50, 0x61, 0x74, 0x68, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18,
2608
+ 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x20, 0x0a,
2609
+ 0x09, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
2610
+ 0x48, 0x00, 0x52, 0x08, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12,
2611
+ 0x24, 0x0a, 0x0b, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03,
2612
+ 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x0a, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x79,
2613
+ 0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x5f,
2614
+ 0x74, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x0a, 0x65, 0x6e,
2615
+ 0x74, 0x69, 0x74, 0x79, 0x54, 0x79, 0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x65,
2616
+ 0x6e, 0x74, 0x69, 0x74, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x48, 0x03,
2617
+ 0x52, 0x08, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x49, 0x64, 0x88, 0x01, 0x01, 0x42, 0x0c, 0x0a,
2618
+ 0x0a, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x42, 0x0e, 0x0a, 0x0c, 0x5f,
2619
+ 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x42, 0x0e, 0x0a, 0x0c, 0x5f,
2620
+ 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x42, 0x0c, 0x0a, 0x0a, 0x5f,
2621
+ 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x5f, 0x69, 0x64, 0x22, 0x50, 0x0a, 0x06, 0x45, 0x6e, 0x74,
2622
+ 0x69, 0x74, 0x79, 0x12, 0x3c, 0x0a, 0x05, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01,
2623
+ 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
2624
+ 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e,
2625
+ 0x76, 0x31, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x48, 0x00, 0x52, 0x05, 0x61, 0x73, 0x73, 0x65,
2626
+ 0x74, 0x42, 0x08, 0x0a, 0x06, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x22, 0x8f, 0x05, 0x0a, 0x05,
2627
+ 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x39, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
2628
+ 0x0b, 0x32, 0x29, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
2629
+ 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76,
2630
+ 0x31, 0x2e, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x50, 0x61, 0x74, 0x68, 0x52, 0x02, 0x69, 0x64,
2631
+ 0x12, 0x3b, 0x0a, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x73, 0x79, 0x6e, 0x63, 0x65, 0x64, 0x18,
2632
+ 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
2633
+ 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d,
2634
+ 0x70, 0x52, 0x0a, 0x6c, 0x61, 0x73, 0x74, 0x53, 0x79, 0x6e, 0x63, 0x65, 0x64, 0x12, 0x39, 0x0a,
2635
+ 0x0a, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x73, 0x65, 0x65, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28,
2636
+ 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
2637
+ 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x66,
2638
+ 0x69, 0x72, 0x73, 0x74, 0x53, 0x65, 0x65, 0x6e, 0x12, 0x3d, 0x0a, 0x0c, 0x6c, 0x61, 0x73, 0x74,
2639
+ 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a,
2640
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
2641
+ 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0b, 0x6c, 0x61, 0x73, 0x74,
2642
+ 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x12, 0x3f, 0x0a, 0x0d, 0x6c, 0x61, 0x73, 0x74, 0x5f,
2643
+ 0x65, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x65, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a,
2644
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
2645
+ 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0c, 0x6c, 0x61, 0x73, 0x74,
2646
+ 0x45, 0x6e, 0x72, 0x69, 0x63, 0x68, 0x65, 0x64, 0x12, 0x3d, 0x0a, 0x04, 0x63, 0x6f, 0x72, 0x65,
2647
+ 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e,
2648
+ 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f,
2649
+ 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x6f, 0x72, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64,
2650
+ 0x73, 0x52, 0x04, 0x63, 0x6f, 0x72, 0x65, 0x12, 0x40, 0x0a, 0x02, 0x68, 0x77, 0x18, 0x07, 0x20,
2651
+ 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
2652
+ 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64,
2653
+ 0x2e, 0x76, 0x31, 0x2e, 0x48, 0x61, 0x72, 0x64, 0x77, 0x61, 0x72, 0x65, 0x49, 0x6e, 0x66, 0x6f,
2654
+ 0x48, 0x00, 0x52, 0x02, 0x68, 0x77, 0x88, 0x01, 0x01, 0x12, 0x47, 0x0a, 0x02, 0x6f, 0x73, 0x18,
2655
+ 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
2656
+ 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75,
2657
+ 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x53,
2658
+ 0x79, 0x73, 0x74, 0x65, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x01, 0x52, 0x02, 0x6f, 0x73, 0x88,
2659
+ 0x01, 0x01, 0x12, 0x64, 0x0a, 0x12, 0x73, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x5f, 0x69,
2660
+ 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x30,
2661
+ 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
2662
+ 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x53,
2663
+ 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x49, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79,
2664
+ 0x48, 0x02, 0x52, 0x11, 0x73, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x49, 0x6e, 0x76, 0x65,
2665
+ 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x88, 0x01, 0x01, 0x42, 0x05, 0x0a, 0x03, 0x5f, 0x68, 0x77, 0x42,
2666
+ 0x05, 0x0a, 0x03, 0x5f, 0x6f, 0x73, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x73, 0x6f, 0x66, 0x74, 0x77,
2667
+ 0x61, 0x72, 0x65, 0x5f, 0x69, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x22, 0x54, 0x0a,
2668
+ 0x09, 0x41, 0x73, 0x73, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x17, 0x0a, 0x07, 0x6c, 0x73,
2669
+ 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6c, 0x73, 0x4e,
2670
+ 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x09, 0x66, 0x69, 0x6e, 0x67, 0x5f, 0x74, 0x79, 0x70, 0x65,
2671
+ 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x08, 0x66, 0x69, 0x6e, 0x67, 0x54, 0x79,
2672
+ 0x70, 0x65, 0x88, 0x01, 0x01, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x66, 0x69, 0x6e, 0x67, 0x5f, 0x74,
2673
+ 0x79, 0x70, 0x65, 0x22, 0xe3, 0x02, 0x0a, 0x0a, 0x43, 0x6f, 0x72, 0x65, 0x46, 0x69, 0x65, 0x6c,
2674
+ 0x64, 0x73, 0x12, 0x3c, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
2675
+ 0x32, 0x28, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
2676
+ 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31,
2677
+ 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65,
2678
+ 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
2679
+ 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x18, 0x03,
2680
+ 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x88, 0x01,
2681
+ 0x01, 0x12, 0x22, 0x0a, 0x0a, 0x69, 0x70, 0x5f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18,
2682
+ 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x09, 0x69, 0x70, 0x41, 0x64, 0x64, 0x72, 0x65,
2683
+ 0x73, 0x73, 0x88, 0x01, 0x01, 0x12, 0x1b, 0x0a, 0x06, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x18,
2684
+ 0x05, 0x20, 0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x06, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x88,
2685
+ 0x01, 0x01, 0x12, 0x15, 0x0a, 0x03, 0x6d, 0x61, 0x63, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x48,
2686
+ 0x03, 0x52, 0x03, 0x6d, 0x61, 0x63, 0x88, 0x01, 0x01, 0x12, 0x22, 0x0a, 0x0a, 0x6d, 0x61, 0x63,
2687
+ 0x5f, 0x76, 0x65, 0x6e, 0x64, 0x6f, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x48, 0x04, 0x52,
2688
+ 0x09, 0x6d, 0x61, 0x63, 0x56, 0x65, 0x6e, 0x64, 0x6f, 0x72, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a,
2689
+ 0x09, 0x73, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09,
2690
+ 0x48, 0x05, 0x52, 0x08, 0x73, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x49, 0x64, 0x88, 0x01, 0x01, 0x42,
2691
+ 0x09, 0x0a, 0x07, 0x5f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x69,
2692
+ 0x70, 0x5f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x73, 0x65,
2693
+ 0x72, 0x69, 0x61, 0x6c, 0x42, 0x06, 0x0a, 0x04, 0x5f, 0x6d, 0x61, 0x63, 0x42, 0x0d, 0x0a, 0x0b,
2694
+ 0x5f, 0x6d, 0x61, 0x63, 0x5f, 0x76, 0x65, 0x6e, 0x64, 0x6f, 0x72, 0x42, 0x0c, 0x0a, 0x0a, 0x5f,
2695
+ 0x73, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x5f, 0x69, 0x64, 0x22, 0xc2, 0x06, 0x0a, 0x0c, 0x48, 0x61,
2696
+ 0x72, 0x64, 0x77, 0x61, 0x72, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1c, 0x0a, 0x07, 0x74, 0x79,
2697
+ 0x70, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x00, 0x52, 0x06, 0x74,
2698
+ 0x79, 0x70, 0x65, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x1c, 0x0a, 0x07, 0x6d, 0x61, 0x6b, 0x65,
2699
+ 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x48, 0x01, 0x52, 0x06, 0x6d, 0x61, 0x6b,
2700
+ 0x65, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x1e, 0x0a, 0x08, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f,
2701
+ 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x48, 0x02, 0x52, 0x07, 0x6d, 0x6f, 0x64, 0x65,
2702
+ 0x6c, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79,
2703
+ 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x48, 0x03, 0x52, 0x08, 0x66, 0x61, 0x6d,
2704
+ 0x69, 0x6c, 0x79, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x69, 0x73, 0x5f, 0x66,
2705
+ 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x48, 0x04, 0x52, 0x08, 0x69,
2706
+ 0x73, 0x46, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x88, 0x01, 0x01, 0x12, 0x1b, 0x0a, 0x06, 0x73, 0x65,
2707
+ 0x72, 0x69, 0x61, 0x6c, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x48, 0x05, 0x52, 0x06, 0x73, 0x65,
2708
+ 0x72, 0x69, 0x61, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x74, 0x79, 0x70, 0x65, 0x5f,
2709
+ 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x48, 0x06, 0x52, 0x08, 0x74, 0x79,
2710
+ 0x70, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x6d, 0x61, 0x6b,
2711
+ 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x48, 0x07, 0x52, 0x08,
2712
+ 0x6d, 0x61, 0x6b, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x22, 0x0a, 0x0a, 0x6d,
2713
+ 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x48,
2714
+ 0x08, 0x52, 0x09, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12,
2715
+ 0x24, 0x0a, 0x0b, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0d,
2716
+ 0x20, 0x01, 0x28, 0x09, 0x48, 0x09, 0x52, 0x0a, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x4e, 0x61,
2717
+ 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x15, 0x0a, 0x03, 0x63, 0x70, 0x65, 0x18, 0x15, 0x20, 0x01,
2718
+ 0x28, 0x09, 0x48, 0x0a, 0x52, 0x03, 0x63, 0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x17, 0x0a, 0x04,
2719
+ 0x72, 0x61, 0x6e, 0x6b, 0x18, 0x14, 0x20, 0x01, 0x28, 0x05, 0x48, 0x0b, 0x52, 0x04, 0x72, 0x61,
2720
+ 0x6e, 0x6b, 0x88, 0x01, 0x01, 0x12, 0x55, 0x0a, 0x0d, 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67,
2721
+ 0x5f, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x18, 0x16, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x63,
2722
+ 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70,
2723
+ 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x61, 0x74,
2724
+ 0x61, 0x6c, 0x6f, 0x67, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x48, 0x0c, 0x52, 0x0c, 0x63, 0x61, 0x74,
2725
+ 0x61, 0x6c, 0x6f, 0x67, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x88, 0x01, 0x01, 0x12, 0x55, 0x0a, 0x0d,
2726
+ 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x18, 0x17, 0x20,
2727
+ 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
2728
+ 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64,
2729
+ 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x4d, 0x6f, 0x64, 0x65, 0x6c,
2730
+ 0x48, 0x0d, 0x52, 0x0c, 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x4d, 0x6f, 0x64, 0x65, 0x6c,
2731
+ 0x88, 0x01, 0x01, 0x12, 0x45, 0x0a, 0x03, 0x72, 0x61, 0x77, 0x18, 0x18, 0x20, 0x01, 0x28, 0x0b,
2732
+ 0x32, 0x2e, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
2733
+ 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31,
2734
+ 0x2e, 0x52, 0x61, 0x77, 0x48, 0x61, 0x72, 0x64, 0x77, 0x61, 0x72, 0x65, 0x49, 0x6e, 0x66, 0x6f,
2735
+ 0x48, 0x0e, 0x52, 0x03, 0x72, 0x61, 0x77, 0x88, 0x01, 0x01, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x74,
2736
+ 0x79, 0x70, 0x65, 0x5f, 0x69, 0x64, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x6d, 0x61, 0x6b, 0x65, 0x5f,
2737
+ 0x69, 0x64, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x69, 0x64, 0x42,
2738
+ 0x0c, 0x0a, 0x0a, 0x5f, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x5f, 0x69, 0x64, 0x42, 0x0c, 0x0a,
2739
+ 0x0a, 0x5f, 0x69, 0x73, 0x5f, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x42, 0x09, 0x0a, 0x07, 0x5f,
2740
+ 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f,
2741
+ 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x6e, 0x61,
2742
+ 0x6d, 0x65, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x6e, 0x61, 0x6d,
2743
+ 0x65, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x5f, 0x6e, 0x61, 0x6d,
2744
+ 0x65, 0x42, 0x06, 0x0a, 0x04, 0x5f, 0x63, 0x70, 0x65, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x72, 0x61,
2745
+ 0x6e, 0x6b, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x5f, 0x62,
2746
+ 0x72, 0x61, 0x6e, 0x64, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67,
2747
+ 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x42, 0x06, 0x0a, 0x04, 0x5f, 0x72, 0x61, 0x77, 0x22, 0xe6,
2748
+ 0x01, 0x0a, 0x0f, 0x52, 0x61, 0x77, 0x48, 0x61, 0x72, 0x64, 0x77, 0x61, 0x72, 0x65, 0x49, 0x6e,
2749
+ 0x66, 0x6f, 0x12, 0x27, 0x0a, 0x0c, 0x61, 0x72, 0x63, 0x68, 0x69, 0x74, 0x65, 0x63, 0x74, 0x75,
2750
+ 0x72, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x0c, 0x61, 0x72, 0x63, 0x68,
2751
+ 0x69, 0x74, 0x65, 0x63, 0x74, 0x75, 0x72, 0x65, 0x88, 0x01, 0x01, 0x12, 0x19, 0x0a, 0x05, 0x6d,
2752
+ 0x6f, 0x64, 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x05, 0x6d, 0x6f,
2753
+ 0x64, 0x65, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x27, 0x0a, 0x0c, 0x6d, 0x61, 0x6e, 0x75, 0x66, 0x61,
2754
+ 0x63, 0x74, 0x75, 0x72, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x0c,
2755
+ 0x6d, 0x61, 0x6e, 0x75, 0x66, 0x61, 0x63, 0x74, 0x75, 0x72, 0x65, 0x72, 0x88, 0x01, 0x01, 0x12,
2756
+ 0x28, 0x0a, 0x0d, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72,
2757
+ 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x03, 0x52, 0x0c, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c,
2758
+ 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x88, 0x01, 0x01, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x61, 0x72,
2759
+ 0x63, 0x68, 0x69, 0x74, 0x65, 0x63, 0x74, 0x75, 0x72, 0x65, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x6d,
2760
+ 0x6f, 0x64, 0x65, 0x6c, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x6d, 0x61, 0x6e, 0x75, 0x66, 0x61, 0x63,
2761
+ 0x74, 0x75, 0x72, 0x65, 0x72, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c,
2762
+ 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x22, 0xe5, 0x04, 0x0a, 0x13, 0x4f, 0x70, 0x65, 0x72,
2763
+ 0x61, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x12,
2764
+ 0x13, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x01, 0x52, 0x02, 0x69,
2765
+ 0x64, 0x88, 0x01, 0x01, 0x12, 0x17, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01,
2766
+ 0x28, 0x09, 0x48, 0x02, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x1d, 0x0a,
2767
+ 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x48, 0x03,
2768
+ 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x19, 0x0a, 0x05,
2769
+ 0x62, 0x75, 0x69, 0x6c, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x04, 0x52, 0x05, 0x62,
2770
+ 0x75, 0x69, 0x6c, 0x64, 0x88, 0x01, 0x01, 0x12, 0x22, 0x0a, 0x0a, 0x66, 0x77, 0x5f, 0x76, 0x65,
2771
+ 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x48, 0x05, 0x52, 0x09, 0x66,
2772
+ 0x77, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x15, 0x0a, 0x03, 0x63,
2773
+ 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x48, 0x06, 0x52, 0x03, 0x63, 0x70, 0x65, 0x88,
2774
+ 0x01, 0x01, 0x12, 0x1a, 0x0a, 0x06, 0x66, 0x77, 0x5f, 0x63, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01,
2775
+ 0x28, 0x09, 0x48, 0x07, 0x52, 0x05, 0x66, 0x77, 0x43, 0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x17,
2776
+ 0x0a, 0x04, 0x72, 0x61, 0x6e, 0x6b, 0x18, 0x08, 0x20, 0x01, 0x28, 0x05, 0x48, 0x08, 0x52, 0x04,
2777
+ 0x72, 0x61, 0x6e, 0x6b, 0x88, 0x01, 0x01, 0x12, 0x55, 0x0a, 0x0d, 0x63, 0x61, 0x74, 0x61, 0x6c,
2778
+ 0x6f, 0x67, 0x5f, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b,
2779
+ 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
2780
+ 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x43,
2781
+ 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x48, 0x09, 0x52, 0x0c, 0x63,
2782
+ 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x88, 0x01, 0x01, 0x12, 0x4c,
2783
+ 0x0a, 0x0a, 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x5f, 0x6f, 0x73, 0x18, 0x0a, 0x20, 0x01,
2784
+ 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
2785
+ 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e,
2786
+ 0x76, 0x31, 0x2e, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x4f, 0x73, 0x48, 0x0a, 0x52, 0x09,
2787
+ 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x4f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x58, 0x0a, 0x07,
2788
+ 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x73, 0x18, 0x20, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3c, 0x2e,
2789
+ 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64,
2790
+ 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x57, 0x69,
2791
+ 0x6e, 0x64, 0x6f, 0x77, 0x73, 0x52, 0x61, 0x77, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e,
2792
+ 0x67, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x07, 0x77,
2793
+ 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x73, 0x42, 0x05, 0x0a, 0x03, 0x72, 0x61, 0x77, 0x42, 0x05, 0x0a,
2794
+ 0x03, 0x5f, 0x69, 0x64, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x0a, 0x0a,
2795
+ 0x08, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x62, 0x75,
2796
+ 0x69, 0x6c, 0x64, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x66, 0x77, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69,
2797
+ 0x6f, 0x6e, 0x42, 0x06, 0x0a, 0x04, 0x5f, 0x63, 0x70, 0x65, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x66,
2798
+ 0x77, 0x5f, 0x63, 0x70, 0x65, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x72, 0x61, 0x6e, 0x6b, 0x42, 0x10,
2799
+ 0x0a, 0x0e, 0x5f, 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x5f, 0x62, 0x72, 0x61, 0x6e, 0x64,
2800
+ 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x5f, 0x6f, 0x73, 0x22,
2801
+ 0xd4, 0x04, 0x0a, 0x1d, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x73, 0x52, 0x61, 0x77, 0x4f, 0x70,
2802
+ 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x49, 0x6e, 0x66,
2803
+ 0x6f, 0x12, 0x1d, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01,
2804
+ 0x28, 0x09, 0x48, 0x00, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01,
2805
+ 0x12, 0x26, 0x0a, 0x0c, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x70, 0x61, 0x63, 0x6b,
2806
+ 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x48, 0x01, 0x52, 0x0b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63,
2807
+ 0x65, 0x50, 0x61, 0x63, 0x6b, 0x88, 0x01, 0x01, 0x12, 0x19, 0x0a, 0x05, 0x62, 0x75, 0x69, 0x6c,
2808
+ 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x05, 0x62, 0x75, 0x69, 0x6c, 0x64,
2809
+ 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6e,
2810
+ 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x03, 0x52, 0x0b, 0x76, 0x65, 0x72,
2811
+ 0x73, 0x69, 0x6f, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x62,
2812
+ 0x75, 0x69, 0x6c, 0x64, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28,
2813
+ 0x09, 0x48, 0x04, 0x52, 0x0b, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72,
2814
+ 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x74,
2815
+ 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x48, 0x05, 0x52, 0x0b, 0x70, 0x72, 0x6f,
2816
+ 0x64, 0x75, 0x63, 0x74, 0x54, 0x79, 0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x35, 0x0a, 0x14, 0x69,
2817
+ 0x73, 0x5f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c,
2818
+ 0x6c, 0x65, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x48, 0x06, 0x52, 0x12, 0x69, 0x73, 0x44,
2819
+ 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x6c, 0x65, 0x72, 0x88,
2820
+ 0x01, 0x01, 0x12, 0x29, 0x0a, 0x0e, 0x70, 0x61, 0x72, 0x74, 0x5f, 0x6f, 0x66, 0x5f, 0x64, 0x6f,
2821
+ 0x6d, 0x61, 0x69, 0x6e, 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 0x48, 0x07, 0x52, 0x0c, 0x70, 0x61,
2822
+ 0x72, 0x74, 0x4f, 0x66, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x30, 0x0a,
2823
+ 0x12, 0x69, 0x73, 0x5f, 0x61, 0x7a, 0x75, 0x72, 0x65, 0x5f, 0x61, 0x64, 0x5f, 0x6a, 0x6f, 0x69,
2824
+ 0x6e, 0x65, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x08, 0x48, 0x08, 0x52, 0x0f, 0x69, 0x73, 0x41,
2825
+ 0x7a, 0x75, 0x72, 0x65, 0x41, 0x64, 0x4a, 0x6f, 0x69, 0x6e, 0x65, 0x64, 0x88, 0x01, 0x01, 0x12,
2826
+ 0x1c, 0x0a, 0x07, 0x6f, 0x73, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09,
2827
+ 0x48, 0x09, 0x52, 0x06, 0x6f, 0x73, 0x43, 0x6f, 0x64, 0x65, 0x88, 0x01, 0x01, 0x42, 0x0a, 0x0a,
2828
+ 0x08, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x73, 0x65,
2829
+ 0x72, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x70, 0x61, 0x63, 0x6b, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x62,
2830
+ 0x75, 0x69, 0x6c, 0x64, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
2831
+ 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x5f,
2832
+ 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75,
2833
+ 0x63, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x42, 0x17, 0x0a, 0x15, 0x5f, 0x69, 0x73, 0x5f, 0x64,
2834
+ 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x6c, 0x65, 0x72,
2835
+ 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x5f, 0x6f, 0x66, 0x5f, 0x64, 0x6f, 0x6d,
2836
+ 0x61, 0x69, 0x6e, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x69, 0x73, 0x5f, 0x61, 0x7a, 0x75, 0x72, 0x65,
2837
+ 0x5f, 0x61, 0x64, 0x5f, 0x6a, 0x6f, 0x69, 0x6e, 0x65, 0x64, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x6f,
2838
+ 0x73, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x22, 0x92, 0x01, 0x0a, 0x11, 0x53, 0x6f, 0x66, 0x74, 0x77,
2839
+ 0x61, 0x72, 0x65, 0x49, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x12, 0x38, 0x0a, 0x09,
2840
+ 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
2841
+ 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
2842
+ 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x74, 0x69, 0x6d,
2843
+ 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x12, 0x43, 0x0a, 0x08, 0x73, 0x6f, 0x66, 0x74, 0x77, 0x61,
2844
+ 0x72, 0x65, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c,
2845
+ 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74,
2846
+ 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72,
2847
+ 0x65, 0x52, 0x08, 0x73, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x22, 0xaa, 0x06, 0x0a, 0x08,
2848
+ 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x12, 0x17, 0x0a, 0x04, 0x72, 0x61, 0x6e, 0x6b,
2849
+ 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x48, 0x00, 0x52, 0x04, 0x72, 0x61, 0x6e, 0x6b, 0x88, 0x01,
2850
+ 0x01, 0x12, 0x1c, 0x0a, 0x07, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01,
2851
+ 0x28, 0x03, 0x48, 0x01, 0x52, 0x06, 0x74, 0x79, 0x70, 0x65, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12,
2852
+ 0x1a, 0x0a, 0x06, 0x63, 0x61, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x48,
2853
+ 0x02, 0x52, 0x05, 0x63, 0x61, 0x74, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x1c, 0x0a, 0x07, 0x6d,
2854
+ 0x61, 0x6b, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x48, 0x03, 0x52, 0x06,
2855
+ 0x6d, 0x61, 0x6b, 0x65, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x18, 0x0a, 0x05, 0x73, 0x77, 0x5f,
2856
+ 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x48, 0x04, 0x52, 0x04, 0x73, 0x77, 0x49, 0x64,
2857
+ 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64,
2858
+ 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x48, 0x05, 0x52, 0x08, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74,
2859
+ 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x6e, 0x61,
2860
+ 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x48, 0x06, 0x52, 0x08, 0x74, 0x79, 0x70, 0x65,
2861
+ 0x4e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x1e, 0x0a, 0x08, 0x63, 0x61, 0x74, 0x5f, 0x6e,
2862
+ 0x61, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x48, 0x07, 0x52, 0x07, 0x63, 0x61, 0x74,
2863
+ 0x4e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x6d, 0x61, 0x6b, 0x65, 0x5f,
2864
+ 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x48, 0x08, 0x52, 0x08, 0x6d, 0x61,
2865
+ 0x6b, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x17, 0x0a, 0x04, 0x6e, 0x61, 0x6d,
2866
+ 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x48, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x88,
2867
+ 0x01, 0x01, 0x12, 0x1d, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x0b, 0x20,
2868
+ 0x01, 0x28, 0x09, 0x48, 0x0a, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x88, 0x01,
2869
+ 0x01, 0x12, 0x22, 0x0a, 0x0a, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x5f, 0x76, 0x65, 0x72, 0x18,
2870
+ 0x0c, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0b, 0x52, 0x09, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x56,
2871
+ 0x65, 0x72, 0x88, 0x01, 0x01, 0x12, 0x1d, 0x0a, 0x07, 0x65, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e,
2872
+ 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0c, 0x52, 0x07, 0x65, 0x64, 0x69, 0x74, 0x69, 0x6f,
2873
+ 0x6e, 0x88, 0x01, 0x01, 0x12, 0x19, 0x0a, 0x05, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x18, 0x0e, 0x20,
2874
+ 0x01, 0x28, 0x09, 0x48, 0x0d, 0x52, 0x05, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x88, 0x01, 0x01, 0x12,
2875
+ 0x15, 0x0a, 0x03, 0x63, 0x70, 0x65, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0e, 0x52, 0x03,
2876
+ 0x63, 0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x5e, 0x0a, 0x10, 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f,
2877
+ 0x67, 0x5f, 0x73, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x18, 0x10, 0x20, 0x01, 0x28, 0x0b,
2878
+ 0x32, 0x2e, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
2879
+ 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31,
2880
+ 0x2e, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65,
2881
+ 0x48, 0x0f, 0x52, 0x0f, 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x53, 0x6f, 0x66, 0x74, 0x77,
2882
+ 0x61, 0x72, 0x65, 0x88, 0x01, 0x01, 0x12, 0x3c, 0x0a, 0x03, 0x72, 0x61, 0x77, 0x18, 0x11, 0x20,
2883
+ 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
2884
+ 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64,
2885
+ 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x61, 0x77, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x52,
2886
+ 0x03, 0x72, 0x61, 0x77, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x72, 0x61, 0x6e, 0x6b, 0x42, 0x0a, 0x0a,
2887
+ 0x08, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x69, 0x64, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x63, 0x61,
2888
+ 0x74, 0x5f, 0x69, 0x64, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x69, 0x64,
2889
+ 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x73, 0x77, 0x5f, 0x69, 0x64, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x70,
2890
+ 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x74, 0x79, 0x70,
2891
+ 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x63, 0x61, 0x74, 0x5f, 0x6e,
2892
+ 0x61, 0x6d, 0x65, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x6e, 0x61, 0x6d,
2893
+ 0x65, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x76,
2894
+ 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x6d, 0x61, 0x72, 0x6b, 0x65,
2895
+ 0x74, 0x5f, 0x76, 0x65, 0x72, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x65, 0x64, 0x69, 0x74, 0x69, 0x6f,
2896
+ 0x6e, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x42, 0x06, 0x0a, 0x04, 0x5f,
2897
+ 0x63, 0x70, 0x65, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x5f,
2898
+ 0x73, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x22, 0xf8, 0x02, 0x0a, 0x0b, 0x52, 0x61, 0x77,
2899
+ 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65,
2900
+ 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x06,
2901
+ 0x76, 0x65, 0x6e, 0x64, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x06,
2902
+ 0x76, 0x65, 0x6e, 0x64, 0x6f, 0x72, 0x88, 0x01, 0x01, 0x12, 0x1d, 0x0a, 0x07, 0x76, 0x65, 0x72,
2903
+ 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x07, 0x76, 0x65,
2904
+ 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x17, 0x0a, 0x04, 0x69, 0x6e, 0x66, 0x6f,
2905
+ 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x88, 0x01,
2906
+ 0x01, 0x12, 0x1e, 0x0a, 0x08, 0x65, 0x78, 0x65, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x18, 0x05, 0x20,
2907
+ 0x01, 0x28, 0x09, 0x48, 0x03, 0x52, 0x07, 0x65, 0x78, 0x65, 0x50, 0x61, 0x74, 0x68, 0x88, 0x01,
2908
+ 0x01, 0x12, 0x17, 0x0a, 0x04, 0x61, 0x72, 0x63, 0x68, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x48,
2909
+ 0x04, 0x52, 0x04, 0x61, 0x72, 0x63, 0x68, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x69, 0x6e,
2910
+ 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03,
2911
+ 0x48, 0x05, 0x52, 0x0b, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x44, 0x61, 0x74, 0x65, 0x88,
2912
+ 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x74, 0x79, 0x70,
2913
+ 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x48, 0x06, 0x52, 0x0a, 0x73, 0x6f, 0x75, 0x72, 0x63,
2914
+ 0x65, 0x54, 0x79, 0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x18, 0x0a, 0x05, 0x73, 0x77, 0x5f, 0x69,
2915
+ 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x48, 0x07, 0x52, 0x04, 0x73, 0x77, 0x49, 0x64, 0x88,
2916
+ 0x01, 0x01, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x76, 0x65, 0x6e, 0x64, 0x6f, 0x72, 0x42, 0x0a, 0x0a,
2917
+ 0x08, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x69, 0x6e,
2918
+ 0x66, 0x6f, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x65, 0x78, 0x65, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x42,
2919
+ 0x07, 0x0a, 0x05, 0x5f, 0x61, 0x72, 0x63, 0x68, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x69, 0x6e, 0x73,
2920
+ 0x74, 0x61, 0x6c, 0x6c, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x73, 0x6f,
2921
+ 0x75, 0x72, 0x63, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x73, 0x77,
2922
+ 0x5f, 0x69, 0x64, 0x22, 0x8b, 0x0e, 0x0a, 0x0c, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x42,
2923
+ 0x72, 0x61, 0x6e, 0x64, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
2924
+ 0x52, 0x02, 0x69, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x6b, 0x65, 0x79,
2925
+ 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x61, 0x6b, 0x65, 0x4b, 0x65, 0x79, 0x12,
2926
+ 0x1b, 0x0a, 0x09, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01,
2927
+ 0x28, 0x09, 0x52, 0x08, 0x6d, 0x61, 0x6b, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x24, 0x0a, 0x0b,
2928
+ 0x6f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28,
2929
+ 0x03, 0x48, 0x00, 0x52, 0x0a, 0x6f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x49, 0x64, 0x88,
2930
+ 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18,
2931
+ 0x12, 0x20, 0x01, 0x28, 0x03, 0x48, 0x01, 0x52, 0x08, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x49,
2932
+ 0x64, 0x88, 0x01, 0x01, 0x12, 0x2d, 0x0a, 0x10, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x75, 0x70, 0x64,
2933
+ 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x48, 0x02,
2934
+ 0x52, 0x0e, 0x6c, 0x61, 0x73, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65,
2935
+ 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x5f, 0x63,
2936
+ 0x6f, 0x64, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x48, 0x03, 0x52, 0x0b, 0x63, 0x6f, 0x75,
2937
+ 0x6e, 0x74, 0x72, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x88, 0x01, 0x01, 0x12, 0x29, 0x0a, 0x0e, 0x6c,
2938
+ 0x6f, 0x67, 0x6f, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x07, 0x20,
2939
+ 0x01, 0x28, 0x09, 0x48, 0x04, 0x52, 0x0c, 0x6c, 0x6f, 0x67, 0x6f, 0x49, 0x6d, 0x61, 0x67, 0x65,
2940
+ 0x55, 0x72, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x2d, 0x0a, 0x10, 0x62, 0x61, 0x6e, 0x6e, 0x65, 0x72,
2941
+ 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09,
2942
+ 0x48, 0x05, 0x52, 0x0e, 0x62, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x55,
2943
+ 0x72, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x77, 0x69, 0x6b, 0x69, 0x70, 0x65, 0x64,
2944
+ 0x69, 0x61, 0x5f, 0x69, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x48, 0x06, 0x52, 0x0b, 0x77,
2945
+ 0x69, 0x6b, 0x69, 0x70, 0x65, 0x64, 0x69, 0x61, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x33, 0x0a,
2946
+ 0x13, 0x77, 0x69, 0x6b, 0x69, 0x70, 0x65, 0x64, 0x69, 0x61, 0x5f, 0x6c, 0x61, 0x6e, 0x67, 0x5f,
2947
+ 0x63, 0x6f, 0x64, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x48, 0x07, 0x52, 0x11, 0x77, 0x69,
2948
+ 0x6b, 0x69, 0x70, 0x65, 0x64, 0x69, 0x61, 0x4c, 0x61, 0x6e, 0x67, 0x43, 0x6f, 0x64, 0x65, 0x88,
2949
+ 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b, 0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x75, 0x72,
2950
+ 0x6c, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x48, 0x08, 0x52, 0x0a, 0x77, 0x65, 0x62, 0x73, 0x69,
2951
+ 0x74, 0x65, 0x55, 0x72, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b, 0x73, 0x75, 0x70, 0x70,
2952
+ 0x6f, 0x72, 0x74, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x48, 0x09, 0x52,
2953
+ 0x0a, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x55, 0x72, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x28,
2954
+ 0x0a, 0x0d, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18,
2955
+ 0x0d, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0a, 0x52, 0x0c, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74,
2956
+ 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x88, 0x01, 0x01, 0x12, 0x2e, 0x0a, 0x10, 0x66, 0x61, 0x63, 0x65,
2957
+ 0x62, 0x6f, 0x6f, 0x6b, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x0e, 0x20, 0x01,
2958
+ 0x28, 0x09, 0x48, 0x0b, 0x52, 0x0f, 0x66, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x41, 0x63,
2959
+ 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x88, 0x01, 0x01, 0x12, 0x2c, 0x0a, 0x0f, 0x74, 0x77, 0x69, 0x74,
2960
+ 0x74, 0x65, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x0f, 0x20, 0x01, 0x28,
2961
+ 0x09, 0x48, 0x0c, 0x52, 0x0e, 0x74, 0x77, 0x69, 0x74, 0x74, 0x65, 0x72, 0x41, 0x63, 0x63, 0x6f,
2962
+ 0x75, 0x6e, 0x74, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x77, 0x61, 0x72, 0x72, 0x61, 0x6e,
2963
+ 0x74, 0x79, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0d, 0x52, 0x0b,
2964
+ 0x77, 0x61, 0x72, 0x72, 0x61, 0x6e, 0x74, 0x79, 0x55, 0x72, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x33,
2965
+ 0x0a, 0x13, 0x77, 0x61, 0x72, 0x72, 0x61, 0x6e, 0x74, 0x79, 0x5f, 0x64, 0x69, 0x72, 0x65, 0x63,
2966
+ 0x74, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0e, 0x52, 0x11, 0x77,
2967
+ 0x61, 0x72, 0x72, 0x61, 0x6e, 0x74, 0x79, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x55, 0x72, 0x6c,
2968
+ 0x88, 0x01, 0x01, 0x12, 0x28, 0x0a, 0x0d, 0x63, 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x74, 0x79,
2969
+ 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x14, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0f, 0x52, 0x0c, 0x63, 0x6f,
2970
+ 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x74, 0x79, 0x55, 0x72, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x2e, 0x0a,
2971
+ 0x10, 0x6c, 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x69, 0x6e, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e,
2972
+ 0x74, 0x18, 0x15, 0x20, 0x01, 0x28, 0x09, 0x48, 0x10, 0x52, 0x0f, 0x6c, 0x69, 0x6e, 0x6b, 0x65,
2973
+ 0x64, 0x69, 0x6e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x88, 0x01, 0x01, 0x12, 0x30, 0x0a,
2974
+ 0x11, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x67, 0x72, 0x61, 0x6d, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75,
2975
+ 0x6e, 0x74, 0x18, 0x16, 0x20, 0x01, 0x28, 0x09, 0x48, 0x11, 0x52, 0x10, 0x69, 0x6e, 0x73, 0x74,
2976
+ 0x61, 0x67, 0x72, 0x61, 0x6d, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x88, 0x01, 0x01, 0x12,
2977
+ 0x2c, 0x0a, 0x0f, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75,
2978
+ 0x6e, 0x74, 0x18, 0x17, 0x20, 0x01, 0x28, 0x09, 0x48, 0x12, 0x52, 0x0e, 0x79, 0x6f, 0x75, 0x74,
2979
+ 0x75, 0x62, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x88, 0x01, 0x01, 0x12, 0x30, 0x0a,
2980
+ 0x11, 0x70, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75,
2981
+ 0x6e, 0x74, 0x18, 0x18, 0x20, 0x01, 0x28, 0x09, 0x48, 0x13, 0x52, 0x10, 0x70, 0x69, 0x6e, 0x74,
2982
+ 0x65, 0x72, 0x65, 0x73, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x88, 0x01, 0x01, 0x12,
2983
+ 0x2a, 0x0a, 0x0e, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x5f, 0x68, 0x61, 0x72, 0x64, 0x77, 0x61, 0x72,
2984
+ 0x65, 0x18, 0x19, 0x20, 0x01, 0x28, 0x08, 0x48, 0x14, 0x52, 0x0d, 0x63, 0x6c, 0x61, 0x73, 0x73,
2985
+ 0x48, 0x61, 0x72, 0x64, 0x77, 0x61, 0x72, 0x65, 0x88, 0x01, 0x01, 0x12, 0x2a, 0x0a, 0x0e, 0x63,
2986
+ 0x6c, 0x61, 0x73, 0x73, 0x5f, 0x73, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x18, 0x1a, 0x20,
2987
+ 0x01, 0x28, 0x08, 0x48, 0x15, 0x52, 0x0d, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x53, 0x6f, 0x66, 0x74,
2988
+ 0x77, 0x61, 0x72, 0x65, 0x88, 0x01, 0x01, 0x12, 0x2a, 0x0a, 0x0e, 0x63, 0x6c, 0x61, 0x73, 0x73,
2989
+ 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x75, 0x6d, 0x65, 0x72, 0x18, 0x1b, 0x20, 0x01, 0x28, 0x08, 0x48,
2990
+ 0x16, 0x52, 0x0d, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x43, 0x6f, 0x6e, 0x73, 0x75, 0x6d, 0x65, 0x72,
2991
+ 0x88, 0x01, 0x01, 0x12, 0x2e, 0x0a, 0x10, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x5f, 0x65, 0x6e, 0x74,
2992
+ 0x65, 0x72, 0x70, 0x72, 0x69, 0x73, 0x65, 0x18, 0x1c, 0x20, 0x01, 0x28, 0x08, 0x48, 0x17, 0x52,
2993
+ 0x0f, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x45, 0x6e, 0x74, 0x65, 0x72, 0x70, 0x72, 0x69, 0x73, 0x65,
2994
+ 0x88, 0x01, 0x01, 0x12, 0x2e, 0x0a, 0x10, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x5f, 0x69, 0x6e, 0x64,
2995
+ 0x75, 0x73, 0x74, 0x72, 0x69, 0x61, 0x6c, 0x18, 0x1d, 0x20, 0x01, 0x28, 0x08, 0x48, 0x18, 0x52,
2996
+ 0x0f, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x49, 0x6e, 0x64, 0x75, 0x73, 0x74, 0x72, 0x69, 0x61, 0x6c,
2997
+ 0x88, 0x01, 0x01, 0x12, 0x2e, 0x0a, 0x10, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x5f, 0x69, 0x6e, 0x64,
2998
+ 0x69, 0x76, 0x69, 0x64, 0x75, 0x61, 0x6c, 0x18, 0x1e, 0x20, 0x01, 0x28, 0x08, 0x48, 0x19, 0x52,
2999
+ 0x0f, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x49, 0x6e, 0x64, 0x69, 0x76, 0x69, 0x64, 0x75, 0x61, 0x6c,
3000
+ 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x73, 0x63, 0x6f,
3001
+ 0x72, 0x65, 0x18, 0x13, 0x20, 0x01, 0x28, 0x05, 0x48, 0x1a, 0x52, 0x0a, 0x6d, 0x61, 0x74, 0x63,
3002
+ 0x68, 0x53, 0x63, 0x6f, 0x72, 0x65, 0x88, 0x01, 0x01, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x6f, 0x76,
3003
+ 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x5f, 0x69, 0x64, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x70, 0x61,
3004
+ 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x6c, 0x61, 0x73, 0x74,
3005
+ 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x42, 0x0f, 0x0a, 0x0d,
3006
+ 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x42, 0x11, 0x0a,
3007
+ 0x0f, 0x5f, 0x6c, 0x6f, 0x67, 0x6f, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x75, 0x72, 0x6c,
3008
+ 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x62, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x5f, 0x69, 0x6d, 0x61, 0x67,
3009
+ 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x77, 0x69, 0x6b, 0x69, 0x70, 0x65,
3010
+ 0x64, 0x69, 0x61, 0x5f, 0x69, 0x64, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x77, 0x69, 0x6b, 0x69, 0x70,
3011
+ 0x65, 0x64, 0x69, 0x61, 0x5f, 0x6c, 0x61, 0x6e, 0x67, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x42, 0x0e,
3012
+ 0x0a, 0x0c, 0x5f, 0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x42, 0x0e,
3013
+ 0x0a, 0x0c, 0x5f, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x75, 0x72, 0x6c, 0x42, 0x10,
3014
+ 0x0a, 0x0e, 0x5f, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65,
3015
+ 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x66, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x5f, 0x61, 0x63,
3016
+ 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x74, 0x77, 0x69, 0x74, 0x74, 0x65,
3017
+ 0x72, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x77, 0x61,
3018
+ 0x72, 0x72, 0x61, 0x6e, 0x74, 0x79, 0x5f, 0x75, 0x72, 0x6c, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x77,
3019
+ 0x61, 0x72, 0x72, 0x61, 0x6e, 0x74, 0x79, 0x5f, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x5f, 0x75,
3020
+ 0x72, 0x6c, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x63, 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x74, 0x79,
3021
+ 0x5f, 0x75, 0x72, 0x6c, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x69,
3022
+ 0x6e, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x69, 0x6e,
3023
+ 0x73, 0x74, 0x61, 0x67, 0x72, 0x61, 0x6d, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42,
3024
+ 0x12, 0x0a, 0x10, 0x5f, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x61, 0x63, 0x63, 0x6f,
3025
+ 0x75, 0x6e, 0x74, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x70, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73,
3026
+ 0x74, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x63, 0x6c,
3027
+ 0x61, 0x73, 0x73, 0x5f, 0x68, 0x61, 0x72, 0x64, 0x77, 0x61, 0x72, 0x65, 0x42, 0x11, 0x0a, 0x0f,
3028
+ 0x5f, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x5f, 0x73, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x42,
3029
+ 0x11, 0x0a, 0x0f, 0x5f, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x75, 0x6d,
3030
+ 0x65, 0x72, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x5f, 0x65, 0x6e, 0x74,
3031
+ 0x65, 0x72, 0x70, 0x72, 0x69, 0x73, 0x65, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x63, 0x6c, 0x61, 0x73,
3032
+ 0x73, 0x5f, 0x69, 0x6e, 0x64, 0x75, 0x73, 0x74, 0x72, 0x69, 0x61, 0x6c, 0x42, 0x13, 0x0a, 0x11,
3033
+ 0x5f, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x5f, 0x69, 0x6e, 0x64, 0x69, 0x76, 0x69, 0x64, 0x75, 0x61,
3034
+ 0x6c, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x73, 0x63, 0x6f, 0x72,
3035
+ 0x65, 0x22, 0xed, 0x0b, 0x0a, 0x0c, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x4d, 0x6f, 0x64,
3036
+ 0x65, 0x6c, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02,
3037
+ 0x69, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
3038
+ 0x03, 0x6b, 0x65, 0x79, 0x12, 0x17, 0x0a, 0x07, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x69, 0x64, 0x18,
3039
+ 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6d, 0x61, 0x6b, 0x65, 0x49, 0x64, 0x12, 0x21, 0x0a,
3040
+ 0x0c, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x18, 0x04, 0x20,
3041
+ 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x6c,
3042
+ 0x12, 0x24, 0x0a, 0x0b, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18,
3043
+ 0x05, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x0a, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x54,
3044
+ 0x79, 0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x2f, 0x0a, 0x11, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65,
3045
+ 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28,
3046
+ 0x09, 0x48, 0x01, 0x52, 0x0f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x6c,
3047
+ 0x43, 0x6f, 0x64, 0x65, 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b, 0x6f, 0x76, 0x65, 0x72, 0x72,
3048
+ 0x69, 0x64, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x48, 0x02, 0x52, 0x0a,
3049
+ 0x6f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x27, 0x0a,
3050
+ 0x0d, 0x6f, 0x73, 0x5f, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x08,
3051
+ 0x20, 0x01, 0x28, 0x03, 0x48, 0x03, 0x52, 0x0b, 0x6f, 0x73, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c,
3052
+ 0x74, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x25, 0x0a, 0x0c, 0x6f, 0x73, 0x5f, 0x6c, 0x61, 0x74,
3053
+ 0x65, 0x73, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x48, 0x04, 0x52, 0x0a,
3054
+ 0x6f, 0x73, 0x4c, 0x61, 0x74, 0x65, 0x73, 0x74, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a,
3055
+ 0x09, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03,
3056
+ 0x48, 0x05, 0x52, 0x08, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12,
3057
+ 0x20, 0x0a, 0x09, 0x69, 0x73, 0x5f, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x18, 0x0b, 0x20, 0x01,
3058
+ 0x28, 0x08, 0x48, 0x06, 0x52, 0x08, 0x69, 0x73, 0x46, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x88, 0x01,
3059
+ 0x01, 0x12, 0x22, 0x0a, 0x0a, 0x6d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x18,
3060
+ 0x0c, 0x20, 0x01, 0x28, 0x09, 0x48, 0x07, 0x52, 0x09, 0x6d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x55,
3061
+ 0x72, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x1c, 0x0a, 0x07, 0x66, 0x61, 0x71, 0x5f, 0x75, 0x72, 0x6c,
3062
+ 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x48, 0x08, 0x52, 0x06, 0x66, 0x61, 0x71, 0x55, 0x72, 0x6c,
3063
+ 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x72, 0x65, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x5f, 0x64,
3064
+ 0x61, 0x74, 0x65, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x03, 0x48, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x6c,
3065
+ 0x65, 0x61, 0x73, 0x65, 0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x64,
3066
+ 0x69, 0x73, 0x63, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x03, 0x48, 0x0a,
3067
+ 0x52, 0x08, 0x64, 0x69, 0x73, 0x63, 0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x1e, 0x0a,
3068
+ 0x08, 0x65, 0x6f, 0x73, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x03, 0x48,
3069
+ 0x0b, 0x52, 0x07, 0x65, 0x6f, 0x73, 0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x34, 0x0a,
3070
+ 0x13, 0x6c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x64,
3071
+ 0x65, 0x6e, 0x63, 0x65, 0x18, 0x1d, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0c, 0x52, 0x12, 0x6c, 0x69,
3072
+ 0x66, 0x65, 0x63, 0x79, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x64, 0x65, 0x6e, 0x63, 0x65,
3073
+ 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b, 0x70, 0x72, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6c, 0x61,
3074
+ 0x73, 0x73, 0x18, 0x18, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0d, 0x52, 0x0a, 0x70, 0x72, 0x69, 0x63,
3075
+ 0x65, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x88, 0x01, 0x01, 0x12, 0x28, 0x0a, 0x0d, 0x70, 0x72, 0x6f,
3076
+ 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x18, 0x19, 0x20, 0x01, 0x28, 0x09,
3077
+ 0x48, 0x0e, 0x52, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x6c, 0x61, 0x73, 0x73,
3078
+ 0x88, 0x01, 0x01, 0x12, 0x2b, 0x0a, 0x0f, 0x73, 0x68, 0x5f, 0x69, 0x66, 0x74, 0x74, 0x74, 0x5f,
3079
+ 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0f, 0x52, 0x0d,
3080
+ 0x73, 0x68, 0x49, 0x66, 0x74, 0x74, 0x74, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x88, 0x01, 0x01,
3081
+ 0x12, 0x2d, 0x0a, 0x13, 0x73, 0x68, 0x5f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5f, 0x61, 0x73,
3082
+ 0x73, 0x5f, 0x6c, 0x61, 0x6e, 0x67, 0x73, 0x18, 0x12, 0x20, 0x03, 0x28, 0x09, 0x52, 0x10, 0x73,
3083
+ 0x68, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x73, 0x73, 0x4c, 0x61, 0x6e, 0x67, 0x73, 0x12,
3084
+ 0x24, 0x0a, 0x0e, 0x73, 0x68, 0x5f, 0x61, 0x6c, 0x65, 0x78, 0x61, 0x5f, 0x6c, 0x61, 0x6e, 0x67,
3085
+ 0x73, 0x18, 0x13, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x73, 0x68, 0x41, 0x6c, 0x65, 0x78, 0x61,
3086
+ 0x4c, 0x61, 0x6e, 0x67, 0x73, 0x12, 0x29, 0x0a, 0x0e, 0x73, 0x68, 0x5f, 0x68, 0x61, 0x73, 0x73,
3087
+ 0x5f, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x18, 0x14, 0x20, 0x01, 0x28, 0x09, 0x48, 0x10, 0x52,
3088
+ 0x0c, 0x73, 0x68, 0x48, 0x61, 0x73, 0x73, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x88, 0x01, 0x01,
3089
+ 0x12, 0x2e, 0x0a, 0x11, 0x73, 0x68, 0x5f, 0x61, 0x70, 0x70, 0x6c, 0x65, 0x5f, 0x68, 0x6f, 0x6d,
3090
+ 0x65, 0x5f, 0x6b, 0x69, 0x74, 0x18, 0x15, 0x20, 0x01, 0x28, 0x08, 0x48, 0x11, 0x52, 0x0e, 0x73,
3091
+ 0x68, 0x41, 0x70, 0x70, 0x6c, 0x65, 0x48, 0x6f, 0x6d, 0x65, 0x4b, 0x69, 0x74, 0x88, 0x01, 0x01,
3092
+ 0x12, 0x30, 0x0a, 0x12, 0x73, 0x68, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x5f, 0x68, 0x61, 0x62, 0x5f,
3093
+ 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x18, 0x16, 0x20, 0x01, 0x28, 0x09, 0x48, 0x12, 0x52, 0x0f,
3094
+ 0x73, 0x68, 0x4f, 0x70, 0x65, 0x6e, 0x48, 0x61, 0x62, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x88,
3095
+ 0x01, 0x01, 0x12, 0x1e, 0x0a, 0x08, 0x6e, 0x69, 0x73, 0x74, 0x5f, 0x63, 0x70, 0x65, 0x18, 0x1c,
3096
+ 0x20, 0x01, 0x28, 0x09, 0x48, 0x13, 0x52, 0x07, 0x6e, 0x69, 0x73, 0x74, 0x43, 0x70, 0x65, 0x88,
3097
+ 0x01, 0x01, 0x12, 0x29, 0x0a, 0x0e, 0x73, 0x70, 0x72, 0x65, 0x61, 0x64, 0x5f, 0x69, 0x6e, 0x5f,
3098
+ 0x74, 0x79, 0x70, 0x65, 0x18, 0x17, 0x20, 0x01, 0x28, 0x01, 0x48, 0x14, 0x52, 0x0c, 0x73, 0x70,
3099
+ 0x72, 0x65, 0x61, 0x64, 0x49, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x2d, 0x0a,
3100
+ 0x10, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d,
3101
+ 0x65, 0x18, 0x10, 0x20, 0x01, 0x28, 0x03, 0x48, 0x15, 0x52, 0x0e, 0x6c, 0x61, 0x73, 0x74, 0x55,
3102
+ 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b,
3103
+ 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x18, 0x1b, 0x20, 0x01, 0x28,
3104
+ 0x05, 0x48, 0x16, 0x52, 0x0a, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x53, 0x63, 0x6f, 0x72, 0x65, 0x88,
3105
+ 0x01, 0x01, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x74, 0x79,
3106
+ 0x70, 0x65, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x6d, 0x6f,
3107
+ 0x64, 0x65, 0x6c, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x6f, 0x76, 0x65,
3108
+ 0x72, 0x72, 0x69, 0x64, 0x65, 0x5f, 0x69, 0x64, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x6f, 0x73, 0x5f,
3109
+ 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x69, 0x64, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x6f,
3110
+ 0x73, 0x5f, 0x6c, 0x61, 0x74, 0x65, 0x73, 0x74, 0x5f, 0x69, 0x64, 0x42, 0x0c, 0x0a, 0x0a, 0x5f,
3111
+ 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x5f, 0x69, 0x64, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x69, 0x73,
3112
+ 0x5f, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x6d, 0x61, 0x6e, 0x75,
3113
+ 0x61, 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x66, 0x61, 0x71, 0x5f, 0x75,
3114
+ 0x72, 0x6c, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x72, 0x65, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x5f, 0x64,
3115
+ 0x61, 0x74, 0x65, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x64, 0x69, 0x73, 0x63, 0x5f, 0x64, 0x61, 0x74,
3116
+ 0x65, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x65, 0x6f, 0x73, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x16,
3117
+ 0x0a, 0x14, 0x5f, 0x6c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x66,
3118
+ 0x69, 0x64, 0x65, 0x6e, 0x63, 0x65, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x70, 0x72, 0x69, 0x63, 0x65,
3119
+ 0x5f, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75,
3120
+ 0x63, 0x74, 0x5f, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x73, 0x68, 0x5f,
3121
+ 0x69, 0x66, 0x74, 0x74, 0x74, 0x5f, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x42, 0x11, 0x0a, 0x0f,
3122
+ 0x5f, 0x73, 0x68, 0x5f, 0x68, 0x61, 0x73, 0x73, 0x5f, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x42,
3123
+ 0x14, 0x0a, 0x12, 0x5f, 0x73, 0x68, 0x5f, 0x61, 0x70, 0x70, 0x6c, 0x65, 0x5f, 0x68, 0x6f, 0x6d,
3124
+ 0x65, 0x5f, 0x6b, 0x69, 0x74, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x73, 0x68, 0x5f, 0x6f, 0x70, 0x65,
3125
+ 0x6e, 0x5f, 0x68, 0x61, 0x62, 0x5f, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x42, 0x0b, 0x0a, 0x09,
3126
+ 0x5f, 0x6e, 0x69, 0x73, 0x74, 0x5f, 0x63, 0x70, 0x65, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x73, 0x70,
3127
+ 0x72, 0x65, 0x61, 0x64, 0x5f, 0x69, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x42, 0x13, 0x0a, 0x11,
3128
+ 0x5f, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d,
3129
+ 0x65, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x73, 0x63, 0x6f, 0x72,
3130
+ 0x65, 0x22, 0xeb, 0x0a, 0x0a, 0x09, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x4f, 0x73, 0x12,
3131
+ 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12,
3132
+ 0x15, 0x0a, 0x06, 0x6f, 0x73, 0x5f, 0x6b, 0x65, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
3133
+ 0x05, 0x6f, 0x73, 0x4b, 0x65, 0x79, 0x12, 0x17, 0x0a, 0x07, 0x6f, 0x73, 0x5f, 0x6e, 0x61, 0x6d,
3134
+ 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6f, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x12,
3135
+ 0x22, 0x0a, 0x0a, 0x6f, 0x73, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20,
3136
+ 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x09, 0x6f, 0x73, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
3137
+ 0x88, 0x01, 0x01, 0x12, 0x1e, 0x0a, 0x08, 0x6f, 0x73, 0x5f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x18,
3138
+ 0x0c, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x07, 0x6f, 0x73, 0x42, 0x75, 0x69, 0x6c, 0x64,
3139
+ 0x88, 0x01, 0x01, 0x12, 0x2b, 0x0a, 0x0f, 0x6f, 0x73, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
3140
+ 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x0d,
3141
+ 0x6f, 0x73, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01,
3142
+ 0x12, 0x24, 0x0a, 0x0b, 0x6f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x5f, 0x69, 0x64, 0x18,
3143
+ 0x06, 0x20, 0x01, 0x28, 0x03, 0x48, 0x03, 0x52, 0x0a, 0x6f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64,
3144
+ 0x65, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x1c, 0x0a, 0x07, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x69,
3145
+ 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x48, 0x04, 0x52, 0x06, 0x6d, 0x61, 0x6b, 0x65, 0x49,
3146
+ 0x64, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x69,
3147
+ 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x48, 0x05, 0x52, 0x08, 0x70, 0x61, 0x72, 0x65, 0x6e,
3148
+ 0x74, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x72, 0x65, 0x6c, 0x65, 0x61, 0x73,
3149
+ 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x48, 0x06, 0x52, 0x0b,
3150
+ 0x72, 0x65, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x1e,
3151
+ 0x0a, 0x08, 0x65, 0x6f, 0x6c, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03,
3152
+ 0x48, 0x07, 0x52, 0x07, 0x65, 0x6f, 0x6c, 0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x1e,
3153
+ 0x0a, 0x08, 0x65, 0x6f, 0x73, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x16, 0x20, 0x01, 0x28, 0x03,
3154
+ 0x48, 0x08, 0x52, 0x07, 0x65, 0x6f, 0x73, 0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x20,
3155
+ 0x0a, 0x09, 0x65, 0x6f, 0x73, 0x78, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x19, 0x20, 0x01, 0x28,
3156
+ 0x03, 0x48, 0x09, 0x52, 0x08, 0x65, 0x6f, 0x73, 0x78, 0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01,
3157
+ 0x12, 0x34, 0x0a, 0x13, 0x6c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e,
3158
+ 0x66, 0x69, 0x64, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0a, 0x52,
3159
+ 0x12, 0x6c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x64, 0x65,
3160
+ 0x6e, 0x63, 0x65, 0x88, 0x01, 0x01, 0x12, 0x29, 0x0a, 0x0e, 0x6c, 0x6f, 0x67, 0x6f, 0x5f, 0x69,
3161
+ 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0b,
3162
+ 0x52, 0x0c, 0x6c, 0x6f, 0x67, 0x6f, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x55, 0x72, 0x6c, 0x88, 0x01,
3163
+ 0x01, 0x12, 0x2d, 0x0a, 0x10, 0x62, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x5f, 0x69, 0x6d, 0x61, 0x67,
3164
+ 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0c, 0x52, 0x0e, 0x62,
3165
+ 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x55, 0x72, 0x6c, 0x88, 0x01, 0x01,
3166
+ 0x12, 0x26, 0x0a, 0x0c, 0x77, 0x69, 0x6b, 0x69, 0x70, 0x65, 0x64, 0x69, 0x61, 0x5f, 0x69, 0x64,
3167
+ 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0d, 0x52, 0x0b, 0x77, 0x69, 0x6b, 0x69, 0x70, 0x65,
3168
+ 0x64, 0x69, 0x61, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x33, 0x0a, 0x13, 0x77, 0x69, 0x6b, 0x69,
3169
+ 0x70, 0x65, 0x64, 0x69, 0x61, 0x5f, 0x6c, 0x61, 0x6e, 0x67, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18,
3170
+ 0x10, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0e, 0x52, 0x11, 0x77, 0x69, 0x6b, 0x69, 0x70, 0x65, 0x64,
3171
+ 0x69, 0x61, 0x4c, 0x61, 0x6e, 0x67, 0x43, 0x6f, 0x64, 0x65, 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a,
3172
+ 0x0b, 0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x11, 0x20, 0x01,
3173
+ 0x28, 0x09, 0x48, 0x0f, 0x52, 0x0a, 0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65, 0x55, 0x72, 0x6c,
3174
+ 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x75,
3175
+ 0x72, 0x6c, 0x18, 0x12, 0x20, 0x01, 0x28, 0x09, 0x48, 0x10, 0x52, 0x0a, 0x73, 0x75, 0x70, 0x70,
3176
+ 0x6f, 0x72, 0x74, 0x55, 0x72, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x28, 0x0a, 0x0d, 0x73, 0x75, 0x70,
3177
+ 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x13, 0x20, 0x01, 0x28, 0x09,
3178
+ 0x48, 0x11, 0x52, 0x0c, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x50, 0x68, 0x6f, 0x6e, 0x65,
3179
+ 0x88, 0x01, 0x01, 0x12, 0x2e, 0x0a, 0x10, 0x66, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x5f,
3180
+ 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x14, 0x20, 0x01, 0x28, 0x09, 0x48, 0x12, 0x52,
3181
+ 0x0f, 0x66, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
3182
+ 0x88, 0x01, 0x01, 0x12, 0x2c, 0x0a, 0x0f, 0x74, 0x77, 0x69, 0x74, 0x74, 0x65, 0x72, 0x5f, 0x61,
3183
+ 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x15, 0x20, 0x01, 0x28, 0x09, 0x48, 0x13, 0x52, 0x0e,
3184
+ 0x74, 0x77, 0x69, 0x74, 0x74, 0x65, 0x72, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x88, 0x01,
3185
+ 0x01, 0x12, 0x1e, 0x0a, 0x08, 0x6e, 0x69, 0x73, 0x74, 0x5f, 0x63, 0x70, 0x65, 0x18, 0x17, 0x20,
3186
+ 0x01, 0x28, 0x09, 0x48, 0x14, 0x52, 0x07, 0x6e, 0x69, 0x73, 0x74, 0x43, 0x70, 0x65, 0x88, 0x01,
3187
+ 0x01, 0x12, 0x2d, 0x0a, 0x10, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65,
3188
+ 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x48, 0x15, 0x52, 0x0e, 0x6c,
3189
+ 0x61, 0x73, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x88, 0x01, 0x01,
3190
+ 0x12, 0x24, 0x0a, 0x0b, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x18,
3191
+ 0x18, 0x20, 0x01, 0x28, 0x05, 0x48, 0x16, 0x52, 0x0a, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x53, 0x63,
3192
+ 0x6f, 0x72, 0x65, 0x88, 0x01, 0x01, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x6f, 0x73, 0x5f, 0x76, 0x65,
3193
+ 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x6f, 0x73, 0x5f, 0x62, 0x75, 0x69,
3194
+ 0x6c, 0x64, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x6f, 0x73, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
3195
+ 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x6f, 0x76, 0x65, 0x72, 0x72,
3196
+ 0x69, 0x64, 0x65, 0x5f, 0x69, 0x64, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x6d, 0x61, 0x6b, 0x65, 0x5f,
3197
+ 0x69, 0x64, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64,
3198
+ 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x72, 0x65, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x5f, 0x64, 0x61, 0x74,
3199
+ 0x65, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x65, 0x6f, 0x6c, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0b,
3200
+ 0x0a, 0x09, 0x5f, 0x65, 0x6f, 0x73, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0c, 0x0a, 0x0a, 0x5f,
3201
+ 0x65, 0x6f, 0x73, 0x78, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x6c, 0x69,
3202
+ 0x66, 0x65, 0x63, 0x79, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x64, 0x65, 0x6e, 0x63,
3203
+ 0x65, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x6c, 0x6f, 0x67, 0x6f, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65,
3204
+ 0x5f, 0x75, 0x72, 0x6c, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x62, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x5f,
3205
+ 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x77, 0x69,
3206
+ 0x6b, 0x69, 0x70, 0x65, 0x64, 0x69, 0x61, 0x5f, 0x69, 0x64, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x77,
3207
+ 0x69, 0x6b, 0x69, 0x70, 0x65, 0x64, 0x69, 0x61, 0x5f, 0x6c, 0x61, 0x6e, 0x67, 0x5f, 0x63, 0x6f,
3208
+ 0x64, 0x65, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x75,
3209
+ 0x72, 0x6c, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x75,
3210
+ 0x72, 0x6c, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x70,
3211
+ 0x68, 0x6f, 0x6e, 0x65, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x66, 0x61, 0x63, 0x65, 0x62, 0x6f, 0x6f,
3212
+ 0x6b, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x74, 0x77,
3213
+ 0x69, 0x74, 0x74, 0x65, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x0b, 0x0a,
3214
+ 0x09, 0x5f, 0x6e, 0x69, 0x73, 0x74, 0x5f, 0x63, 0x70, 0x65, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x6c,
3215
+ 0x61, 0x73, 0x74, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x42,
3216
+ 0x0e, 0x0a, 0x0c, 0x5f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x22,
3217
+ 0xc5, 0x09, 0x0a, 0x0f, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x53, 0x6f, 0x66, 0x74, 0x77,
3218
+ 0x61, 0x72, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
3219
+ 0x02, 0x69, 0x64, 0x12, 0x15, 0x0a, 0x06, 0x73, 0x77, 0x5f, 0x6b, 0x65, 0x79, 0x18, 0x02, 0x20,
3220
+ 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x77, 0x4b, 0x65, 0x79, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x77,
3221
+ 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x77, 0x4e,
3222
+ 0x61, 0x6d, 0x65, 0x12, 0x22, 0x0a, 0x0a, 0x73, 0x77, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
3223
+ 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x09, 0x73, 0x77, 0x56, 0x65, 0x72,
3224
+ 0x73, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x27, 0x0a, 0x0d, 0x73, 0x77, 0x5f, 0x6d, 0x61,
3225
+ 0x72, 0x6b, 0x65, 0x74, 0x5f, 0x76, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01,
3226
+ 0x52, 0x0b, 0x73, 0x77, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x56, 0x65, 0x72, 0x88, 0x01, 0x01,
3227
+ 0x12, 0x22, 0x0a, 0x0a, 0x73, 0x77, 0x5f, 0x65, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06,
3228
+ 0x20, 0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x09, 0x73, 0x77, 0x45, 0x64, 0x69, 0x74, 0x69, 0x6f,
3229
+ 0x6e, 0x88, 0x01, 0x01, 0x12, 0x1c, 0x0a, 0x07, 0x73, 0x77, 0x5f, 0x6c, 0x61, 0x6e, 0x67, 0x18,
3230
+ 0x17, 0x20, 0x01, 0x28, 0x09, 0x48, 0x03, 0x52, 0x06, 0x73, 0x77, 0x4c, 0x61, 0x6e, 0x67, 0x88,
3231
+ 0x01, 0x01, 0x12, 0x1e, 0x0a, 0x08, 0x73, 0x77, 0x5f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x18, 0x07,
3232
+ 0x20, 0x01, 0x28, 0x09, 0x48, 0x04, 0x52, 0x07, 0x73, 0x77, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x88,
3233
+ 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b, 0x6f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x5f, 0x69,
3234
+ 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x48, 0x05, 0x52, 0x0a, 0x6f, 0x76, 0x65, 0x72, 0x72,
3235
+ 0x69, 0x64, 0x65, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x1c, 0x0a, 0x07, 0x6d, 0x61, 0x6b, 0x65,
3236
+ 0x5f, 0x69, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x48, 0x06, 0x52, 0x06, 0x6d, 0x61, 0x6b,
3237
+ 0x65, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74,
3238
+ 0x5f, 0x69, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x48, 0x07, 0x52, 0x08, 0x70, 0x61, 0x72,
3239
+ 0x65, 0x6e, 0x74, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x1c, 0x0a, 0x07, 0x73, 0x77, 0x5f, 0x74,
3240
+ 0x79, 0x70, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x48, 0x08, 0x52, 0x06, 0x73, 0x77, 0x54,
3241
+ 0x79, 0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b, 0x73, 0x77, 0x5f, 0x63, 0x61, 0x74,
3242
+ 0x65, 0x67, 0x6f, 0x72, 0x79, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x48, 0x09, 0x52, 0x0a, 0x73,
3243
+ 0x77, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x88, 0x01, 0x01, 0x12, 0x2f, 0x0a, 0x11,
3244
+ 0x6e, 0x69, 0x73, 0x74, 0x5f, 0x63, 0x70, 0x65, 0x5f, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74,
3245
+ 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0a, 0x52, 0x0f, 0x6e, 0x69, 0x73, 0x74, 0x43,
3246
+ 0x70, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a,
3247
+ 0x0c, 0x72, 0x65, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x0e, 0x20,
3248
+ 0x01, 0x28, 0x03, 0x48, 0x0b, 0x52, 0x0b, 0x72, 0x65, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x44, 0x61,
3249
+ 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x1e, 0x0a, 0x08, 0x65, 0x6f, 0x6c, 0x5f, 0x64, 0x61, 0x74,
3250
+ 0x65, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x03, 0x48, 0x0c, 0x52, 0x07, 0x65, 0x6f, 0x6c, 0x44, 0x61,
3251
+ 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x1e, 0x0a, 0x08, 0x65, 0x6f, 0x73, 0x5f, 0x64, 0x61, 0x74,
3252
+ 0x65, 0x18, 0x10, 0x20, 0x01, 0x28, 0x03, 0x48, 0x0d, 0x52, 0x07, 0x65, 0x6f, 0x73, 0x44, 0x61,
3253
+ 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x09, 0x65, 0x6f, 0x73, 0x78, 0x5f, 0x64, 0x61,
3254
+ 0x74, 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x03, 0x48, 0x0e, 0x52, 0x08, 0x65, 0x6f, 0x73, 0x78,
3255
+ 0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x34, 0x0a, 0x13, 0x6c, 0x69, 0x66, 0x65, 0x63,
3256
+ 0x79, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x64, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x13,
3257
+ 0x20, 0x01, 0x28, 0x09, 0x48, 0x0f, 0x52, 0x12, 0x6c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x6c, 0x65,
3258
+ 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x64, 0x65, 0x6e, 0x63, 0x65, 0x88, 0x01, 0x01, 0x12, 0x2d, 0x0a,
3259
+ 0x10, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d,
3260
+ 0x65, 0x18, 0x11, 0x20, 0x01, 0x28, 0x03, 0x48, 0x10, 0x52, 0x0e, 0x6c, 0x61, 0x73, 0x74, 0x55,
3261
+ 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b,
3262
+ 0x66, 0x6c, 0x61, 0x67, 0x5f, 0x6c, 0x61, 0x74, 0x65, 0x73, 0x74, 0x18, 0x14, 0x20, 0x01, 0x28,
3263
+ 0x08, 0x48, 0x11, 0x52, 0x0a, 0x66, 0x6c, 0x61, 0x67, 0x4c, 0x61, 0x74, 0x65, 0x73, 0x74, 0x88,
3264
+ 0x01, 0x01, 0x12, 0x2c, 0x0a, 0x0f, 0x66, 0x6c, 0x61, 0x67, 0x5f, 0x77, 0x69, 0x64, 0x65, 0x73,
3265
+ 0x70, 0x72, 0x65, 0x61, 0x64, 0x18, 0x15, 0x20, 0x01, 0x28, 0x08, 0x48, 0x12, 0x52, 0x0e, 0x66,
3266
+ 0x6c, 0x61, 0x67, 0x57, 0x69, 0x64, 0x65, 0x73, 0x70, 0x72, 0x65, 0x61, 0x64, 0x88, 0x01, 0x01,
3267
+ 0x12, 0x2c, 0x0a, 0x0f, 0x66, 0x6c, 0x61, 0x67, 0x5f, 0x64, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61,
3268
+ 0x74, 0x65, 0x64, 0x18, 0x16, 0x20, 0x01, 0x28, 0x08, 0x48, 0x13, 0x52, 0x0e, 0x66, 0x6c, 0x61,
3269
+ 0x67, 0x44, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x88, 0x01, 0x01, 0x12, 0x24,
3270
+ 0x0a, 0x0b, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x18, 0x64, 0x20,
3271
+ 0x01, 0x28, 0x05, 0x48, 0x14, 0x52, 0x0a, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x53, 0x63, 0x6f, 0x72,
3272
+ 0x65, 0x88, 0x01, 0x01, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x73, 0x77, 0x5f, 0x76, 0x65, 0x72, 0x73,
3273
+ 0x69, 0x6f, 0x6e, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x73, 0x77, 0x5f, 0x6d, 0x61, 0x72, 0x6b, 0x65,
3274
+ 0x74, 0x5f, 0x76, 0x65, 0x72, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x73, 0x77, 0x5f, 0x65, 0x64, 0x69,
3275
+ 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x73, 0x77, 0x5f, 0x6c, 0x61, 0x6e, 0x67,
3276
+ 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x73, 0x77, 0x5f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x42, 0x0e, 0x0a,
3277
+ 0x0c, 0x5f, 0x6f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x5f, 0x69, 0x64, 0x42, 0x0a, 0x0a,
3278
+ 0x08, 0x5f, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x69, 0x64, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x70, 0x61,
3279
+ 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x73, 0x77, 0x5f, 0x74,
3280
+ 0x79, 0x70, 0x65, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x73, 0x77, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67,
3281
+ 0x6f, 0x72, 0x79, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x6e, 0x69, 0x73, 0x74, 0x5f, 0x63, 0x70, 0x65,
3282
+ 0x5f, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x72, 0x65,
3283
+ 0x6c, 0x65, 0x61, 0x73, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x65,
3284
+ 0x6f, 0x6c, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x65, 0x6f, 0x73, 0x5f,
3285
+ 0x64, 0x61, 0x74, 0x65, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x65, 0x6f, 0x73, 0x78, 0x5f, 0x64, 0x61,
3286
+ 0x74, 0x65, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x6c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x6c, 0x65, 0x5f,
3287
+ 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x64, 0x65, 0x6e, 0x63, 0x65, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x6c,
3288
+ 0x61, 0x73, 0x74, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x42,
3289
+ 0x0e, 0x0a, 0x0c, 0x5f, 0x66, 0x6c, 0x61, 0x67, 0x5f, 0x6c, 0x61, 0x74, 0x65, 0x73, 0x74, 0x42,
3290
+ 0x12, 0x0a, 0x10, 0x5f, 0x66, 0x6c, 0x61, 0x67, 0x5f, 0x77, 0x69, 0x64, 0x65, 0x73, 0x70, 0x72,
3291
+ 0x65, 0x61, 0x64, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x66, 0x6c, 0x61, 0x67, 0x5f, 0x64, 0x65, 0x70,
3292
+ 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x6d, 0x61, 0x74, 0x63,
3293
+ 0x68, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x22, 0x20, 0x0a, 0x0e, 0x43, 0x61, 0x74, 0x61, 0x6c,
3294
+ 0x6f, 0x67, 0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x6f, 0x72, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18,
3295
+ 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x32, 0x84, 0x02, 0x0a, 0x17, 0x44, 0x61,
3296
+ 0x74, 0x61, 0x43, 0x6f, 0x72, 0x65, 0x4f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x53, 0x65,
3297
+ 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x70, 0x0a, 0x09, 0x47, 0x65, 0x74, 0x45, 0x6e, 0x74, 0x69,
3298
+ 0x74, 0x79, 0x12, 0x2f, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
3299
+ 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e,
3300
+ 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71, 0x75,
3301
+ 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
3302
+ 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64,
3303
+ 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x73,
3304
+ 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x77, 0x0a, 0x0c, 0x4c, 0x69, 0x73, 0x74, 0x45,
3305
+ 0x6e, 0x74, 0x69, 0x74, 0x69, 0x65, 0x73, 0x12, 0x30, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x6c, 0x61,
3306
+ 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75, 0x74, 0x62,
3307
+ 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74, 0x69,
3308
+ 0x74, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x2e,
3309
+ 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x64, 0x70, 0x2e, 0x6f, 0x75,
3310
+ 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x6e,
3311
+ 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01,
3312
+ 0x42, 0x11, 0x5a, 0x0f, 0x2e, 0x2e, 0x2f, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64,
3313
+ 0x2d, 0x67, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
3314
+ }
3315
+
3316
+ var (
3317
+ file_outbound_proto_rawDescOnce sync.Once
3318
+ file_outbound_proto_rawDescData = file_outbound_proto_rawDesc
3319
+ )
3320
+
3321
+ func file_outbound_proto_rawDescGZIP() []byte {
3322
+ file_outbound_proto_rawDescOnce.Do(func() {
3323
+ file_outbound_proto_rawDescData = protoimpl.X.CompressGZIP(file_outbound_proto_rawDescData)
3324
+ })
3325
+ return file_outbound_proto_rawDescData
3326
+ }
3327
+
3328
+ var file_outbound_proto_msgTypes = make([]protoimpl.MessageInfo, 21)
3329
+ var file_outbound_proto_goTypes = []interface{}{
3330
+ (*GetEntityRequest)(nil), // 0: com.lansweeper.dp.outbound.v1.GetEntityRequest
3331
+ (*GetEntityResponse)(nil), // 1: com.lansweeper.dp.outbound.v1.GetEntityResponse
3332
+ (*ListEntityRequest)(nil), // 2: com.lansweeper.dp.outbound.v1.ListEntityRequest
3333
+ (*ListEntityResponse)(nil), // 3: com.lansweeper.dp.outbound.v1.ListEntityResponse
3334
+ (*EntityPath)(nil), // 4: com.lansweeper.dp.outbound.v1.EntityPath
3335
+ (*Entity)(nil), // 5: com.lansweeper.dp.outbound.v1.Entity
3336
+ (*Asset)(nil), // 6: com.lansweeper.dp.outbound.v1.Asset
3337
+ (*AssetType)(nil), // 7: com.lansweeper.dp.outbound.v1.AssetType
3338
+ (*CoreFields)(nil), // 8: com.lansweeper.dp.outbound.v1.CoreFields
3339
+ (*HardwareInfo)(nil), // 9: com.lansweeper.dp.outbound.v1.HardwareInfo
3340
+ (*RawHardwareInfo)(nil), // 10: com.lansweeper.dp.outbound.v1.RawHardwareInfo
3341
+ (*OperatingSystemInfo)(nil), // 11: com.lansweeper.dp.outbound.v1.OperatingSystemInfo
3342
+ (*WindowsRawOperatingSystemInfo)(nil), // 12: com.lansweeper.dp.outbound.v1.WindowsRawOperatingSystemInfo
3343
+ (*SoftwareInventory)(nil), // 13: com.lansweeper.dp.outbound.v1.SoftwareInventory
3344
+ (*Software)(nil), // 14: com.lansweeper.dp.outbound.v1.Software
3345
+ (*RawSoftware)(nil), // 15: com.lansweeper.dp.outbound.v1.RawSoftware
3346
+ (*CatalogBrand)(nil), // 16: com.lansweeper.dp.outbound.v1.CatalogBrand
3347
+ (*CatalogModel)(nil), // 17: com.lansweeper.dp.outbound.v1.CatalogModel
3348
+ (*CatalogOs)(nil), // 18: com.lansweeper.dp.outbound.v1.CatalogOs
3349
+ (*CatalogSoftware)(nil), // 19: com.lansweeper.dp.outbound.v1.CatalogSoftware
3350
+ (*CatalogMonitor)(nil), // 20: com.lansweeper.dp.outbound.v1.CatalogMonitor
3351
+ (*timestamppb.Timestamp)(nil), // 21: google.protobuf.Timestamp
3352
+ }
3353
+ var file_outbound_proto_depIdxs = []int32{
3354
+ 4, // 0: com.lansweeper.dp.outbound.v1.GetEntityRequest.entity_path:type_name -> com.lansweeper.dp.outbound.v1.EntityPath
3355
+ 5, // 1: com.lansweeper.dp.outbound.v1.GetEntityResponse.entity:type_name -> com.lansweeper.dp.outbound.v1.Entity
3356
+ 5, // 2: com.lansweeper.dp.outbound.v1.GetEntityResponse.related:type_name -> com.lansweeper.dp.outbound.v1.Entity
3357
+ 4, // 3: com.lansweeper.dp.outbound.v1.ListEntityRequest.filter:type_name -> com.lansweeper.dp.outbound.v1.EntityPath
3358
+ 5, // 4: com.lansweeper.dp.outbound.v1.ListEntityResponse.entity:type_name -> com.lansweeper.dp.outbound.v1.Entity
3359
+ 5, // 5: com.lansweeper.dp.outbound.v1.ListEntityResponse.related:type_name -> com.lansweeper.dp.outbound.v1.Entity
3360
+ 6, // 6: com.lansweeper.dp.outbound.v1.Entity.asset:type_name -> com.lansweeper.dp.outbound.v1.Asset
3361
+ 4, // 7: com.lansweeper.dp.outbound.v1.Asset.id:type_name -> com.lansweeper.dp.outbound.v1.EntityPath
3362
+ 21, // 8: com.lansweeper.dp.outbound.v1.Asset.last_synced:type_name -> google.protobuf.Timestamp
3363
+ 21, // 9: com.lansweeper.dp.outbound.v1.Asset.first_seen:type_name -> google.protobuf.Timestamp
3364
+ 21, // 10: com.lansweeper.dp.outbound.v1.Asset.last_updated:type_name -> google.protobuf.Timestamp
3365
+ 21, // 11: com.lansweeper.dp.outbound.v1.Asset.last_enriched:type_name -> google.protobuf.Timestamp
3366
+ 8, // 12: com.lansweeper.dp.outbound.v1.Asset.core:type_name -> com.lansweeper.dp.outbound.v1.CoreFields
3367
+ 9, // 13: com.lansweeper.dp.outbound.v1.Asset.hw:type_name -> com.lansweeper.dp.outbound.v1.HardwareInfo
3368
+ 11, // 14: com.lansweeper.dp.outbound.v1.Asset.os:type_name -> com.lansweeper.dp.outbound.v1.OperatingSystemInfo
3369
+ 13, // 15: com.lansweeper.dp.outbound.v1.Asset.software_inventory:type_name -> com.lansweeper.dp.outbound.v1.SoftwareInventory
3370
+ 7, // 16: com.lansweeper.dp.outbound.v1.CoreFields.type:type_name -> com.lansweeper.dp.outbound.v1.AssetType
3371
+ 16, // 17: com.lansweeper.dp.outbound.v1.HardwareInfo.catalog_brand:type_name -> com.lansweeper.dp.outbound.v1.CatalogBrand
3372
+ 17, // 18: com.lansweeper.dp.outbound.v1.HardwareInfo.catalog_model:type_name -> com.lansweeper.dp.outbound.v1.CatalogModel
3373
+ 10, // 19: com.lansweeper.dp.outbound.v1.HardwareInfo.raw:type_name -> com.lansweeper.dp.outbound.v1.RawHardwareInfo
3374
+ 16, // 20: com.lansweeper.dp.outbound.v1.OperatingSystemInfo.catalog_brand:type_name -> com.lansweeper.dp.outbound.v1.CatalogBrand
3375
+ 18, // 21: com.lansweeper.dp.outbound.v1.OperatingSystemInfo.catalog_os:type_name -> com.lansweeper.dp.outbound.v1.CatalogOs
3376
+ 12, // 22: com.lansweeper.dp.outbound.v1.OperatingSystemInfo.windows:type_name -> com.lansweeper.dp.outbound.v1.WindowsRawOperatingSystemInfo
3377
+ 21, // 23: com.lansweeper.dp.outbound.v1.SoftwareInventory.timestamp:type_name -> google.protobuf.Timestamp
3378
+ 14, // 24: com.lansweeper.dp.outbound.v1.SoftwareInventory.software:type_name -> com.lansweeper.dp.outbound.v1.Software
3379
+ 19, // 25: com.lansweeper.dp.outbound.v1.Software.catalog_software:type_name -> com.lansweeper.dp.outbound.v1.CatalogSoftware
3380
+ 15, // 26: com.lansweeper.dp.outbound.v1.Software.raw:type_name -> com.lansweeper.dp.outbound.v1.RawSoftware
3381
+ 0, // 27: com.lansweeper.dp.outbound.v1.DataCoreOutboundService.GetEntity:input_type -> com.lansweeper.dp.outbound.v1.GetEntityRequest
3382
+ 2, // 28: com.lansweeper.dp.outbound.v1.DataCoreOutboundService.ListEntities:input_type -> com.lansweeper.dp.outbound.v1.ListEntityRequest
3383
+ 1, // 29: com.lansweeper.dp.outbound.v1.DataCoreOutboundService.GetEntity:output_type -> com.lansweeper.dp.outbound.v1.GetEntityResponse
3384
+ 3, // 30: com.lansweeper.dp.outbound.v1.DataCoreOutboundService.ListEntities:output_type -> com.lansweeper.dp.outbound.v1.ListEntityResponse
3385
+ 29, // [29:31] is the sub-list for method output_type
3386
+ 27, // [27:29] is the sub-list for method input_type
3387
+ 27, // [27:27] is the sub-list for extension type_name
3388
+ 27, // [27:27] is the sub-list for extension extendee
3389
+ 0, // [0:27] is the sub-list for field type_name
3390
+ }
3391
+
3392
+ func init() { file_outbound_proto_init() }
3393
+ func file_outbound_proto_init() {
3394
+ if File_outbound_proto != nil {
3395
+ return
3396
+ }
3397
+ if !protoimpl.UnsafeEnabled {
3398
+ file_outbound_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
3399
+ switch v := v.(*GetEntityRequest); i {
3400
+ case 0:
3401
+ return &v.state
3402
+ case 1:
3403
+ return &v.sizeCache
3404
+ case 2:
3405
+ return &v.unknownFields
3406
+ default:
3407
+ return nil
3408
+ }
3409
+ }
3410
+ file_outbound_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
3411
+ switch v := v.(*GetEntityResponse); i {
3412
+ case 0:
3413
+ return &v.state
3414
+ case 1:
3415
+ return &v.sizeCache
3416
+ case 2:
3417
+ return &v.unknownFields
3418
+ default:
3419
+ return nil
3420
+ }
3421
+ }
3422
+ file_outbound_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
3423
+ switch v := v.(*ListEntityRequest); i {
3424
+ case 0:
3425
+ return &v.state
3426
+ case 1:
3427
+ return &v.sizeCache
3428
+ case 2:
3429
+ return &v.unknownFields
3430
+ default:
3431
+ return nil
3432
+ }
3433
+ }
3434
+ file_outbound_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
3435
+ switch v := v.(*ListEntityResponse); i {
3436
+ case 0:
3437
+ return &v.state
3438
+ case 1:
3439
+ return &v.sizeCache
3440
+ case 2:
3441
+ return &v.unknownFields
3442
+ default:
3443
+ return nil
3444
+ }
3445
+ }
3446
+ file_outbound_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
3447
+ switch v := v.(*EntityPath); i {
3448
+ case 0:
3449
+ return &v.state
3450
+ case 1:
3451
+ return &v.sizeCache
3452
+ case 2:
3453
+ return &v.unknownFields
3454
+ default:
3455
+ return nil
3456
+ }
3457
+ }
3458
+ file_outbound_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
3459
+ switch v := v.(*Entity); i {
3460
+ case 0:
3461
+ return &v.state
3462
+ case 1:
3463
+ return &v.sizeCache
3464
+ case 2:
3465
+ return &v.unknownFields
3466
+ default:
3467
+ return nil
3468
+ }
3469
+ }
3470
+ file_outbound_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
3471
+ switch v := v.(*Asset); i {
3472
+ case 0:
3473
+ return &v.state
3474
+ case 1:
3475
+ return &v.sizeCache
3476
+ case 2:
3477
+ return &v.unknownFields
3478
+ default:
3479
+ return nil
3480
+ }
3481
+ }
3482
+ file_outbound_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
3483
+ switch v := v.(*AssetType); i {
3484
+ case 0:
3485
+ return &v.state
3486
+ case 1:
3487
+ return &v.sizeCache
3488
+ case 2:
3489
+ return &v.unknownFields
3490
+ default:
3491
+ return nil
3492
+ }
3493
+ }
3494
+ file_outbound_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
3495
+ switch v := v.(*CoreFields); i {
3496
+ case 0:
3497
+ return &v.state
3498
+ case 1:
3499
+ return &v.sizeCache
3500
+ case 2:
3501
+ return &v.unknownFields
3502
+ default:
3503
+ return nil
3504
+ }
3505
+ }
3506
+ file_outbound_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
3507
+ switch v := v.(*HardwareInfo); i {
3508
+ case 0:
3509
+ return &v.state
3510
+ case 1:
3511
+ return &v.sizeCache
3512
+ case 2:
3513
+ return &v.unknownFields
3514
+ default:
3515
+ return nil
3516
+ }
3517
+ }
3518
+ file_outbound_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
3519
+ switch v := v.(*RawHardwareInfo); i {
3520
+ case 0:
3521
+ return &v.state
3522
+ case 1:
3523
+ return &v.sizeCache
3524
+ case 2:
3525
+ return &v.unknownFields
3526
+ default:
3527
+ return nil
3528
+ }
3529
+ }
3530
+ file_outbound_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
3531
+ switch v := v.(*OperatingSystemInfo); i {
3532
+ case 0:
3533
+ return &v.state
3534
+ case 1:
3535
+ return &v.sizeCache
3536
+ case 2:
3537
+ return &v.unknownFields
3538
+ default:
3539
+ return nil
3540
+ }
3541
+ }
3542
+ file_outbound_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
3543
+ switch v := v.(*WindowsRawOperatingSystemInfo); i {
3544
+ case 0:
3545
+ return &v.state
3546
+ case 1:
3547
+ return &v.sizeCache
3548
+ case 2:
3549
+ return &v.unknownFields
3550
+ default:
3551
+ return nil
3552
+ }
3553
+ }
3554
+ file_outbound_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
3555
+ switch v := v.(*SoftwareInventory); i {
3556
+ case 0:
3557
+ return &v.state
3558
+ case 1:
3559
+ return &v.sizeCache
3560
+ case 2:
3561
+ return &v.unknownFields
3562
+ default:
3563
+ return nil
3564
+ }
3565
+ }
3566
+ file_outbound_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
3567
+ switch v := v.(*Software); i {
3568
+ case 0:
3569
+ return &v.state
3570
+ case 1:
3571
+ return &v.sizeCache
3572
+ case 2:
3573
+ return &v.unknownFields
3574
+ default:
3575
+ return nil
3576
+ }
3577
+ }
3578
+ file_outbound_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
3579
+ switch v := v.(*RawSoftware); i {
3580
+ case 0:
3581
+ return &v.state
3582
+ case 1:
3583
+ return &v.sizeCache
3584
+ case 2:
3585
+ return &v.unknownFields
3586
+ default:
3587
+ return nil
3588
+ }
3589
+ }
3590
+ file_outbound_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
3591
+ switch v := v.(*CatalogBrand); i {
3592
+ case 0:
3593
+ return &v.state
3594
+ case 1:
3595
+ return &v.sizeCache
3596
+ case 2:
3597
+ return &v.unknownFields
3598
+ default:
3599
+ return nil
3600
+ }
3601
+ }
3602
+ file_outbound_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
3603
+ switch v := v.(*CatalogModel); i {
3604
+ case 0:
3605
+ return &v.state
3606
+ case 1:
3607
+ return &v.sizeCache
3608
+ case 2:
3609
+ return &v.unknownFields
3610
+ default:
3611
+ return nil
3612
+ }
3613
+ }
3614
+ file_outbound_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
3615
+ switch v := v.(*CatalogOs); i {
3616
+ case 0:
3617
+ return &v.state
3618
+ case 1:
3619
+ return &v.sizeCache
3620
+ case 2:
3621
+ return &v.unknownFields
3622
+ default:
3623
+ return nil
3624
+ }
3625
+ }
3626
+ file_outbound_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
3627
+ switch v := v.(*CatalogSoftware); i {
3628
+ case 0:
3629
+ return &v.state
3630
+ case 1:
3631
+ return &v.sizeCache
3632
+ case 2:
3633
+ return &v.unknownFields
3634
+ default:
3635
+ return nil
3636
+ }
3637
+ }
3638
+ file_outbound_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
3639
+ switch v := v.(*CatalogMonitor); i {
3640
+ case 0:
3641
+ return &v.state
3642
+ case 1:
3643
+ return &v.sizeCache
3644
+ case 2:
3645
+ return &v.unknownFields
3646
+ default:
3647
+ return nil
3648
+ }
3649
+ }
3650
+ }
3651
+ file_outbound_proto_msgTypes[4].OneofWrappers = []interface{}{}
3652
+ file_outbound_proto_msgTypes[5].OneofWrappers = []interface{}{
3653
+ (*Entity_Asset)(nil),
3654
+ }
3655
+ file_outbound_proto_msgTypes[6].OneofWrappers = []interface{}{}
3656
+ file_outbound_proto_msgTypes[7].OneofWrappers = []interface{}{}
3657
+ file_outbound_proto_msgTypes[8].OneofWrappers = []interface{}{}
3658
+ file_outbound_proto_msgTypes[9].OneofWrappers = []interface{}{}
3659
+ file_outbound_proto_msgTypes[10].OneofWrappers = []interface{}{}
3660
+ file_outbound_proto_msgTypes[11].OneofWrappers = []interface{}{
3661
+ (*OperatingSystemInfo_Windows)(nil),
3662
+ }
3663
+ file_outbound_proto_msgTypes[12].OneofWrappers = []interface{}{}
3664
+ file_outbound_proto_msgTypes[14].OneofWrappers = []interface{}{}
3665
+ file_outbound_proto_msgTypes[15].OneofWrappers = []interface{}{}
3666
+ file_outbound_proto_msgTypes[16].OneofWrappers = []interface{}{}
3667
+ file_outbound_proto_msgTypes[17].OneofWrappers = []interface{}{}
3668
+ file_outbound_proto_msgTypes[18].OneofWrappers = []interface{}{}
3669
+ file_outbound_proto_msgTypes[19].OneofWrappers = []interface{}{}
3670
+ type x struct{}
3671
+ out := protoimpl.TypeBuilder{
3672
+ File: protoimpl.DescBuilder{
3673
+ GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
3674
+ RawDescriptor: file_outbound_proto_rawDesc,
3675
+ NumEnums: 0,
3676
+ NumMessages: 21,
3677
+ NumExtensions: 0,
3678
+ NumServices: 1,
3679
+ },
3680
+ GoTypes: file_outbound_proto_goTypes,
3681
+ DependencyIndexes: file_outbound_proto_depIdxs,
3682
+ MessageInfos: file_outbound_proto_msgTypes,
3683
+ }.Build()
3684
+ File_outbound_proto = out.File
3685
+ file_outbound_proto_rawDesc = nil
3686
+ file_outbound_proto_goTypes = nil
3687
+ file_outbound_proto_depIdxs = nil
3688
+ }