@lansweeper/discovery-sensor-proto 2.67.0 → 2.68.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.
@@ -1186,6 +1186,16 @@ export class MacOsInfo extends jspb.Message {
1186
1186
  getDomain(): google_protobuf_wrappers_pb.StringValue | undefined;
1187
1187
  setDomain(value?: google_protobuf_wrappers_pb.StringValue): MacOsInfo;
1188
1188
 
1189
+ hasDnsName(): boolean;
1190
+ clearDnsName(): void;
1191
+ getDnsName(): google_protobuf_wrappers_pb.StringValue | undefined;
1192
+ setDnsName(value?: google_protobuf_wrappers_pb.StringValue): MacOsInfo;
1193
+
1194
+ hasFqdn(): boolean;
1195
+ clearFqdn(): void;
1196
+ getFqdn(): google_protobuf_wrappers_pb.StringValue | undefined;
1197
+ setFqdn(value?: google_protobuf_wrappers_pb.StringValue): MacOsInfo;
1198
+
1189
1199
  serializeBinary(): Uint8Array;
1190
1200
  toObject(includeInstance?: boolean): MacOsInfo.AsObject;
1191
1201
  static toObject(includeInstance: boolean, msg: MacOsInfo): MacOsInfo.AsObject;
@@ -1209,6 +1219,8 @@ export namespace MacOsInfo {
1209
1219
  sixtyFourBitKernelAndExts?: google_protobuf_wrappers_pb.StringValue.AsObject,
1210
1220
  systemIntegrity?: google_protobuf_wrappers_pb.StringValue.AsObject,
1211
1221
  domain?: google_protobuf_wrappers_pb.StringValue.AsObject,
1222
+ dnsName?: google_protobuf_wrappers_pb.StringValue.AsObject,
1223
+ fqdn?: google_protobuf_wrappers_pb.StringValue.AsObject,
1212
1224
  }
1213
1225
  }
1214
1226
 
