@lansweeper/discovery-sensor-proto 2.38.1 → 2.40.0

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.
@@ -39,6 +39,16 @@ export class MacMemory extends jspb.Message {
39
39
  setEntriesList(value: Array<Memory>): MacMemory;
40
40
  addEntries(value?: Memory, index?: number): Memory;
41
41
 
42
+ hasGlobalEccState(): boolean;
43
+ clearGlobalEccState(): void;
44
+ getGlobalEccState(): google_protobuf_wrappers_pb.StringValue | undefined;
45
+ setGlobalEccState(value?: google_protobuf_wrappers_pb.StringValue): MacMemory;
46
+
47
+ hasIsMemoryUpgradeable(): boolean;
48
+ clearIsMemoryUpgradeable(): void;
49
+ getIsMemoryUpgradeable(): google_protobuf_wrappers_pb.StringValue | undefined;
50
+ setIsMemoryUpgradeable(value?: google_protobuf_wrappers_pb.StringValue): MacMemory;
51
+
42
52
  serializeBinary(): Uint8Array;
43
53
  toObject(includeInstance?: boolean): MacMemory.AsObject;
44
54
  static toObject(includeInstance: boolean, msg: MacMemory): MacMemory.AsObject;
@@ -52,6 +62,8 @@ export class MacMemory extends jspb.Message {
52
62
  export namespace MacMemory {
53
63
  export type AsObject = {
54
64
  entriesList: Array<Memory.AsObject>,
65
+ globalEccState?: google_protobuf_wrappers_pb.StringValue.AsObject,
66
+ isMemoryUpgradeable?: google_protobuf_wrappers_pb.StringValue.AsObject,
55
67
  }
56
68
  }
57
69
 
@@ -82,6 +94,21 @@ export class Memory extends jspb.Message {
82
94
  getStatus(): google_protobuf_wrappers_pb.StringValue | undefined;
83
95
  setStatus(value?: google_protobuf_wrappers_pb.StringValue): Memory;
84
96
 
97
+ hasManufacturer(): boolean;
98
+ clearManufacturer(): void;
99
+ getManufacturer(): google_protobuf_wrappers_pb.StringValue | undefined;
100
+ setManufacturer(value?: google_protobuf_wrappers_pb.StringValue): Memory;
101
+
102
+ hasPartNumber(): boolean;
103
+ clearPartNumber(): void;
104
+ getPartNumber(): google_protobuf_wrappers_pb.StringValue | undefined;
105
+ setPartNumber(value?: google_protobuf_wrappers_pb.StringValue): Memory;
106
+
107
+ hasSerialNumber(): boolean;
108
+ clearSerialNumber(): void;
109
+ getSerialNumber(): google_protobuf_wrappers_pb.StringValue | undefined;
110
+ setSerialNumber(value?: google_protobuf_wrappers_pb.StringValue): Memory;
111
+
85
112
  serializeBinary(): Uint8Array;
86
113
  toObject(includeInstance?: boolean): Memory.AsObject;
87
114
  static toObject(includeInstance: boolean, msg: Memory): Memory.AsObject;
@@ -99,6 +126,9 @@ export namespace Memory {
99
126
  speed?: google_protobuf_wrappers_pb.StringValue.AsObject,
100
127
  type?: google_protobuf_wrappers_pb.StringValue.AsObject,
101
128
  status?: google_protobuf_wrappers_pb.StringValue.AsObject,
129
+ manufacturer?: google_protobuf_wrappers_pb.StringValue.AsObject,
130
+ partNumber?: google_protobuf_wrappers_pb.StringValue.AsObject,
131
+ serialNumber?: google_protobuf_wrappers_pb.StringValue.AsObject,
102
132
  }
103
133
  }
104
134
 
@@ -671,6 +701,20 @@ export class NetworkIpv6 extends jspb.Message {
671
701
  setSubnetMasksList(value: Array<string>): NetworkIpv6;
672
702
  addSubnetMasks(value: string, index?: number): string;
673
703
 
704
+ hasConfirmedInterfaceName(): boolean;
705
+ clearConfirmedInterfaceName(): void;
706
+ getConfirmedInterfaceName(): google_protobuf_wrappers_pb.StringValue | undefined;
707
+ setConfirmedInterfaceName(value?: google_protobuf_wrappers_pb.StringValue): NetworkIpv6;
708
+
709
+ hasNetworkSignature(): boolean;
710
+ clearNetworkSignature(): void;
711
+ getNetworkSignature(): google_protobuf_wrappers_pb.StringValue | undefined;
712
+ setNetworkSignature(value?: google_protobuf_wrappers_pb.StringValue): NetworkIpv6;
713
+ clearPrefixLengthList(): void;
714
+ getPrefixLengthList(): Array<string>;
715
+ setPrefixLengthList(value: Array<string>): NetworkIpv6;
716
+ addPrefixLength(value: string, index?: number): string;
717
+
674
718
  serializeBinary(): Uint8Array;
675
719
  toObject(includeInstance?: boolean): NetworkIpv6.AsObject;
676
720
  static toObject(includeInstance: boolean, msg: NetworkIpv6): NetworkIpv6.AsObject;
@@ -688,6 +732,9 @@ export namespace NetworkIpv6 {
688
732
  router?: google_protobuf_wrappers_pb.StringValue.AsObject,
689
733
  addressesList: Array<string>,
690
734
  subnetMasksList: Array<string>,
735
+ confirmedInterfaceName?: google_protobuf_wrappers_pb.StringValue.AsObject,
736
+ networkSignature?: google_protobuf_wrappers_pb.StringValue.AsObject,
737
+ prefixLengthList: Array<string>,
691
738
  }
692
739
  }
693
740
 
@@ -701,6 +748,10 @@ export class NetworkDns extends jspb.Message {
701
748
  getServerAddressesList(): Array<string>;
702
749
  setServerAddressesList(value: Array<string>): NetworkDns;
703
750
  addServerAddresses(value: string, index?: number): string;
751
+ clearSearchDomainsList(): void;
752
+ getSearchDomainsList(): Array<string>;
753
+ setSearchDomainsList(value: Array<string>): NetworkDns;
754
+ addSearchDomains(value: string, index?: number): string;
704
755
 
705
756
  serializeBinary(): Uint8Array;
706
757
  toObject(includeInstance?: boolean): NetworkDns.AsObject;
@@ -716,6 +767,7 @@ export namespace NetworkDns {
716
767
  export type AsObject = {
717
768
  domainName?: google_protobuf_wrappers_pb.StringValue.AsObject,
718
769
  serverAddressesList: Array<string>,
770
+ searchDomainsList: Array<string>,
719
771
  }
720
772
  }
721
773
 
@@ -1219,7 +1219,9 @@ proto.com.lansweeper.discovery.sensor.mac.v1.MacMemory.prototype.toObject = func
1219
1219
  proto.com.lansweeper.discovery.sensor.mac.v1.MacMemory.toObject = function(includeInstance, msg) {
1220
1220
  var f, obj = {
1221
1221
  entriesList: jspb.Message.toObjectList(msg.getEntriesList(),
1222
- proto.com.lansweeper.discovery.sensor.mac.v1.Memory.toObject, includeInstance)
1222
+ proto.com.lansweeper.discovery.sensor.mac.v1.Memory.toObject, includeInstance),
1223
+ globalEccState: (f = msg.getGlobalEccState()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
1224
+ isMemoryUpgradeable: (f = msg.getIsMemoryUpgradeable()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f)
1223
1225
  };
1224
1226
 
1225
1227
  if (includeInstance) {
@@ -1261,6 +1263,16 @@ proto.com.lansweeper.discovery.sensor.mac.v1.MacMemory.deserializeBinaryFromRead
1261
1263
  reader.readMessage(value,proto.com.lansweeper.discovery.sensor.mac.v1.Memory.deserializeBinaryFromReader);
1262
1264
  msg.addEntries(value);
1263
1265
  break;
1266
+ case 2:
1267
+ var value = new google_protobuf_wrappers_pb.StringValue;
1268
+ reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
1269
+ msg.setGlobalEccState(value);
1270
+ break;
1271
+ case 3:
1272
+ var value = new google_protobuf_wrappers_pb.StringValue;
1273
+ reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
1274
+ msg.setIsMemoryUpgradeable(value);
1275
+ break;
1264
1276
  default:
1265
1277
  reader.skipField();
1266
1278
  break;
@@ -1298,6 +1310,22 @@ proto.com.lansweeper.discovery.sensor.mac.v1.MacMemory.serializeBinaryToWriter =
1298
1310
  proto.com.lansweeper.discovery.sensor.mac.v1.Memory.serializeBinaryToWriter
1299
1311
  );
1300
1312
  }
1313
+ f = message.getGlobalEccState();
1314
+ if (f != null) {
1315
+ writer.writeMessage(
1316
+ 2,
1317
+ f,
1318
+ google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
1319
+ );
1320
+ }
1321
+ f = message.getIsMemoryUpgradeable();
1322
+ if (f != null) {
1323
+ writer.writeMessage(
1324
+ 3,
1325
+ f,
1326
+ google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
1327
+ );
1328
+ }
1301
1329
  };
1302
1330
 
1303
1331
 
@@ -1339,6 +1367,80 @@ proto.com.lansweeper.discovery.sensor.mac.v1.MacMemory.prototype.clearEntriesLis
1339
1367
  };
1340
1368
 
1341
1369
 
1370
+ /**
1371
+ * optional google.protobuf.StringValue global_ecc_state = 2;
1372
+ * @return {?proto.google.protobuf.StringValue}
1373
+ */
1374
+ proto.com.lansweeper.discovery.sensor.mac.v1.MacMemory.prototype.getGlobalEccState = function() {
1375
+ return /** @type{?proto.google.protobuf.StringValue} */ (
1376
+ jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 2));
1377
+ };
1378
+
1379
+
1380
+ /**
1381
+ * @param {?proto.google.protobuf.StringValue|undefined} value
1382
+ * @return {!proto.com.lansweeper.discovery.sensor.mac.v1.MacMemory} returns this
1383
+ */
1384
+ proto.com.lansweeper.discovery.sensor.mac.v1.MacMemory.prototype.setGlobalEccState = function(value) {
1385
+ return jspb.Message.setWrapperField(this, 2, value);
1386
+ };
1387
+
1388
+
1389
+ /**
1390
+ * Clears the message field making it undefined.
1391
+ * @return {!proto.com.lansweeper.discovery.sensor.mac.v1.MacMemory} returns this
1392
+ */
1393
+ proto.com.lansweeper.discovery.sensor.mac.v1.MacMemory.prototype.clearGlobalEccState = function() {
1394
+ return this.setGlobalEccState(undefined);
1395
+ };
1396
+
1397
+
1398
+ /**
1399
+ * Returns whether this field is set.
1400
+ * @return {boolean}
1401
+ */
1402
+ proto.com.lansweeper.discovery.sensor.mac.v1.MacMemory.prototype.hasGlobalEccState = function() {
1403
+ return jspb.Message.getField(this, 2) != null;
1404
+ };
1405
+
1406
+
1407
+ /**
1408
+ * optional google.protobuf.StringValue is_memory_upgradeable = 3;
1409
+ * @return {?proto.google.protobuf.StringValue}
1410
+ */
1411
+ proto.com.lansweeper.discovery.sensor.mac.v1.MacMemory.prototype.getIsMemoryUpgradeable = function() {
1412
+ return /** @type{?proto.google.protobuf.StringValue} */ (
1413
+ jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 3));
1414
+ };
1415
+
1416
+
1417
+ /**
1418
+ * @param {?proto.google.protobuf.StringValue|undefined} value
1419
+ * @return {!proto.com.lansweeper.discovery.sensor.mac.v1.MacMemory} returns this
1420
+ */
1421
+ proto.com.lansweeper.discovery.sensor.mac.v1.MacMemory.prototype.setIsMemoryUpgradeable = function(value) {
1422
+ return jspb.Message.setWrapperField(this, 3, value);
1423
+ };
1424
+
1425
+
1426
+ /**
1427
+ * Clears the message field making it undefined.
1428
+ * @return {!proto.com.lansweeper.discovery.sensor.mac.v1.MacMemory} returns this
1429
+ */
1430
+ proto.com.lansweeper.discovery.sensor.mac.v1.MacMemory.prototype.clearIsMemoryUpgradeable = function() {
1431
+ return this.setIsMemoryUpgradeable(undefined);
1432
+ };
1433
+
1434
+
1435
+ /**
1436
+ * Returns whether this field is set.
1437
+ * @return {boolean}
1438
+ */
1439
+ proto.com.lansweeper.discovery.sensor.mac.v1.MacMemory.prototype.hasIsMemoryUpgradeable = function() {
1440
+ return jspb.Message.getField(this, 3) != null;
1441
+ };
1442
+
1443
+
1342
1444
 
