@lansweeper/data-platform-outbound-grpc 0.3.38 → 0.4.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.
Files changed (40) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/gen-proto/image.json +1 -1
  3. package/gen-proto/outbound_pb.d.ts +54 -0
  4. package/gen-proto/outbound_pb.js +438 -3
  5. package/generated-go/outbound.pb.go +10983 -10877
  6. package/java.json +1 -1
  7. package/model/pom.xml +1 -1
  8. package/model/src/main/proto/outbound.proto +12 -4
  9. package/model/target/classes/com/lansweeper/dp/outbound/v1/NetworkInterface$1.class +0 -0
  10. package/model/target/classes/com/lansweeper/dp/outbound/v1/NetworkInterface$Builder.class +0 -0
  11. package/model/target/classes/com/lansweeper/dp/outbound/v1/NetworkInterface.class +0 -0
  12. package/model/target/classes/com/lansweeper/dp/outbound/v1/NetworkInterfaceOrBuilder.class +0 -0
  13. package/model/target/classes/com/lansweeper/dp/outbound/v1/Outbound.class +0 -0
  14. package/model/target/classes/com/lansweeper/dp/outbound/v1/Site$1.class +0 -0
  15. package/model/target/classes/com/lansweeper/dp/outbound/v1/Site$Builder$UnlinkedInstallationsConverter.class +0 -0
  16. package/model/target/classes/com/lansweeper/dp/outbound/v1/Site$Builder.class +0 -0
  17. package/model/target/classes/com/lansweeper/dp/outbound/v1/Site.class +0 -0
  18. package/model/target/classes/com/lansweeper/dp/outbound/v1/SiteOrBuilder.class +0 -0
  19. package/model/target/classes/com/lansweeper/dp/outbound/v1/SpecHardwareInfo$1.class +0 -0
  20. package/model/target/classes/com/lansweeper/dp/outbound/v1/SpecHardwareInfo$Builder.class +0 -0
  21. package/model/target/classes/com/lansweeper/dp/outbound/v1/SpecHardwareInfo.class +0 -0
  22. package/model/target/classes/com/lansweeper/dp/outbound/v1/SpecHardwareInfoOrBuilder.class +0 -0
  23. package/model/target/classes/outbound.proto +12 -4
  24. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/NetworkInterface.java +984 -6
  25. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/NetworkInterfaceOrBuilder.java +116 -2
  26. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +3379 -3369
  27. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Site.java +185 -0
  28. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/SiteOrBuilder.java +15 -0
  29. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/SpecHardwareInfo.java +386 -0
  30. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/SpecHardwareInfoOrBuilder.java +58 -0
  31. package/model/target/maven-archiver/pom.properties +2 -2
  32. package/model/target/{outbound-model-0.3.37-sources.jar → outbound-model-0.4.0-sources.jar} +0 -0
  33. package/model/target/{outbound-model-0.3.37.jar → outbound-model-0.4.0.jar} +0 -0
  34. package/package.json +2 -2
  35. package/pom.xml +1 -1
  36. package/proto/outbound.proto +12 -4
  37. package/service/pom.xml +1 -1
  38. package/service/target/maven-archiver/pom.properties +2 -2
  39. package/service/target/{outbound-service-0.3.37-sources.jar → outbound-service-0.4.0-sources.jar} +0 -0
  40. package/service/target/{outbound-service-0.3.37.jar → outbound-service-0.4.0.jar} +0 -0
@@ -77,6 +77,11 @@ export class Site extends jspb.Message {
77
77
  getUnlinkedInstallationsMap(): jspb.Map<string, UnlinkedInstallationMetadata>;
78
78
  clearUnlinkedInstallationsMap(): void;
79
79
 
80
+ hasReconcileRevalidationTime(): boolean;
81
+ clearReconcileRevalidationTime(): void;
82
+ getReconcileRevalidationTime(): google_protobuf_timestamp_pb.Timestamp | undefined;
83
+ setReconcileRevalidationTime(value?: google_protobuf_timestamp_pb.Timestamp): Site;
84
+
80
85
  serializeBinary(): Uint8Array;
81
86
  toObject(includeInstance?: boolean): Site.AsObject;
82
87
  static toObject(includeInstance: boolean, msg: Site): Site.AsObject;
@@ -104,6 +109,7 @@ export namespace Site {
104
109
  deletionTime?: google_protobuf_timestamp_pb.Timestamp.AsObject,
105
110
 
106
111
  unlinkedInstallationsMap: Array<[string, UnlinkedInstallationMetadata.AsObject]>,
112
+ reconcileRevalidationTime?: google_protobuf_timestamp_pb.Timestamp.AsObject,
107
113
  }
108
114
  }
