@lansweeper/discovery-hub-proto 2.12.0 → 2.12.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.
@@ -145,6 +145,11 @@ export class Device extends jspb.Message {
145
145
  getScan(): Scan | undefined;
146
146
  setScan(value?: Scan): Device;
147
147
 
148
+ hasScanServerName(): boolean;
149
+ clearScanServerName(): void;
150
+ getScanServerName(): google_protobuf_wrappers_pb.StringValue | undefined;
151
+ setScanServerName(value?: google_protobuf_wrappers_pb.StringValue): Device;
152
+
148
153
  serializeBinary(): Uint8Array;
149
154
  toObject(includeInstance?: boolean): Device.AsObject;
150
155
  static toObject(includeInstance: boolean, msg: Device): Device.AsObject;
@@ -185,6 +190,7 @@ export namespace Device {
185
190
  osCpe?: google_protobuf_wrappers_pb.StringValue.AsObject,
186
191
  fingerprints?: google_protobuf_any_pb.Any.AsObject,
187
192
  scan?: Scan.AsObject,
193
+ scanServerName?: google_protobuf_wrappers_pb.StringValue.AsObject,
188
194
  }
189
195
  }
190
196
 
@@ -13,7 +13,13 @@
13
13
 
14
14
  var jspb = require('google-protobuf');
15
15
  var goog = jspb;
16
- var global = Function('return this')();
16
+ var global = (function() {
17
+ if (this) { return this; }
18
+ if (typeof window !== 'undefined') { return window; }
19
+ if (typeof global !== 'undefined') { return global; }
20
+ if (typeof self !== 'undefined') { return self; }
21
+ return Function('return this')();
22
+ }.call(null));
17
23
 
18
24
  var google_protobuf_timestamp_pb = require('google-protobuf/google/protobuf/timestamp_pb.js');
19
25
  goog.object.extend(proto, google_protobuf_timestamp_pb);
@@ -190,7 +196,8 @@ proto.com.lansweeper.discovery.device.v1.Device.toObject = function(includeInsta
190
196
  fwCpe: (f = msg.getFwCpe()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
191
197
  osCpe: (f = msg.getOsCpe()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
192
198
  fingerprints: (f = msg.getFingerprints()) && google_protobuf_any_pb.Any.toObject(includeInstance, f),
193
- scan: (f = msg.getScan()) && proto.com.lansweeper.discovery.device.v1.Scan.toObject(includeInstance, f)
199
+ scan: (f = msg.getScan()) && proto.com.lansweeper.discovery.device.v1.Scan.toObject(includeInstance, f),
200
+ scanServerName: (f = msg.getScanServerName()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f)
194
201
  };
195
202
 
196
203
  if (includeInstance) {
@@ -365,6 +372,11 @@ proto.com.lansweeper.discovery.device.v1.Device.deserializeBinaryFromReader = fu
365
372
  reader.readMessage(value,proto.com.lansweeper.discovery.device.v1.Scan.deserializeBinaryFromReader);
366
373
  msg.setScan(value);
367
374
  break;
375
+ case 29:
376
+ var value = new google_protobuf_wrappers_pb.StringValue;
377
+ reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
378
+ msg.setScanServerName(value);
379
+ break;
368
380
  default:
369
381
  reader.skipField();
370
382
  break;
@@ -616,6 +628,14 @@ proto.com.lansweeper.discovery.device.v1.Device.serializeBinaryToWriter = functi
616
628
  proto.com.lansweeper.discovery.device.v1.Scan.serializeBinaryToWriter
617
629
  );
618
630
  }
631
+ f = message.getScanServerName();
632
+ if (f != null) {
633
+ writer.writeMessage(
634
+ 29,
635
+ f,
636
+ google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
637
+ );
638
+ }
619
639
  };
620
640
 
621
641
 
@@ -1617,6 +1637,43 @@ proto.com.lansweeper.discovery.device.v1.Device.prototype.hasScan = function() {
1617
1637
  };
1618
1638
 
1619
1639
 
1640
+ /**
1641
+ * optional google.protobuf.StringValue scan_server_name = 29;
1642
+ * @return {?proto.google.protobuf.StringValue}
1643
+ */
1644
+ proto.com.lansweeper.discovery.device.v1.Device.prototype.getScanServerName = function() {
1645
+ return /** @type{?proto.google.protobuf.StringValue} */ (
1646
+ jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 29));
1647
+ };
1648
+
1649
+
1650
+ /**
1651
+ * @param {?proto.google.protobuf.StringValue|undefined} value
1652
+ * @return {!proto.com.lansweeper.discovery.device.v1.Device} returns this
1653
+ */
1654
+ proto.com.lansweeper.discovery.device.v1.Device.prototype.setScanServerName = function(value) {
1655
+ return jspb.Message.setWrapperField(this, 29, value);
1656
+ };
1657
+
1658
+
1659
+ /**
1660
+ * Clears the message field making it undefined.
1661
+ * @return {!proto.com.lansweeper.discovery.device.v1.Device} returns this
1662
+ */
1663
+ proto.com.lansweeper.discovery.device.v1.Device.prototype.clearScanServerName = function() {
1664
+ return this.setScanServerName(undefined);
1665
+ };
1666
+
1667
+
1668
+ /**
1669
+ * Returns whether this field is set.
1670
+ * @return {boolean}
1671
+ */
1672
+ proto.com.lansweeper.discovery.device.v1.Device.prototype.hasScanServerName = function() {
1673
+ return jspb.Message.getField(this, 29) != null;
1674
+ };
1675
+
1676
+
1620
1677
 
1621
1678
  /**
1622
1679
  * List of repeated fields within this message type.
@@ -7,6 +7,7 @@
7
7
  import * as jspb from "google-protobuf";
8
8
  import * as google_protobuf_timestamp_pb from "google-protobuf/google/protobuf/timestamp_pb";
9
9
  import * as google_protobuf_any_pb from "google-protobuf/google/protobuf/any_pb";
10
+ import * as google_protobuf_wrappers_pb from "google-protobuf/google/protobuf/wrappers_pb";
10
11
 
11
12
  export class Header extends jspb.Message {
12
13
  getEntityName(): string;
@@ -74,6 +75,53 @@ export namespace Entity {
74
75
  }
75
76
  }
76
77
 
78
+ export class EncryptedPacket extends jspb.Message {
79
+
80
+ hasEncryptedSessionKey(): boolean;
81
+ clearEncryptedSessionKey(): void;
82
+ getEncryptedSessionKey(): google_protobuf_wrappers_pb.BytesValue | undefined;
83
+ setEncryptedSessionKey(value?: google_protobuf_wrappers_pb.BytesValue): EncryptedPacket;
84
+
85
+ hasEncryptedData(): boolean;
86
+ clearEncryptedData(): void;
87
+ getEncryptedData(): google_protobuf_wrappers_pb.BytesValue | undefined;
88
+ setEncryptedData(value?: google_protobuf_wrappers_pb.BytesValue): EncryptedPacket;
89
+
90
+ hasInitializationVector(): boolean;
91
+ clearInitializationVector(): void;
92
+ getInitializationVector(): google_protobuf_wrappers_pb.BytesValue | undefined;
93
+ setInitializationVector(value?: google_protobuf_wrappers_pb.BytesValue): EncryptedPacket;
94
+
95
+ hasSignatureHmac(): boolean;
96
+ clearSignatureHmac(): void;
97
+ getSignatureHmac(): google_protobuf_wrappers_pb.BytesValue | undefined;
98
+ setSignatureHmac(value?: google_protobuf_wrappers_pb.BytesValue): EncryptedPacket;
99
+
100
+ hasSignature(): boolean;
101
+ clearSignature(): void;
102
+ getSignature(): google_protobuf_wrappers_pb.BytesValue | undefined;
103
+ setSignature(value?: google_protobuf_wrappers_pb.BytesValue): EncryptedPacket;
104
+
105
+ serializeBinary(): Uint8Array;
106
+ toObject(includeInstance?: boolean): EncryptedPacket.AsObject;
107
+ static toObject(includeInstance: boolean, msg: EncryptedPacket): EncryptedPacket.AsObject;
108
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
109
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
110
+ static serializeBinaryToWriter(message: EncryptedPacket, writer: jspb.BinaryWriter): void;
111
+ static deserializeBinary(bytes: Uint8Array): EncryptedPacket;
112
+ static deserializeBinaryFromReader(message: EncryptedPacket, reader: jspb.BinaryReader): EncryptedPacket;
113
+ }
114
+
115
+ export namespace EncryptedPacket {
116
+ export type AsObject = {
117
+ encryptedSessionKey?: google_protobuf_wrappers_pb.BytesValue.AsObject,
118
+ encryptedData?: google_protobuf_wrappers_pb.BytesValue.AsObject,
119
+ initializationVector?: google_protobuf_wrappers_pb.BytesValue.AsObject,
120
+ signatureHmac?: google_protobuf_wrappers_pb.BytesValue.AsObject,
121
+ signature?: google_protobuf_wrappers_pb.BytesValue.AsObject,
122
+ }
123
+ }
124
+
77
125
  export enum Action {
78
126
  NONE = 0,
79
127
  INSERT = 1,
@@ -13,13 +13,22 @@
13
13
 
14
14
  var jspb = require('google-protobuf');
15
15
  var goog = jspb;
16
- var global = Function('return this')();
16
+ var global = (function() {
17
+ if (this) { return this; }
18
+ if (typeof window !== 'undefined') { return window; }
19
+ if (typeof global !== 'undefined') { return global; }
20
+ if (typeof self !== 'undefined') { return self; }
21
+ return Function('return this')();
22
+ }.call(null));
17
23
 
18
24
  var google_protobuf_timestamp_pb = require('google-protobuf/google/protobuf/timestamp_pb.js');
19
25
  goog.object.extend(proto, google_protobuf_timestamp_pb);
20
26
  var google_protobuf_any_pb = require('google-protobuf/google/protobuf/any_pb.js');
21
27
  goog.object.extend(proto, google_protobuf_any_pb);
28
+ var google_protobuf_wrappers_pb = require('google-protobuf/google/protobuf/wrappers_pb.js');
29
+ goog.object.extend(proto, google_protobuf_wrappers_pb);
22
30
  goog.exportSymbol('proto.com.lansweeper.discovery.hub.v1.Action', null, global);
31
+ goog.exportSymbol('proto.com.lansweeper.discovery.hub.v1.EncryptedPacket', null, global);
23
32
  goog.exportSymbol('proto.com.lansweeper.discovery.hub.v1.Entity', null, global);
24
33
  goog.exportSymbol('proto.com.lansweeper.discovery.hub.v1.Header', null, global);
25
34
  /**
@@ -64,6 +73,27 @@ if (goog.DEBUG && !COMPILED) {
64
73
  */
65
74
  proto.com.lansweeper.discovery.hub.v1.Entity.displayName = 'proto.com.lansweeper.discovery.hub.v1.Entity';
66
75
  }
76
+ /**
77
+ * Generated by JsPbCodeGenerator.
78
+ * @param {Array=} opt_data Optional initial data array, typically from a
79
+ * server response, or constructed directly in Javascript. The array is used
80
+ * in place and becomes part of the constructed object. It is not cloned.
81
+ * If no data is provided, the constructed object will be empty, but still
82
+ * valid.
83
+ * @extends {jspb.Message}
84
+ * @constructor
85
+ */
86
+ proto.com.lansweeper.discovery.hub.v1.EncryptedPacket = function(opt_data) {
87
+ jspb.Message.initialize(this, opt_data, 0, -1, null, null);
88
+ };
89
+ goog.inherits(proto.com.lansweeper.discovery.hub.v1.EncryptedPacket, jspb.Message);
90
+ if (goog.DEBUG && !COMPILED) {
91
+ /**
92
+ * @public
93
+ * @override
94
+ */
95
+ proto.com.lansweeper.discovery.hub.v1.EncryptedPacket.displayName = 'proto.com.lansweeper.discovery.hub.v1.EncryptedPacket';
96
+ }
67
97
 
