@lansweeper/discovery-sensor-proto 2.66.1 → 2.66.2

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.
@@ -653,6 +653,11 @@ export class ActiveDirectoryComputer extends jspb.Message {
653
653
  getManagedByGroupObjectGuid(): google_protobuf_wrappers_pb.StringValue | undefined;
654
654
  setManagedByGroupObjectGuid(value?: google_protobuf_wrappers_pb.StringValue): ActiveDirectoryComputer;
655
655
 
656
+ hasDnsHostname(): boolean;
657
+ clearDnsHostname(): void;
658
+ getDnsHostname(): google_protobuf_wrappers_pb.StringValue | undefined;
659
+ setDnsHostname(value?: google_protobuf_wrappers_pb.StringValue): ActiveDirectoryComputer;
660
+
656
661
  serializeBinary(): Uint8Array;
657
662
  toObject(includeInstance?: boolean): ActiveDirectoryComputer.AsObject;
658
663
  static toObject(includeInstance: boolean, msg: ActiveDirectoryComputer): ActiveDirectoryComputer.AsObject;
@@ -679,6 +684,7 @@ export namespace ActiveDirectoryComputer {
679
684
  operatingsystemversion?: google_protobuf_wrappers_pb.StringValue.AsObject,
680
685
  managedByUserObjectGuid?: google_protobuf_wrappers_pb.StringValue.AsObject,
681
686
  managedByGroupObjectGuid?: google_protobuf_wrappers_pb.StringValue.AsObject,
687
+ dnsHostname?: google_protobuf_wrappers_pb.StringValue.AsObject,
682
688
  }
683
689
  }
684
690
 
@@ -6533,7 +6533,8 @@ proto.com.lansweeper.discovery.sensor.api.v1.ActiveDirectoryComputer.toObject =
6533
6533
  operatingsystem: (f = msg.getOperatingsystem()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
6534
6534
  operatingsystemversion: (f = msg.getOperatingsystemversion()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
6535
6535
  managedByUserObjectGuid: (f = msg.getManagedByUserObjectGuid()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
6536
- managedByGroupObjectGuid: (f = msg.getManagedByGroupObjectGuid()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f)
6536
+ managedByGroupObjectGuid: (f = msg.getManagedByGroupObjectGuid()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
6537
+ dnsHostname: (f = msg.getDnsHostname()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f)
6537
6538
  };
6538
6539
 
6539
6540
  if (includeInstance) {
@@ -6640,6 +6641,11 @@ proto.com.lansweeper.discovery.sensor.api.v1.ActiveDirectoryComputer.deserialize
6640
6641
  reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
6641
6642
  msg.setManagedByGroupObjectGuid(value);
6642
6643
  break;
6644
+ case 15:
6645
+ var value = new google_protobuf_wrappers_pb.StringValue;
6646
+ reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
6647
+ msg.setDnsHostname(value);
6648
+ break;
6643
6649
  default:
6644
6650
  reader.skipField();
6645
6651
  break;
@@ -6781,6 +6787,14 @@ proto.com.lansweeper.discovery.sensor.api.v1.ActiveDirectoryComputer.serializeBi
6781
6787
  google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
6782
6788
  );
6783
6789
  }
6790
+ f = message.getDnsHostname();
6791
+ if (f != null) {
6792
+ writer.writeMessage(
6793
+ 15,
6794
+ f,
6795
+ google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
6796
+ );
6797
+ }
6784
6798
  };
6785
6799
 
6786
6800
 
@@ -7302,6 +7316,43 @@ proto.com.lansweeper.discovery.sensor.api.v1.ActiveDirectoryComputer.prototype.h
7302
7316
  };
7303
7317
 
7304
7318
 
7319
+ /**
7320
+ * optional google.protobuf.StringValue dns_hostname = 15;
7321
+ * @return {?proto.google.protobuf.StringValue}
7322
+ */
7323
+ proto.com.lansweeper.discovery.sensor.api.v1.ActiveDirectoryComputer.prototype.getDnsHostname = function() {
7324
+ return /** @type{?proto.google.protobuf.StringValue} */ (
7325
+ jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 15));
7326
+ };
7327
+
7328
+
7329
+ /**
7330
+ * @param {?proto.google.protobuf.StringValue|undefined} value
7331
+ * @return {!proto.com.lansweeper.discovery.sensor.api.v1.ActiveDirectoryComputer} returns this
7332
+ */
7333
+ proto.com.lansweeper.discovery.sensor.api.v1.ActiveDirectoryComputer.prototype.setDnsHostname = function(value) {
7334
+ return jspb.Message.setWrapperField(this, 15, value);
7335
+ };
7336
+
7337
+
7338
+ /**
7339
+ * Clears the message field making it undefined.
7340
+ * @return {!proto.com.lansweeper.discovery.sensor.api.v1.ActiveDirectoryComputer} returns this
7341
+ */
7342
+ proto.com.lansweeper.discovery.sensor.api.v1.ActiveDirectoryComputer.prototype.clearDnsHostname = function() {
7343
+ return this.setDnsHostname(undefined);
7344
+ };
7345
+
7346
+
7347
+ /**
7348
+ * Returns whether this field is set.
7349
+ * @return {boolean}
7350
+ */
7351
+ proto.com.lansweeper.discovery.sensor.api.v1.ActiveDirectoryComputer.prototype.hasDnsHostname = function() {
7352
+ return jspb.Message.getField(this, 15) != null;
7353
+ };
7354
+
7355
+
7305
7356
 
7306
7357
  /**
7307
7358
  * List of repeated fields within this message type.