@lansweeper/discovery-sensor-proto 2.35.3 → 2.35.5

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.
@@ -264,6 +264,11 @@ export class ModuleData extends jspb.Message {
264
264
  setFirmwareHistoryList(value: Array<FirmwareHistory>): ModuleData;
265
265
  addFirmwareHistory(value?: FirmwareHistory, index?: number): FirmwareHistory;
266
266
 
267
+ hasRoutePath(): boolean;
268
+ clearRoutePath(): void;
269
+ getRoutePath(): google_protobuf_wrappers_pb.StringValue | undefined;
270
+ setRoutePath(value?: google_protobuf_wrappers_pb.StringValue): ModuleData;
271
+
267
272
  serializeBinary(): Uint8Array;
268
273
  toObject(includeInstance?: boolean): ModuleData.AsObject;
269
274
  static toObject(includeInstance: boolean, msg: ModuleData): ModuleData.AsObject;
@@ -289,6 +294,7 @@ export namespace ModuleData {
289
294
  extendedInformationList: Array<ModuleExtendedInformation.AsObject>,
290
295
  busConfigList: Array<BusConfig.AsObject>,
291
296
  firmwareHistoryList: Array<FirmwareHistory.AsObject>,
297
+ routePath?: google_protobuf_wrappers_pb.StringValue.AsObject,
292
298
  }
293
299
  }
294
300
 
@@ -1849,7 +1849,8 @@ proto.com.lansweeper.discovery.sensor.ot.v1.ModuleData.toObject = function(inclu
1849
1849
  busConfigList: jspb.Message.toObjectList(msg.getBusConfigList(),
1850
1850
  proto.com.lansweeper.discovery.sensor.ot.v1.BusConfig.toObject, includeInstance),
1851
1851
  firmwareHistoryList: jspb.Message.toObjectList(msg.getFirmwareHistoryList(),
1852
- proto.com.lansweeper.discovery.sensor.ot.v1.FirmwareHistory.toObject, includeInstance)
1852
+ proto.com.lansweeper.discovery.sensor.ot.v1.FirmwareHistory.toObject, includeInstance),
1853
+ routePath: (f = msg.getRoutePath()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f)
1853
1854
  };
1854
1855
 
1855
1856
  if (includeInstance) {
@@ -1950,6 +1951,11 @@ proto.com.lansweeper.discovery.sensor.ot.v1.ModuleData.deserializeBinaryFromRead
1950
1951
  reader.readMessage(value,proto.com.lansweeper.discovery.sensor.ot.v1.FirmwareHistory.deserializeBinaryFromReader);
1951
1952
  msg.addFirmwareHistory(value);
1952
1953
  break;
1954
+ case 14:
1955
+ var value = new google_protobuf_wrappers_pb.StringValue;
1956
+ reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
1957
+ msg.setRoutePath(value);
1958
+ break;
1953
1959
  default:
1954
1960
  reader.skipField();
1955
1961
  break;
@@ -2082,6 +2088,14 @@ proto.com.lansweeper.discovery.sensor.ot.v1.ModuleData.serializeBinaryToWriter =
2082
2088
  proto.com.lansweeper.discovery.sensor.ot.v1.FirmwareHistory.serializeBinaryToWriter
2083
2089
  );
2084
2090
  }
2091
+ f = message.getRoutePath();
2092
+ if (f != null) {
2093
+ writer.writeMessage(
2094
+ 14,
2095
+ f,
2096
+ google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
2097
+ );
2098
+ }
2085
2099
  };
2086
2100
 
2087
2101
 
@@ -2550,6 +2564,43 @@ proto.com.lansweeper.discovery.sensor.ot.v1.ModuleData.prototype.clearFirmwareHi
2550
2564
  };
2551
2565
 
2552
2566
 