109
115
 
@@ -4063,6 +4069,16 @@ export class SpecHardwareInfo extends jspb.Message {
4063
4069
  getModelNumber(): string | undefined;
4064
4070
  setModelNumber(value: string): SpecHardwareInfo;
4065
4071
 
4072
+ hasWakeupTime(): boolean;
4073
+ clearWakeupTime(): void;
4074
+ getWakeupTime(): string | undefined;
4075
+ setWakeupTime(value: string): SpecHardwareInfo;
4076
+
4077
+ hasMachineHardwareName(): boolean;
4078
+ clearMachineHardwareName(): void;
4079
+ getMachineHardwareName(): string | undefined;
4080
+ setMachineHardwareName(value: string): SpecHardwareInfo;
4081
+
4066
4082
  serializeBinary(): Uint8Array;
4067
4083
  toObject(includeInstance?: boolean): SpecHardwareInfo.AsObject;
4068
4084
  static toObject(includeInstance: boolean, msg: SpecHardwareInfo): SpecHardwareInfo.AsObject;
@@ -4085,6 +4101,8 @@ export namespace SpecHardwareInfo {
4085
4101
  bootRomVersion?: string,
4086
4102
  smcVersionSystem?: string,
4087
4103
  modelNumber?: string,
4104
+ wakeupTime?: string,
4105
+ machineHardwareName?: string,
4088
4106
  }
4089
4107
  }
4090
4108
 
@@ -5023,6 +5041,36 @@ export class NetworkInterface extends jspb.Message {
5023
5041
  getIpv6DhcpEnabled(): boolean | undefined;
5024
5042
  setIpv6DhcpEnabled(value: boolean): NetworkInterface;
5025
5043
 
5044
+ hasState(): boolean;
5045
+ clearState(): void;
5046
+ getState(): string | undefined;
5047
+ setState(value: string): NetworkInterface;
5048
+
5049
+ hasLinkEncap(): boolean;
5050
+ clearLinkEncap(): void;
5051
+ getLinkEncap(): string | undefined;
5052
+ setLinkEncap(value: string): NetworkInterface;
5053
+
5054
+ hasBroadcast(): boolean;
5055
+ clearBroadcast(): void;
5056
+ getBroadcast(): string | undefined;
5057
+ setBroadcast(value: string): NetworkInterface;
5058
+
5059
+ hasScope(): boolean;
5060
+ clearScope(): void;
5061
+ getScope(): string | undefined;
5062
+ setScope(value: string): NetworkInterface;
5063
+
5064
+ hasQDisc(): boolean;
5065
+ clearQDisc(): void;
5066
+ getQDisc(): string | undefined;
5067
+ setQDisc(value: string): NetworkInterface;
5068
+
5069
+ hasGroup(): boolean;
5070
+ clearGroup(): void;
5071
+ getGroup(): string | undefined;
5072
+ setGroup(value: string): NetworkInterface;
5073
+
5026
5074
  serializeBinary(): Uint8Array;
5027
5075
  toObject(includeInstance?: boolean): NetworkInterface.AsObject;
5028
5076
  static toObject(includeInstance: boolean, msg: NetworkInterface): NetworkInterface.AsObject;
@@ -5068,6 +5116,12 @@ export namespace NetworkInterface {
5068
5116
  domainName?: string,
5069
5117
  ipv4DhcpEnabled?: boolean,
5070
5118
  ipv6DhcpEnabled?: boolean,
5119
+ state?: string,
5120
+ linkEncap?: string,
5121
+ broadcast?: string,
5122
+ scope?: string,
5123
+ qDisc?: string,
5124
+ group?: string,
5071
5125
  }
5072
5126
  }
5073
5127
 
