@lansweeper/discovery-sensor-proto 2.82.0 → 2.83.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.
@@ -332,6 +332,11 @@ export class ComputerSystem extends jspb.Message {
332
332
  getFirmware(): google_protobuf_wrappers_pb.StringValue | undefined;
333
333
  setFirmware(value?: google_protobuf_wrappers_pb.StringValue): ComputerSystem;
334
334
 
335
+ hasDomain(): boolean;
336
+ clearDomain(): void;
337
+ getDomain(): google_protobuf_wrappers_pb.StringValue | undefined;
338
+ setDomain(value?: google_protobuf_wrappers_pb.StringValue): ComputerSystem;
339
+
335
340
  serializeBinary(): Uint8Array;
336
341
  toObject(includeInstance?: boolean): ComputerSystem.AsObject;
337
342
  static toObject(includeInstance: boolean, msg: ComputerSystem): ComputerSystem.AsObject;
@@ -362,6 +367,7 @@ export namespace ComputerSystem {
362
367
  systemSku?: google_protobuf_wrappers_pb.StringValue.AsObject,
363
368
  totalMemory?: google_protobuf_wrappers_pb.StringValue.AsObject,
364
369
  firmware?: google_protobuf_wrappers_pb.StringValue.AsObject,
370
+ domain?: google_protobuf_wrappers_pb.StringValue.AsObject,
365
371
  }
366
372
  }
367
373
 
@@ -2931,7 +2931,8 @@ proto.com.lansweeper.discovery.sensor.unix.v1.ComputerSystem.toObject = function
2931
2931
  hardwarePlatform: (f = msg.getHardwarePlatform()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
2932
2932
  systemSku: (f = msg.getSystemSku()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
2933
2933
  totalMemory: (f = msg.getTotalMemory()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
2934
- firmware: (f = msg.getFirmware()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f)
2934
+ firmware: (f = msg.getFirmware()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
2935
+ domain: (f = msg.getDomain()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f)
2935
2936
  };
2936
2937
 
2937
2938
  if (includeInstance) {
@@ -3057,6 +3058,11 @@ proto.com.lansweeper.discovery.sensor.unix.v1.ComputerSystem.deserializeBinaryFr
3057
3058
  reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
3058
3059
  msg.setFirmware(value);
3059
3060
  break;
3061
+ case 19:
3062
+ var value = new google_protobuf_wrappers_pb.StringValue;
3063
+ reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
3064
+ msg.setDomain(value);
3065
+ break;
3060
3066
  default:
3061
3067
  reader.skipField();
3062
3068
  break;
@@ -3229,6 +3235,14 @@ proto.com.lansweeper.discovery.sensor.unix.v1.ComputerSystem.serializeBinaryToWr
3229
3235
  google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
3230
3236
  );
3231
3237
  }
3238
+ f = message.getDomain();
3239
+ if (f != null) {
3240
+ writer.writeMessage(
3241
+ 19,
3242
+ f,
3243
+ google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
3244
+ );
3245
+ }
3232
3246
  };
3233
3247
 
3234
3248
 
@@ -3879,6 +3893,43 @@ proto.com.lansweeper.discovery.sensor.unix.v1.ComputerSystem.prototype.hasFirmwa
3879
3893
  };
3880
3894
 
3881
3895
 
3896
+ /**
3897
+ * optional google.protobuf.StringValue domain = 19;
3898
+ * @return {?proto.google.protobuf.StringValue}
3899
+ */
3900
+ proto.com.lansweeper.discovery.sensor.unix.v1.ComputerSystem.prototype.getDomain = function() {
3901
+ return /** @type{?proto.google.protobuf.StringValue} */ (
3902
+ jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 19));
3903
+ };
3904
+
3905
+
3906
+ /**
3907
+ * @param {?proto.google.protobuf.StringValue|undefined} value
3908
+ * @return {!proto.com.lansweeper.discovery.sensor.unix.v1.ComputerSystem} returns this
3909
+ */
3910
+ proto.com.lansweeper.discovery.sensor.unix.v1.ComputerSystem.prototype.setDomain = function(value) {
3911
+ return jspb.Message.setWrapperField(this, 19, value);
3912
+ };
3913
+
3914
+
3915
+ /**
3916
+ * Clears the message field making it undefined.
3917
+ * @return {!proto.com.lansweeper.discovery.sensor.unix.v1.ComputerSystem} returns this
3918
+ */
3919
+ proto.com.lansweeper.discovery.sensor.unix.v1.ComputerSystem.prototype.clearDomain = function() {
3920
+ return this.setDomain(undefined);
3921
+ };
3922
+
3923
+
3924
+ /**
3925
+ * Returns whether this field is set.
3926
+ * @return {boolean}
3927
+ */
3928
+ proto.com.lansweeper.discovery.sensor.unix.v1.ComputerSystem.prototype.hasDomain = function() {
3929
+ return jspb.Message.getField(this, 19) != null;
3930
+ };
3931
+
3932
+
3882
3933
 
3883
3934
  /**
3884
3935
  * List of repeated fields within this message type.