1343
1445
 
1344
1446
 
@@ -1375,7 +1477,10 @@ proto.com.lansweeper.discovery.sensor.mac.v1.Memory.toObject = function(includeI
1375
1477
  size: (f = msg.getSize()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
1376
1478
  speed: (f = msg.getSpeed()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
1377
1479
  type: (f = msg.getType()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
1378
- status: (f = msg.getStatus()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f)
1480
+ status: (f = msg.getStatus()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
1481
+ manufacturer: (f = msg.getManufacturer()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
1482
+ partNumber: (f = msg.getPartNumber()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
1483
+ serialNumber: (f = msg.getSerialNumber()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f)
1379
1484
  };
1380
1485
 
1381
1486
  if (includeInstance) {
@@ -1437,6 +1542,21 @@ proto.com.lansweeper.discovery.sensor.mac.v1.Memory.deserializeBinaryFromReader
1437
1542
  reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
1438
1543
  msg.setStatus(value);
1439
1544
  break;
1545
+ case 6:
1546
+ var value = new google_protobuf_wrappers_pb.StringValue;
1547
+ reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
1548
+ msg.setManufacturer(value);
1549
+ break;
1550
+ case 7:
1551
+ var value = new google_protobuf_wrappers_pb.StringValue;
1552
+ reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
1553
+ msg.setPartNumber(value);
1554
+ break;
1555
+ case 8:
1556
+ var value = new google_protobuf_wrappers_pb.StringValue;
1557
+ reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
1558
+ msg.setSerialNumber(value);
1559
+ break;
1440
1560
  default:
1441
1561
  reader.skipField();
1442
1562
  break;
@@ -1506,6 +1626,30 @@ proto.com.lansweeper.discovery.sensor.mac.v1.Memory.serializeBinaryToWriter = fu
1506
1626
  google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
1507
1627
  );
1508
1628
  }
1629
+ f = message.getManufacturer();
1630
+ if (f != null) {
1631
+ writer.writeMessage(
1632
+ 6,
1633
+ f,
1634
+ google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
1635
+ );
1636
+ }
1637
+ f = message.getPartNumber();
1638
+ if (f != null) {
1639
+ writer.writeMessage(
1640
+ 7,
1641
+ f,
1642
+ google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
1643
+ );
1644
+ }
1645
+ f = message.getSerialNumber();
1646
+ if (f != null) {
1647
+ writer.writeMessage(
1648
+ 8,
1649
+ f,
1650
+ google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
1651
+ );
1652
+ }
1509
1653
  };
1510
1654
 
1511
1655
 
@@ -1694,6 +1838,117 @@ proto.com.lansweeper.discovery.sensor.mac.v1.Memory.prototype.hasStatus = functi
1694
1838
  };
1695
1839
 
1696
1840
 
1841
+ /**
1842
+ * optional google.protobuf.StringValue manufacturer = 6;
1843
+ * @return {?proto.google.protobuf.StringValue}
1844
+ */
1845
+ proto.com.lansweeper.discovery.sensor.mac.v1.Memory.prototype.getManufacturer = function() {
1846
+ return /** @type{?proto.google.protobuf.StringValue} */ (
1847
+ jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 6));
1848
+ };
1849
+
1850
+
1851
+ /**
1852
+ * @param {?proto.google.protobuf.StringValue|undefined} value
1853
+ * @return {!proto.com.lansweeper.discovery.sensor.mac.v1.Memory} returns this
1854
+ */
1855
+ proto.com.lansweeper.discovery.sensor.mac.v1.Memory.prototype.setManufacturer = function(value) {
1856
+ return jspb.Message.setWrapperField(this, 6, value);
1857
+ };
1858
+
1859
+
1860
+ /**
1861
+ * Clears the message field making it undefined.
1862
+ * @return {!proto.com.lansweeper.discovery.sensor.mac.v1.Memory} returns this
1863
+ */
1864
+ proto.com.lansweeper.discovery.sensor.mac.v1.Memory.prototype.clearManufacturer = function() {
1865
+ return this.setManufacturer(undefined);
1866
+ };
1867
+
1868
+
1869
+ /**
1870
+ * Returns whether this field is set.
1871
+ * @return {boolean}
1872
+ */
1873
+ proto.com.lansweeper.discovery.sensor.mac.v1.Memory.prototype.hasManufacturer = function() {
1874
+ return jspb.Message.getField(this, 6) != null;
1875
+ };
1876
+
1877
+
1878
+ /**
1879
+ * optional google.protobuf.StringValue part_number = 7;
1880
+ * @return {?proto.google.protobuf.StringValue}
1881
+ */
1882
+ proto.com.lansweeper.discovery.sensor.mac.v1.Memory.prototype.getPartNumber = function() {
1883
+ return /** @type{?proto.google.protobuf.StringValue} */ (
1884
+ jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 7));
1885
+ };
1886
+
1887
+
1888
+ /**
1889
+ * @param {?proto.google.protobuf.StringValue|undefined} value
1890
+ * @return {!proto.com.lansweeper.discovery.sensor.mac.v1.Memory} returns this
1891
+ */
1892
+ proto.com.lansweeper.discovery.sensor.mac.v1.Memory.prototype.setPartNumber = function(value) {
1893
+ return jspb.Message.setWrapperField(this, 7, value);
1894
+ };
1895
+
1896
+
1897
+ /**
1898
+ * Clears the message field making it undefined.
1899
+ * @return {!proto.com.lansweeper.discovery.sensor.mac.v1.Memory} returns this
1900
+ */
1901
+ proto.com.lansweeper.discovery.sensor.mac.v1.Memory.prototype.clearPartNumber = function() {
1902
+ return this.setPartNumber(undefined);
1903
+ };
1904
+
1905
+
1906
+ /**
1907
+ * Returns whether this field is set.
1908
+ * @return {boolean}
1909
+ */
1910
+ proto.com.lansweeper.discovery.sensor.mac.v1.Memory.prototype.hasPartNumber = function() {
1911
+ return jspb.Message.getField(this, 7) != null;
1912
+ };
1913
+
1914
+
1915
+ /**
1916
+ * optional google.protobuf.StringValue serial_number = 8;
1917
+ * @return {?proto.google.protobuf.StringValue}
1918
+ */
1919
+ proto.com.lansweeper.discovery.sensor.mac.v1.Memory.prototype.getSerialNumber = function() {
1920
+ return /** @type{?proto.google.protobuf.StringValue} */ (
1921
+ jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 8));
1922
+ };
1923
+
1924
+
1925
+ /**
1926
+ * @param {?proto.google.protobuf.StringValue|undefined} value
1927
+ * @return {!proto.com.lansweeper.discovery.sensor.mac.v1.Memory} returns this
1928
+ */
1929
+ proto.com.lansweeper.discovery.sensor.mac.v1.Memory.prototype.setSerialNumber = function(value) {
1930
+ return jspb.Message.setWrapperField(this, 8, value);
1931
+ };
1932
+
1933
+
1934
+ /**
1935
+ * Clears the message field making it undefined.
1936
+ * @return {!proto.com.lansweeper.discovery.sensor.mac.v1.Memory} returns this
1937
+ */
1938
+ proto.com.lansweeper.discovery.sensor.mac.v1.Memory.prototype.clearSerialNumber = function() {
1939
+ return this.setSerialNumber(undefined);
1940
+ };
1941
+
1942
+
1943
+ /**
1944
+ * Returns whether this field is set.
1945
+ * @return {boolean}
1946
+ */
1947
+ proto.com.lansweeper.discovery.sensor.mac.v1.Memory.prototype.hasSerialNumber = function() {
1948
+ return jspb.Message.getField(this, 8) != null;
1949
+ };
1950
+
1951
+
1697
1952
 