@@ -5825,7 +5825,8 @@ proto.com.lansweeper.dp.outbound.v1.Site.toObject = function(includeInstance, ms
5825
5825
  groupSize: jspb.Message.getFieldWithDefault(msg, 11, 0),
5826
5826
  deletionRequest: (f = msg.getDeletionRequest()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
5827
5827
  deletionTime: (f = msg.getDeletionTime()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
5828
- unlinkedInstallationsMap: (f = msg.getUnlinkedInstallationsMap()) ? f.toObject(includeInstance, proto.com.lansweeper.dp.outbound.v1.UnlinkedInstallationMetadata.toObject) : []
5828
+ unlinkedInstallationsMap: (f = msg.getUnlinkedInstallationsMap()) ? f.toObject(includeInstance, proto.com.lansweeper.dp.outbound.v1.UnlinkedInstallationMetadata.toObject) : [],
5829
+ reconcileRevalidationTime: (f = msg.getReconcileRevalidationTime()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f)
5829
5830
  };
5830
5831
 
5831
5832
  if (includeInstance) {
@@ -5926,6 +5927,11 @@ proto.com.lansweeper.dp.outbound.v1.Site.deserializeBinaryFromReader = function(
5926
5927
  jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readMessage, proto.com.lansweeper.dp.outbound.v1.UnlinkedInstallationMetadata.deserializeBinaryFromReader, "", new proto.com.lansweeper.dp.outbound.v1.UnlinkedInstallationMetadata());
5927
5928
  });
5928
5929
  break;
5930
+ case 15:
5931
+ var value = new google_protobuf_timestamp_pb.Timestamp;
5932
+ reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
5933
+ msg.setReconcileRevalidationTime(value);
5934
+ break;
5929
5935
  default:
5930
5936
  reader.skipField();
5931
5937
  break;
@@ -6056,6 +6062,14 @@ proto.com.lansweeper.dp.outbound.v1.Site.serializeBinaryToWriter = function(mess
6056
6062
  if (f && f.getLength() > 0) {
6057
6063
  f.serializeBinary(14, writer, jspb.BinaryWriter.prototype.writeString, jspb.BinaryWriter.prototype.writeMessage, proto.com.lansweeper.dp.outbound.v1.UnlinkedInstallationMetadata.serializeBinaryToWriter);
6058
6064
  }
6065
+ f = message.getReconcileRevalidationTime();
6066
+ if (f != null) {
6067
+ writer.writeMessage(
6068
+ 15,
6069
+ f,
6070
+ google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
6071
+ );
6072
+ }
6059
6073
  };
6060
6074
 
6061
6075
 
@@ -6556,6 +6570,43 @@ proto.com.lansweeper.dp.outbound.v1.Site.prototype.clearUnlinkedInstallationsMap
6556
6570
  return this;};
6557
6571
 
6558
6572
 
6573
+ /**
6574
+ * optional google.protobuf.Timestamp reconcile_revalidation_time = 15;
6575
+ * @return {?proto.google.protobuf.Timestamp}
6576
+ */
6577
+ proto.com.lansweeper.dp.outbound.v1.Site.prototype.getReconcileRevalidationTime = function() {
6578
+ return /** @type{?proto.google.protobuf.Timestamp} */ (
6579
+ jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 15));
6580
+ };
6581
+
6582
+
6583
+ /**
6584
+ * @param {?proto.google.protobuf.Timestamp|undefined} value
6585
+ * @return {!proto.com.lansweeper.dp.outbound.v1.Site} returns this
6586
+ */
6587
+ proto.com.lansweeper.dp.outbound.v1.Site.prototype.setReconcileRevalidationTime = function(value) {
6588
+ return jspb.Message.setWrapperField(this, 15, value);
6589
+ };
6590
+
6591
+
6592
+ /**
6593
+ * Clears the message field making it undefined.
6594
+ * @return {!proto.com.lansweeper.dp.outbound.v1.Site} returns this
6595
+ */
6596
+ proto.com.lansweeper.dp.outbound.v1.Site.prototype.clearReconcileRevalidationTime = function() {
6597
+ return this.setReconcileRevalidationTime(undefined);
6598
+ };
6599
+
6600
+
6601
+ /**
6602
+ * Returns whether this field is set.
6603
+ * @return {boolean}
6604
+ */
6605
+ proto.com.lansweeper.dp.outbound.v1.Site.prototype.hasReconcileRevalidationTime = function() {
6606
+ return jspb.Message.getField(this, 15) != null;
6607
+ };
6608
+
6609
+
6559
6610
 
6560
6611
 
6561
6612
 