2567
+ /**
2568
+ * optional google.protobuf.StringValue route_path = 14;
2569
+ * @return {?proto.google.protobuf.StringValue}
2570
+ */
2571
+ proto.com.lansweeper.discovery.sensor.ot.v1.ModuleData.prototype.getRoutePath = function() {
2572
+ return /** @type{?proto.google.protobuf.StringValue} */ (
2573
+ jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 14));
2574
+ };
2575
+
2576
+
2577
+ /**
2578
+ * @param {?proto.google.protobuf.StringValue|undefined} value
2579
+ * @return {!proto.com.lansweeper.discovery.sensor.ot.v1.ModuleData} returns this
2580
+ */
2581
+ proto.com.lansweeper.discovery.sensor.ot.v1.ModuleData.prototype.setRoutePath = function(value) {
2582
+ return jspb.Message.setWrapperField(this, 14, value);
2583
+ };
2584
+
2585
+
2586
+ /**
2587
+ * Clears the message field making it undefined.
2588
+ * @return {!proto.com.lansweeper.discovery.sensor.ot.v1.ModuleData} returns this
2589
+ */
2590
+ proto.com.lansweeper.discovery.sensor.ot.v1.ModuleData.prototype.clearRoutePath = function() {
2591
+ return this.setRoutePath(undefined);
2592
+ };
2593
+
2594
+
2595
+ /**
2596
+ * Returns whether this field is set.
2597
+ * @return {boolean}
2598
+ */
2599
+ proto.com.lansweeper.discovery.sensor.ot.v1.ModuleData.prototype.hasRoutePath = function() {
2600
+ return jspb.Message.getField(this, 14) != null;
2601
+ };
2602
+
2603
+
2553
2604
 
2554
2605
 
2555
2606
 
@@ -6922,6 +6922,11 @@ export class ProcessorPerformance extends jspb.Message {
6922
6922
  getPercentProcessorTime(): google_protobuf_wrappers_pb.UInt64Value | undefined;
6923
6923
  setPercentProcessorTime(value?: google_protobuf_wrappers_pb.UInt64Value): ProcessorPerformance;
6924
6924
 
6925
+ hasName(): boolean;
6926
+ clearName(): void;
6927
+ getName(): google_protobuf_wrappers_pb.StringValue | undefined;
6928
+ setName(value?: google_protobuf_wrappers_pb.StringValue): ProcessorPerformance;
6929
+
6925
6930
  serializeBinary(): Uint8Array;
6926
6931
  toObject(includeInstance?: boolean): ProcessorPerformance.AsObject;
6927
6932
  static toObject(includeInstance: boolean, msg: ProcessorPerformance): ProcessorPerformance.AsObject;
@@ -6935,6 +6940,7 @@ export class ProcessorPerformance extends jspb.Message {
6935
6940
  export namespace ProcessorPerformance {
6936
6941
  export type AsObject = {
6937
6942
  percentProcessorTime?: google_protobuf_wrappers_pb.UInt64Value.AsObject,
6943
+ name?: google_protobuf_wrappers_pb.StringValue.AsObject,
6938
6944
  }
6939
6945
  }
6940
6946
 
@@ -6955,6 +6961,11 @@ export class DiskPerformance extends jspb.Message {
6955
6961
  getDiskWritesPerSec(): google_protobuf_wrappers_pb.UInt32Value | undefined;
6956
6962
  setDiskWritesPerSec(value?: google_protobuf_wrappers_pb.UInt32Value): DiskPerformance;
6957
6963
 
6964
+ hasName(): boolean;
6965
+ clearName(): void;
6966
+ getName(): google_protobuf_wrappers_pb.StringValue | undefined;
6967
+ setName(value?: google_protobuf_wrappers_pb.StringValue): DiskPerformance;
6968
+
6958
6969
  serializeBinary(): Uint8Array;
6959
6970
  toObject(includeInstance?: boolean): DiskPerformance.AsObject;
6960
6971
  static toObject(includeInstance: boolean, msg: DiskPerformance): DiskPerformance.AsObject;
@@ -6970,6 +6981,7 @@ export namespace DiskPerformance {
6970
6981
  diskReadsPerSec?: google_protobuf_wrappers_pb.UInt32Value.AsObject,
6971
6982
  diskTransfersPerSec?: google_protobuf_wrappers_pb.UInt32Value.AsObject,
6972
6983
  diskWritesPerSec?: google_protobuf_wrappers_pb.UInt32Value.AsObject,
6984
+ name?: google_protobuf_wrappers_pb.StringValue.AsObject,
6973
6985
  }
6974
6986
  }
6975
6987
 
@@ -58386,7 +58386,8 @@ proto.com.lansweeper.discovery.sensor.windows.v1.ProcessorPerformance.prototype.
58386
58386
  */
58387
58387
  proto.com.lansweeper.discovery.sensor.windows.v1.ProcessorPerformance.toObject = function(includeInstance, msg) {
58388
58388
  var f, obj = {
58389
- percentProcessorTime: (f = msg.getPercentProcessorTime()) && google_protobuf_wrappers_pb.UInt64Value.toObject(includeInstance, f)
58389
+ percentProcessorTime: (f = msg.getPercentProcessorTime()) && google_protobuf_wrappers_pb.UInt64Value.toObject(includeInstance, f),
58390
+ name: (f = msg.getName()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f)
58390
58391
  };
58391
58392
 
58392
58393
  if (includeInstance) {
@@ -58428,6 +58429,11 @@ proto.com.lansweeper.discovery.sensor.windows.v1.ProcessorPerformance.deserializ
58428
58429
  reader.readMessage(value,google_protobuf_wrappers_pb.UInt64Value.deserializeBinaryFromReader);
58429
58430
  msg.setPercentProcessorTime(value);
58430
58431
  break;
58432
+ case 2:
58433
+ var value = new google_protobuf_wrappers_pb.StringValue;
58434
+ reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
58435
+ msg.setName(value);
58436
+ break;
58431
58437
  default:
58432
58438
  reader.skipField();
58433
58439
  break;
@@ -58465,6 +58471,14 @@ proto.com.lansweeper.discovery.sensor.windows.v1.ProcessorPerformance.serializeB
58465
58471
  google_protobuf_wrappers_pb.UInt64Value.serializeBinaryToWriter
58466
58472
  );
58467
58473
  }
58474
+ f = message.getName();
58475
+ if (f != null) {
58476
+ writer.writeMessage(
58477
+ 2,
58478
+ f,
58479
+ google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
58480
+ );
58481
+ }
58468
58482
  };
58469
58483
 
58470
58484
 
@@ -58505,6 +58519,43 @@ proto.com.lansweeper.discovery.sensor.windows.v1.ProcessorPerformance.prototype.
58505
58519
  };