1698
1953
  /**
1699
1954
  * List of repeated fields within this message type.
@@ -6017,7 +6272,7 @@ proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv4AdditionalRoutes.prototy
6017
6272
  * @private {!Array<number>}
6018
6273
  * @const
6019
6274
  */
6020
- proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6.repeatedFields_ = [4,5];
6275
+ proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6.repeatedFields_ = [4,5,8];
6021
6276
 
6022
6277
 
6023
6278
 
@@ -6054,7 +6309,10 @@ proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6.toObject = function(inc
6054
6309
  interfaceName: (f = msg.getInterfaceName()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
6055
6310
  router: (f = msg.getRouter()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
6056
6311
  addressesList: (f = jspb.Message.getRepeatedField(msg, 4)) == null ? undefined : f,
6057
- subnetMasksList: (f = jspb.Message.getRepeatedField(msg, 5)) == null ? undefined : f
6312
+ subnetMasksList: (f = jspb.Message.getRepeatedField(msg, 5)) == null ? undefined : f,
6313
+ confirmedInterfaceName: (f = msg.getConfirmedInterfaceName()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
6314
+ networkSignature: (f = msg.getNetworkSignature()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
6315
+ prefixLengthList: (f = jspb.Message.getRepeatedField(msg, 8)) == null ? undefined : f
6058
6316
  };
6059
6317
 
6060
6318
  if (includeInstance) {
@@ -6114,6 +6372,20 @@ proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6.deserializeBinaryFromRe
6114
6372
  var value = /** @type {string} */ (reader.readString());
6115
6373
  msg.addSubnetMasks(value);
6116
6374
  break;
6375
+ case 6:
6376
+ var value = new google_protobuf_wrappers_pb.StringValue;
6377
+ reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
6378
+ msg.setConfirmedInterfaceName(value);
6379
+ break;
6380
+ case 7:
6381
+ var value = new google_protobuf_wrappers_pb.StringValue;
6382
+ reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
6383
+ msg.setNetworkSignature(value);
6384
+ break;
6385
+ case 8:
6386
+ var value = /** @type {string} */ (reader.readString());
6387
+ msg.addPrefixLength(value);
6388
+ break;
6117
6389
  default:
6118
6390
  reader.skipField();
6119
6391
  break;
@@ -6181,6 +6453,29 @@ proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6.serializeBinaryToWriter
6181
6453
  f
6182
6454
  );
6183
6455
  }
6456
+ f = message.getConfirmedInterfaceName();
6457
+ if (f != null) {
6458
+ writer.writeMessage(
6459
+ 6,
6460
+ f,
6461
+ google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
6462
+ );
6463
+ }
6464
+ f = message.getNetworkSignature();
6465
+ if (f != null) {
6466
+ writer.writeMessage(
6467
+ 7,
6468
+ f,
6469
+ google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
6470
+ );
6471
+ }
6472
+ f = message.getPrefixLengthList();
6473
+ if (f.length > 0) {
6474
+ writer.writeRepeatedString(
6475
+ 8,
6476
+ f
6477
+ );
6478
+ }
6184
6479
  };
6185
6480
 
6186
6481
 
@@ -6369,13 +6664,124 @@ proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6.prototype.clearSubnetMa
6369
6664
  };
6370
6665
 
6371
6666
 
6667
+ /**
6668
+ * optional google.protobuf.StringValue confirmed_interface_name = 6;
6669
+ * @return {?proto.google.protobuf.StringValue}
6670
+ */
6671
+ proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6.prototype.getConfirmedInterfaceName = function() {
6672
+ return /** @type{?proto.google.protobuf.StringValue} */ (
6673
+ jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 6));
6674
+ };
6675
+
6676
+
6677
+ /**
6678
+ * @param {?proto.google.protobuf.StringValue|undefined} value
6679
+ * @return {!proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6} returns this
6680
+ */
6681
+ proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6.prototype.setConfirmedInterfaceName = function(value) {
6682
+ return jspb.Message.setWrapperField(this, 6, value);
6683
+ };
6684
+
6685
+
6686
+ /**
6687
+ * Clears the message field making it undefined.
6688
+ * @return {!proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6} returns this
6689
+ */
6690
+ proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6.prototype.clearConfirmedInterfaceName = function() {
6691
+ return this.setConfirmedInterfaceName(undefined);
6692
+ };
6693
+
6694
+
6695
+ /**
6696
+ * Returns whether this field is set.
6697
+ * @return {boolean}
6698
+ */
6699
+ proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6.prototype.hasConfirmedInterfaceName = function() {
6700
+ return jspb.Message.getField(this, 6) != null;
6701
+ };
6702
+
6703
+
6704
+ /**
6705
+ * optional google.protobuf.StringValue network_signature = 7;
6706
+ * @return {?proto.google.protobuf.StringValue}
6707
+ */
6708
+ proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6.prototype.getNetworkSignature = function() {
6709
+ return /** @type{?proto.google.protobuf.StringValue} */ (
6710
+ jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 7));
6711
+ };
6712
+
6713
+
6714
+ /**
6715
+ * @param {?proto.google.protobuf.StringValue|undefined} value
6716
+ * @return {!proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6} returns this
6717
+ */
6718
+ proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6.prototype.setNetworkSignature = function(value) {
6719
+ return jspb.Message.setWrapperField(this, 7, value);
6720
+ };
6721
+
6722
+
6723
+ /**
6724
+ * Clears the message field making it undefined.
6725
+ * @return {!proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6} returns this
6726
+ */
6727
+ proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6.prototype.clearNetworkSignature = function() {
6728
+ return this.setNetworkSignature(undefined);
6729
+ };
6730
+
6731
+
6732
+ /**
6733
+ * Returns whether this field is set.
6734
+ * @return {boolean}
6735
+ */
6736
+ proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6.prototype.hasNetworkSignature = function() {
6737
+ return jspb.Message.getField(this, 7) != null;
6738
+ };
6739
+
6740
+
6741
+ /**
6742
+ * repeated string prefix_length = 8;
6743
+ * @return {!Array<string>}
6744
+ */
6745
+ proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6.prototype.getPrefixLengthList = function() {
6746
+ return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 8));
6747
+ };
6748
+
6749
+
6750
+ /**
6751
+ * @param {!Array<string>} value
6752
+ * @return {!proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6} returns this
6753
+ */
6754
+ proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6.prototype.setPrefixLengthList = function(value) {
6755
+ return jspb.Message.setField(this, 8, value || []);
6756
+ };
6757
+
6758
+
6759
+ /**
6760
+ * @param {string} value
6761
+ * @param {number=} opt_index
6762
+ * @return {!proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6} returns this
6763
+ */
6764
+ proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6.prototype.addPrefixLength = function(value, opt_index) {
6765
+ return jspb.Message.addToRepeatedField(this, 8, value, opt_index);
6766
+ };
6767
+
6768
+
6769
+ /**
6770
+ * Clears the list making it empty but non-null.
6771
+ * @return {!proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6} returns this
6772
+ */
6773
+ proto.com.lansweeper.discovery.sensor.mac.v1.NetworkIpv6.prototype.clearPrefixLengthList = function() {
6774
+ return this.setPrefixLengthList([]);
6775
+ };
6776
+
6777
+
6372
6778
 