@@ -37768,7 +37819,9 @@ proto.com.lansweeper.dp.outbound.v1.SpecHardwareInfo.toObject = function(include
37768
37819
  busSpeed: jspb.Message.getFieldWithDefault(msg, 7, ""),
37769
37820
  bootRomVersion: jspb.Message.getFieldWithDefault(msg, 8, ""),
37770
37821
  smcVersionSystem: jspb.Message.getFieldWithDefault(msg, 9, ""),
37771
- modelNumber: jspb.Message.getFieldWithDefault(msg, 10, "")
37822
+ modelNumber: jspb.Message.getFieldWithDefault(msg, 10, ""),
37823
+ wakeupTime: jspb.Message.getFieldWithDefault(msg, 11, ""),
37824
+ machineHardwareName: jspb.Message.getFieldWithDefault(msg, 12, "")
37772
37825
  };
37773
37826
 
37774
37827
  if (includeInstance) {
@@ -37845,6 +37898,14 @@ proto.com.lansweeper.dp.outbound.v1.SpecHardwareInfo.deserializeBinaryFromReader
37845
37898
  var value = /** @type {string} */ (reader.readString());
37846
37899
  msg.setModelNumber(value);
37847
37900
  break;
37901
+ case 11:
37902
+ var value = /** @type {string} */ (reader.readString());
37903
+ msg.setWakeupTime(value);
37904
+ break;
37905
+ case 12:
37906
+ var value = /** @type {string} */ (reader.readString());
37907
+ msg.setMachineHardwareName(value);
37908
+ break;
37848
37909
  default:
37849
37910
  reader.skipField();
37850
37911
  break;
@@ -37944,6 +38005,20 @@ proto.com.lansweeper.dp.outbound.v1.SpecHardwareInfo.serializeBinaryToWriter = f
37944
38005
  f
37945
38006
  );
37946
38007
  }
38008
+ f = /** @type {string} */ (jspb.Message.getField(message, 11));
38009
+ if (f != null) {
38010
+ writer.writeString(
38011
+ 11,
38012
+ f
38013
+ );
38014
+ }
38015
+ f = /** @type {string} */ (jspb.Message.getField(message, 12));
38016
+ if (f != null) {
38017
+ writer.writeString(
38018
+ 12,
38019
+ f
38020
+ );
38021
+ }
37947
38022
  };
37948
38023
 
37949
38024
 
@@ -38307,6 +38382,78 @@ proto.com.lansweeper.dp.outbound.v1.SpecHardwareInfo.prototype.hasModelNumber =
38307
38382
  };
38308
38383
 
38309
38384
 
38385
+ /**
38386
+ * optional string wakeup_time = 11;
38387
+ * @return {string}
38388
+ */
38389
+ proto.com.lansweeper.dp.outbound.v1.SpecHardwareInfo.prototype.getWakeupTime = function() {
38390
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 11, ""));
38391
+ };
38392
+
38393
+
38394
+ /**
38395
+ * @param {string} value
38396
+ * @return {!proto.com.lansweeper.dp.outbound.v1.SpecHardwareInfo} returns this
38397
+ */
38398
+ proto.com.lansweeper.dp.outbound.v1.SpecHardwareInfo.prototype.setWakeupTime = function(value) {
38399
+ return jspb.Message.setField(this, 11, value);
38400
+ };
38401
+
38402
+
38403
+ /**
38404
+ * Clears the field making it undefined.
38405
+ * @return {!proto.com.lansweeper.dp.outbound.v1.SpecHardwareInfo} returns this
38406
+ */
38407
+ proto.com.lansweeper.dp.outbound.v1.SpecHardwareInfo.prototype.clearWakeupTime = function() {
38408
+ return jspb.Message.setField(this, 11, undefined);
38409
+ };
38410
+
38411
+
38412
+ /**
38413
+ * Returns whether this field is set.
38414
+ * @return {boolean}
38415
+ */
38416
+ proto.com.lansweeper.dp.outbound.v1.SpecHardwareInfo.prototype.hasWakeupTime = function() {
38417
+ return jspb.Message.getField(this, 11) != null;
38418
+ };
38419
+
38420
+
38421
+ /**
38422
+ * optional string machine_hardware_name = 12;
38423
+ * @return {string}
38424
+ */
38425
+ proto.com.lansweeper.dp.outbound.v1.SpecHardwareInfo.prototype.getMachineHardwareName = function() {
38426
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 12, ""));
38427
+ };
38428
+
38429
+
38430
+ /**
38431
+ * @param {string} value
38432
+ * @return {!proto.com.lansweeper.dp.outbound.v1.SpecHardwareInfo} returns this
38433
+ */
38434
+ proto.com.lansweeper.dp.outbound.v1.SpecHardwareInfo.prototype.setMachineHardwareName = function(value) {
38435
+ return jspb.Message.setField(this, 12, value);
38436
+ };
38437
+
38438
+
38439
+ /**
38440
+ * Clears the field making it undefined.
38441
+ * @return {!proto.com.lansweeper.dp.outbound.v1.SpecHardwareInfo} returns this
38442
+ */
38443
+ proto.com.lansweeper.dp.outbound.v1.SpecHardwareInfo.prototype.clearMachineHardwareName = function() {
38444
+ return jspb.Message.setField(this, 12, undefined);
38445
+ };
38446
+
38447
+
38448
+ /**
38449
+ * Returns whether this field is set.
38450
+ * @return {boolean}
38451
+ */
38452
+ proto.com.lansweeper.dp.outbound.v1.SpecHardwareInfo.prototype.hasMachineHardwareName = function() {
38453
+ return jspb.Message.getField(this, 12) != null;
38454
+ };
38455
+
38456
+
38310
38457
 
