@lansweeper/discovery-sensor-proto 2.81.0 → 2.81.1

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.
@@ -133,8 +133,8 @@ export class Snmp extends jspb.Message {
133
133
 
134
134
  hasTotalMemory(): boolean;
135
135
  clearTotalMemory(): void;
136
- getTotalMemory(): google_protobuf_wrappers_pb.Int32Value | undefined;
137
- setTotalMemory(value?: google_protobuf_wrappers_pb.Int32Value): Snmp;
136
+ getTotalMemory(): google_protobuf_wrappers_pb.UInt64Value | undefined;
137
+ setTotalMemory(value?: google_protobuf_wrappers_pb.UInt64Value): Snmp;
138
138
 
139
139
  hasProcessorArchitecture(): boolean;
140
140
  clearProcessorArchitecture(): void;
@@ -178,7 +178,7 @@ export namespace Snmp {
178
178
  interfaceInfosList: Array<SnmpInterfaceInfo.AsObject>,
179
179
  arpTableList: Array<SnmpArpEntry.AsObject>,
180
180
  customOidsList: Array<SnmpCustomOid.AsObject>,
181
- totalMemory?: google_protobuf_wrappers_pb.Int32Value.AsObject,
181
+ totalMemory?: google_protobuf_wrappers_pb.UInt64Value.AsObject,
182
182
  processorArchitecture?: google_protobuf_wrappers_pb.StringValue.AsObject,
183
183
  }
184
184
  }
@@ -290,7 +290,7 @@ proto.com.lansweeper.discovery.sensor.other.v1.Snmp.toObject = function(includeI
290
290
  proto.com.lansweeper.discovery.sensor.other.v1.SnmpArpEntry.toObject, includeInstance),
291
291
  customOidsList: jspb.Message.toObjectList(msg.getCustomOidsList(),
292
292
  proto.com.lansweeper.discovery.sensor.other.v1.SnmpCustomOid.toObject, includeInstance),
293
- totalMemory: (f = msg.getTotalMemory()) && google_protobuf_wrappers_pb.Int32Value.toObject(includeInstance, f),
293
+ totalMemory: (f = msg.getTotalMemory()) && google_protobuf_wrappers_pb.UInt64Value.toObject(includeInstance, f),
294
294
  processorArchitecture: (f = msg.getProcessorArchitecture()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f)
295
295
  };
296
296
 
@@ -453,8 +453,8 @@ proto.com.lansweeper.discovery.sensor.other.v1.Snmp.deserializeBinaryFromReader
453
453
  msg.addCustomOids(value);
454
454
  break;
455
455
  case 26:
456
- var value = new google_protobuf_wrappers_pb.Int32Value;
457
- reader.readMessage(value,google_protobuf_wrappers_pb.Int32Value.deserializeBinaryFromReader);
456
+ var value = new google_protobuf_wrappers_pb.UInt64Value;
457
+ reader.readMessage(value,google_protobuf_wrappers_pb.UInt64Value.deserializeBinaryFromReader);
458
458
  msg.setTotalMemory(value);
459
459
  break;
460
460
  case 27:
@@ -695,7 +695,7 @@ proto.com.lansweeper.discovery.sensor.other.v1.Snmp.serializeBinaryToWriter = fu
695
695
  writer.writeMessage(
696
696
  26,
697
697
  f,
698
- google_protobuf_wrappers_pb.Int32Value.serializeBinaryToWriter
698
+ google_protobuf_wrappers_pb.UInt64Value.serializeBinaryToWriter
699
699
  );
700
700
  }
701
701
  f = message.getProcessorArchitecture();
@@ -1638,17 +1638,17 @@ proto.com.lansweeper.discovery.sensor.other.v1.Snmp.prototype.clearCustomOidsLis
1638
1638
 
1639
1639
 
1640
1640
  /**
1641
- * optional google.protobuf.Int32Value total_memory = 26;
1642
- * @return {?proto.google.protobuf.Int32Value}
1641
+ * optional google.protobuf.UInt64Value total_memory = 26;
1642
+ * @return {?proto.google.protobuf.UInt64Value}
1643
1643
  */
1644
1644
  proto.com.lansweeper.discovery.sensor.other.v1.Snmp.prototype.getTotalMemory = function() {
1645
- return /** @type{?proto.google.protobuf.Int32Value} */ (
1646
- jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.Int32Value, 26));
1645
+ return /** @type{?proto.google.protobuf.UInt64Value} */ (
1646
+ jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.UInt64Value, 26));
1647
1647
  };
1648
1648
 
1649
1649
 
1650
1650
  /**
1651
- * @param {?proto.google.protobuf.Int32Value|undefined} value
1651
+ * @param {?proto.google.protobuf.UInt64Value|undefined} value
1652
1652
  * @return {!proto.com.lansweeper.discovery.sensor.other.v1.Snmp} returns this
1653
1653
  */
1654
1654
  proto.com.lansweeper.discovery.sensor.other.v1.Snmp.prototype.setTotalMemory = function(value) {