6373
6779
  /**
6374
6780
  * List of repeated fields within this message type.
6375
6781
  * @private {!Array<number>}
6376
6782
  * @const
6377
6783
  */
6378
- proto.com.lansweeper.discovery.sensor.mac.v1.NetworkDns.repeatedFields_ = [2];
6784
+ proto.com.lansweeper.discovery.sensor.mac.v1.NetworkDns.repeatedFields_ = [2,3];
6379
6785
 
6380
6786
 
6381
6787
 
@@ -6409,7 +6815,8 @@ proto.com.lansweeper.discovery.sensor.mac.v1.NetworkDns.prototype.toObject = fun
6409
6815
  proto.com.lansweeper.discovery.sensor.mac.v1.NetworkDns.toObject = function(includeInstance, msg) {
6410
6816
  var f, obj = {
6411
6817
  domainName: (f = msg.getDomainName()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
6412
- serverAddressesList: (f = jspb.Message.getRepeatedField(msg, 2)) == null ? undefined : f
6818
+ serverAddressesList: (f = jspb.Message.getRepeatedField(msg, 2)) == null ? undefined : f,
6819
+ searchDomainsList: (f = jspb.Message.getRepeatedField(msg, 3)) == null ? undefined : f
6413
6820
  };
6414
6821
 
6415
6822
  if (includeInstance) {
@@ -6455,6 +6862,10 @@ proto.com.lansweeper.discovery.sensor.mac.v1.NetworkDns.deserializeBinaryFromRea
6455
6862
  var value = /** @type {string} */ (reader.readString());
6456
6863
  msg.addServerAddresses(value);
6457
6864
  break;
6865
+ case 3:
6866
+ var value = /** @type {string} */ (reader.readString());
6867
+ msg.addSearchDomains(value);
6868
+ break;
6458
6869
  default:
6459
6870
  reader.skipField();
6460
6871
  break;
@@ -6499,6 +6910,13 @@ proto.com.lansweeper.discovery.sensor.mac.v1.NetworkDns.serializeBinaryToWriter
6499
6910
  f
6500
6911
  );
6501
6912
  }
6913
+ f = message.getSearchDomainsList();
6914
+ if (f.length > 0) {
6915
+ writer.writeRepeatedString(
6916
+ 3,
6917
+ f
6918
+ );
6919
+ }
6502
6920
  };