38311
38458
  /**
38312
38459
  * Oneof group definitions for this message. Each group defines the field
@@ -44289,7 +44436,13 @@ proto.com.lansweeper.dp.outbound.v1.NetworkInterface.toObject = function(include
44289
44436
  networkSignature: jspb.Message.getFieldWithDefault(msg, 26, ""),
44290
44437
  domainName: jspb.Message.getFieldWithDefault(msg, 33, ""),
44291
44438
  ipv4DhcpEnabled: jspb.Message.getBooleanFieldWithDefault(msg, 34, false),
44292
- ipv6DhcpEnabled: jspb.Message.getBooleanFieldWithDefault(msg, 35, false)
44439
+ ipv6DhcpEnabled: jspb.Message.getBooleanFieldWithDefault(msg, 35, false),
44440
+ state: jspb.Message.getFieldWithDefault(msg, 36, ""),
44441
+ linkEncap: jspb.Message.getFieldWithDefault(msg, 37, ""),
44442
+ broadcast: jspb.Message.getFieldWithDefault(msg, 38, ""),
44443
+ scope: jspb.Message.getFieldWithDefault(msg, 39, ""),
44444
+ qDisc: jspb.Message.getFieldWithDefault(msg, 40, ""),
44445
+ group: jspb.Message.getFieldWithDefault(msg, 41, "")
44293
44446
  };
44294
44447
 
44295
44448
  if (includeInstance) {
@@ -44461,6 +44614,30 @@ proto.com.lansweeper.dp.outbound.v1.NetworkInterface.deserializeBinaryFromReader
44461
44614
  var value = /** @type {boolean} */ (reader.readBool());
44462
44615
  msg.setIpv6DhcpEnabled(value);
44463
44616
  break;
44617
+ case 36:
44618
+ var value = /** @type {string} */ (reader.readString());
44619
+ msg.setState(value);
44620
+ break;
44621
+ case 37:
44622
+ var value = /** @type {string} */ (reader.readString());
44623
+ msg.setLinkEncap(value);
44624
+ break;
44625
+ case 38:
44626
+ var value = /** @type {string} */ (reader.readString());
44627
+ msg.setBroadcast(value);
44628
+ break;
44629
+ case 39:
44630
+ var value = /** @type {string} */ (reader.readString());
44631
+ msg.setScope(value);
44632
+ break;
44633
+ case 40:
44634
+ var value = /** @type {string} */ (reader.readString());
44635
+ msg.setQDisc(value);
44636
+ break;
44637
+ case 41:
44638
+ var value = /** @type {string} */ (reader.readString());
44639
+ msg.setGroup(value);
44640
+ break;
44464
44641
  default:
44465
44642
  reader.skipField();
44466
44643
  break;
@@ -44724,6 +44901,48 @@ proto.com.lansweeper.dp.outbound.v1.NetworkInterface.serializeBinaryToWriter = f
44724
44901
  f
44725
44902
  );
44726
44903
  }