68
98
  /**
69
99
  * List of repeated fields within this message type.
@@ -563,6 +593,361 @@ proto.com.lansweeper.discovery.hub.v1.Entity.prototype.hasBody = function() {
563
593
  };
564
594
 
565
595
 
596
+
597
+
598
+
599
+ if (jspb.Message.GENERATE_TO_OBJECT) {
600
+ /**
601
+ * Creates an object representation of this proto.
602
+ * Field names that are reserved in JavaScript and will be renamed to pb_name.
603
+ * Optional fields that are not set will be set to undefined.
604
+ * To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
605
+ * For the list of reserved names please see:
606
+ * net/proto2/compiler/js/internal/generator.cc#kKeyword.
607
+ * @param {boolean=} opt_includeInstance Deprecated. whether to include the
608
+ * JSPB instance for transitional soy proto support:
609
+ * http://goto/soy-param-migration
610
+ * @return {!Object}
611
+ */
612
+ proto.com.lansweeper.discovery.hub.v1.EncryptedPacket.prototype.toObject = function(opt_includeInstance) {
613
+ return proto.com.lansweeper.discovery.hub.v1.EncryptedPacket.toObject(opt_includeInstance, this);
614
+ };
615
+
616
+
617
+ /**
618
+ * Static version of the {@see toObject} method.
619
+ * @param {boolean|undefined} includeInstance Deprecated. Whether to include
620
+ * the JSPB instance for transitional soy proto support:
621
+ * http://goto/soy-param-migration
622
+ * @param {!proto.com.lansweeper.discovery.hub.v1.EncryptedPacket} msg The msg instance to transform.
623
+ * @return {!Object}
624
+ * @suppress {unusedLocalVariables} f is only used for nested messages
625
+ */
626
+ proto.com.lansweeper.discovery.hub.v1.EncryptedPacket.toObject = function(includeInstance, msg) {
627
+ var f, obj = {
628
+ encryptedSessionKey: (f = msg.getEncryptedSessionKey()) && google_protobuf_wrappers_pb.BytesValue.toObject(includeInstance, f),
629
+ encryptedData: (f = msg.getEncryptedData()) && google_protobuf_wrappers_pb.BytesValue.toObject(includeInstance, f),
630
+ initializationVector: (f = msg.getInitializationVector()) && google_protobuf_wrappers_pb.BytesValue.toObject(includeInstance, f),
631
+ signatureHmac: (f = msg.getSignatureHmac()) && google_protobuf_wrappers_pb.BytesValue.toObject(includeInstance, f),
632
+ signature: (f = msg.getSignature()) && google_protobuf_wrappers_pb.BytesValue.toObject(includeInstance, f)
633
+ };
634
+
635
+ if (includeInstance) {
636
+ obj.$jspbMessageInstance = msg;
637
+ }
638
+ return obj;
639
+ };
640
+ }
641
+
642
+
643
+ /**
644
+ * Deserializes binary data (in protobuf wire format).
645
+ * @param {jspb.ByteSource} bytes The bytes to deserialize.
646
+ * @return {!proto.com.lansweeper.discovery.hub.v1.EncryptedPacket}
647
+ */
648
+ proto.com.lansweeper.discovery.hub.v1.EncryptedPacket.deserializeBinary = function(bytes) {
649
+ var reader = new jspb.BinaryReader(bytes);
650
+ var msg = new proto.com.lansweeper.discovery.hub.v1.EncryptedPacket;
651
+ return proto.com.lansweeper.discovery.hub.v1.EncryptedPacket.deserializeBinaryFromReader(msg, reader);
652
+ };
653
+
654
+
655
+ /**
656
+ * Deserializes binary data (in protobuf wire format) from the
657
+ * given reader into the given message object.
658
+ * @param {!proto.com.lansweeper.discovery.hub.v1.EncryptedPacket} msg The message object to deserialize into.
659
+ * @param {!jspb.BinaryReader} reader The BinaryReader to use.
660
+ * @return {!proto.com.lansweeper.discovery.hub.v1.EncryptedPacket}
661
+ */
662
+ proto.com.lansweeper.discovery.hub.v1.EncryptedPacket.deserializeBinaryFromReader = function(msg, reader) {
663
+ while (reader.nextField()) {
664
+ if (reader.isEndGroup()) {
665
+ break;
666
+ }
667
+ var field = reader.getFieldNumber();
668
+ switch (field) {
669
+ case 1:
670
+ var value = new google_protobuf_wrappers_pb.BytesValue;
671
+ reader.readMessage(value,google_protobuf_wrappers_pb.BytesValue.deserializeBinaryFromReader);
672
+ msg.setEncryptedSessionKey(value);
673
+ break;
674
+ case 2:
675
+ var value = new google_protobuf_wrappers_pb.BytesValue;
676
+ reader.readMessage(value,google_protobuf_wrappers_pb.BytesValue.deserializeBinaryFromReader);
677
+ msg.setEncryptedData(value);
678
+ break;
679
+ case 3:
680
+ var value = new google_protobuf_wrappers_pb.BytesValue;
681
+ reader.readMessage(value,google_protobuf_wrappers_pb.BytesValue.deserializeBinaryFromReader);
682
+ msg.setInitializationVector(value);
683
+ break;
684
+ case 4:
685
+ var value = new google_protobuf_wrappers_pb.BytesValue;
686
+ reader.readMessage(value,google_protobuf_wrappers_pb.BytesValue.deserializeBinaryFromReader);
687
+ msg.setSignatureHmac(value);
688
+ break;
689
+ case 5:
690
+ var value = new google_protobuf_wrappers_pb.BytesValue;
691
+ reader.readMessage(value,google_protobuf_wrappers_pb.BytesValue.deserializeBinaryFromReader);
692
+ msg.setSignature(value);
693
+ break;
694
+ default:
695
+ reader.skipField();
696
+ break;
697
+ }
698
+ }
699
+ return msg;
700
+ };
701
+
702
+
703
+ /**
704
+ * Serializes the message to binary data (in protobuf wire format).
705
+ * @return {!Uint8Array}
706
+ */
707
+ proto.com.lansweeper.discovery.hub.v1.EncryptedPacket.prototype.serializeBinary = function() {
708
+ var writer = new jspb.BinaryWriter();
709
+ proto.com.lansweeper.discovery.hub.v1.EncryptedPacket.serializeBinaryToWriter(this, writer);
710
+ return writer.getResultBuffer();
711
+ };
712
+
713
+
714
+ /**
715
+ * Serializes the given message to binary data (in protobuf wire
716
+ * format), writing to the given BinaryWriter.
717
+ * @param {!proto.com.lansweeper.discovery.hub.v1.EncryptedPacket} message
718
+ * @param {!jspb.BinaryWriter} writer
719
+ * @suppress {unusedLocalVariables} f is only used for nested messages
720
+ */
721
+ proto.com.lansweeper.discovery.hub.v1.EncryptedPacket.serializeBinaryToWriter = function(message, writer) {
722
+ var f = undefined;
723
+ f = message.getEncryptedSessionKey();
724
+ if (f != null) {
725
+ writer.writeMessage(
726
+ 1,
727
+ f,
728
+ google_protobuf_wrappers_pb.BytesValue.serializeBinaryToWriter
729
+ );
730
+ }
731
+ f = message.getEncryptedData();
732
+ if (f != null) {
733
+ writer.writeMessage(
734
+ 2,
735
+ f,
736
+ google_protobuf_wrappers_pb.BytesValue.serializeBinaryToWriter
737
+ );
738
+ }
739
+ f = message.getInitializationVector();
740
+ if (f != null) {
741
+ writer.writeMessage(
742
+ 3,
743
+ f,
744
+ google_protobuf_wrappers_pb.BytesValue.serializeBinaryToWriter
745
+ );
746
+ }
747
+ f = message.getSignatureHmac();
748
+ if (f != null) {
749
+ writer.writeMessage(
750
+ 4,
751
+ f,
752
+ google_protobuf_wrappers_pb.BytesValue.serializeBinaryToWriter
753
+ );
754
+ }
755
+ f = message.getSignature();
756
+ if (f != null) {
757
+ writer.writeMessage(
758
+ 5,
759
+ f,
760
+ google_protobuf_wrappers_pb.BytesValue.serializeBinaryToWriter
761
+ );
762
+ }
763
+ };
764
+
765
+
766
+ /**
767
+ * optional google.protobuf.BytesValue encrypted_session_key = 1;
768
+ * @return {?proto.google.protobuf.BytesValue}
769
+ */
770
+ proto.com.lansweeper.discovery.hub.v1.EncryptedPacket.prototype.getEncryptedSessionKey = function() {
771
+ return /** @type{?proto.google.protobuf.BytesValue} */ (
772
+ jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.BytesValue, 1));
773
+ };
774
+
775
+
776
+ /**
777
+ * @param {?proto.google.protobuf.BytesValue|undefined} value
778
+ * @return {!proto.com.lansweeper.discovery.hub.v1.EncryptedPacket} returns this
779
+ */
780
+ proto.com.lansweeper.discovery.hub.v1.EncryptedPacket.prototype.setEncryptedSessionKey = function(value) {
781
+ return jspb.Message.setWrapperField(this, 1, value);
782
+ };
783
+
784
+
785
+ /**
786
+ * Clears the message field making it undefined.
787
+ * @return {!proto.com.lansweeper.discovery.hub.v1.EncryptedPacket} returns this
788
+ */
789
+ proto.com.lansweeper.discovery.hub.v1.EncryptedPacket.prototype.clearEncryptedSessionKey = function() {
790
+ return this.setEncryptedSessionKey(undefined);
791
+ };
792
+
793
+
794
+ /**
795
+ * Returns whether this field is set.
796
+ * @return {boolean}
797
+ */
798
+ proto.com.lansweeper.discovery.hub.v1.EncryptedPacket.prototype.hasEncryptedSessionKey = function() {
799
+ return jspb.Message.getField(this, 1) != null;
800
+ };
801
+
802
+
803
+ /**
804
+ * optional google.protobuf.BytesValue encrypted_data = 2;
805
+ * @return {?proto.google.protobuf.BytesValue}
806
+ */
807
+ proto.com.lansweeper.discovery.hub.v1.EncryptedPacket.prototype.getEncryptedData = function() {
808
+ return /** @type{?proto.google.protobuf.BytesValue} */ (
809
+ jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.BytesValue, 2));
810
+ };
811
+
812
+
813
+ /**
814
+ * @param {?proto.google.protobuf.BytesValue|undefined} value
815
+ * @return {!proto.com.lansweeper.discovery.hub.v1.EncryptedPacket} returns this
816
+ */
817
+ proto.com.lansweeper.discovery.hub.v1.EncryptedPacket.prototype.setEncryptedData = function(value) {
818
+ return jspb.Message.setWrapperField(this, 2, value);
819
+ };
820
+
821
+
822
+ /**
823
+ * Clears the message field making it undefined.
824
+ * @return {!proto.com.lansweeper.discovery.hub.v1.EncryptedPacket} returns this
825
+ */
826
+ proto.com.lansweeper.discovery.hub.v1.EncryptedPacket.prototype.clearEncryptedData = function() {
827
+ return this.setEncryptedData(undefined);
828
+ };
829
+
830
+
831
+ /**
832
+ * Returns whether this field is set.
833
+ * @return {boolean}
834
+ */
835
+ proto.com.lansweeper.discovery.hub.v1.EncryptedPacket.prototype.hasEncryptedData = function() {
836
+ return jspb.Message.getField(this, 2) != null;
837
+ };
838
+
839
+
840
+ /**
841
+ * optional google.protobuf.BytesValue initialization_vector = 3;
842
+ * @return {?proto.google.protobuf.BytesValue}
843
+ */
844
+ proto.com.lansweeper.discovery.hub.v1.EncryptedPacket.prototype.getInitializationVector = function() {
845
+ return /** @type{?proto.google.protobuf.BytesValue} */ (
846
+ jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.BytesValue, 3));
847
+ };
848
+
849
+
850
+ /**
851
+ * @param {?proto.google.protobuf.BytesValue|undefined} value
852
+ * @return {!proto.com.lansweeper.discovery.hub.v1.EncryptedPacket} returns this
853
+ */
854
+ proto.com.lansweeper.discovery.hub.v1.EncryptedPacket.prototype.setInitializationVector = function(value) {
855
+ return jspb.Message.setWrapperField(this, 3, value);
856
+ };
857
+
858
+
859
+ /**
860
+ * Clears the message field making it undefined.
861
+ * @return {!proto.com.lansweeper.discovery.hub.v1.EncryptedPacket} returns this
862
+ */
863
+ proto.com.lansweeper.discovery.hub.v1.EncryptedPacket.prototype.clearInitializationVector = function() {
864
+ return this.setInitializationVector(undefined);
865
+ };
866
+
867
+
868
+ /**
869
+ * Returns whether this field is set.
870
+ * @return {boolean}
871
+ */
872
+ proto.com.lansweeper.discovery.hub.v1.EncryptedPacket.prototype.hasInitializationVector = function() {
873
+ return jspb.Message.getField(this, 3) != null;
874
+ };
875
+
876
+
877
+ /**
878
+ * optional google.protobuf.BytesValue signature_hmac = 4;
879
+ * @return {?proto.google.protobuf.BytesValue}
880
+ */
881
+ proto.com.lansweeper.discovery.hub.v1.EncryptedPacket.prototype.getSignatureHmac = function() {
882
+ return /** @type{?proto.google.protobuf.BytesValue} */ (
883
+ jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.BytesValue, 4));
884
+ };
885
+
886
+
887
+ /**
888
+ * @param {?proto.google.protobuf.BytesValue|undefined} value
889
+ * @return {!proto.com.lansweeper.discovery.hub.v1.EncryptedPacket} returns this
890
+ */
891
+ proto.com.lansweeper.discovery.hub.v1.EncryptedPacket.prototype.setSignatureHmac = function(value) {
892
+ return jspb.Message.setWrapperField(this, 4, value);
893
+ };
894
+
895
+
896
+ /**
897
+ * Clears the message field making it undefined.
898
+ * @return {!proto.com.lansweeper.discovery.hub.v1.EncryptedPacket} returns this
899
+ */
900
+ proto.com.lansweeper.discovery.hub.v1.EncryptedPacket.prototype.clearSignatureHmac = function() {
901
+ return this.setSignatureHmac(undefined);
902
+ };
903
+
904
+
905
+ /**
906
+ * Returns whether this field is set.
907
+ * @return {boolean}
908
+ */
909
+ proto.com.lansweeper.discovery.hub.v1.EncryptedPacket.prototype.hasSignatureHmac = function() {
910
+ return jspb.Message.getField(this, 4) != null;
911
+ };
912
+
913
+
914
+ /**
915
+ * optional google.protobuf.BytesValue signature = 5;
916
+ * @return {?proto.google.protobuf.BytesValue}
917
+ */
918
+ proto.com.lansweeper.discovery.hub.v1.EncryptedPacket.prototype.getSignature = function() {
919
+ return /** @type{?proto.google.protobuf.BytesValue} */ (
920
+ jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.BytesValue, 5));
921
+ };
922
+
923
+
924
+ /**
925
+ * @param {?proto.google.protobuf.BytesValue|undefined} value
926
+ * @return {!proto.com.lansweeper.discovery.hub.v1.EncryptedPacket} returns this
927
+ */
928
+ proto.com.lansweeper.discovery.hub.v1.EncryptedPacket.prototype.setSignature = function(value) {
929
+ return jspb.Message.setWrapperField(this, 5, value);
930
+ };
931
+
932
+
933
+ /**
934
+ * Clears the message field making it undefined.
935
+ * @return {!proto.com.lansweeper.discovery.hub.v1.EncryptedPacket} returns this
936
+ */
937
+ proto.com.lansweeper.discovery.hub.v1.EncryptedPacket.prototype.clearSignature = function() {
938
+ return this.setSignature(undefined);
939
+ };
940
+
941
+
942
+ /**
943
+ * Returns whether this field is set.
944
+ * @return {boolean}
945
+ */
946
+ proto.com.lansweeper.discovery.hub.v1.EncryptedPacket.prototype.hasSignature = function() {
947
+ return jspb.Message.getField(this, 5) != null;
948
+ };
949
+
950
+
566
951
  /**
567
952
  * @enum {number}
568
953
  */