6503
6921
 
6504
6922
 
@@ -6576,6 +6994,43 @@ proto.com.lansweeper.discovery.sensor.mac.v1.NetworkDns.prototype.clearServerAdd
6576
6994
  };
6577
6995
 
6578
6996
 
6997
+ /**
6998
+ * repeated string search_domains = 3;
6999
+ * @return {!Array<string>}
7000
+ */
7001
+ proto.com.lansweeper.discovery.sensor.mac.v1.NetworkDns.prototype.getSearchDomainsList = function() {
7002
+ return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 3));
7003
+ };
7004
+
7005
+
7006
+ /**
7007
+ * @param {!Array<string>} value
7008
+ * @return {!proto.com.lansweeper.discovery.sensor.mac.v1.NetworkDns} returns this
7009
+ */
7010
+ proto.com.lansweeper.discovery.sensor.mac.v1.NetworkDns.prototype.setSearchDomainsList = function(value) {
7011
+ return jspb.Message.setField(this, 3, value || []);
7012
+ };
7013
+
7014
+
7015
+ /**
7016
+ * @param {string} value
7017
+ * @param {number=} opt_index
7018
+ * @return {!proto.com.lansweeper.discovery.sensor.mac.v1.NetworkDns} returns this
7019
+ */
7020
+ proto.com.lansweeper.discovery.sensor.mac.v1.NetworkDns.prototype.addSearchDomains = function(value, opt_index) {
7021
+ return jspb.Message.addToRepeatedField(this, 3, value, opt_index);
7022
+ };
7023
+
7024
+
7025
+ /**
7026
+ * Clears the list making it empty but non-null.
7027
+ * @return {!proto.com.lansweeper.discovery.sensor.mac.v1.NetworkDns} returns this
7028
+ */
7029
+ proto.com.lansweeper.discovery.sensor.mac.v1.NetworkDns.prototype.clearSearchDomainsList = function() {
7030
+ return this.setSearchDomainsList([]);
7031
+ };
7032
+
7033
+
6579
7034
 
6580
7035
  /**
6581
7036
  * List of repeated fields within this message type.