44904
+ f = /** @type {string} */ (jspb.Message.getField(message, 36));
44905
+ if (f != null) {
44906
+ writer.writeString(
44907
+ 36,
44908
+ f
44909
+ );
44910
+ }
44911
+ f = /** @type {string} */ (jspb.Message.getField(message, 37));
44912
+ if (f != null) {
44913
+ writer.writeString(
44914
+ 37,
44915
+ f
44916
+ );
44917
+ }
44918
+ f = /** @type {string} */ (jspb.Message.getField(message, 38));
44919
+ if (f != null) {
44920
+ writer.writeString(
44921
+ 38,
44922
+ f
44923
+ );
44924
+ }
44925
+ f = /** @type {string} */ (jspb.Message.getField(message, 39));
44926
+ if (f != null) {
44927
+ writer.writeString(
44928
+ 39,
44929
+ f
44930
+ );
44931
+ }
44932
+ f = /** @type {string} */ (jspb.Message.getField(message, 40));
44933
+ if (f != null) {
44934
+ writer.writeString(
44935
+ 40,
44936
+ f
44937
+ );
44938
+ }
44939
+ f = /** @type {string} */ (jspb.Message.getField(message, 41));
44940
+ if (f != null) {
44941
+ writer.writeString(
44942
+ 41,
44943
+ f
44944
+ );
44945
+ }
44727
44946
  };
44728
44947
 
44729
44948
 
@@ -45868,6 +46087,222 @@ proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.hasIpv6DhcpEnable
45868
46087
  };
45869
46088
 
45870
46089
 