@@ -1 +1 @@
1
- {"file":[{"name":"google/protobuf/timestamp.proto","package":"google.protobuf","messageType":[{"name":"Timestamp","field":[{"name":"seconds","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"seconds"},{"name":"nanos","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"nanos"}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"TimestampProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/timestamppb","ccEnableArenas":true,"objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"sourceCodeInfo":{"location":[{"span":[30,0,146,1]},{"path":[12],"span":[30,0,18],"leadingDetachedComments":[" Protocol Buffers - Google's data interchange format\n Copyright 2008 Google Inc. All rights reserved.\n https://developers.google.com/protocol-buffers/\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"]},{"path":[2],"span":[32,0,24]},{"path":[8],"span":[34,0,59]},{"path":[8,37],"span":[34,0,59]},{"path":[8],"span":[35,0,31]},{"path":[8,31],"span":[35,0,31]},{"path":[8],"span":[36,0,73]},{"path":[8,11],"span":[36,0,73]},{"path":[8],"span":[37,0,44]},{"path":[8,1],"span":[37,0,44]},{"path":[8],"span":[38,0,47]},{"path":[8,8],"span":[38,0,47]},{"path":[8],"span":[39,0,34]},{"path":[8,10],"span":[39,0,34]},{"path":[8],"span":[40,0,33]},{"path":[8,36],"span":[40,0,33]},{"path":[4,0],"span":[135,0,146,1],"leadingComments":" A Timestamp represents a point in time independent of any time zone or local\n calendar, encoded as a count of seconds and fractions of seconds at\n nanosecond resolution. The count is relative to an epoch at UTC midnight on\n January 1, 1970, in the proleptic Gregorian calendar which extends the\n Gregorian calendar backwards to year one.\n\n All minutes are 60 seconds long. Leap seconds are \"smeared\" so that no leap\n second table is needed for interpretation, using a [24-hour linear\n smear](https://developers.google.com/time/smear).\n\n The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By\n restricting to that range, we ensure that we can convert to and from [RFC\n 3339](https://www.ietf.org/rfc/rfc3339.txt) date strings.\n\n # Examples\n\n Example 1: Compute Timestamp from POSIX `time()`.\n\n Timestamp timestamp;\n timestamp.set_seconds(time(NULL));\n timestamp.set_nanos(0);\n\n Example 2: Compute Timestamp from POSIX `gettimeofday()`.\n\n struct timeval tv;\n gettimeofday(&tv, NULL);\n\n Timestamp timestamp;\n timestamp.set_seconds(tv.tv_sec);\n timestamp.set_nanos(tv.tv_usec * 1000);\n\n Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`.\n\n FILETIME ft;\n GetSystemTimeAsFileTime(&ft);\n UINT64 ticks = (((UINT64)ft.dwHighDateTime) << 32) | ft.dwLowDateTime;\n\n // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z\n // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.\n Timestamp timestamp;\n timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL));\n timestamp.set_nanos((INT32) ((ticks % 10000000) * 100));\n\n Example 4: Compute Timestamp from Java `System.currentTimeMillis()`.\n\n long millis = System.currentTimeMillis();\n\n Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)\n .setNanos((int) ((millis % 1000) * 1000000)).build();\n\n\n Example 5: Compute Timestamp from Java `Instant.now()`.\n\n Instant now = Instant.now();\n\n Timestamp timestamp =\n Timestamp.newBuilder().setSeconds(now.getEpochSecond())\n .setNanos(now.getNano()).build();\n\n\n Example 6: Compute Timestamp from current time in Python.\n\n timestamp = Timestamp()\n timestamp.GetCurrentTime()\n\n # JSON Mapping\n\n In JSON format, the Timestamp type is encoded as a string in the\n [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the\n format is \"{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z\"\n where {year} is always expressed using four digits while {month}, {day},\n {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional\n seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution),\n are optional. The \"Z\" suffix indicates the timezone (\"UTC\"); the timezone\n is required. A proto3 JSON serializer should always use UTC (as indicated by\n \"Z\") when printing the Timestamp type and a proto3 JSON parser should be\n able to accept both UTC and other timezones (as indicated by an offset).\n\n For example, \"2017-01-15T01:30:15.01Z\" encodes 15.01 seconds past\n 01:30 UTC on January 15, 2017.\n\n In JavaScript, one can convert a Date object to this format using the\n standard\n [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString)\n method. In Python, a standard `datetime.datetime` object can be converted\n to this format using\n [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with\n the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use\n the Joda Time's [`ISODateTimeFormat.dateTime()`](\n http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D\n ) to obtain a formatter capable of generating timestamps in this format.\n\n\n"},{"path":[4,0,1],"span":[135,8,17]},{"path":[4,0,2,0],"span":[139,2,20],"leadingComments":" Represents seconds of UTC time since Unix epoch\n 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to\n 9999-12-31T23:59:59Z inclusive.\n"},{"path":[4,0,2,0,5],"span":[139,2,7]},{"path":[4,0,2,0,1],"span":[139,8,15]},{"path":[4,0,2,0,3],"span":[139,18,19]},{"path":[4,0,2,1],"span":[145,2,18],"leadingComments":" Non-negative fractions of a second at nanosecond resolution. Negative\n second values with fractions must still have non-negative nanos values\n that count forward in time. Must be from 0 to 999,999,999\n inclusive.\n"},{"path":[4,0,2,1,5],"span":[145,2,7]},{"path":[4,0,2,1,1],"span":[145,8,13]},{"path":[4,0,2,1,3],"span":[145,16,17]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"google/protobuf/any.proto","package":"google.protobuf","messageType":[{"name":"Any","field":[{"name":"type_url","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"typeUrl"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","jsonName":"value"}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"AnyProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/anypb","objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"sourceCodeInfo":{"location":[{"span":[30,0,157,1]},{"path":[12],"span":[30,0,18],"leadingDetachedComments":[" Protocol Buffers - Google's data interchange format\n Copyright 2008 Google Inc. All rights reserved.\n https://developers.google.com/protocol-buffers/\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"]},{"path":[2],"span":[32,0,24]},{"path":[8],"span":[34,0,59]},{"path":[8,37],"span":[34,0,59]},{"path":[8],"span":[35,0,67]},{"path":[8,11],"span":[35,0,67]},{"path":[8],"span":[36,0,44]},{"path":[8,1],"span":[36,0,44]},{"path":[8],"span":[37,0,41]},{"path":[8,8],"span":[37,0,41]},{"path":[8],"span":[38,0,34]},{"path":[8,10],"span":[38,0,34]},{"path":[8],"span":[39,0,33]},{"path":[8,36],"span":[39,0,33]},{"path":[4,0],"span":[124,0,157,1],"leadingComments":" `Any` contains an arbitrary serialized protocol buffer message along with a\n URL that describes the type of the serialized message.\n\n Protobuf library provides support to pack/unpack Any values in the form\n of utility functions or additional generated methods of the Any type.\n\n Example 1: Pack and unpack a message in C++.\n\n Foo foo = ...;\n Any any;\n any.PackFrom(foo);\n ...\n if (any.UnpackTo(&foo)) {\n ...\n }\n\n Example 2: Pack and unpack a message in Java.\n\n Foo foo = ...;\n Any any = Any.pack(foo);\n ...\n if (any.is(Foo.class)) {\n foo = any.unpack(Foo.class);\n }\n\n Example 3: Pack and unpack a message in Python.\n\n foo = Foo(...)\n any = Any()\n any.Pack(foo)\n ...\n if any.Is(Foo.DESCRIPTOR):\n any.Unpack(foo)\n ...\n\n Example 4: Pack and unpack a message in Go\n\n foo := &pb.Foo{...}\n any, err := anypb.New(foo)\n if err != nil {\n ...\n }\n ...\n foo := &pb.Foo{}\n if err := any.UnmarshalTo(foo); err != nil {\n ...\n }\n\n The pack methods provided by protobuf library will by default use\n 'type.googleapis.com/full.type.name' as the type URL and the unpack\n methods only use the fully qualified type name after the last '/'\n in the type URL, for example \"foo.bar.com/x/y.z\" will yield type\n name \"y.z\".\n\n\n JSON\n ====\n The JSON representation of an `Any` value uses the regular\n representation of the deserialized, embedded message, with an\n additional field `@type` which contains the type URL. Example:\n\n package google.profile;\n message Person {\n string first_name = 1;\n string last_name = 2;\n }\n\n {\n \"@type\": \"type.googleapis.com/google.profile.Person\",\n \"firstName\": <string>,\n \"lastName\": <string>\n }\n\n If the embedded message type is well-known and has a custom JSON\n representation, that representation will be embedded adding a field\n `value` which holds the custom JSON in addition to the `@type`\n field. Example (for message [google.protobuf.Duration][]):\n\n {\n \"@type\": \"type.googleapis.com/google.protobuf.Duration\",\n \"value\": \"1.212s\"\n }\n\n"},{"path":[4,0,1],"span":[124,8,11]},{"path":[4,0,2,0],"span":[153,2,22],"leadingComments":" A URL/resource name that uniquely identifies the type of the serialized\n protocol buffer message. This string must contain at least\n one \"/\" character. The last segment of the URL's path must represent\n the fully qualified name of the type (as in\n `path/google.protobuf.Duration`). The name should be in a canonical form\n (e.g., leading \".\" is not accepted).\n\n In practice, teams usually precompile into the binary all types that they\n expect it to use in the context of Any. However, for URLs which use the\n scheme `http`, `https`, or no scheme, one can optionally set up a type\n server that maps type URLs to message definitions as follows:\n\n * If no scheme is provided, `https` is assumed.\n * An HTTP GET on the URL must yield a [google.protobuf.Type][]\n value in binary format, or produce an error.\n * Applications are allowed to cache lookup results based on the\n URL, or have them precompiled into a binary to avoid any\n lookup. Therefore, binary compatibility needs to be preserved\n on changes to types. (Use versioned type names to manage\n breaking changes.)\n\n Note: this functionality is not currently available in the official\n protobuf release, and it is not used for type URLs beginning with\n type.googleapis.com.\n\n Schemes other than `http`, `https` (or the empty scheme) might be\n used with implementation specific semantics.\n\n"},{"path":[4,0,2,0,5],"span":[153,2,8]},{"path":[4,0,2,0,1],"span":[153,9,17]},{"path":[4,0,2,0,3],"span":[153,20,21]},{"path":[4,0,2,1],"span":[156,2,18],"leadingComments":" Must be a valid serialized protocol buffer of the above specified type.\n"},{"path":[4,0,2,1,5],"span":[156,2,7]},{"path":[4,0,2,1,1],"span":[156,8,13]},{"path":[4,0,2,1,3],"span":[156,16,17]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"google/protobuf/wrappers.proto","package":"google.protobuf","messageType":[{"name":"DoubleValue","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","jsonName":"value"}]},{"name":"FloatValue","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_FLOAT","jsonName":"value"}]},{"name":"Int64Value","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"value"}]},{"name":"UInt64Value","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"value"}]},{"name":"Int32Value","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"value"}]},{"name":"UInt32Value","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"value"}]},{"name":"BoolValue","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"value"}]},{"name":"StringValue","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"value"}]},{"name":"BytesValue","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","jsonName":"value"}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"WrappersProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/wrapperspb","ccEnableArenas":true,"objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"sourceCodeInfo":{"location":[{"span":[40,0,122,1]},{"path":[12],"span":[40,0,18],"leadingDetachedComments":[" Protocol Buffers - Google's data interchange format\n Copyright 2008 Google Inc. All rights reserved.\n https://developers.google.com/protocol-buffers/\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"," Wrappers for primitive (non-message) types. These types are useful\n for embedding primitives in the `google.protobuf.Any` type and for places\n where we need to distinguish between the absence of a primitive\n typed field and its default value.\n\n These wrappers have no meaningful use within repeated fields as they lack\n the ability to detect presence on individual elements.\n These wrappers have no meaningful use within a map or a oneof since\n individual entries of a map or fields of a oneof can already detect presence.\n"]},{"path":[2],"span":[42,0,24]},{"path":[8],"span":[44,0,59]},{"path":[8,37],"span":[44,0,59]},{"path":[8],"span":[45,0,31]},{"path":[8,31],"span":[45,0,31]},{"path":[8],"span":[46,0,72]},{"path":[8,11],"span":[46,0,72]},{"path":[8],"span":[47,0,44]},{"path":[8,1],"span":[47,0,44]},{"path":[8],"span":[48,0,46]},{"path":[8,8],"span":[48,0,46]},{"path":[8],"span":[49,0,34]},{"path":[8,10],"span":[49,0,34]},{"path":[8],"span":[50,0,33]},{"path":[8,36],"span":[50,0,33]},{"path":[4,0],"span":[55,0,58,1],"leadingComments":" Wrapper message for `double`.\n\n The JSON representation for `DoubleValue` is JSON number.\n"},{"path":[4,0,1],"span":[55,8,19]},{"path":[4,0,2,0],"span":[57,2,19],"leadingComments":" The double value.\n"},{"path":[4,0,2,0,5],"span":[57,2,8]},{"path":[4,0,2,0,1],"span":[57,9,14]},{"path":[4,0,2,0,3],"span":[57,17,18]},{"path":[4,1],"span":[63,0,66,1],"leadingComments":" Wrapper message for `float`.\n\n The JSON representation for `FloatValue` is JSON number.\n"},{"path":[4,1,1],"span":[63,8,18]},{"path":[4,1,2,0],"span":[65,2,18],"leadingComments":" The float value.\n"},{"path":[4,1,2,0,5],"span":[65,2,7]},{"path":[4,1,2,0,1],"span":[65,8,13]},{"path":[4,1,2,0,3],"span":[65,16,17]},{"path":[4,2],"span":[71,0,74,1],"leadingComments":" Wrapper message for `int64`.\n\n The JSON representation for `Int64Value` is JSON string.\n"},{"path":[4,2,1],"span":[71,8,18]},{"path":[4,2,2,0],"span":[73,2,18],"leadingComments":" The int64 value.\n"},{"path":[4,2,2,0,5],"span":[73,2,7]},{"path":[4,2,2,0,1],"span":[73,8,13]},{"path":[4,2,2,0,3],"span":[73,16,17]},{"path":[4,3],"span":[79,0,82,1],"leadingComments":" Wrapper message for `uint64`.\n\n The JSON representation for `UInt64Value` is JSON string.\n"},{"path":[4,3,1],"span":[79,8,19]},{"path":[4,3,2,0],"span":[81,2,19],"leadingComments":" The uint64 value.\n"},{"path":[4,3,2,0,5],"span":[81,2,8]},{"path":[4,3,2,0,1],"span":[81,9,14]},{"path":[4,3,2,0,3],"span":[81,17,18]},{"path":[4,4],"span":[87,0,90,1],"leadingComments":" Wrapper message for `int32`.\n\n The JSON representation for `Int32Value` is JSON number.\n"},{"path":[4,4,1],"span":[87,8,18]},{"path":[4,4,2,0],"span":[89,2,18],"leadingComments":" The int32 value.\n"},{"path":[4,4,2,0,5],"span":[89,2,7]},{"path":[4,4,2,0,1],"span":[89,8,13]},{"path":[4,4,2,0,3],"span":[89,16,17]},{"path":[4,5],"span":[95,0,98,1],"leadingComments":" Wrapper message for `uint32`.\n\n The JSON representation for `UInt32Value` is JSON number.\n"},{"path":[4,5,1],"span":[95,8,19]},{"path":[4,5,2,0],"span":[97,2,19],"leadingComments":" The uint32 value.\n"},{"path":[4,5,2,0,5],"span":[97,2,8]},{"path":[4,5,2,0,1],"span":[97,9,14]},{"path":[4,5,2,0,3],"span":[97,17,18]},{"path":[4,6],"span":[103,0,106,1],"leadingComments":" Wrapper message for `bool`.\n\n The JSON representation for `BoolValue` is JSON `true` and `false`.\n"},{"path":[4,6,1],"span":[103,8,17]},{"path":[4,6,2,0],"span":[105,2,17],"leadingComments":" The bool value.\n"},{"path":[4,6,2,0,5],"span":[105,2,6]},{"path":[4,6,2,0,1],"span":[105,7,12]},{"path":[4,6,2,0,3],"span":[105,15,16]},{"path":[4,7],"span":[111,0,114,1],"leadingComments":" Wrapper message for `string`.\n\n The JSON representation for `StringValue` is JSON string.\n"},{"path":[4,7,1],"span":[111,8,19]},{"path":[4,7,2,0],"span":[113,2,19],"leadingComments":" The string value.\n"},{"path":[4,7,2,0,5],"span":[113,2,8]},{"path":[4,7,2,0,1],"span":[113,9,14]},{"path":[4,7,2,0,3],"span":[113,17,18]},{"path":[4,8],"span":[119,0,122,1],"leadingComments":" Wrapper message for `bytes`.\n\n The JSON representation for `BytesValue` is JSON string.\n"},{"path":[4,8,1],"span":[119,8,18]},{"path":[4,8,2,0],"span":[121,2,18],"leadingComments":" The bytes value.\n"},{"path":[4,8,2,0,5],"span":[121,2,7]},{"path":[4,8,2,0,1],"span":[121,8,13]},{"path":[4,8,2,0,3],"span":[121,16,17]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"proto/discovery_device.proto","package":"com.lansweeper.discovery.device.v1","dependency":["google/protobuf/timestamp.proto","google/protobuf/any.proto","google/protobuf/wrappers.proto"],"messageType":[{"name":"Device","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"sensor_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"sensorId"},{"name":"device_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"deviceName"},{"name":"ip_address","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"ipAddress"},{"name":"mac","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"mac"},{"name":"is_mac_locally_administered","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.BoolValue","jsonName":"isMacLocallyAdministered"},{"name":"mac_vendor","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"macVendor"},{"name":"brand","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"brand"},{"name":"model","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"model"},{"name":"os_name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"osName"},{"name":"os_build","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"osBuild"},{"name":"os_version","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"osVersion"},{"name":"type","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"type"},{"name":"type_name","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"typeName"},{"name":"type_group_name","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"typeGroupName"},{"name":"is_family","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.BoolValue","jsonName":"isFamily"},{"name":"recognition_type","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"recognitionType"},{"name":"rank","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int32Value","jsonName":"rank"},{"name":"serial","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"serial"},{"name":"type_id","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int32Value","jsonName":"typeId"},{"name":"brand_id","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int32Value","jsonName":"brandId"},{"name":"model_id","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int32Value","jsonName":"modelId"},{"name":"os_id","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int32Value","jsonName":"osId"},{"name":"hw_cpe","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"hwCpe"},{"name":"fw_cpe","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"fwCpe"},{"name":"os_cpe","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"osCpe"},{"name":"fingerprints","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Any","jsonName":"fingerprints"},{"name":"scan","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.discovery.device.v1.Scan","oneofIndex":0,"jsonName":"scan","proto3Optional":true}],"oneofDecl":[{"name":"_scan"}]},{"name":"Scan","field":[{"name":"sections","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.discovery.device.v1.ScanSection","jsonName":"sections"}]},{"name":"ScanSection","field":[{"name":"section_header","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.discovery.device.v1.ScanSectionHeader","jsonName":"sectionHeader"},{"name":"section_body","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Any","jsonName":"sectionBody"}]},{"name":"ScanSectionHeader","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"source","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"source"},{"name":"scan_time","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"scanTime"},{"name":"duration","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int64Value","jsonName":"duration"},{"name":"errors","number":6,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"errors"},{"name":"success","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.BoolValue","jsonName":"success"},{"name":"hash","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.discovery.device.v1.Hash","oneofIndex":0,"jsonName":"hash","proto3Optional":true}],"oneofDecl":[{"name":"_hash"}]},{"name":"Hash","field":[{"name":"algorithm","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"algorithm"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","jsonName":"value"}]}],"options":{"javaMultipleFiles":true,"csharpNamespace":"Lansweeper.Discovery.Model.Proto.Hub"},"sourceCodeInfo":{"location":[{"span":[0,0,66,1]},{"path":[12],"span":[0,0,18]},{"path":[2],"span":[2,0,43]},{"path":[8],"span":[4,0,34]},{"path":[8,10],"span":[4,0,34]},{"path":[8],"span":[6,0,65]},{"path":[8,37],"span":[6,0,65]},{"path":[3,0],"span":[8,0,41]},{"path":[3,1],"span":[9,0,35]},{"path":[3,2],"span":[10,0,40]},{"path":[4,0],"span":[12,0,41,1]},{"path":[4,0,1],"span":[12,8,14]},{"path":[4,0,2,0],"span":[13,8,22]},{"path":[4,0,2,0,5],"span":[13,8,14]},{"path":[4,0,2,0,1],"span":[13,15,17]},{"path":[4,0,2,0,3],"span":[13,20,21]},{"path":[4,0,2,1],"span":[14,8,29]},{"path":[4,0,2,1,5],"span":[14,8,14]},{"path":[4,0,2,1,1],"span":[14,15,24]},{"path":[4,0,2,1,3],"span":[14,27,28]},{"path":[4,0,2,2],"span":[15,8,52]},{"path":[4,0,2,2,6],"span":[15,8,35]},{"path":[4,0,2,2,1],"span":[15,36,47]},{"path":[4,0,2,2,3],"span":[15,50,51]},{"path":[4,0,2,3],"span":[16,8,51]},{"path":[4,0,2,3,6],"span":[16,8,35]},{"path":[4,0,2,3,1],"span":[16,36,46]},{"path":[4,0,2,3,3],"span":[16,49,50]},{"path":[4,0,2,4],"span":[17,8,44]},{"path":[4,0,2,4,6],"span":[17,8,35]},{"path":[4,0,2,4,1],"span":[17,36,39]},{"path":[4,0,2,4,3],"span":[17,42,43]},{"path":[4,0,2,5],"span":[18,8,66]},{"path":[4,0,2,5,6],"span":[18,8,33]},{"path":[4,0,2,5,1],"span":[18,34,61]},{"path":[4,0,2,5,3],"span":[18,64,65]},{"path":[4,0,2,6],"span":[19,8,51]},{"path":[4,0,2,6,6],"span":[19,8,35]},{"path":[4,0,2,6,1],"span":[19,36,46]},{"path":[4,0,2,6,3],"span":[19,49,50]},{"path":[4,0,2,7],"span":[20,8,46]},{"path":[4,0,2,7,6],"span":[20,8,35]},{"path":[4,0,2,7,1],"span":[20,36,41]},{"path":[4,0,2,7,3],"span":[20,44,45]},{"path":[4,0,2,8],"span":[21,8,46]},{"path":[4,0,2,8,6],"span":[21,8,35]},{"path":[4,0,2,8,1],"span":[21,36,41]},{"path":[4,0,2,8,3],"span":[21,44,45]},{"path":[4,0,2,9],"span":[22,8,49]},{"path":[4,0,2,9,6],"span":[22,8,35]},{"path":[4,0,2,9,1],"span":[22,36,43]},{"path":[4,0,2,9,3],"span":[22,46,48]},{"path":[4,0,2,10],"span":[23,8,50]},{"path":[4,0,2,10,6],"span":[23,8,35]},{"path":[4,0,2,10,1],"span":[23,36,44]},{"path":[4,0,2,10,3],"span":[23,47,49]},{"path":[4,0,2,11],"span":[24,8,52]},{"path":[4,0,2,11,6],"span":[24,8,35]},{"path":[4,0,2,11,1],"span":[24,36,46]},{"path":[4,0,2,11,3],"span":[24,49,51]},{"path":[4,0,2,12],"span":[25,8,46]},{"path":[4,0,2,12,6],"span":[25,8,35]},{"path":[4,0,2,12,1],"span":[25,36,40]},{"path":[4,0,2,12,3],"span":[25,43,45]},{"path":[4,0,2,13],"span":[26,8,51]},{"path":[4,0,2,13,6],"span":[26,8,35]},{"path":[4,0,2,13,1],"span":[26,36,45]},{"path":[4,0,2,13,3],"span":[26,48,50]},{"path":[4,0,2,14],"span":[27,8,57]},{"path":[4,0,2,14,6],"span":[27,8,35]},{"path":[4,0,2,14,1],"span":[27,36,51]},{"path":[4,0,2,14,3],"span":[27,54,56]},{"path":[4,0,2,15],"span":[28,8,49]},{"path":[4,0,2,15,6],"span":[28,8,33]},{"path":[4,0,2,15,1],"span":[28,34,43]},{"path":[4,0,2,15,3],"span":[28,46,48]},{"path":[4,0,2,16],"span":[29,8,58]},{"path":[4,0,2,16,6],"span":[29,8,35]},{"path":[4,0,2,16,1],"span":[29,36,52]},{"path":[4,0,2,16,3],"span":[29,55,57]},{"path":[4,0,2,17],"span":[30,8,45]},{"path":[4,0,2,17,6],"span":[30,8,34]},{"path":[4,0,2,17,1],"span":[30,35,39]},{"path":[4,0,2,17,3],"span":[30,42,44]},{"path":[4,0,2,18],"span":[31,8,48]},{"path":[4,0,2,18,6],"span":[31,8,35]},{"path":[4,0,2,18,1],"span":[31,36,42]},{"path":[4,0,2,18,3],"span":[31,45,47]},{"path":[4,0,2,19],"span":[32,8,48]},{"path":[4,0,2,19,6],"span":[32,8,34]},{"path":[4,0,2,19,1],"span":[32,35,42]},{"path":[4,0,2,19,3],"span":[32,45,47]},{"path":[4,0,2,20],"span":[33,8,49]},{"path":[4,0,2,20,6],"span":[33,8,34]},{"path":[4,0,2,20,1],"span":[33,35,43]},{"path":[4,0,2,20,3],"span":[33,46,48]},{"path":[4,0,2,21],"span":[34,8,49]},{"path":[4,0,2,21,6],"span":[34,8,34]},{"path":[4,0,2,21,1],"span":[34,35,43]},{"path":[4,0,2,21,3],"span":[34,46,48]},{"path":[4,0,2,22],"span":[35,8,46]},{"path":[4,0,2,22,6],"span":[35,8,34]},{"path":[4,0,2,22,1],"span":[35,35,40]},{"path":[4,0,2,22,3],"span":[35,43,45]},{"path":[4,0,2,23],"span":[36,8,48]},{"path":[4,0,2,23,6],"span":[36,8,35]},{"path":[4,0,2,23,1],"span":[36,36,42]},{"path":[4,0,2,23,3],"span":[36,45,47]},{"path":[4,0,2,24],"span":[37,8,48]},{"path":[4,0,2,24,6],"span":[37,8,35]},{"path":[4,0,2,24,1],"span":[37,36,42]},{"path":[4,0,2,24,3],"span":[37,45,47]},{"path":[4,0,2,25],"span":[38,8,48]},{"path":[4,0,2,25,6],"span":[38,8,35]},{"path":[4,0,2,25,1],"span":[38,36,42]},{"path":[4,0,2,25,3],"span":[38,45,47]},{"path":[4,0,2,26],"span":[39,8,46],"trailingComments":" CDR fingerprints in a DevRecogInputDevice, as defined in data.platform\\fingerprints\\grpc\\proto\\fingerprints.proto wrapped in an Any-proto\n"},{"path":[4,0,2,26,6],"span":[39,8,27]},{"path":[4,0,2,26,1],"span":[39,28,40]},{"path":[4,0,2,26,3],"span":[39,43,45]},{"path":[4,0,2,27],"span":[40,8,32]},{"path":[4,0,2,27,4],"span":[40,8,16]},{"path":[4,0,2,27,6],"span":[40,17,21]},{"path":[4,0,2,27,1],"span":[40,22,26]},{"path":[4,0,2,27,3],"span":[40,29,31]},{"path":[4,1],"span":[43,0,45,1]},{"path":[4,1,1],"span":[43,8,12]},{"path":[4,1,2,0],"span":[44,2,36]},{"path":[4,1,2,0,4],"span":[44,2,10]},{"path":[4,1,2,0,6],"span":[44,11,22]},{"path":[4,1,2,0,1],"span":[44,23,31]},{"path":[4,1,2,0,3],"span":[44,34,35]},{"path":[4,2],"span":[47,0,50,1]},{"path":[4,2,1],"span":[47,8,19]},{"path":[4,2,2,0],"span":[48,2,39]},{"path":[4,2,2,0,6],"span":[48,2,19]},{"path":[4,2,2,0,1],"span":[48,20,34]},{"path":[4,2,2,0,3],"span":[48,37,38]},{"path":[4,2,2,1],"span":[49,2,39]},{"path":[4,2,2,1,6],"span":[49,2,21]},{"path":[4,2,2,1,1],"span":[49,22,34]},{"path":[4,2,2,1,3],"span":[49,37,38]},{"path":[4,3],"span":[52,0,61,1]},{"path":[4,3,1],"span":[52,8,25]},{"path":[4,3,2,0],"span":[53,2,16]},{"path":[4,3,2,0,5],"span":[53,2,7]},{"path":[4,3,2,0,1],"span":[53,8,11]},{"path":[4,3,2,0,3],"span":[53,14,15]},{"path":[4,3,2,1],"span":[54,2,18],"trailingComments":" e.g.: Windows:BasicInfo\n"},{"path":[4,3,2,1,5],"span":[54,2,8]},{"path":[4,3,2,1,1],"span":[54,9,13]},{"path":[4,3,2,1,3],"span":[54,16,17]},{"path":[4,3,2,2],"span":[55,2,41],"trailingComments":" e.g.: Wmi.Registry.WinApi\n"},{"path":[4,3,2,2,6],"span":[55,2,29]},{"path":[4,3,2,2,1],"span":[55,30,36]},{"path":[4,3,2,2,3],"span":[55,39,40]},{"path":[4,3,2,3],"span":[56,2,42]},{"path":[4,3,2,3,6],"span":[56,2,27]},{"path":[4,3,2,3,1],"span":[56,28,37]},{"path":[4,3,2,3,3],"span":[56,40,41]},{"path":[4,3,2,4],"span":[57,2,42]},{"path":[4,3,2,4,6],"span":[57,2,28]},{"path":[4,3,2,4,1],"span":[57,29,37]},{"path":[4,3,2,4,3],"span":[57,40,41]},{"path":[4,3,2,5],"span":[58,2,29]},{"path":[4,3,2,5,4],"span":[58,2,10]},{"path":[4,3,2,5,5],"span":[58,11,17]},{"path":[4,3,2,5,1],"span":[58,18,24]},{"path":[4,3,2,5,3],"span":[58,27,28]},{"path":[4,3,2,6],"span":[59,2,40]},{"path":[4,3,2,6,6],"span":[59,2,27]},{"path":[4,3,2,6,1],"span":[59,28,35]},{"path":[4,3,2,6,3],"span":[59,38,39]},{"path":[4,3,2,7],"span":[60,2,25]},{"path":[4,3,2,7,4],"span":[60,2,10]},{"path":[4,3,2,7,6],"span":[60,11,15]},{"path":[4,3,2,7,1],"span":[60,16,20]},{"path":[4,3,2,7,3],"span":[60,23,24]},{"path":[4,4],"span":[63,0,66,1]},{"path":[4,4,1],"span":[63,8,12]},{"path":[4,4,2,0],"span":[64,2,23]},{"path":[4,4,2,0,5],"span":[64,2,8]},{"path":[4,4,2,0,1],"span":[64,9,18]},{"path":[4,4,2,0,3],"span":[64,21,22]},{"path":[4,4,2,1],"span":[65,2,18]},{"path":[4,4,2,1,5],"span":[65,2,7]},{"path":[4,4,2,1,1],"span":[65,8,13]},{"path":[4,4,2,1,3],"span":[65,16,17]}]},"syntax":"proto3","bufExtension":{"isImport":false,"isSyntaxUnspecified":false}},{"name":"proto/discovery_hub.proto","package":"com.lansweeper.discovery.hub.v1","dependency":["google/protobuf/timestamp.proto","google/protobuf/any.proto"],"messageType":[{"name":"Header","field":[{"name":"entity_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"entityName"},{"name":"entity_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"entityId"},{"name":"properties_changed","number":3,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"propertiesChanged"},{"name":"last_synced","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"lastSynced"},{"name":"action","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".com.lansweeper.discovery.hub.v1.Action","jsonName":"action"}]},{"name":"Entity","field":[{"name":"header","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.discovery.hub.v1.Header","jsonName":"header"},{"name":"body","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Any","jsonName":"body"}]}],"enumType":[{"name":"Action","value":[{"name":"NONE","number":0},{"name":"INSERT","number":1},{"name":"UPDATE","number":2},{"name":"DELETE","number":3}]}],"options":{"javaMultipleFiles":true,"csharpNamespace":"Lansweeper.Discovery.Model.Proto.Hub"},"sourceCodeInfo":{"location":[{"span":[0,0,29,1]},{"path":[12],"span":[0,0,18]},{"path":[2],"span":[2,0,40]},{"path":[8],"span":[4,0,34]},{"path":[8,10],"span":[4,0,34]},{"path":[8],"span":[6,0,65]},{"path":[8,37],"span":[6,0,65]},{"path":[3,0],"span":[8,0,41]},{"path":[3,1],"span":[9,0,35]},{"path":[5,0],"span":[11,0,16,1]},{"path":[5,0,1],"span":[11,5,11]},{"path":[5,0,2,0],"span":[12,2,11]},{"path":[5,0,2,0,1],"span":[12,2,6]},{"path":[5,0,2,0,2],"span":[12,9,10]},{"path":[5,0,2,1],"span":[13,2,13]},{"path":[5,0,2,1,1],"span":[13,2,8]},{"path":[5,0,2,1,2],"span":[13,11,12]},{"path":[5,0,2,2],"span":[14,2,13]},{"path":[5,0,2,2,1],"span":[14,2,8]},{"path":[5,0,2,2,2],"span":[14,11,12]},{"path":[5,0,2,3],"span":[15,2,13]},{"path":[5,0,2,3,1],"span":[15,2,8]},{"path":[5,0,2,3,2],"span":[15,11,12]},{"path":[4,0],"span":[18,0,24,1]},{"path":[4,0,1],"span":[18,8,14]},{"path":[4,0,2,0],"span":[19,2,25],"trailingComments":" \"Device\"\n"},{"path":[4,0,2,0,5],"span":[19,2,8]},{"path":[4,0,2,0,1],"span":[19,9,20]},{"path":[4,0,2,0,3],"span":[19,23,24]},{"path":[4,0,2,1],"span":[20,2,23]},{"path":[4,0,2,1,5],"span":[20,2,8]},{"path":[4,0,2,1,1],"span":[20,9,18]},{"path":[4,0,2,1,3],"span":[20,21,22]},{"path":[4,0,2,2],"span":[21,2,41]},{"path":[4,0,2,2,4],"span":[21,2,10]},{"path":[4,0,2,2,5],"span":[21,11,17]},{"path":[4,0,2,2,1],"span":[21,18,36]},{"path":[4,0,2,2,3],"span":[21,39,40]},{"path":[4,0,2,3],"span":[22,2,44]},{"path":[4,0,2,3,6],"span":[22,2,27]},{"path":[4,0,2,3,1],"span":[22,28,39]},{"path":[4,0,2,3,3],"span":[22,42,43]},{"path":[4,0,2,4],"span":[23,2,20]},{"path":[4,0,2,4,6],"span":[23,2,8]},{"path":[4,0,2,4,1],"span":[23,9,15]},{"path":[4,0,2,4,3],"span":[23,18,19]},{"path":[4,1],"span":[26,0,29,1]},{"path":[4,1,1],"span":[26,8,14]},{"path":[4,1,2,0],"span":[27,4,22]},{"path":[4,1,2,0,6],"span":[27,4,10]},{"path":[4,1,2,0,1],"span":[27,11,17]},{"path":[4,1,2,0,3],"span":[27,20,21]},{"path":[4,1,2,1],"span":[28,4,33]},{"path":[4,1,2,1,6],"span":[28,4,23]},{"path":[4,1,2,1,1],"span":[28,24,28]},{"path":[4,1,2,1,3],"span":[28,31,32]}]},"syntax":"proto3","bufExtension":{"isImport":false,"isSyntaxUnspecified":false}}]}
1
+ {"file":[{"name":"google/protobuf/timestamp.proto","package":"google.protobuf","messageType":[{"name":"Timestamp","field":[{"name":"seconds","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"seconds"},{"name":"nanos","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"nanos"}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"TimestampProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/timestamppb","ccEnableArenas":true,"objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"sourceCodeInfo":{"location":[{"span":[30,0,146,1]},{"path":[12],"span":[30,0,18],"leadingDetachedComments":[" Protocol Buffers - Google's data interchange format\n Copyright 2008 Google Inc. All rights reserved.\n https://developers.google.com/protocol-buffers/\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"]},{"path":[2],"span":[32,0,24]},{"path":[8],"span":[34,0,59]},{"path":[8,37],"span":[34,0,59]},{"path":[8],"span":[35,0,31]},{"path":[8,31],"span":[35,0,31]},{"path":[8],"span":[36,0,73]},{"path":[8,11],"span":[36,0,73]},{"path":[8],"span":[37,0,44]},{"path":[8,1],"span":[37,0,44]},{"path":[8],"span":[38,0,47]},{"path":[8,8],"span":[38,0,47]},{"path":[8],"span":[39,0,34]},{"path":[8,10],"span":[39,0,34]},{"path":[8],"span":[40,0,33]},{"path":[8,36],"span":[40,0,33]},{"path":[4,0],"span":[135,0,146,1],"leadingComments":" A Timestamp represents a point in time independent of any time zone or local\n calendar, encoded as a count of seconds and fractions of seconds at\n nanosecond resolution. The count is relative to an epoch at UTC midnight on\n January 1, 1970, in the proleptic Gregorian calendar which extends the\n Gregorian calendar backwards to year one.\n\n All minutes are 60 seconds long. Leap seconds are \"smeared\" so that no leap\n second table is needed for interpretation, using a [24-hour linear\n smear](https://developers.google.com/time/smear).\n\n The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By\n restricting to that range, we ensure that we can convert to and from [RFC\n 3339](https://www.ietf.org/rfc/rfc3339.txt) date strings.\n\n # Examples\n\n Example 1: Compute Timestamp from POSIX `time()`.\n\n Timestamp timestamp;\n timestamp.set_seconds(time(NULL));\n timestamp.set_nanos(0);\n\n Example 2: Compute Timestamp from POSIX `gettimeofday()`.\n\n struct timeval tv;\n gettimeofday(&tv, NULL);\n\n Timestamp timestamp;\n timestamp.set_seconds(tv.tv_sec);\n timestamp.set_nanos(tv.tv_usec * 1000);\n\n Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`.\n\n FILETIME ft;\n GetSystemTimeAsFileTime(&ft);\n UINT64 ticks = (((UINT64)ft.dwHighDateTime) << 32) | ft.dwLowDateTime;\n\n // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z\n // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.\n Timestamp timestamp;\n timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL));\n timestamp.set_nanos((INT32) ((ticks % 10000000) * 100));\n\n Example 4: Compute Timestamp from Java `System.currentTimeMillis()`.\n\n long millis = System.currentTimeMillis();\n\n Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)\n .setNanos((int) ((millis % 1000) * 1000000)).build();\n\n\n Example 5: Compute Timestamp from Java `Instant.now()`.\n\n Instant now = Instant.now();\n\n Timestamp timestamp =\n Timestamp.newBuilder().setSeconds(now.getEpochSecond())\n .setNanos(now.getNano()).build();\n\n\n Example 6: Compute Timestamp from current time in Python.\n\n timestamp = Timestamp()\n timestamp.GetCurrentTime()\n\n # JSON Mapping\n\n In JSON format, the Timestamp type is encoded as a string in the\n [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the\n format is \"{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z\"\n where {year} is always expressed using four digits while {month}, {day},\n {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional\n seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution),\n are optional. The \"Z\" suffix indicates the timezone (\"UTC\"); the timezone\n is required. A proto3 JSON serializer should always use UTC (as indicated by\n \"Z\") when printing the Timestamp type and a proto3 JSON parser should be\n able to accept both UTC and other timezones (as indicated by an offset).\n\n For example, \"2017-01-15T01:30:15.01Z\" encodes 15.01 seconds past\n 01:30 UTC on January 15, 2017.\n\n In JavaScript, one can convert a Date object to this format using the\n standard\n [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString)\n method. In Python, a standard `datetime.datetime` object can be converted\n to this format using\n [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with\n the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use\n the Joda Time's [`ISODateTimeFormat.dateTime()`](\n http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D\n ) to obtain a formatter capable of generating timestamps in this format.\n\n\n"},{"path":[4,0,1],"span":[135,8,17]},{"path":[4,0,2,0],"span":[139,2,20],"leadingComments":" Represents seconds of UTC time since Unix epoch\n 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to\n 9999-12-31T23:59:59Z inclusive.\n"},{"path":[4,0,2,0,5],"span":[139,2,7]},{"path":[4,0,2,0,1],"span":[139,8,15]},{"path":[4,0,2,0,3],"span":[139,18,19]},{"path":[4,0,2,1],"span":[145,2,18],"leadingComments":" Non-negative fractions of a second at nanosecond resolution. Negative\n second values with fractions must still have non-negative nanos values\n that count forward in time. Must be from 0 to 999,999,999\n inclusive.\n"},{"path":[4,0,2,1,5],"span":[145,2,7]},{"path":[4,0,2,1,1],"span":[145,8,13]},{"path":[4,0,2,1,3],"span":[145,16,17]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"google/protobuf/any.proto","package":"google.protobuf","messageType":[{"name":"Any","field":[{"name":"type_url","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"typeUrl"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","jsonName":"value"}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"AnyProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/anypb","objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"sourceCodeInfo":{"location":[{"span":[30,0,157,1]},{"path":[12],"span":[30,0,18],"leadingDetachedComments":[" Protocol Buffers - Google's data interchange format\n Copyright 2008 Google Inc. All rights reserved.\n https://developers.google.com/protocol-buffers/\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"]},{"path":[2],"span":[32,0,24]},{"path":[8],"span":[34,0,59]},{"path":[8,37],"span":[34,0,59]},{"path":[8],"span":[35,0,67]},{"path":[8,11],"span":[35,0,67]},{"path":[8],"span":[36,0,44]},{"path":[8,1],"span":[36,0,44]},{"path":[8],"span":[37,0,41]},{"path":[8,8],"span":[37,0,41]},{"path":[8],"span":[38,0,34]},{"path":[8,10],"span":[38,0,34]},{"path":[8],"span":[39,0,33]},{"path":[8,36],"span":[39,0,33]},{"path":[4,0],"span":[124,0,157,1],"leadingComments":" `Any` contains an arbitrary serialized protocol buffer message along with a\n URL that describes the type of the serialized message.\n\n Protobuf library provides support to pack/unpack Any values in the form\n of utility functions or additional generated methods of the Any type.\n\n Example 1: Pack and unpack a message in C++.\n\n Foo foo = ...;\n Any any;\n any.PackFrom(foo);\n ...\n if (any.UnpackTo(&foo)) {\n ...\n }\n\n Example 2: Pack and unpack a message in Java.\n\n Foo foo = ...;\n Any any = Any.pack(foo);\n ...\n if (any.is(Foo.class)) {\n foo = any.unpack(Foo.class);\n }\n\n Example 3: Pack and unpack a message in Python.\n\n foo = Foo(...)\n any = Any()\n any.Pack(foo)\n ...\n if any.Is(Foo.DESCRIPTOR):\n any.Unpack(foo)\n ...\n\n Example 4: Pack and unpack a message in Go\n\n foo := &pb.Foo{...}\n any, err := anypb.New(foo)\n if err != nil {\n ...\n }\n ...\n foo := &pb.Foo{}\n if err := any.UnmarshalTo(foo); err != nil {\n ...\n }\n\n The pack methods provided by protobuf library will by default use\n 'type.googleapis.com/full.type.name' as the type URL and the unpack\n methods only use the fully qualified type name after the last '/'\n in the type URL, for example \"foo.bar.com/x/y.z\" will yield type\n name \"y.z\".\n\n\n JSON\n ====\n The JSON representation of an `Any` value uses the regular\n representation of the deserialized, embedded message, with an\n additional field `@type` which contains the type URL. Example:\n\n package google.profile;\n message Person {\n string first_name = 1;\n string last_name = 2;\n }\n\n {\n \"@type\": \"type.googleapis.com/google.profile.Person\",\n \"firstName\": <string>,\n \"lastName\": <string>\n }\n\n If the embedded message type is well-known and has a custom JSON\n representation, that representation will be embedded adding a field\n `value` which holds the custom JSON in addition to the `@type`\n field. Example (for message [google.protobuf.Duration][]):\n\n {\n \"@type\": \"type.googleapis.com/google.protobuf.Duration\",\n \"value\": \"1.212s\"\n }\n\n"},{"path":[4,0,1],"span":[124,8,11]},{"path":[4,0,2,0],"span":[153,2,22],"leadingComments":" A URL/resource name that uniquely identifies the type of the serialized\n protocol buffer message. This string must contain at least\n one \"/\" character. The last segment of the URL's path must represent\n the fully qualified name of the type (as in\n `path/google.protobuf.Duration`). The name should be in a canonical form\n (e.g., leading \".\" is not accepted).\n\n In practice, teams usually precompile into the binary all types that they\n expect it to use in the context of Any. However, for URLs which use the\n scheme `http`, `https`, or no scheme, one can optionally set up a type\n server that maps type URLs to message definitions as follows:\n\n * If no scheme is provided, `https` is assumed.\n * An HTTP GET on the URL must yield a [google.protobuf.Type][]\n value in binary format, or produce an error.\n * Applications are allowed to cache lookup results based on the\n URL, or have them precompiled into a binary to avoid any\n lookup. Therefore, binary compatibility needs to be preserved\n on changes to types. (Use versioned type names to manage\n breaking changes.)\n\n Note: this functionality is not currently available in the official\n protobuf release, and it is not used for type URLs beginning with\n type.googleapis.com.\n\n Schemes other than `http`, `https` (or the empty scheme) might be\n used with implementation specific semantics.\n\n"},{"path":[4,0,2,0,5],"span":[153,2,8]},{"path":[4,0,2,0,1],"span":[153,9,17]},{"path":[4,0,2,0,3],"span":[153,20,21]},{"path":[4,0,2,1],"span":[156,2,18],"leadingComments":" Must be a valid serialized protocol buffer of the above specified type.\n"},{"path":[4,0,2,1,5],"span":[156,2,7]},{"path":[4,0,2,1,1],"span":[156,8,13]},{"path":[4,0,2,1,3],"span":[156,16,17]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"google/protobuf/wrappers.proto","package":"google.protobuf","messageType":[{"name":"DoubleValue","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_DOUBLE","jsonName":"value"}]},{"name":"FloatValue","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_FLOAT","jsonName":"value"}]},{"name":"Int64Value","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"value"}]},{"name":"UInt64Value","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT64","jsonName":"value"}]},{"name":"Int32Value","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"value"}]},{"name":"UInt32Value","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_UINT32","jsonName":"value"}]},{"name":"BoolValue","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"value"}]},{"name":"StringValue","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"value"}]},{"name":"BytesValue","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","jsonName":"value"}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"WrappersProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/wrapperspb","ccEnableArenas":true,"objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"sourceCodeInfo":{"location":[{"span":[40,0,122,1]},{"path":[12],"span":[40,0,18],"leadingDetachedComments":[" Protocol Buffers - Google's data interchange format\n Copyright 2008 Google Inc. All rights reserved.\n https://developers.google.com/protocol-buffers/\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"," Wrappers for primitive (non-message) types. These types are useful\n for embedding primitives in the `google.protobuf.Any` type and for places\n where we need to distinguish between the absence of a primitive\n typed field and its default value.\n\n These wrappers have no meaningful use within repeated fields as they lack\n the ability to detect presence on individual elements.\n These wrappers have no meaningful use within a map or a oneof since\n individual entries of a map or fields of a oneof can already detect presence.\n"]},{"path":[2],"span":[42,0,24]},{"path":[8],"span":[44,0,59]},{"path":[8,37],"span":[44,0,59]},{"path":[8],"span":[45,0,31]},{"path":[8,31],"span":[45,0,31]},{"path":[8],"span":[46,0,72]},{"path":[8,11],"span":[46,0,72]},{"path":[8],"span":[47,0,44]},{"path":[8,1],"span":[47,0,44]},{"path":[8],"span":[48,0,46]},{"path":[8,8],"span":[48,0,46]},{"path":[8],"span":[49,0,34]},{"path":[8,10],"span":[49,0,34]},{"path":[8],"span":[50,0,33]},{"path":[8,36],"span":[50,0,33]},{"path":[4,0],"span":[55,0,58,1],"leadingComments":" Wrapper message for `double`.\n\n The JSON representation for `DoubleValue` is JSON number.\n"},{"path":[4,0,1],"span":[55,8,19]},{"path":[4,0,2,0],"span":[57,2,19],"leadingComments":" The double value.\n"},{"path":[4,0,2,0,5],"span":[57,2,8]},{"path":[4,0,2,0,1],"span":[57,9,14]},{"path":[4,0,2,0,3],"span":[57,17,18]},{"path":[4,1],"span":[63,0,66,1],"leadingComments":" Wrapper message for `float`.\n\n The JSON representation for `FloatValue` is JSON number.\n"},{"path":[4,1,1],"span":[63,8,18]},{"path":[4,1,2,0],"span":[65,2,18],"leadingComments":" The float value.\n"},{"path":[4,1,2,0,5],"span":[65,2,7]},{"path":[4,1,2,0,1],"span":[65,8,13]},{"path":[4,1,2,0,3],"span":[65,16,17]},{"path":[4,2],"span":[71,0,74,1],"leadingComments":" Wrapper message for `int64`.\n\n The JSON representation for `Int64Value` is JSON string.\n"},{"path":[4,2,1],"span":[71,8,18]},{"path":[4,2,2,0],"span":[73,2,18],"leadingComments":" The int64 value.\n"},{"path":[4,2,2,0,5],"span":[73,2,7]},{"path":[4,2,2,0,1],"span":[73,8,13]},{"path":[4,2,2,0,3],"span":[73,16,17]},{"path":[4,3],"span":[79,0,82,1],"leadingComments":" Wrapper message for `uint64`.\n\n The JSON representation for `UInt64Value` is JSON string.\n"},{"path":[4,3,1],"span":[79,8,19]},{"path":[4,3,2,0],"span":[81,2,19],"leadingComments":" The uint64 value.\n"},{"path":[4,3,2,0,5],"span":[81,2,8]},{"path":[4,3,2,0,1],"span":[81,9,14]},{"path":[4,3,2,0,3],"span":[81,17,18]},{"path":[4,4],"span":[87,0,90,1],"leadingComments":" Wrapper message for `int32`.\n\n The JSON representation for `Int32Value` is JSON number.\n"},{"path":[4,4,1],"span":[87,8,18]},{"path":[4,4,2,0],"span":[89,2,18],"leadingComments":" The int32 value.\n"},{"path":[4,4,2,0,5],"span":[89,2,7]},{"path":[4,4,2,0,1],"span":[89,8,13]},{"path":[4,4,2,0,3],"span":[89,16,17]},{"path":[4,5],"span":[95,0,98,1],"leadingComments":" Wrapper message for `uint32`.\n\n The JSON representation for `UInt32Value` is JSON number.\n"},{"path":[4,5,1],"span":[95,8,19]},{"path":[4,5,2,0],"span":[97,2,19],"leadingComments":" The uint32 value.\n"},{"path":[4,5,2,0,5],"span":[97,2,8]},{"path":[4,5,2,0,1],"span":[97,9,14]},{"path":[4,5,2,0,3],"span":[97,17,18]},{"path":[4,6],"span":[103,0,106,1],"leadingComments":" Wrapper message for `bool`.\n\n The JSON representation for `BoolValue` is JSON `true` and `false`.\n"},{"path":[4,6,1],"span":[103,8,17]},{"path":[4,6,2,0],"span":[105,2,17],"leadingComments":" The bool value.\n"},{"path":[4,6,2,0,5],"span":[105,2,6]},{"path":[4,6,2,0,1],"span":[105,7,12]},{"path":[4,6,2,0,3],"span":[105,15,16]},{"path":[4,7],"span":[111,0,114,1],"leadingComments":" Wrapper message for `string`.\n\n The JSON representation for `StringValue` is JSON string.\n"},{"path":[4,7,1],"span":[111,8,19]},{"path":[4,7,2,0],"span":[113,2,19],"leadingComments":" The string value.\n"},{"path":[4,7,2,0,5],"span":[113,2,8]},{"path":[4,7,2,0,1],"span":[113,9,14]},{"path":[4,7,2,0,3],"span":[113,17,18]},{"path":[4,8],"span":[119,0,122,1],"leadingComments":" Wrapper message for `bytes`.\n\n The JSON representation for `BytesValue` is JSON string.\n"},{"path":[4,8,1],"span":[119,8,18]},{"path":[4,8,2,0],"span":[121,2,18],"leadingComments":" The bytes value.\n"},{"path":[4,8,2,0,5],"span":[121,2,7]},{"path":[4,8,2,0,1],"span":[121,8,13]},{"path":[4,8,2,0,3],"span":[121,16,17]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"proto/discovery_device.proto","package":"com.lansweeper.discovery.device.v1","dependency":["google/protobuf/timestamp.proto","google/protobuf/any.proto","google/protobuf/wrappers.proto"],"messageType":[{"name":"Device","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"sensor_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"sensorId"},{"name":"device_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"deviceName"},{"name":"ip_address","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"ipAddress"},{"name":"mac","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"mac"},{"name":"is_mac_locally_administered","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.BoolValue","jsonName":"isMacLocallyAdministered"},{"name":"mac_vendor","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"macVendor"},{"name":"brand","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"brand"},{"name":"model","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"model"},{"name":"os_name","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"osName"},{"name":"os_build","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"osBuild"},{"name":"os_version","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"osVersion"},{"name":"type","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"type"},{"name":"type_name","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"typeName"},{"name":"type_group_name","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"typeGroupName"},{"name":"is_family","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.BoolValue","jsonName":"isFamily"},{"name":"recognition_type","number":17,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"recognitionType"},{"name":"rank","number":18,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int32Value","jsonName":"rank"},{"name":"serial","number":19,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"serial"},{"name":"type_id","number":20,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int32Value","jsonName":"typeId"},{"name":"brand_id","number":21,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int32Value","jsonName":"brandId"},{"name":"model_id","number":22,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int32Value","jsonName":"modelId"},{"name":"os_id","number":23,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int32Value","jsonName":"osId"},{"name":"hw_cpe","number":24,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"hwCpe"},{"name":"fw_cpe","number":25,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"fwCpe"},{"name":"os_cpe","number":26,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"osCpe"},{"name":"fingerprints","number":27,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Any","jsonName":"fingerprints"},{"name":"scan","number":28,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.discovery.device.v1.Scan","oneofIndex":0,"jsonName":"scan","proto3Optional":true},{"name":"scan_server_name","number":29,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"scanServerName"}],"oneofDecl":[{"name":"_scan"}]},{"name":"Scan","field":[{"name":"sections","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".com.lansweeper.discovery.device.v1.ScanSection","jsonName":"sections"}]},{"name":"ScanSection","field":[{"name":"section_header","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.discovery.device.v1.ScanSectionHeader","jsonName":"sectionHeader"},{"name":"section_body","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Any","jsonName":"sectionBody"}]},{"name":"ScanSectionHeader","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"key"},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"source","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.StringValue","jsonName":"source"},{"name":"scan_time","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"scanTime"},{"name":"duration","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Int64Value","jsonName":"duration"},{"name":"errors","number":6,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"errors"},{"name":"success","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.BoolValue","jsonName":"success"},{"name":"hash","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.discovery.device.v1.Hash","oneofIndex":0,"jsonName":"hash","proto3Optional":true}],"oneofDecl":[{"name":"_hash"}]},{"name":"Hash","field":[{"name":"algorithm","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"algorithm"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","jsonName":"value"}]}],"options":{"javaMultipleFiles":true,"csharpNamespace":"Lansweeper.Discovery.Model.Proto.Hub"},"sourceCodeInfo":{"location":[{"span":[0,0,67,1]},{"path":[12],"span":[0,0,18]},{"path":[2],"span":[2,0,43]},{"path":[8],"span":[4,0,34]},{"path":[8,10],"span":[4,0,34]},{"path":[8],"span":[6,0,65]},{"path":[8,37],"span":[6,0,65]},{"path":[3,0],"span":[8,0,41]},{"path":[3,1],"span":[9,0,35]},{"path":[3,2],"span":[10,0,40]},{"path":[4,0],"span":[12,0,42,1]},{"path":[4,0,1],"span":[12,8,14]},{"path":[4,0,2,0],"span":[13,8,22]},{"path":[4,0,2,0,5],"span":[13,8,14]},{"path":[4,0,2,0,1],"span":[13,15,17]},{"path":[4,0,2,0,3],"span":[13,20,21]},{"path":[4,0,2,1],"span":[14,8,29]},{"path":[4,0,2,1,5],"span":[14,8,14]},{"path":[4,0,2,1,1],"span":[14,15,24]},{"path":[4,0,2,1,3],"span":[14,27,28]},{"path":[4,0,2,2],"span":[15,8,52]},{"path":[4,0,2,2,6],"span":[15,8,35]},{"path":[4,0,2,2,1],"span":[15,36,47]},{"path":[4,0,2,2,3],"span":[15,50,51]},{"path":[4,0,2,3],"span":[16,8,51]},{"path":[4,0,2,3,6],"span":[16,8,35]},{"path":[4,0,2,3,1],"span":[16,36,46]},{"path":[4,0,2,3,3],"span":[16,49,50]},{"path":[4,0,2,4],"span":[17,8,44]},{"path":[4,0,2,4,6],"span":[17,8,35]},{"path":[4,0,2,4,1],"span":[17,36,39]},{"path":[4,0,2,4,3],"span":[17,42,43]},{"path":[4,0,2,5],"span":[18,8,66]},{"path":[4,0,2,5,6],"span":[18,8,33]},{"path":[4,0,2,5,1],"span":[18,34,61]},{"path":[4,0,2,5,3],"span":[18,64,65]},{"path":[4,0,2,6],"span":[19,8,51]},{"path":[4,0,2,6,6],"span":[19,8,35]},{"path":[4,0,2,6,1],"span":[19,36,46]},{"path":[4,0,2,6,3],"span":[19,49,50]},{"path":[4,0,2,7],"span":[20,8,46]},{"path":[4,0,2,7,6],"span":[20,8,35]},{"path":[4,0,2,7,1],"span":[20,36,41]},{"path":[4,0,2,7,3],"span":[20,44,45]},{"path":[4,0,2,8],"span":[21,8,46]},{"path":[4,0,2,8,6],"span":[21,8,35]},{"path":[4,0,2,8,1],"span":[21,36,41]},{"path":[4,0,2,8,3],"span":[21,44,45]},{"path":[4,0,2,9],"span":[22,8,49]},{"path":[4,0,2,9,6],"span":[22,8,35]},{"path":[4,0,2,9,1],"span":[22,36,43]},{"path":[4,0,2,9,3],"span":[22,46,48]},{"path":[4,0,2,10],"span":[23,8,50]},{"path":[4,0,2,10,6],"span":[23,8,35]},{"path":[4,0,2,10,1],"span":[23,36,44]},{"path":[4,0,2,10,3],"span":[23,47,49]},{"path":[4,0,2,11],"span":[24,8,52]},{"path":[4,0,2,11,6],"span":[24,8,35]},{"path":[4,0,2,11,1],"span":[24,36,46]},{"path":[4,0,2,11,3],"span":[24,49,51]},{"path":[4,0,2,12],"span":[25,8,46]},{"path":[4,0,2,12,6],"span":[25,8,35]},{"path":[4,0,2,12,1],"span":[25,36,40]},{"path":[4,0,2,12,3],"span":[25,43,45]},{"path":[4,0,2,13],"span":[26,8,51]},{"path":[4,0,2,13,6],"span":[26,8,35]},{"path":[4,0,2,13,1],"span":[26,36,45]},{"path":[4,0,2,13,3],"span":[26,48,50]},{"path":[4,0,2,14],"span":[27,8,57]},{"path":[4,0,2,14,6],"span":[27,8,35]},{"path":[4,0,2,14,1],"span":[27,36,51]},{"path":[4,0,2,14,3],"span":[27,54,56]},{"path":[4,0,2,15],"span":[28,8,49]},{"path":[4,0,2,15,6],"span":[28,8,33]},{"path":[4,0,2,15,1],"span":[28,34,43]},{"path":[4,0,2,15,3],"span":[28,46,48]},{"path":[4,0,2,16],"span":[29,8,58]},{"path":[4,0,2,16,6],"span":[29,8,35]},{"path":[4,0,2,16,1],"span":[29,36,52]},{"path":[4,0,2,16,3],"span":[29,55,57]},{"path":[4,0,2,17],"span":[30,8,45]},{"path":[4,0,2,17,6],"span":[30,8,34]},{"path":[4,0,2,17,1],"span":[30,35,39]},{"path":[4,0,2,17,3],"span":[30,42,44]},{"path":[4,0,2,18],"span":[31,8,48]},{"path":[4,0,2,18,6],"span":[31,8,35]},{"path":[4,0,2,18,1],"span":[31,36,42]},{"path":[4,0,2,18,3],"span":[31,45,47]},{"path":[4,0,2,19],"span":[32,8,48]},{"path":[4,0,2,19,6],"span":[32,8,34]},{"path":[4,0,2,19,1],"span":[32,35,42]},{"path":[4,0,2,19,3],"span":[32,45,47]},{"path":[4,0,2,20],"span":[33,8,49]},{"path":[4,0,2,20,6],"span":[33,8,34]},{"path":[4,0,2,20,1],"span":[33,35,43]},{"path":[4,0,2,20,3],"span":[33,46,48]},{"path":[4,0,2,21],"span":[34,8,49]},{"path":[4,0,2,21,6],"span":[34,8,34]},{"path":[4,0,2,21,1],"span":[34,35,43]},{"path":[4,0,2,21,3],"span":[34,46,48]},{"path":[4,0,2,22],"span":[35,8,46]},{"path":[4,0,2,22,6],"span":[35,8,34]},{"path":[4,0,2,22,1],"span":[35,35,40]},{"path":[4,0,2,22,3],"span":[35,43,45]},{"path":[4,0,2,23],"span":[36,8,48]},{"path":[4,0,2,23,6],"span":[36,8,35]},{"path":[4,0,2,23,1],"span":[36,36,42]},{"path":[4,0,2,23,3],"span":[36,45,47]},{"path":[4,0,2,24],"span":[37,8,48]},{"path":[4,0,2,24,6],"span":[37,8,35]},{"path":[4,0,2,24,1],"span":[37,36,42]},{"path":[4,0,2,24,3],"span":[37,45,47]},{"path":[4,0,2,25],"span":[38,8,48]},{"path":[4,0,2,25,6],"span":[38,8,35]},{"path":[4,0,2,25,1],"span":[38,36,42]},{"path":[4,0,2,25,3],"span":[38,45,47]},{"path":[4,0,2,26],"span":[39,8,46],"trailingComments":" CDR fingerprints in a DevRecogInputDevice, as defined in data.platform\\fingerprints\\grpc\\proto\\fingerprints.proto wrapped in an Any-proto\n"},{"path":[4,0,2,26,6],"span":[39,8,27]},{"path":[4,0,2,26,1],"span":[39,28,40]},{"path":[4,0,2,26,3],"span":[39,43,45]},{"path":[4,0,2,27],"span":[40,8,32]},{"path":[4,0,2,27,4],"span":[40,8,16]},{"path":[4,0,2,27,6],"span":[40,17,21]},{"path":[4,0,2,27,1],"span":[40,22,26]},{"path":[4,0,2,27,3],"span":[40,29,31]},{"path":[4,0,2,28],"span":[41,8,58]},{"path":[4,0,2,28,6],"span":[41,8,35]},{"path":[4,0,2,28,1],"span":[41,36,52]},{"path":[4,0,2,28,3],"span":[41,55,57]},{"path":[4,1],"span":[44,0,46,1]},{"path":[4,1,1],"span":[44,8,12]},{"path":[4,1,2,0],"span":[45,2,36]},{"path":[4,1,2,0,4],"span":[45,2,10]},{"path":[4,1,2,0,6],"span":[45,11,22]},{"path":[4,1,2,0,1],"span":[45,23,31]},{"path":[4,1,2,0,3],"span":[45,34,35]},{"path":[4,2],"span":[48,0,51,1]},{"path":[4,2,1],"span":[48,8,19]},{"path":[4,2,2,0],"span":[49,2,39]},{"path":[4,2,2,0,6],"span":[49,2,19]},{"path":[4,2,2,0,1],"span":[49,20,34]},{"path":[4,2,2,0,3],"span":[49,37,38]},{"path":[4,2,2,1],"span":[50,2,39]},{"path":[4,2,2,1,6],"span":[50,2,21]},{"path":[4,2,2,1,1],"span":[50,22,34]},{"path":[4,2,2,1,3],"span":[50,37,38]},{"path":[4,3],"span":[53,0,62,1]},{"path":[4,3,1],"span":[53,8,25]},{"path":[4,3,2,0],"span":[54,2,16]},{"path":[4,3,2,0,5],"span":[54,2,7]},{"path":[4,3,2,0,1],"span":[54,8,11]},{"path":[4,3,2,0,3],"span":[54,14,15]},{"path":[4,3,2,1],"span":[55,2,18],"trailingComments":" e.g.: Windows:BasicInfo\n"},{"path":[4,3,2,1,5],"span":[55,2,8]},{"path":[4,3,2,1,1],"span":[55,9,13]},{"path":[4,3,2,1,3],"span":[55,16,17]},{"path":[4,3,2,2],"span":[56,2,41],"trailingComments":" e.g.: Wmi.Registry.WinApi\n"},{"path":[4,3,2,2,6],"span":[56,2,29]},{"path":[4,3,2,2,1],"span":[56,30,36]},{"path":[4,3,2,2,3],"span":[56,39,40]},{"path":[4,3,2,3],"span":[57,2,42]},{"path":[4,3,2,3,6],"span":[57,2,27]},{"path":[4,3,2,3,1],"span":[57,28,37]},{"path":[4,3,2,3,3],"span":[57,40,41]},{"path":[4,3,2,4],"span":[58,2,42]},{"path":[4,3,2,4,6],"span":[58,2,28]},{"path":[4,3,2,4,1],"span":[58,29,37]},{"path":[4,3,2,4,3],"span":[58,40,41]},{"path":[4,3,2,5],"span":[59,2,29]},{"path":[4,3,2,5,4],"span":[59,2,10]},{"path":[4,3,2,5,5],"span":[59,11,17]},{"path":[4,3,2,5,1],"span":[59,18,24]},{"path":[4,3,2,5,3],"span":[59,27,28]},{"path":[4,3,2,6],"span":[60,2,40]},{"path":[4,3,2,6,6],"span":[60,2,27]},{"path":[4,3,2,6,1],"span":[60,28,35]},{"path":[4,3,2,6,3],"span":[60,38,39]},{"path":[4,3,2,7],"span":[61,2,25]},{"path":[4,3,2,7,4],"span":[61,2,10]},{"path":[4,3,2,7,6],"span":[61,11,15]},{"path":[4,3,2,7,1],"span":[61,16,20]},{"path":[4,3,2,7,3],"span":[61,23,24]},{"path":[4,4],"span":[64,0,67,1]},{"path":[4,4,1],"span":[64,8,12]},{"path":[4,4,2,0],"span":[65,2,23]},{"path":[4,4,2,0,5],"span":[65,2,8]},{"path":[4,4,2,0,1],"span":[65,9,18]},{"path":[4,4,2,0,3],"span":[65,21,22]},{"path":[4,4,2,1],"span":[66,2,18]},{"path":[4,4,2,1,5],"span":[66,2,7]},{"path":[4,4,2,1,1],"span":[66,8,13]},{"path":[4,4,2,1,3],"span":[66,16,17]}]},"syntax":"proto3","bufExtension":{"isImport":false,"isSyntaxUnspecified":false}},{"name":"proto/discovery_hub.proto","package":"com.lansweeper.discovery.hub.v1","dependency":["google/protobuf/timestamp.proto","google/protobuf/any.proto","google/protobuf/wrappers.proto"],"messageType":[{"name":"Header","field":[{"name":"entity_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"entityName"},{"name":"entity_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"entityId"},{"name":"properties_changed","number":3,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"propertiesChanged"},{"name":"last_synced","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"lastSynced"},{"name":"action","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".com.lansweeper.discovery.hub.v1.Action","jsonName":"action"}]},{"name":"Entity","field":[{"name":"header","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".com.lansweeper.discovery.hub.v1.Header","jsonName":"header"},{"name":"body","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Any","jsonName":"body"}]},{"name":"EncryptedPacket","field":[{"name":"encrypted_session_key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.BytesValue","jsonName":"encryptedSessionKey"},{"name":"encrypted_data","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.BytesValue","jsonName":"encryptedData"},{"name":"initialization_vector","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.BytesValue","jsonName":"initializationVector"},{"name":"signature_hmac","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.BytesValue","jsonName":"signatureHmac"},{"name":"signature","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.BytesValue","jsonName":"signature"}]}],"enumType":[{"name":"Action","value":[{"name":"NONE","number":0},{"name":"INSERT","number":1},{"name":"UPDATE","number":2},{"name":"DELETE","number":3}]}],"options":{"javaMultipleFiles":true,"csharpNamespace":"Lansweeper.Discovery.Model.Proto.Hub"},"sourceCodeInfo":{"location":[{"span":[0,0,38,1]},{"path":[12],"span":[0,0,18]},{"path":[2],"span":[2,0,40]},{"path":[8],"span":[4,0,34]},{"path":[8,10],"span":[4,0,34]},{"path":[8],"span":[6,0,65]},{"path":[8,37],"span":[6,0,65]},{"path":[3,0],"span":[8,0,41]},{"path":[3,1],"span":[9,0,35]},{"path":[3,2],"span":[10,0,40]},{"path":[5,0],"span":[12,0,17,1]},{"path":[5,0,1],"span":[12,5,11]},{"path":[5,0,2,0],"span":[13,2,11]},{"path":[5,0,2,0,1],"span":[13,2,6]},{"path":[5,0,2,0,2],"span":[13,9,10]},{"path":[5,0,2,1],"span":[14,2,13]},{"path":[5,0,2,1,1],"span":[14,2,8]},{"path":[5,0,2,1,2],"span":[14,11,12]},{"path":[5,0,2,2],"span":[15,2,13]},{"path":[5,0,2,2,1],"span":[15,2,8]},{"path":[5,0,2,2,2],"span":[15,11,12]},{"path":[5,0,2,3],"span":[16,2,13]},{"path":[5,0,2,3,1],"span":[16,2,8]},{"path":[5,0,2,3,2],"span":[16,11,12]},{"path":[4,0],"span":[19,0,25,1]},{"path":[4,0,1],"span":[19,8,14]},{"path":[4,0,2,0],"span":[20,2,25],"trailingComments":" \"Device\"\n"},{"path":[4,0,2,0,5],"span":[20,2,8]},{"path":[4,0,2,0,1],"span":[20,9,20]},{"path":[4,0,2,0,3],"span":[20,23,24]},{"path":[4,0,2,1],"span":[21,2,23]},{"path":[4,0,2,1,5],"span":[21,2,8]},{"path":[4,0,2,1,1],"span":[21,9,18]},{"path":[4,0,2,1,3],"span":[21,21,22]},{"path":[4,0,2,2],"span":[22,2,41]},{"path":[4,0,2,2,4],"span":[22,2,10]},{"path":[4,0,2,2,5],"span":[22,11,17]},{"path":[4,0,2,2,1],"span":[22,18,36]},{"path":[4,0,2,2,3],"span":[22,39,40]},{"path":[4,0,2,3],"span":[23,2,44]},{"path":[4,0,2,3,6],"span":[23,2,27]},{"path":[4,0,2,3,1],"span":[23,28,39]},{"path":[4,0,2,3,3],"span":[23,42,43]},{"path":[4,0,2,4],"span":[24,2,20]},{"path":[4,0,2,4,6],"span":[24,2,8]},{"path":[4,0,2,4,1],"span":[24,9,15]},{"path":[4,0,2,4,3],"span":[24,18,19]},{"path":[4,1],"span":[27,0,30,1]},{"path":[4,1,1],"span":[27,8,14]},{"path":[4,1,2,0],"span":[28,4,22]},{"path":[4,1,2,0,6],"span":[28,4,10]},{"path":[4,1,2,0,1],"span":[28,11,17]},{"path":[4,1,2,0,3],"span":[28,20,21]},{"path":[4,1,2,1],"span":[29,4,33]},{"path":[4,1,2,1,6],"span":[29,4,23]},{"path":[4,1,2,1,1],"span":[29,24,28]},{"path":[4,1,2,1,3],"span":[29,31,32]},{"path":[4,2],"span":[32,0,38,1]},{"path":[4,2,1],"span":[32,8,23]},{"path":[4,2,2,0],"span":[33,2,55]},{"path":[4,2,2,0,6],"span":[33,2,28]},{"path":[4,2,2,0,1],"span":[33,29,50]},{"path":[4,2,2,0,3],"span":[33,53,54]},{"path":[4,2,2,1],"span":[34,2,48]},{"path":[4,2,2,1,6],"span":[34,2,28]},{"path":[4,2,2,1,1],"span":[34,29,43]},{"path":[4,2,2,1,3],"span":[34,46,47]},{"path":[4,2,2,2],"span":[35,2,55]},{"path":[4,2,2,2,6],"span":[35,2,28]},{"path":[4,2,2,2,1],"span":[35,29,50]},{"path":[4,2,2,2,3],"span":[35,53,54]},{"path":[4,2,2,3],"span":[36,2,48]},{"path":[4,2,2,3,6],"span":[36,2,28]},{"path":[4,2,2,3,1],"span":[36,29,43]},{"path":[4,2,2,3,3],"span":[36,46,47]},{"path":[4,2,2,4],"span":[37,2,43]},{"path":[4,2,2,4,6],"span":[37,2,28]},{"path":[4,2,2,4,1],"span":[37,29,38]},{"path":[4,2,2,4,3],"span":[37,41,42]}]},"syntax":"proto3","bufExtension":{"isImport":false,"isSyntaxUnspecified":false}}]}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lansweeper/discovery-hub-proto",
3
3
  "description": "Discovery Hub proto",