58506
58520
 
58507
58521
 
58522
+ /**
58523
+ * optional google.protobuf.StringValue name = 2;
58524
+ * @return {?proto.google.protobuf.StringValue}
58525
+ */
58526
+ proto.com.lansweeper.discovery.sensor.windows.v1.ProcessorPerformance.prototype.getName = function() {
58527
+ return /** @type{?proto.google.protobuf.StringValue} */ (
58528
+ jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 2));
58529
+ };
58530
+
58531
+
58532
+ /**
58533
+ * @param {?proto.google.protobuf.StringValue|undefined} value
58534
+ * @return {!proto.com.lansweeper.discovery.sensor.windows.v1.ProcessorPerformance} returns this
58535
+ */
58536
+ proto.com.lansweeper.discovery.sensor.windows.v1.ProcessorPerformance.prototype.setName = function(value) {
58537
+ return jspb.Message.setWrapperField(this, 2, value);
58538
+ };
58539
+
58540
+
58541
+ /**
58542
+ * Clears the message field making it undefined.
58543
+ * @return {!proto.com.lansweeper.discovery.sensor.windows.v1.ProcessorPerformance} returns this
58544
+ */
58545
+ proto.com.lansweeper.discovery.sensor.windows.v1.ProcessorPerformance.prototype.clearName = function() {
58546
+ return this.setName(undefined);
58547
+ };
58548
+
58549
+
58550
+ /**
58551
+ * Returns whether this field is set.
58552
+ * @return {boolean}
58553
+ */
58554
+ proto.com.lansweeper.discovery.sensor.windows.v1.ProcessorPerformance.prototype.hasName = function() {
58555
+ return jspb.Message.getField(this, 2) != null;
58556
+ };
58557
+
58558
+
58508
58559
 
58509
58560
 
58510
58561
 