46090
+ /**
46091
+ * optional string state = 36;
46092
+ * @return {string}
46093
+ */
46094
+ proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.getState = function() {
46095
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 36, ""));
46096
+ };
46097
+
46098
+
46099
+ /**
46100
+ * @param {string} value
46101
+ * @return {!proto.com.lansweeper.dp.outbound.v1.NetworkInterface} returns this
46102
+ */
46103
+ proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.setState = function(value) {
46104
+ return jspb.Message.setField(this, 36, value);
46105
+ };
46106
+
46107
+
46108
+ /**
46109
+ * Clears the field making it undefined.
46110
+ * @return {!proto.com.lansweeper.dp.outbound.v1.NetworkInterface} returns this
46111
+ */
46112
+ proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.clearState = function() {
46113
+ return jspb.Message.setField(this, 36, undefined);
46114
+ };
46115
+
46116
+
46117
+ /**
46118
+ * Returns whether this field is set.
46119
+ * @return {boolean}
46120
+ */
46121
+ proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.hasState = function() {
46122
+ return jspb.Message.getField(this, 36) != null;
46123
+ };
46124
+
46125
+
46126
+ /**
46127
+ * optional string link_encap = 37;
46128
+ * @return {string}
46129
+ */
46130
+ proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.getLinkEncap = function() {
46131
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 37, ""));
46132
+ };
46133
+
46134
+
46135
+ /**
46136
+ * @param {string} value
46137
+ * @return {!proto.com.lansweeper.dp.outbound.v1.NetworkInterface} returns this
46138
+ */
46139
+ proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.setLinkEncap = function(value) {
46140
+ return jspb.Message.setField(this, 37, value);
46141
+ };
46142
+
46143
+
46144
+ /**
46145
+ * Clears the field making it undefined.
46146
+ * @return {!proto.com.lansweeper.dp.outbound.v1.NetworkInterface} returns this
46147
+ */
46148
+ proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.clearLinkEncap = function() {
46149
+ return jspb.Message.setField(this, 37, undefined);
46150
+ };
46151
+
46152
+
46153
+ /**
46154
+ * Returns whether this field is set.
46155
+ * @return {boolean}
46156
+ */
46157
+ proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.hasLinkEncap = function() {
46158
+ return jspb.Message.getField(this, 37) != null;
46159
+ };
46160
+
46161
+
46162
+ /**
46163
+ * optional string broadcast = 38;
46164
+ * @return {string}
46165
+ */
46166
+ proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.getBroadcast = function() {
46167
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 38, ""));
46168
+ };
46169
+
46170
+
46171
+ /**
46172
+ * @param {string} value
46173
+ * @return {!proto.com.lansweeper.dp.outbound.v1.NetworkInterface} returns this
46174
+ */
46175
+ proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.setBroadcast = function(value) {
46176
+ return jspb.Message.setField(this, 38, value);
46177
+ };
46178
+
46179
+
46180
+ /**
46181
+ * Clears the field making it undefined.
46182
+ * @return {!proto.com.lansweeper.dp.outbound.v1.NetworkInterface} returns this
46183
+ */
46184
+ proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.clearBroadcast = function() {
46185
+ return jspb.Message.setField(this, 38, undefined);
46186
+ };
46187
+
46188
+
46189
+ /**
46190
+ * Returns whether this field is set.
46191
+ * @return {boolean}
46192
+ */
46193
+ proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.hasBroadcast = function() {
46194
+ return jspb.Message.getField(this, 38) != null;
46195
+ };
46196
+
46197
+
46198
+ /**
46199
+ * optional string scope = 39;
46200
+ * @return {string}
46201
+ */
46202
+ proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.getScope = function() {
46203
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 39, ""));
46204
+ };
46205
+
46206
+
46207
+ /**
46208
+ * @param {string} value
46209
+ * @return {!proto.com.lansweeper.dp.outbound.v1.NetworkInterface} returns this
46210
+ */
46211
+ proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.setScope = function(value) {
46212
+ return jspb.Message.setField(this, 39, value);
46213
+ };
46214
+
46215
+
46216
+ /**
46217
+ * Clears the field making it undefined.
46218
+ * @return {!proto.com.lansweeper.dp.outbound.v1.NetworkInterface} returns this
46219
+ */
46220
+ proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.clearScope = function() {
46221
+ return jspb.Message.setField(this, 39, undefined);
46222
+ };
46223
+
46224
+
46225
+ /**
46226
+ * Returns whether this field is set.
46227
+ * @return {boolean}
46228
+ */
46229
+ proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.hasScope = function() {
46230
+ return jspb.Message.getField(this, 39) != null;
46231
+ };
46232
+
46233
+
46234
+ /**
46235
+ * optional string q_disc = 40;
46236
+ * @return {string}
46237
+ */
46238
+ proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.getQDisc = function() {
46239
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 40, ""));
46240
+ };
46241
+
46242
+
46243
+ /**
46244
+ * @param {string} value
46245
+ * @return {!proto.com.lansweeper.dp.outbound.v1.NetworkInterface} returns this
46246
+ */
46247
+ proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.setQDisc = function(value) {
46248
+ return jspb.Message.setField(this, 40, value);
46249
+ };
46250
+
46251
+
46252
+ /**
46253
+ * Clears the field making it undefined.
46254
+ * @return {!proto.com.lansweeper.dp.outbound.v1.NetworkInterface} returns this
46255
+ */
46256
+ proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.clearQDisc = function() {
46257
+ return jspb.Message.setField(this, 40, undefined);
46258
+ };
46259
+
46260
+
46261
+ /**
46262
+ * Returns whether this field is set.
46263
+ * @return {boolean}
46264
+ */
46265
+ proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.hasQDisc = function() {
46266
+ return jspb.Message.getField(this, 40) != null;
46267
+ };
46268
+
46269
+
46270
+ /**
46271
+ * optional string group = 41;
46272
+ * @return {string}
46273
+ */
46274
+ proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.getGroup = function() {
46275
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 41, ""));
46276
+ };
46277
+
46278
+
46279
+ /**
46280
+ * @param {string} value
46281
+ * @return {!proto.com.lansweeper.dp.outbound.v1.NetworkInterface} returns this
46282
+ */
46283
+ proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.setGroup = function(value) {
46284
+ return jspb.Message.setField(this, 41, value);
46285
+ };
46286
+
46287
+
46288
+ /**
46289
+ * Clears the field making it undefined.
46290
+ * @return {!proto.com.lansweeper.dp.outbound.v1.NetworkInterface} returns this
46291
+ */
46292
+ proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.clearGroup = function() {
46293
+ return jspb.Message.setField(this, 41, undefined);
46294
+ };
46295
+
46296
+
46297
+ /**
46298
+ * Returns whether this field is set.
46299
+ * @return {boolean}
46300
+ */
46301
+ proto.com.lansweeper.dp.outbound.v1.NetworkInterface.prototype.hasGroup = function() {
46302
+ return jspb.Message.getField(this, 41) != null;
46303
+ };
46304
+
46305
+
45871
46306
 
45872
46307
 
45873
46308