@lansweeper/discovery-sensor-proto 2.77.0 → 2.78.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.
@@ -887,6 +887,11 @@ export class ActiveDirectoryPrinter extends jspb.Message {
887
887
  getPrintRate(): google_protobuf_wrappers_pb.StringValue | undefined;
888
888
  setPrintRate(value?: google_protobuf_wrappers_pb.StringValue): ActiveDirectoryPrinter;
889
889
 
890
+ hasIpAddress(): boolean;
891
+ clearIpAddress(): void;
892
+ getIpAddress(): google_protobuf_wrappers_pb.StringValue | undefined;
893
+ setIpAddress(value?: google_protobuf_wrappers_pb.StringValue): ActiveDirectoryPrinter;
894
+
890
895
  serializeBinary(): Uint8Array;
891
896
  toObject(includeInstance?: boolean): ActiveDirectoryPrinter.AsObject;
892
897
  static toObject(includeInstance: boolean, msg: ActiveDirectoryPrinter): ActiveDirectoryPrinter.AsObject;
@@ -937,6 +942,7 @@ export namespace ActiveDirectoryPrinter {
937
942
  printOrientationsSupported?: google_protobuf_wrappers_pb.StringValue.AsObject,
938
943
  printShareName?: google_protobuf_wrappers_pb.StringValue.AsObject,
939
944
  printRate?: google_protobuf_wrappers_pb.StringValue.AsObject,
945
+ ipAddress?: google_protobuf_wrappers_pb.StringValue.AsObject,
940
946
  }
941
947
  }
942
948
 
@@ -6659,7 +6659,8 @@ proto.com.lansweeper.discovery.sensor.api.v1.ActiveDirectoryPrinter.toObject = f
6659
6659
  driverName: (f = msg.getDriverName()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
6660
6660
  printOrientationsSupported: (f = msg.getPrintOrientationsSupported()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
6661
6661
  printShareName: (f = msg.getPrintShareName()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
6662
- printRate: (f = msg.getPrintRate()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f)
6662
+ printRate: (f = msg.getPrintRate()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
6663
+ ipAddress: (f = msg.getIpAddress()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f)
6663
6664
  };
6664
6665
 
6665
6666
  if (includeInstance) {
@@ -6886,6 +6887,11 @@ proto.com.lansweeper.discovery.sensor.api.v1.ActiveDirectoryPrinter.deserializeB
6886
6887
  reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
6887
6888
  msg.setPrintRate(value);
6888
6889
  break;
6890
+ case 39:
6891
+ var value = new google_protobuf_wrappers_pb.StringValue;
6892
+ reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
6893
+ msg.setIpAddress(value);
6894
+ break;
6889
6895
  default:
6890
6896
  reader.skipField();
6891
6897
  break;
@@ -7219,6 +7225,14 @@ proto.com.lansweeper.discovery.sensor.api.v1.ActiveDirectoryPrinter.serializeBin
7219
7225
  google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
7220
7226
  );
7221
7227
  }
7228
+ f = message.getIpAddress();
7229
+ if (f != null) {
7230
+ writer.writeMessage(
7231
+ 39,
7232
+ f,
7233
+ google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
7234
+ );
7235
+ }
7222
7236
  };
7223
7237
 
7224
7238
 
@@ -8628,6 +8642,43 @@ proto.com.lansweeper.discovery.sensor.api.v1.ActiveDirectoryPrinter.prototype.ha
8628
8642
  };
8629
8643
 
8630
8644
 
8645
+ /**
8646
+ * optional google.protobuf.StringValue ip_address = 39;
8647
+ * @return {?proto.google.protobuf.StringValue}
8648
+ */
8649
+ proto.com.lansweeper.discovery.sensor.api.v1.ActiveDirectoryPrinter.prototype.getIpAddress = function() {
8650
+ return /** @type{?proto.google.protobuf.StringValue} */ (
8651
+ jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 39));
8652
+ };
8653
+
8654
+
8655
+ /**
8656
+ * @param {?proto.google.protobuf.StringValue|undefined} value
8657
+ * @return {!proto.com.lansweeper.discovery.sensor.api.v1.ActiveDirectoryPrinter} returns this
8658
+ */
8659
+ proto.com.lansweeper.discovery.sensor.api.v1.ActiveDirectoryPrinter.prototype.setIpAddress = function(value) {
8660
+ return jspb.Message.setWrapperField(this, 39, value);
8661
+ };
8662
+
8663
+
8664
+ /**
8665
+ * Clears the message field making it undefined.
8666
+ * @return {!proto.com.lansweeper.discovery.sensor.api.v1.ActiveDirectoryPrinter} returns this
8667
+ */
8668
+ proto.com.lansweeper.discovery.sensor.api.v1.ActiveDirectoryPrinter.prototype.clearIpAddress = function() {
8669
+ return this.setIpAddress(undefined);
8670
+ };
8671
+
8672
+
8673
+ /**
8674
+ * Returns whether this field is set.
8675
+ * @return {boolean}
8676
+ */
8677
+ proto.com.lansweeper.discovery.sensor.api.v1.ActiveDirectoryPrinter.prototype.hasIpAddress = function() {
8678
+ return jspb.Message.getField(this, 39) != null;
8679
+ };
8680
+
8681
+
8631
8682
 
8632
8683
  /**
8633
8684
  * List of repeated fields within this message type.