4
- "version": "2.12.0",
4
+ "version": "2.12.2",
5
5
  "main": "gen-proto/index.js",
6
6
  "types": "gen-proto/index.d.ts",
7
7
  "license": "MIT",
@@ -16,5 +16,5 @@
16
16
  "devDependencies": {
17
17
  "@types/google-protobuf": "^3.15.5"
18
18
  },
19
- "gitHead": "71ca859594d86dfbf8317d349b4c3049f9c7f03b"
19
+ "gitHead": "e6af115db23a56afabd4da5bcd62b3671c7e007a"
20
20
  }
@@ -39,6 +39,7 @@ message Device {
39
39
  google.protobuf.StringValue os_cpe = 26;
40
40
  google.protobuf.Any fingerprints = 27; // CDR fingerprints in a DevRecogInputDevice, as defined in data.platform\fingerprints\grpc\proto\fingerprints.proto wrapped in an Any-proto
41
41
  optional Scan scan = 28;
42
+ google.protobuf.StringValue scan_server_name = 29;
42
43
  }
43
44
 
44
45
  message Scan {
@@ -8,6 +8,7 @@ option csharp_namespace = "Lansweeper.Discovery.Model.Proto.Hub";
8
8
 
9
9
  import "google/protobuf/timestamp.proto";
10
10
  import "google/protobuf/any.proto";
11
+ import "google/protobuf/wrappers.proto";
11
12
 
12
13
  enum Action {
13
14
  NONE = 0;
@@ -28,3 +29,11 @@ message Entity {
28
29
  Header header = 1;
29
30
  google.protobuf.Any body = 2;
30
31
  }
32
+
33
+ message EncryptedPacket {
34
+ google.protobuf.BytesValue encrypted_session_key = 1;
35
+ google.protobuf.BytesValue encrypted_data = 2;
36
+ google.protobuf.BytesValue initialization_vector = 3;
37
+ google.protobuf.BytesValue signature_hmac = 4;
38
+ google.protobuf.BytesValue signature = 5;
39
+ }