@@ -11137,7 +11137,9 @@ proto.com.lansweeper.discovery.sensor.mac.v1.MacOsInfo.toObject = function(inclu
11137
11137
  secureVirtualMemory: (f = msg.getSecureVirtualMemory()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
11138
11138
  sixtyFourBitKernelAndExts: (f = msg.getSixtyFourBitKernelAndExts()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
11139
11139
  systemIntegrity: (f = msg.getSystemIntegrity()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
11140
- domain: (f = msg.getDomain()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f)
11140
+ domain: (f = msg.getDomain()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
11141
+ dnsName: (f = msg.getDnsName()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f),
11142
+ fqdn: (f = msg.getFqdn()) && google_protobuf_wrappers_pb.StringValue.toObject(includeInstance, f)
11141
11143
  };
11142
11144
 
11143
11145
  if (includeInstance) {
@@ -11229,6 +11231,16 @@ proto.com.lansweeper.discovery.sensor.mac.v1.MacOsInfo.deserializeBinaryFromRead
11229
11231
  reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
11230
11232
  msg.setDomain(value);
11231
11233
  break;
11234
+ case 12:
11235
+ var value = new google_protobuf_wrappers_pb.StringValue;
11236
+ reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
11237
+ msg.setDnsName(value);
11238
+ break;
11239
+ case 13:
11240
+ var value = new google_protobuf_wrappers_pb.StringValue;
11241
+ reader.readMessage(value,google_protobuf_wrappers_pb.StringValue.deserializeBinaryFromReader);
11242
+ msg.setFqdn(value);
11243
+ break;
11232
11244
  default:
11233
11245
  reader.skipField();
11234
11246
  break;
@@ -11346,6 +11358,22 @@ proto.com.lansweeper.discovery.sensor.mac.v1.MacOsInfo.serializeBinaryToWriter =
11346
11358
  google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
11347
11359
  );
11348
11360
  }
11361
+ f = message.getDnsName();
11362
+ if (f != null) {
11363
+ writer.writeMessage(
11364
+ 12,
11365
+ f,
11366
+ google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
11367
+ );
11368
+ }
11369
+ f = message.getFqdn();
11370
+ if (f != null) {
11371
+ writer.writeMessage(
11372
+ 13,
11373
+ f,
11374
+ google_protobuf_wrappers_pb.StringValue.serializeBinaryToWriter
11375
+ );
11376
+ }
11349
11377
  };
11350
11378
 
11351
11379
 
@@ -11756,6 +11784,80 @@ proto.com.lansweeper.discovery.sensor.mac.v1.MacOsInfo.prototype.hasDomain = fun
11756
11784
  };
11757
11785
 
11758
11786
 
11787
+ /**
11788
+ * optional google.protobuf.StringValue dns_name = 12;
11789
+ * @return {?proto.google.protobuf.StringValue}
11790
+ */
11791
+ proto.com.lansweeper.discovery.sensor.mac.v1.MacOsInfo.prototype.getDnsName = function() {
11792
+ return /** @type{?proto.google.protobuf.StringValue} */ (
11793
+ jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 12));
11794
+ };
11795
+
11796
+
11797
+ /**
11798
+ * @param {?proto.google.protobuf.StringValue|undefined} value
11799
+ * @return {!proto.com.lansweeper.discovery.sensor.mac.v1.MacOsInfo} returns this
11800
+ */
11801
+ proto.com.lansweeper.discovery.sensor.mac.v1.MacOsInfo.prototype.setDnsName = function(value) {
11802
+ return jspb.Message.setWrapperField(this, 12, value);
11803
+ };
11804
+
11805
+
11806
+ /**
11807
+ * Clears the message field making it undefined.
11808
+ * @return {!proto.com.lansweeper.discovery.sensor.mac.v1.MacOsInfo} returns this
11809
+ */
11810
+ proto.com.lansweeper.discovery.sensor.mac.v1.MacOsInfo.prototype.clearDnsName = function() {
11811
+ return this.setDnsName(undefined);
11812
+ };
11813
+
11814
+
11815
+ /**
11816
+ * Returns whether this field is set.
11817
+ * @return {boolean}
11818
+ */
11819
+ proto.com.lansweeper.discovery.sensor.mac.v1.MacOsInfo.prototype.hasDnsName = function() {
11820
+ return jspb.Message.getField(this, 12) != null;
11821
+ };
11822
+
11823
+
11824
+ /**
11825
+ * optional google.protobuf.StringValue fqdn = 13;
11826
+ * @return {?proto.google.protobuf.StringValue}
11827
+ */
11828
+ proto.com.lansweeper.discovery.sensor.mac.v1.MacOsInfo.prototype.getFqdn = function() {
11829
+ return /** @type{?proto.google.protobuf.StringValue} */ (
11830
+ jspb.Message.getWrapperField(this, google_protobuf_wrappers_pb.StringValue, 13));
11831
+ };
11832
+
11833
+
11834
+ /**
11835
+ * @param {?proto.google.protobuf.StringValue|undefined} value
11836
+ * @return {!proto.com.lansweeper.discovery.sensor.mac.v1.MacOsInfo} returns this
11837
+ */
11838
+ proto.com.lansweeper.discovery.sensor.mac.v1.MacOsInfo.prototype.setFqdn = function(value) {
11839
+ return jspb.Message.setWrapperField(this, 13, value);
11840
+ };
11841
+
11842
+
11843
+ /**
11844
+ * Clears the message field making it undefined.
11845
+ * @return {!proto.com.lansweeper.discovery.sensor.mac.v1.MacOsInfo} returns this
11846
+ */
11847
+ proto.com.lansweeper.discovery.sensor.mac.v1.MacOsInfo.prototype.clearFqdn = function() {
11848
+ return this.setFqdn(undefined);
11849
+ };
11850
+
11851
+
11852
+ /**
11853
+ * Returns whether this field is set.
11854
+ * @return {boolean}
11855
+ */
11856
+ proto.com.lansweeper.discovery.sensor.mac.v1.MacOsInfo.prototype.hasFqdn = function() {
11857
+ return jspb.Message.getField(this, 13) != null;
11858
+ };
11859
+
11860
+
11759
11861
 
11760
11862
 
11761
11863