@@ -58539,7 +58590,8 @@ proto.com.lansweeper.discovery.sensor.windows.v1.DiskPerformance.toObject = func
58539
58590
  var f, obj = {
58540
58591
  diskReadsPerSec: (f = msg.getDiskReadsPerSec()) && google_protobuf_wrappers_pb.UInt32Value.toObject(includeInstance, f),
58541
58592
  diskTransfersPerSec: (f = msg.getDiskTransfersPerSec()) && google_protobuf_wrappers_pb.UInt32Value.toObject(includeInstance, f),
58542
- diskWritesPerSec: (f = msg.getDiskWritesPerSec()) && google_protobuf_wrappers_pb.UInt32Value.toObject(includeInstance, f)
58593
+ diskWritesPerSec: (f = msg.getDiskWritesPerSec()) && google_protobuf_wrappers_pb.UInt32Value.toObject(includeInstance, f),
58594
+ name: (f = msg.getName()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f)
58543
58595
  };
58544
58596
 
58545
58597
  if (includeInstance) {
@@ -58591,6 +58643,11 @@ proto.com.lansweeper.discovery.sensor.windows.v1.DiskPerformance.deserializeBina
58591
58643
  reader.readMessage(value,google_protobuf_wrappers_pb.UInt32Value.deserializeBinaryFromReader);
58592
58644
  msg.setDiskWritesPerSec(value);
58593
58645
  break;
58646
+ case 4:
58647
+ var value = new google_protobuf_wrappers_pb.StringValue;
58648
+ reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
58649
+ msg.setName(value);
58650
+ break;
58594
58651
  default:
58595
58652
  reader.skipField();
58596
58653
  break;
@@ -58644,6 +58701,14 @@ proto.com.lansweeper.discovery.sensor.windows.v1.DiskPerformance.serializeBinary
58644
58701
  google_protobuf_wrappers_pb.UInt32Value.serializeBinaryToWriter
58645
58702
  );
58646
58703
  }
58704
+ f = message.getName();
58705
+ if (f != null) {
58706
+ writer.writeMessage(
58707
+ 4,
58708
+ f,
58709
+ google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
58710
+ );
58711
+ }
58647
58712
  };
58648
58713
 
58649
58714
 
@@ -58758,6 +58823,43 @@ proto.com.lansweeper.discovery.sensor.windows.v1.DiskPerformance.prototype.hasDi
58758
58823
  };
58759
58824
 
58760
58825
 
58826
+ /**
58827
+ * optional google.protobuf.StringValue name = 4;
58828
+ * @return {?proto.google.protobuf.StringValue}
58829
+ */
58830
+ proto.com.lansweeper.discovery.sensor.windows.v1.DiskPerformance.prototype.getName = function() {
58831
+ return /** @type{?proto.google.protobuf.StringValue} */ (
58832
+ jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 4));
58833
+ };
58834
+
58835
+
58836
+ /**
58837
+ * @param {?proto.google.protobuf.StringValue|undefined} value
58838
+ * @return {!proto.com.lansweeper.discovery.sensor.windows.v1.DiskPerformance} returns this
58839
+ */
58840
+ proto.com.lansweeper.discovery.sensor.windows.v1.DiskPerformance.prototype.setName = function(value) {
58841
+ return jspb.Message.setWrapperField(this, 4, value);
58842
+ };
58843
+
58844
+
58845
+ /**
58846
+ * Clears the message field making it undefined.
58847
+ * @return {!proto.com.lansweeper.discovery.sensor.windows.v1.DiskPerformance} returns this
58848
+ */
58849
+ proto.com.lansweeper.discovery.sensor.windows.v1.DiskPerformance.prototype.clearName = function() {
58850
+ return this.setName(undefined);
58851
+ };
58852
+
58853
+
58854
+ /**
58855
+ * Returns whether this field is set.
58856
+ * @return {boolean}
58857
+ */
58858
+ proto.com.lansweeper.discovery.sensor.windows.v1.DiskPerformance.prototype.hasName = function() {
58859
+ return jspb.Message.getField(this, 4) != null;
58860
+ };
58861
+
58862
+
58761
58863
 
58762
58864
 
58763
58865