@lansweeper/data-platform-outbound-grpc 0.3.10 → 0.3.12

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 (27) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/gen-proto/image.json +1 -1
  3. package/gen-proto/outbound_pb.d.ts +18 -0
  4. package/gen-proto/outbound_pb.js +144 -0
  5. package/generated-go/outbound.pb.go +6083 -6047
  6. package/java.json +1 -1
  7. package/model/pom.xml +1 -1
  8. package/model/src/main/proto/outbound.proto +7 -1
  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/outbound.proto +7 -1
  15. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/NetworkInterface.java +522 -119
  16. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/NetworkInterfaceOrBuilder.java +47 -2
  17. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +1979 -1976
  18. package/model/target/maven-archiver/pom.properties +2 -2
  19. package/model/target/{outbound-model-0.3.9-sources.jar → outbound-model-0.3.11-sources.jar} +0 -0
  20. package/model/target/{outbound-model-0.3.9.jar → outbound-model-0.3.11.jar} +0 -0
  21. package/package.json +2 -2
  22. package/pom.xml +1 -1
  23. package/proto/outbound.proto +7 -1
  24. package/service/pom.xml +1 -1
  25. package/service/target/maven-archiver/pom.properties +2 -2
  26. package/service/target/{outbound-service-0.3.9-sources.jar → outbound-service-0.3.11-sources.jar} +0 -0
  27. package/service/target/{outbound-service-0.3.9.jar → outbound-service-0.3.11.jar} +0 -0
@@ -32,6 +32,8 @@ private static final long serialVersionUID = 0L;
32
32
  dnsDomainSuffixSearchOrder_ = "";
33
33
  serviceName_ = "";
34
34
  databasePath_ = "";
35
+ netConnectionId_ = "";
36
+ manufacturer_ = "";
35
37
  description_ = "";
36
38
  alias_ = "";
37
39
  connectedDevices_ =
@@ -719,6 +721,119 @@ private static final long serialVersionUID = 0L;
719
721
  }
720
722
  }
721
723
 
724
+ public static final int NET_CONNECTION_ID_FIELD_NUMBER = 29;
725
+ @SuppressWarnings("serial")
726
+ private volatile java.lang.Object netConnectionId_ = "";
727
+ /**
728
+ * <code>optional string net_connection_id = 29;</code>
729
+ * @return Whether the netConnectionId field is set.
730
+ */
731
+ @java.lang.Override
732
+ public boolean hasNetConnectionId() {
733
+ return ((bitField0_ & 0x00000400) != 0);
734
+ }
735
+ /**
736
+ * <code>optional string net_connection_id = 29;</code>
737
+ * @return The netConnectionId.
738
+ */
739
+ @java.lang.Override
740
+ public java.lang.String getNetConnectionId() {
741
+ java.lang.Object ref = netConnectionId_;
742
+ if (ref instanceof java.lang.String) {
743
+ return (java.lang.String) ref;
744
+ } else {
745
+ com.google.protobuf.ByteString bs =
746
+ (com.google.protobuf.ByteString) ref;
747
+ java.lang.String s = bs.toStringUtf8();
748
+ netConnectionId_ = s;
749
+ return s;
750
+ }
751
+ }
752
+ /**
753
+ * <code>optional string net_connection_id = 29;</code>
754
+ * @return The bytes for netConnectionId.
755
+ */
756
+ @java.lang.Override
757
+ public com.google.protobuf.ByteString
758
+ getNetConnectionIdBytes() {
759
+ java.lang.Object ref = netConnectionId_;
760
+ if (ref instanceof java.lang.String) {
761
+ com.google.protobuf.ByteString b =
762
+ com.google.protobuf.ByteString.copyFromUtf8(
763
+ (java.lang.String) ref);
764
+ netConnectionId_ = b;
765
+ return b;
766
+ } else {
767
+ return (com.google.protobuf.ByteString) ref;
768
+ }
769
+ }
770
+
771
+ public static final int MANUFACTURER_FIELD_NUMBER = 30;
772
+ @SuppressWarnings("serial")
773
+ private volatile java.lang.Object manufacturer_ = "";
774
+ /**
775
+ * <code>optional string manufacturer = 30;</code>
776
+ * @return Whether the manufacturer field is set.
777
+ */
778
+ @java.lang.Override
779
+ public boolean hasManufacturer() {
780
+ return ((bitField0_ & 0x00000800) != 0);
781
+ }
782
+ /**
783
+ * <code>optional string manufacturer = 30;</code>
784
+ * @return The manufacturer.
785
+ */
786
+ @java.lang.Override
787
+ public java.lang.String getManufacturer() {
788
+ java.lang.Object ref = manufacturer_;
789
+ if (ref instanceof java.lang.String) {
790
+ return (java.lang.String) ref;
791
+ } else {
792
+ com.google.protobuf.ByteString bs =
793
+ (com.google.protobuf.ByteString) ref;
794
+ java.lang.String s = bs.toStringUtf8();
795
+ manufacturer_ = s;
796
+ return s;
797
+ }
798
+ }
799
+ /**
800
+ * <code>optional string manufacturer = 30;</code>
801
+ * @return The bytes for manufacturer.
802
+ */
803
+ @java.lang.Override
804
+ public com.google.protobuf.ByteString
805
+ getManufacturerBytes() {
806
+ java.lang.Object ref = manufacturer_;
807
+ if (ref instanceof java.lang.String) {
808
+ com.google.protobuf.ByteString b =
809
+ com.google.protobuf.ByteString.copyFromUtf8(
810
+ (java.lang.String) ref);
811
+ manufacturer_ = b;
812
+ return b;
813
+ } else {
814
+ return (com.google.protobuf.ByteString) ref;
815
+ }
816
+ }
817
+
818
+ public static final int NET_ENABLED_FIELD_NUMBER = 31;
819
+ private boolean netEnabled_ = false;
820
+ /**
821
+ * <code>optional bool net_enabled = 31;</code>
822
+ * @return Whether the netEnabled field is set.
823
+ */
824
+ @java.lang.Override
825
+ public boolean hasNetEnabled() {
826
+ return ((bitField0_ & 0x00001000) != 0);
827
+ }
828
+ /**
829
+ * <code>optional bool net_enabled = 31;</code>
830
+ * @return The netEnabled.
831
+ */
832
+ @java.lang.Override
833
+ public boolean getNetEnabled() {
834
+ return netEnabled_;
835
+ }
836
+
722
837
  public static final int SNMP_INDEX_FIELD_NUMBER = 27;
723
838
  private int snmpIndex_ = 0;
724
839
  /**
@@ -731,7 +846,7 @@ private static final long serialVersionUID = 0L;
731
846
  */
732
847
  @java.lang.Override
733
848
  public boolean hasSnmpIndex() {
734
- return ((bitField0_ & 0x00000400) != 0);
849
+ return ((bitField0_ & 0x00002000) != 0);
735
850
  }
736
851
  /**
737
852
  * <pre>
@@ -759,7 +874,7 @@ private static final long serialVersionUID = 0L;
759
874
  */
760
875
  @java.lang.Override
761
876
  public boolean hasDescription() {
762
- return ((bitField0_ & 0x00000800) != 0);
877
+ return ((bitField0_ & 0x00004000) != 0);
763
878
  }
764
879
  /**
765
880
  * <pre>
@@ -818,7 +933,7 @@ private static final long serialVersionUID = 0L;
818
933
  */
819
934
  @java.lang.Override
820
935
  public boolean hasAlias() {
821
- return ((bitField0_ & 0x00001000) != 0);
936
+ return ((bitField0_ & 0x00008000) != 0);
822
937
  }
823
938
  /**
824
939
  * <pre>
@@ -876,7 +991,7 @@ private static final long serialVersionUID = 0L;
876
991
  */
877
992
  @java.lang.Override
878
993
  public boolean hasMtu() {
879
- return ((bitField0_ & 0x00002000) != 0);
994
+ return ((bitField0_ & 0x00010000) != 0);
880
995
  }
881
996
  /**
882
997
  * <pre>
@@ -895,7 +1010,7 @@ private static final long serialVersionUID = 0L;
895
1010
  private long speed_ = 0L;
896
1011
  /**
897
1012
  * <pre>
898
- * SNMP only
1013
+ * SNMP and WindowsNetworkAdapter
899
1014
  * </pre>
900
1015
  *
901
1016
  * <code>optional int64 speed = 19;</code>
@@ -903,11 +1018,11 @@ private static final long serialVersionUID = 0L;
903
1018
  */
904
1019
  @java.lang.Override
905
1020
  public boolean hasSpeed() {
906
- return ((bitField0_ & 0x00004000) != 0);
1021
+ return ((bitField0_ & 0x00020000) != 0);
907
1022
  }
908
1023
  /**
909
1024
  * <pre>
910
- * SNMP only
1025
+ * SNMP and WindowsNetworkAdapter
911
1026
  * </pre>
912
1027
  *
913
1028
  * <code>optional int64 speed = 19;</code>
@@ -930,7 +1045,7 @@ private static final long serialVersionUID = 0L;
930
1045
  */
931
1046
  @java.lang.Override
932
1047
  public boolean hasHighSpeed() {
933
- return ((bitField0_ & 0x00008000) != 0);
1048
+ return ((bitField0_ & 0x00040000) != 0);
934
1049
  }
935
1050
  /**
936
1051
  * <pre>
@@ -957,7 +1072,7 @@ private static final long serialVersionUID = 0L;
957
1072
  */
958
1073
  @java.lang.Override
959
1074
  public boolean hasAdminStatus() {
960
- return ((bitField0_ & 0x00010000) != 0);
1075
+ return ((bitField0_ & 0x00080000) != 0);
961
1076
  }
962
1077
  /**
963
1078
  * <pre>
@@ -995,7 +1110,7 @@ private static final long serialVersionUID = 0L;
995
1110
  */
996
1111
  @java.lang.Override
997
1112
  public boolean hasOperStatus() {
998
- return ((bitField0_ & 0x00020000) != 0);
1113
+ return ((bitField0_ & 0x00100000) != 0);
999
1114
  }
1000
1115
  /**
1001
1116
  * <pre>
@@ -1139,7 +1254,7 @@ private static final long serialVersionUID = 0L;
1139
1254
  */
1140
1255
  @java.lang.Override
1141
1256
  public boolean hasIpv6PrefixLength() {
1142
- return ((bitField0_ & 0x00040000) != 0);
1257
+ return ((bitField0_ & 0x00200000) != 0);
1143
1258
  }
1144
1259
  /**
1145
1260
  * <pre>
@@ -1167,7 +1282,7 @@ private static final long serialVersionUID = 0L;
1167
1282
  */
1168
1283
  @java.lang.Override
1169
1284
  public boolean hasNetworkSignature() {
1170
- return ((bitField0_ & 0x00080000) != 0);
1285
+ return ((bitField0_ & 0x00400000) != 0);
1171
1286
  }
1172
1287
  /**
1173
1288
  * <pre>
@@ -1272,25 +1387,25 @@ private static final long serialVersionUID = 0L;
1272
1387
  if (((bitField0_ & 0x00000200) != 0)) {
1273
1388
  com.google.protobuf.GeneratedMessageV3.writeString(output, 15, databasePath_);
1274
1389
  }
1275
- if (((bitField0_ & 0x00000800) != 0)) {
1390
+ if (((bitField0_ & 0x00004000) != 0)) {
1276
1391
  com.google.protobuf.GeneratedMessageV3.writeString(output, 16, description_);
1277
1392
  }
1278
- if (((bitField0_ & 0x00001000) != 0)) {
1393
+ if (((bitField0_ & 0x00008000) != 0)) {
1279
1394
  com.google.protobuf.GeneratedMessageV3.writeString(output, 17, alias_);
1280
1395
  }
1281
- if (((bitField0_ & 0x00002000) != 0)) {
1396
+ if (((bitField0_ & 0x00010000) != 0)) {
1282
1397
  output.writeInt64(18, mtu_);
1283
1398
  }
1284
- if (((bitField0_ & 0x00004000) != 0)) {
1399
+ if (((bitField0_ & 0x00020000) != 0)) {
1285
1400
  output.writeInt64(19, speed_);
1286
1401
  }
1287
- if (((bitField0_ & 0x00008000) != 0)) {
1402
+ if (((bitField0_ & 0x00040000) != 0)) {
1288
1403
  output.writeInt64(20, highSpeed_);
1289
1404
  }
1290
- if (((bitField0_ & 0x00010000) != 0)) {
1405
+ if (((bitField0_ & 0x00080000) != 0)) {
1291
1406
  output.writeMessage(21, getAdminStatus());
1292
1407
  }
1293
- if (((bitField0_ & 0x00020000) != 0)) {
1408
+ if (((bitField0_ & 0x00100000) != 0)) {
1294
1409
  output.writeMessage(22, getOperStatus());
1295
1410
  }
1296
1411
  for (int i = 0; i < connectedDevices_.size(); i++) {
@@ -1299,15 +1414,24 @@ private static final long serialVersionUID = 0L;
1299
1414
  for (int i = 0; i < vlans_.size(); i++) {
1300
1415
  com.google.protobuf.GeneratedMessageV3.writeString(output, 24, vlans_.getRaw(i));
1301
1416
  }
1302
- if (((bitField0_ & 0x00040000) != 0)) {
1417
+ if (((bitField0_ & 0x00200000) != 0)) {
1303
1418
  output.writeUInt64(25, ipv6PrefixLength_);
1304
1419
  }
1305
- if (((bitField0_ & 0x00080000) != 0)) {
1420
+ if (((bitField0_ & 0x00400000) != 0)) {
1306
1421
  com.google.protobuf.GeneratedMessageV3.writeString(output, 26, networkSignature_);
1307
1422
  }
1308
- if (((bitField0_ & 0x00000400) != 0)) {
1423
+ if (((bitField0_ & 0x00002000) != 0)) {
1309
1424
  output.writeInt32(27, snmpIndex_);
1310
1425
  }
1426
+ if (((bitField0_ & 0x00000400) != 0)) {
1427
+ com.google.protobuf.GeneratedMessageV3.writeString(output, 29, netConnectionId_);
1428
+ }
1429
+ if (((bitField0_ & 0x00000800) != 0)) {
1430
+ com.google.protobuf.GeneratedMessageV3.writeString(output, 30, manufacturer_);
1431
+ }
1432
+ if (((bitField0_ & 0x00001000) != 0)) {
1433
+ output.writeBool(31, netEnabled_);
1434
+ }
1311
1435
  getUnknownFields().writeTo(output);
1312
1436
  }
1313
1437
 
@@ -1369,29 +1493,29 @@ private static final long serialVersionUID = 0L;
1369
1493
  if (((bitField0_ & 0x00000200) != 0)) {
1370
1494
  size += com.google.protobuf.GeneratedMessageV3.computeStringSize(15, databasePath_);
1371
1495
  }
1372
- if (((bitField0_ & 0x00000800) != 0)) {
1496
+ if (((bitField0_ & 0x00004000) != 0)) {
1373
1497
  size += com.google.protobuf.GeneratedMessageV3.computeStringSize(16, description_);
1374
1498
  }
1375
- if (((bitField0_ & 0x00001000) != 0)) {
1499
+ if (((bitField0_ & 0x00008000) != 0)) {
1376
1500
  size += com.google.protobuf.GeneratedMessageV3.computeStringSize(17, alias_);
1377
1501
  }
1378
- if (((bitField0_ & 0x00002000) != 0)) {
1502
+ if (((bitField0_ & 0x00010000) != 0)) {
1379
1503
  size += com.google.protobuf.CodedOutputStream
1380
1504
  .computeInt64Size(18, mtu_);
1381
1505
  }
1382
- if (((bitField0_ & 0x00004000) != 0)) {
1506
+ if (((bitField0_ & 0x00020000) != 0)) {
1383
1507
  size += com.google.protobuf.CodedOutputStream
1384
1508
  .computeInt64Size(19, speed_);
1385
1509
  }
1386
- if (((bitField0_ & 0x00008000) != 0)) {
1510
+ if (((bitField0_ & 0x00040000) != 0)) {
1387
1511
  size += com.google.protobuf.CodedOutputStream
1388
1512
  .computeInt64Size(20, highSpeed_);
1389
1513
  }
1390
- if (((bitField0_ & 0x00010000) != 0)) {
1514
+ if (((bitField0_ & 0x00080000) != 0)) {
1391
1515
  size += com.google.protobuf.CodedOutputStream
1392
1516
  .computeMessageSize(21, getAdminStatus());
1393
1517
  }
1394
- if (((bitField0_ & 0x00020000) != 0)) {
1518
+ if (((bitField0_ & 0x00100000) != 0)) {
1395
1519
  size += com.google.protobuf.CodedOutputStream
1396
1520
  .computeMessageSize(22, getOperStatus());
1397
1521
  }
@@ -1411,17 +1535,27 @@ private static final long serialVersionUID = 0L;
1411
1535
  size += dataSize;
1412
1536
  size += 2 * getVlansList().size();
1413
1537
  }
1414
- if (((bitField0_ & 0x00040000) != 0)) {
1538
+ if (((bitField0_ & 0x00200000) != 0)) {
1415
1539
  size += com.google.protobuf.CodedOutputStream
1416
1540
  .computeUInt64Size(25, ipv6PrefixLength_);
1417
1541
  }
1418
- if (((bitField0_ & 0x00080000) != 0)) {
1542
+ if (((bitField0_ & 0x00400000) != 0)) {
1419
1543
  size += com.google.protobuf.GeneratedMessageV3.computeStringSize(26, networkSignature_);
1420
1544
  }
1421
- if (((bitField0_ & 0x00000400) != 0)) {
1545
+ if (((bitField0_ & 0x00002000) != 0)) {
1422
1546
  size += com.google.protobuf.CodedOutputStream
1423
1547
  .computeInt32Size(27, snmpIndex_);
1424
1548
  }
1549
+ if (((bitField0_ & 0x00000400) != 0)) {
1550
+ size += com.google.protobuf.GeneratedMessageV3.computeStringSize(29, netConnectionId_);
1551
+ }
1552
+ if (((bitField0_ & 0x00000800) != 0)) {
1553
+ size += com.google.protobuf.GeneratedMessageV3.computeStringSize(30, manufacturer_);
1554
+ }
1555
+ if (((bitField0_ & 0x00001000) != 0)) {
1556
+ size += com.google.protobuf.CodedOutputStream
1557
+ .computeBoolSize(31, netEnabled_);
1558
+ }
1425
1559
  size += getUnknownFields().getSerializedSize();
1426
1560
  memoizedSize = size;
1427
1561
  return size;
@@ -1497,6 +1631,21 @@ private static final long serialVersionUID = 0L;
1497
1631
  if (!getDatabasePath()
1498
1632
  .equals(other.getDatabasePath())) return false;
1499
1633
  }
1634
+ if (hasNetConnectionId() != other.hasNetConnectionId()) return false;
1635
+ if (hasNetConnectionId()) {
1636
+ if (!getNetConnectionId()
1637
+ .equals(other.getNetConnectionId())) return false;
1638
+ }
1639
+ if (hasManufacturer() != other.hasManufacturer()) return false;
1640
+ if (hasManufacturer()) {
1641
+ if (!getManufacturer()
1642
+ .equals(other.getManufacturer())) return false;
1643
+ }
1644
+ if (hasNetEnabled() != other.hasNetEnabled()) return false;
1645
+ if (hasNetEnabled()) {
1646
+ if (getNetEnabled()
1647
+ != other.getNetEnabled()) return false;
1648
+ }
1500
1649
  if (hasSnmpIndex() != other.hasSnmpIndex()) return false;
1501
1650
  if (hasSnmpIndex()) {
1502
1651
  if (getSnmpIndex()
@@ -1617,6 +1766,19 @@ private static final long serialVersionUID = 0L;
1617
1766
  hash = (37 * hash) + DATABASE_PATH_FIELD_NUMBER;
1618
1767
  hash = (53 * hash) + getDatabasePath().hashCode();
1619
1768
  }
1769
+ if (hasNetConnectionId()) {
1770
+ hash = (37 * hash) + NET_CONNECTION_ID_FIELD_NUMBER;
1771
+ hash = (53 * hash) + getNetConnectionId().hashCode();
1772
+ }
1773
+ if (hasManufacturer()) {
1774
+ hash = (37 * hash) + MANUFACTURER_FIELD_NUMBER;
1775
+ hash = (53 * hash) + getManufacturer().hashCode();
1776
+ }
1777
+ if (hasNetEnabled()) {
1778
+ hash = (37 * hash) + NET_ENABLED_FIELD_NUMBER;
1779
+ hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
1780
+ getNetEnabled());
1781
+ }
1620
1782
  if (hasSnmpIndex()) {
1621
1783
  hash = (37 * hash) + SNMP_INDEX_FIELD_NUMBER;
1622
1784
  hash = (53 * hash) + getSnmpIndex();
@@ -1830,6 +1992,9 @@ private static final long serialVersionUID = 0L;
1830
1992
  dnsDomainSuffixSearchOrder_ = "";
1831
1993
  serviceName_ = "";
1832
1994
  databasePath_ = "";
1995
+ netConnectionId_ = "";
1996
+ manufacturer_ = "";
1997
+ netEnabled_ = false;
1833
1998
  snmpIndex_ = 0;
1834
1999
  description_ = "";
1835
2000
  alias_ = "";
@@ -1953,56 +2118,68 @@ private static final long serialVersionUID = 0L;
1953
2118
  to_bitField0_ |= 0x00000200;
1954
2119
  }
1955
2120
  if (((from_bitField0_ & 0x00008000) != 0)) {
1956
- result.snmpIndex_ = snmpIndex_;
2121
+ result.netConnectionId_ = netConnectionId_;
1957
2122
  to_bitField0_ |= 0x00000400;
1958
2123
  }
1959
2124
  if (((from_bitField0_ & 0x00010000) != 0)) {
1960
- result.description_ = description_;
2125
+ result.manufacturer_ = manufacturer_;
1961
2126
  to_bitField0_ |= 0x00000800;
1962
2127
  }
1963
2128
  if (((from_bitField0_ & 0x00020000) != 0)) {
1964
- result.alias_ = alias_;
2129
+ result.netEnabled_ = netEnabled_;
1965
2130
  to_bitField0_ |= 0x00001000;
1966
2131
  }
1967
2132
  if (((from_bitField0_ & 0x00040000) != 0)) {
1968
- result.mtu_ = mtu_;
2133
+ result.snmpIndex_ = snmpIndex_;
1969
2134
  to_bitField0_ |= 0x00002000;
1970
2135
  }
1971
2136
  if (((from_bitField0_ & 0x00080000) != 0)) {
1972
- result.speed_ = speed_;
2137
+ result.description_ = description_;
1973
2138
  to_bitField0_ |= 0x00004000;
1974
2139
  }
1975
2140
  if (((from_bitField0_ & 0x00100000) != 0)) {
1976
- result.highSpeed_ = highSpeed_;
2141
+ result.alias_ = alias_;
1977
2142
  to_bitField0_ |= 0x00008000;
1978
2143
  }
1979
2144
  if (((from_bitField0_ & 0x00200000) != 0)) {
2145
+ result.mtu_ = mtu_;
2146
+ to_bitField0_ |= 0x00010000;
2147
+ }
2148
+ if (((from_bitField0_ & 0x00400000) != 0)) {
2149
+ result.speed_ = speed_;
2150
+ to_bitField0_ |= 0x00020000;
2151
+ }
2152
+ if (((from_bitField0_ & 0x00800000) != 0)) {
2153
+ result.highSpeed_ = highSpeed_;
2154
+ to_bitField0_ |= 0x00040000;
2155
+ }
2156
+ if (((from_bitField0_ & 0x01000000) != 0)) {
1980
2157
  result.adminStatus_ = adminStatusBuilder_ == null
1981
2158
  ? adminStatus_
1982
2159
  : adminStatusBuilder_.build();
1983
- to_bitField0_ |= 0x00010000;
2160
+ to_bitField0_ |= 0x00080000;
1984
2161
  }
1985
- if (((from_bitField0_ & 0x00400000) != 0)) {
2162
+ if (((from_bitField0_ & 0x02000000) != 0)) {
1986
2163
  result.operStatus_ = operStatusBuilder_ == null
1987
2164
  ? operStatus_
1988
2165
  : operStatusBuilder_.build();
1989
- to_bitField0_ |= 0x00020000;
2166
+ to_bitField0_ |= 0x00100000;
1990
2167
  }
1991
- if (((from_bitField0_ & 0x00800000) != 0)) {
2168
+ if (((from_bitField0_ & 0x04000000) != 0)) {
1992
2169
  connectedDevices_.makeImmutable();
1993
2170
  result.connectedDevices_ = connectedDevices_;
1994
2171
  }
1995
- if (((from_bitField0_ & 0x01000000) != 0)) {
2172
+ if (((from_bitField0_ & 0x08000000) != 0)) {
1996
2173
  vlans_.makeImmutable();
1997
2174
  result.vlans_ = vlans_;
1998
2175
  }
1999
- if (((from_bitField0_ & 0x02000000) != 0)) {
2176
+ if (((from_bitField0_ & 0x10000000) != 0)) {
2000
2177
  result.ipv6PrefixLength_ = ipv6PrefixLength_;
2001
- to_bitField0_ |= 0x00040000;
2178
+ to_bitField0_ |= 0x00200000;
2002
2179
  }
2003
- if (((from_bitField0_ & 0x04000000) != 0)) {
2180
+ if (((from_bitField0_ & 0x20000000) != 0)) {
2004
2181
  result.networkSignature_ = networkSignature_;
2005
- to_bitField0_ |= 0x00080000;
2182
+ to_bitField0_ |= 0x00400000;
2006
2183
  }
2007
2184
  result.bitField0_ |= to_bitField0_;
2008
2185
  }
@@ -2150,17 +2327,30 @@ private static final long serialVersionUID = 0L;
2150
2327
  bitField0_ |= 0x00004000;
2151
2328
  onChanged();
2152
2329
  }
2330
+ if (other.hasNetConnectionId()) {
2331
+ netConnectionId_ = other.netConnectionId_;
2332
+ bitField0_ |= 0x00008000;
2333
+ onChanged();
2334
+ }
2335
+ if (other.hasManufacturer()) {
2336
+ manufacturer_ = other.manufacturer_;
2337
+ bitField0_ |= 0x00010000;
2338
+ onChanged();
2339
+ }
2340
+ if (other.hasNetEnabled()) {
2341
+ setNetEnabled(other.getNetEnabled());
2342
+ }
2153
2343
  if (other.hasSnmpIndex()) {
2154
2344
  setSnmpIndex(other.getSnmpIndex());
2155
2345
  }
2156
2346
  if (other.hasDescription()) {
2157
2347
  description_ = other.description_;
2158
- bitField0_ |= 0x00010000;
2348
+ bitField0_ |= 0x00080000;
2159
2349
  onChanged();
2160
2350
  }
2161
2351
  if (other.hasAlias()) {
2162
2352
  alias_ = other.alias_;
2163
- bitField0_ |= 0x00020000;
2353
+ bitField0_ |= 0x00100000;
2164
2354
  onChanged();
2165
2355
  }
2166
2356
  if (other.hasMtu()) {
@@ -2181,7 +2371,7 @@ private static final long serialVersionUID = 0L;
2181
2371
  if (!other.connectedDevices_.isEmpty()) {
2182
2372
  if (connectedDevices_.isEmpty()) {
2183
2373
  connectedDevices_ = other.connectedDevices_;
2184
- bitField0_ |= 0x00800000;
2374
+ bitField0_ |= 0x04000000;
2185
2375
  } else {
2186
2376
  ensureConnectedDevicesIsMutable();
2187
2377
  connectedDevices_.addAll(other.connectedDevices_);
@@ -2191,7 +2381,7 @@ private static final long serialVersionUID = 0L;
2191
2381
  if (!other.vlans_.isEmpty()) {
2192
2382
  if (vlans_.isEmpty()) {
2193
2383
  vlans_ = other.vlans_;
2194
- bitField0_ |= 0x01000000;
2384
+ bitField0_ |= 0x08000000;
2195
2385
  } else {
2196
2386
  ensureVlansIsMutable();
2197
2387
  vlans_.addAll(other.vlans_);
@@ -2203,7 +2393,7 @@ private static final long serialVersionUID = 0L;
2203
2393
  }
2204
2394
  if (other.hasNetworkSignature()) {
2205
2395
  networkSignature_ = other.networkSignature_;
2206
- bitField0_ |= 0x04000000;
2396
+ bitField0_ |= 0x20000000;
2207
2397
  onChanged();
2208
2398
  }
2209
2399
  this.mergeUnknownFields(other.getUnknownFields());
@@ -2318,41 +2508,41 @@ private static final long serialVersionUID = 0L;
2318
2508
  } // case 122
2319
2509
  case 130: {
2320
2510
  description_ = input.readStringRequireUtf8();
2321
- bitField0_ |= 0x00010000;
2511
+ bitField0_ |= 0x00080000;
2322
2512
  break;
2323
2513
  } // case 130
2324
2514
  case 138: {
2325
2515
  alias_ = input.readStringRequireUtf8();
2326
- bitField0_ |= 0x00020000;
2516
+ bitField0_ |= 0x00100000;
2327
2517
  break;
2328
2518
  } // case 138
2329
2519
  case 144: {
2330
2520
  mtu_ = input.readInt64();
2331
- bitField0_ |= 0x00040000;
2521
+ bitField0_ |= 0x00200000;
2332
2522
  break;
2333
2523
  } // case 144
2334
2524
  case 152: {
2335
2525
  speed_ = input.readInt64();
2336
- bitField0_ |= 0x00080000;
2526
+ bitField0_ |= 0x00400000;
2337
2527
  break;
2338
2528
  } // case 152
2339
2529
  case 160: {
2340
2530
  highSpeed_ = input.readInt64();
2341
- bitField0_ |= 0x00100000;
2531
+ bitField0_ |= 0x00800000;
2342
2532
  break;
2343
2533
  } // case 160
2344
2534
  case 170: {
2345
2535
  input.readMessage(
2346
2536
  getAdminStatusFieldBuilder().getBuilder(),
2347
2537
  extensionRegistry);
2348
- bitField0_ |= 0x00200000;
2538
+ bitField0_ |= 0x01000000;
2349
2539
  break;
2350
2540
  } // case 170
2351
2541
  case 178: {
2352
2542
  input.readMessage(
2353
2543
  getOperStatusFieldBuilder().getBuilder(),
2354
2544
  extensionRegistry);
2355
- bitField0_ |= 0x00400000;
2545
+ bitField0_ |= 0x02000000;
2356
2546
  break;
2357
2547
  } // case 178
2358
2548
  case 186: {
@@ -2369,19 +2559,34 @@ private static final long serialVersionUID = 0L;
2369
2559
  } // case 194
2370
2560
  case 200: {
2371
2561
  ipv6PrefixLength_ = input.readUInt64();
2372
- bitField0_ |= 0x02000000;
2562
+ bitField0_ |= 0x10000000;
2373
2563
  break;
2374
2564
  } // case 200
2375
2565
  case 210: {
2376
2566
  networkSignature_ = input.readStringRequireUtf8();
2377
- bitField0_ |= 0x04000000;
2567
+ bitField0_ |= 0x20000000;
2378
2568
  break;
2379
2569
  } // case 210
2380
2570
  case 216: {
2381
2571
  snmpIndex_ = input.readInt32();
2382
- bitField0_ |= 0x00008000;
2572
+ bitField0_ |= 0x00040000;
2383
2573
  break;
2384
2574
  } // case 216
2575
+ case 234: {
2576
+ netConnectionId_ = input.readStringRequireUtf8();
2577
+ bitField0_ |= 0x00008000;
2578
+ break;
2579
+ } // case 234
2580
+ case 242: {
2581
+ manufacturer_ = input.readStringRequireUtf8();
2582
+ bitField0_ |= 0x00010000;
2583
+ break;
2584
+ } // case 242
2585
+ case 248: {
2586
+ netEnabled_ = input.readBool();
2587
+ bitField0_ |= 0x00020000;
2588
+ break;
2589
+ } // case 248
2385
2590
  default: {
2386
2591
  if (!super.parseUnknownField(input, extensionRegistry, tag)) {
2387
2592
  done = true; // was an endgroup tag
@@ -3761,6 +3966,204 @@ private static final long serialVersionUID = 0L;
3761
3966
  return this;
3762
3967
  }
3763
3968
 
3969
+ private java.lang.Object netConnectionId_ = "";
3970
+ /**
3971
+ * <code>optional string net_connection_id = 29;</code>
3972
+ * @return Whether the netConnectionId field is set.
3973
+ */
3974
+ public boolean hasNetConnectionId() {
3975
+ return ((bitField0_ & 0x00008000) != 0);
3976
+ }
3977
+ /**
3978
+ * <code>optional string net_connection_id = 29;</code>
3979
+ * @return The netConnectionId.
3980
+ */
3981
+ public java.lang.String getNetConnectionId() {
3982
+ java.lang.Object ref = netConnectionId_;
3983
+ if (!(ref instanceof java.lang.String)) {
3984
+ com.google.protobuf.ByteString bs =
3985
+ (com.google.protobuf.ByteString) ref;
3986
+ java.lang.String s = bs.toStringUtf8();
3987
+ netConnectionId_ = s;
3988
+ return s;
3989
+ } else {
3990
+ return (java.lang.String) ref;
3991
+ }
3992
+ }
3993
+ /**
3994
+ * <code>optional string net_connection_id = 29;</code>
3995
+ * @return The bytes for netConnectionId.
3996
+ */
3997
+ public com.google.protobuf.ByteString
3998
+ getNetConnectionIdBytes() {
3999
+ java.lang.Object ref = netConnectionId_;
4000
+ if (ref instanceof String) {
4001
+ com.google.protobuf.ByteString b =
4002
+ com.google.protobuf.ByteString.copyFromUtf8(
4003
+ (java.lang.String) ref);
4004
+ netConnectionId_ = b;
4005
+ return b;
4006
+ } else {
4007
+ return (com.google.protobuf.ByteString) ref;
4008
+ }
4009
+ }
4010
+ /**
4011
+ * <code>optional string net_connection_id = 29;</code>
4012
+ * @param value The netConnectionId to set.
4013
+ * @return This builder for chaining.
4014
+ */
4015
+ public Builder setNetConnectionId(
4016
+ java.lang.String value) {
4017
+ if (value == null) { throw new NullPointerException(); }
4018
+ netConnectionId_ = value;
4019
+ bitField0_ |= 0x00008000;
4020
+ onChanged();
4021
+ return this;
4022
+ }
4023
+ /**
4024
+ * <code>optional string net_connection_id = 29;</code>
4025
+ * @return This builder for chaining.
4026
+ */
4027
+ public Builder clearNetConnectionId() {
4028
+ netConnectionId_ = getDefaultInstance().getNetConnectionId();
4029
+ bitField0_ = (bitField0_ & ~0x00008000);
4030
+ onChanged();
4031
+ return this;
4032
+ }
4033
+ /**
4034
+ * <code>optional string net_connection_id = 29;</code>
4035
+ * @param value The bytes for netConnectionId to set.
4036
+ * @return This builder for chaining.
4037
+ */
4038
+ public Builder setNetConnectionIdBytes(
4039
+ com.google.protobuf.ByteString value) {
4040
+ if (value == null) { throw new NullPointerException(); }
4041
+ checkByteStringIsUtf8(value);
4042
+ netConnectionId_ = value;
4043
+ bitField0_ |= 0x00008000;
4044
+ onChanged();
4045
+ return this;
4046
+ }
4047
+
4048
+ private java.lang.Object manufacturer_ = "";
4049
+ /**
4050
+ * <code>optional string manufacturer = 30;</code>
4051
+ * @return Whether the manufacturer field is set.
4052
+ */
4053
+ public boolean hasManufacturer() {
4054
+ return ((bitField0_ & 0x00010000) != 0);
4055
+ }
4056
+ /**
4057
+ * <code>optional string manufacturer = 30;</code>
4058
+ * @return The manufacturer.
4059
+ */
4060
+ public java.lang.String getManufacturer() {
4061
+ java.lang.Object ref = manufacturer_;
4062
+ if (!(ref instanceof java.lang.String)) {
4063
+ com.google.protobuf.ByteString bs =
4064
+ (com.google.protobuf.ByteString) ref;
4065
+ java.lang.String s = bs.toStringUtf8();
4066
+ manufacturer_ = s;
4067
+ return s;
4068
+ } else {
4069
+ return (java.lang.String) ref;
4070
+ }
4071
+ }
4072
+ /**
4073
+ * <code>optional string manufacturer = 30;</code>
4074
+ * @return The bytes for manufacturer.
4075
+ */
4076
+ public com.google.protobuf.ByteString
4077
+ getManufacturerBytes() {
4078
+ java.lang.Object ref = manufacturer_;
4079
+ if (ref instanceof String) {
4080
+ com.google.protobuf.ByteString b =
4081
+ com.google.protobuf.ByteString.copyFromUtf8(
4082
+ (java.lang.String) ref);
4083
+ manufacturer_ = b;
4084
+ return b;
4085
+ } else {
4086
+ return (com.google.protobuf.ByteString) ref;
4087
+ }
4088
+ }
4089
+ /**
4090
+ * <code>optional string manufacturer = 30;</code>
4091
+ * @param value The manufacturer to set.
4092
+ * @return This builder for chaining.
4093
+ */
4094
+ public Builder setManufacturer(
4095
+ java.lang.String value) {
4096
+ if (value == null) { throw new NullPointerException(); }
4097
+ manufacturer_ = value;
4098
+ bitField0_ |= 0x00010000;
4099
+ onChanged();
4100
+ return this;
4101
+ }
4102
+ /**
4103
+ * <code>optional string manufacturer = 30;</code>
4104
+ * @return This builder for chaining.
4105
+ */
4106
+ public Builder clearManufacturer() {
4107
+ manufacturer_ = getDefaultInstance().getManufacturer();
4108
+ bitField0_ = (bitField0_ & ~0x00010000);
4109
+ onChanged();
4110
+ return this;
4111
+ }
4112
+ /**
4113
+ * <code>optional string manufacturer = 30;</code>
4114
+ * @param value The bytes for manufacturer to set.
4115
+ * @return This builder for chaining.
4116
+ */
4117
+ public Builder setManufacturerBytes(
4118
+ com.google.protobuf.ByteString value) {
4119
+ if (value == null) { throw new NullPointerException(); }
4120
+ checkByteStringIsUtf8(value);
4121
+ manufacturer_ = value;
4122
+ bitField0_ |= 0x00010000;
4123
+ onChanged();
4124
+ return this;
4125
+ }
4126
+
4127
+ private boolean netEnabled_ ;
4128
+ /**
4129
+ * <code>optional bool net_enabled = 31;</code>
4130
+ * @return Whether the netEnabled field is set.
4131
+ */
4132
+ @java.lang.Override
4133
+ public boolean hasNetEnabled() {
4134
+ return ((bitField0_ & 0x00020000) != 0);
4135
+ }
4136
+ /**
4137
+ * <code>optional bool net_enabled = 31;</code>
4138
+ * @return The netEnabled.
4139
+ */
4140
+ @java.lang.Override
4141
+ public boolean getNetEnabled() {
4142
+ return netEnabled_;
4143
+ }
4144
+ /**
4145
+ * <code>optional bool net_enabled = 31;</code>
4146
+ * @param value The netEnabled to set.
4147
+ * @return This builder for chaining.
4148
+ */
4149
+ public Builder setNetEnabled(boolean value) {
4150
+
4151
+ netEnabled_ = value;
4152
+ bitField0_ |= 0x00020000;
4153
+ onChanged();
4154
+ return this;
4155
+ }
4156
+ /**
4157
+ * <code>optional bool net_enabled = 31;</code>
4158
+ * @return This builder for chaining.
4159
+ */
4160
+ public Builder clearNetEnabled() {
4161
+ bitField0_ = (bitField0_ & ~0x00020000);
4162
+ netEnabled_ = false;
4163
+ onChanged();
4164
+ return this;
4165
+ }
4166
+
3764
4167
  private int snmpIndex_ ;
3765
4168
  /**
3766
4169
  * <pre>
@@ -3772,7 +4175,7 @@ private static final long serialVersionUID = 0L;
3772
4175
  */
3773
4176
  @java.lang.Override
3774
4177
  public boolean hasSnmpIndex() {
3775
- return ((bitField0_ & 0x00008000) != 0);
4178
+ return ((bitField0_ & 0x00040000) != 0);
3776
4179
  }
3777
4180
  /**
3778
4181
  * <pre>
@@ -3798,7 +4201,7 @@ private static final long serialVersionUID = 0L;
3798
4201
  public Builder setSnmpIndex(int value) {
3799
4202
 
3800
4203
  snmpIndex_ = value;
3801
- bitField0_ |= 0x00008000;
4204
+ bitField0_ |= 0x00040000;
3802
4205
  onChanged();
3803
4206
  return this;
3804
4207
  }
@@ -3811,7 +4214,7 @@ private static final long serialVersionUID = 0L;
3811
4214
  * @return This builder for chaining.
3812
4215
  */
3813
4216
  public Builder clearSnmpIndex() {
3814
- bitField0_ = (bitField0_ & ~0x00008000);
4217
+ bitField0_ = (bitField0_ & ~0x00040000);
3815
4218
  snmpIndex_ = 0;
3816
4219
  onChanged();
3817
4220
  return this;
@@ -3827,7 +4230,7 @@ private static final long serialVersionUID = 0L;
3827
4230
  * @return Whether the description field is set.
3828
4231
  */
3829
4232
  public boolean hasDescription() {
3830
- return ((bitField0_ & 0x00010000) != 0);
4233
+ return ((bitField0_ & 0x00080000) != 0);
3831
4234
  }
3832
4235
  /**
3833
4236
  * <pre>
@@ -3883,7 +4286,7 @@ private static final long serialVersionUID = 0L;
3883
4286
  java.lang.String value) {
3884
4287
  if (value == null) { throw new NullPointerException(); }
3885
4288
  description_ = value;
3886
- bitField0_ |= 0x00010000;
4289
+ bitField0_ |= 0x00080000;
3887
4290
  onChanged();
3888
4291
  return this;
3889
4292
  }
@@ -3897,7 +4300,7 @@ private static final long serialVersionUID = 0L;
3897
4300
  */
3898
4301
  public Builder clearDescription() {
3899
4302
  description_ = getDefaultInstance().getDescription();
3900
- bitField0_ = (bitField0_ & ~0x00010000);
4303
+ bitField0_ = (bitField0_ & ~0x00080000);
3901
4304
  onChanged();
3902
4305
  return this;
3903
4306
  }
@@ -3915,7 +4318,7 @@ private static final long serialVersionUID = 0L;
3915
4318
  if (value == null) { throw new NullPointerException(); }
3916
4319
  checkByteStringIsUtf8(value);
3917
4320
  description_ = value;
3918
- bitField0_ |= 0x00010000;
4321
+ bitField0_ |= 0x00080000;
3919
4322
  onChanged();
3920
4323
  return this;
3921
4324
  }
@@ -3930,7 +4333,7 @@ private static final long serialVersionUID = 0L;
3930
4333
  * @return Whether the alias field is set.
3931
4334
  */
3932
4335
  public boolean hasAlias() {
3933
- return ((bitField0_ & 0x00020000) != 0);
4336
+ return ((bitField0_ & 0x00100000) != 0);
3934
4337
  }
3935
4338
  /**
3936
4339
  * <pre>
@@ -3986,7 +4389,7 @@ private static final long serialVersionUID = 0L;
3986
4389
  java.lang.String value) {
3987
4390
  if (value == null) { throw new NullPointerException(); }
3988
4391
  alias_ = value;
3989
- bitField0_ |= 0x00020000;
4392
+ bitField0_ |= 0x00100000;
3990
4393
  onChanged();
3991
4394
  return this;
3992
4395
  }
@@ -4000,7 +4403,7 @@ private static final long serialVersionUID = 0L;
4000
4403
  */
4001
4404
  public Builder clearAlias() {
4002
4405
  alias_ = getDefaultInstance().getAlias();
4003
- bitField0_ = (bitField0_ & ~0x00020000);
4406
+ bitField0_ = (bitField0_ & ~0x00100000);
4004
4407
  onChanged();
4005
4408
  return this;
4006
4409
  }
@@ -4018,7 +4421,7 @@ private static final long serialVersionUID = 0L;
4018
4421
  if (value == null) { throw new NullPointerException(); }
4019
4422
  checkByteStringIsUtf8(value);
4020
4423
  alias_ = value;
4021
- bitField0_ |= 0x00020000;
4424
+ bitField0_ |= 0x00100000;
4022
4425
  onChanged();
4023
4426
  return this;
4024
4427
  }
@@ -4034,7 +4437,7 @@ private static final long serialVersionUID = 0L;
4034
4437
  */
4035
4438
  @java.lang.Override
4036
4439
  public boolean hasMtu() {
4037
- return ((bitField0_ & 0x00040000) != 0);
4440
+ return ((bitField0_ & 0x00200000) != 0);
4038
4441
  }
4039
4442
  /**
4040
4443
  * <pre>
@@ -4060,7 +4463,7 @@ private static final long serialVersionUID = 0L;
4060
4463
  public Builder setMtu(long value) {
4061
4464
 
4062
4465
  mtu_ = value;
4063
- bitField0_ |= 0x00040000;
4466
+ bitField0_ |= 0x00200000;
4064
4467
  onChanged();
4065
4468
  return this;
4066
4469
  }
@@ -4073,7 +4476,7 @@ private static final long serialVersionUID = 0L;
4073
4476
  * @return This builder for chaining.
4074
4477
  */
4075
4478
  public Builder clearMtu() {
4076
- bitField0_ = (bitField0_ & ~0x00040000);
4479
+ bitField0_ = (bitField0_ & ~0x00200000);
4077
4480
  mtu_ = 0L;
4078
4481
  onChanged();
4079
4482
  return this;
@@ -4082,7 +4485,7 @@ private static final long serialVersionUID = 0L;
4082
4485
  private long speed_ ;
4083
4486
  /**
4084
4487
  * <pre>
4085
- * SNMP only
4488
+ * SNMP and WindowsNetworkAdapter
4086
4489
  * </pre>
4087
4490
  *
4088
4491
  * <code>optional int64 speed = 19;</code>
@@ -4090,11 +4493,11 @@ private static final long serialVersionUID = 0L;
4090
4493
  */
4091
4494
  @java.lang.Override
4092
4495
  public boolean hasSpeed() {
4093
- return ((bitField0_ & 0x00080000) != 0);
4496
+ return ((bitField0_ & 0x00400000) != 0);
4094
4497
  }
4095
4498
  /**
4096
4499
  * <pre>
4097
- * SNMP only
4500
+ * SNMP and WindowsNetworkAdapter
4098
4501
  * </pre>
4099
4502
  *
4100
4503
  * <code>optional int64 speed = 19;</code>
@@ -4106,7 +4509,7 @@ private static final long serialVersionUID = 0L;
4106
4509
  }
4107
4510
  /**
4108
4511
  * <pre>
4109
- * SNMP only
4512
+ * SNMP and WindowsNetworkAdapter
4110
4513
  * </pre>
4111
4514
  *
4112
4515
  * <code>optional int64 speed = 19;</code>
@@ -4116,20 +4519,20 @@ private static final long serialVersionUID = 0L;
4116
4519
  public Builder setSpeed(long value) {
4117
4520
 
4118
4521
  speed_ = value;
4119
- bitField0_ |= 0x00080000;
4522
+ bitField0_ |= 0x00400000;
4120
4523
  onChanged();
4121
4524
  return this;
4122
4525
  }
4123
4526
  /**
4124
4527
  * <pre>
4125
- * SNMP only
4528
+ * SNMP and WindowsNetworkAdapter
4126
4529
  * </pre>
4127
4530
  *
4128
4531
  * <code>optional int64 speed = 19;</code>
4129
4532
  * @return This builder for chaining.
4130
4533
  */
4131
4534
  public Builder clearSpeed() {
4132
- bitField0_ = (bitField0_ & ~0x00080000);
4535
+ bitField0_ = (bitField0_ & ~0x00400000);
4133
4536
  speed_ = 0L;
4134
4537
  onChanged();
4135
4538
  return this;
@@ -4146,7 +4549,7 @@ private static final long serialVersionUID = 0L;
4146
4549
  */
4147
4550
  @java.lang.Override
4148
4551
  public boolean hasHighSpeed() {
4149
- return ((bitField0_ & 0x00100000) != 0);
4552
+ return ((bitField0_ & 0x00800000) != 0);
4150
4553
  }
4151
4554
  /**
4152
4555
  * <pre>
@@ -4172,7 +4575,7 @@ private static final long serialVersionUID = 0L;
4172
4575
  public Builder setHighSpeed(long value) {
4173
4576
 
4174
4577
  highSpeed_ = value;
4175
- bitField0_ |= 0x00100000;
4578
+ bitField0_ |= 0x00800000;
4176
4579
  onChanged();
4177
4580
  return this;
4178
4581
  }
@@ -4185,7 +4588,7 @@ private static final long serialVersionUID = 0L;
4185
4588
  * @return This builder for chaining.
4186
4589
  */
4187
4590
  public Builder clearHighSpeed() {
4188
- bitField0_ = (bitField0_ & ~0x00100000);
4591
+ bitField0_ = (bitField0_ & ~0x00800000);
4189
4592
  highSpeed_ = 0L;
4190
4593
  onChanged();
4191
4594
  return this;
@@ -4203,7 +4606,7 @@ private static final long serialVersionUID = 0L;
4203
4606
  * @return Whether the adminStatus field is set.
4204
4607
  */
4205
4608
  public boolean hasAdminStatus() {
4206
- return ((bitField0_ & 0x00200000) != 0);
4609
+ return ((bitField0_ & 0x01000000) != 0);
4207
4610
  }
4208
4611
  /**
4209
4612
  * <pre>
@@ -4236,7 +4639,7 @@ private static final long serialVersionUID = 0L;
4236
4639
  } else {
4237
4640
  adminStatusBuilder_.setMessage(value);
4238
4641
  }
4239
- bitField0_ |= 0x00200000;
4642
+ bitField0_ |= 0x01000000;
4240
4643
  onChanged();
4241
4644
  return this;
4242
4645
  }
@@ -4254,7 +4657,7 @@ private static final long serialVersionUID = 0L;
4254
4657
  } else {
4255
4658
  adminStatusBuilder_.setMessage(builderForValue.build());
4256
4659
  }
4257
- bitField0_ |= 0x00200000;
4660
+ bitField0_ |= 0x01000000;
4258
4661
  onChanged();
4259
4662
  return this;
4260
4663
  }
@@ -4267,7 +4670,7 @@ private static final long serialVersionUID = 0L;
4267
4670
  */
4268
4671
  public Builder mergeAdminStatus(com.lansweeper.dp.outbound.v1.MappedValue value) {
4269
4672
  if (adminStatusBuilder_ == null) {
4270
- if (((bitField0_ & 0x00200000) != 0) &&
4673
+ if (((bitField0_ & 0x01000000) != 0) &&
4271
4674
  adminStatus_ != null &&
4272
4675
  adminStatus_ != com.lansweeper.dp.outbound.v1.MappedValue.getDefaultInstance()) {
4273
4676
  getAdminStatusBuilder().mergeFrom(value);
@@ -4278,7 +4681,7 @@ private static final long serialVersionUID = 0L;
4278
4681
  adminStatusBuilder_.mergeFrom(value);
4279
4682
  }
4280
4683
  if (adminStatus_ != null) {
4281
- bitField0_ |= 0x00200000;
4684
+ bitField0_ |= 0x01000000;
4282
4685
  onChanged();
4283
4686
  }
4284
4687
  return this;
@@ -4291,7 +4694,7 @@ private static final long serialVersionUID = 0L;
4291
4694
  * <code>optional .com.lansweeper.dp.outbound.v1.MappedValue admin_status = 21;</code>
4292
4695
  */
4293
4696
  public Builder clearAdminStatus() {
4294
- bitField0_ = (bitField0_ & ~0x00200000);
4697
+ bitField0_ = (bitField0_ & ~0x01000000);
4295
4698
  adminStatus_ = null;
4296
4699
  if (adminStatusBuilder_ != null) {
4297
4700
  adminStatusBuilder_.dispose();
@@ -4308,7 +4711,7 @@ private static final long serialVersionUID = 0L;
4308
4711
  * <code>optional .com.lansweeper.dp.outbound.v1.MappedValue admin_status = 21;</code>
4309
4712
  */
4310
4713
  public com.lansweeper.dp.outbound.v1.MappedValue.Builder getAdminStatusBuilder() {
4311
- bitField0_ |= 0x00200000;
4714
+ bitField0_ |= 0x01000000;
4312
4715
  onChanged();
4313
4716
  return getAdminStatusFieldBuilder().getBuilder();
4314
4717
  }
@@ -4360,7 +4763,7 @@ private static final long serialVersionUID = 0L;
4360
4763
  * @return Whether the operStatus field is set.
4361
4764
  */
4362
4765
  public boolean hasOperStatus() {
4363
- return ((bitField0_ & 0x00400000) != 0);
4766
+ return ((bitField0_ & 0x02000000) != 0);
4364
4767
  }
4365
4768
  /**
4366
4769
  * <pre>
@@ -4393,7 +4796,7 @@ private static final long serialVersionUID = 0L;
4393
4796
  } else {
4394
4797
  operStatusBuilder_.setMessage(value);
4395
4798
  }
4396
- bitField0_ |= 0x00400000;
4799
+ bitField0_ |= 0x02000000;
4397
4800
  onChanged();
4398
4801
  return this;
4399
4802
  }
@@ -4411,7 +4814,7 @@ private static final long serialVersionUID = 0L;
4411
4814
  } else {
4412
4815
  operStatusBuilder_.setMessage(builderForValue.build());
4413
4816
  }
4414
- bitField0_ |= 0x00400000;
4817
+ bitField0_ |= 0x02000000;
4415
4818
  onChanged();
4416
4819
  return this;
4417
4820
  }
@@ -4424,7 +4827,7 @@ private static final long serialVersionUID = 0L;
4424
4827
  */
4425
4828
  public Builder mergeOperStatus(com.lansweeper.dp.outbound.v1.MappedValue value) {
4426
4829
  if (operStatusBuilder_ == null) {
4427
- if (((bitField0_ & 0x00400000) != 0) &&
4830
+ if (((bitField0_ & 0x02000000) != 0) &&
4428
4831
  operStatus_ != null &&
4429
4832
  operStatus_ != com.lansweeper.dp.outbound.v1.MappedValue.getDefaultInstance()) {
4430
4833
  getOperStatusBuilder().mergeFrom(value);
@@ -4435,7 +4838,7 @@ private static final long serialVersionUID = 0L;
4435
4838
  operStatusBuilder_.mergeFrom(value);
4436
4839
  }
4437
4840
  if (operStatus_ != null) {
4438
- bitField0_ |= 0x00400000;
4841
+ bitField0_ |= 0x02000000;
4439
4842
  onChanged();
4440
4843
  }
4441
4844
  return this;
@@ -4448,7 +4851,7 @@ private static final long serialVersionUID = 0L;
4448
4851
  * <code>optional .com.lansweeper.dp.outbound.v1.MappedValue oper_status = 22;</code>
4449
4852
  */
4450
4853
  public Builder clearOperStatus() {
4451
- bitField0_ = (bitField0_ & ~0x00400000);
4854
+ bitField0_ = (bitField0_ & ~0x02000000);
4452
4855
  operStatus_ = null;
4453
4856
  if (operStatusBuilder_ != null) {
4454
4857
  operStatusBuilder_.dispose();
@@ -4465,7 +4868,7 @@ private static final long serialVersionUID = 0L;
4465
4868
  * <code>optional .com.lansweeper.dp.outbound.v1.MappedValue oper_status = 22;</code>
4466
4869
  */
4467
4870
  public com.lansweeper.dp.outbound.v1.MappedValue.Builder getOperStatusBuilder() {
4468
- bitField0_ |= 0x00400000;
4871
+ bitField0_ |= 0x02000000;
4469
4872
  onChanged();
4470
4873
  return getOperStatusFieldBuilder().getBuilder();
4471
4874
  }
@@ -4511,7 +4914,7 @@ private static final long serialVersionUID = 0L;
4511
4914
  if (!connectedDevices_.isModifiable()) {
4512
4915
  connectedDevices_ = new com.google.protobuf.LazyStringArrayList(connectedDevices_);
4513
4916
  }
4514
- bitField0_ |= 0x00800000;
4917
+ bitField0_ |= 0x04000000;
4515
4918
  }
4516
4919
  /**
4517
4920
  * <pre>
@@ -4577,7 +4980,7 @@ private static final long serialVersionUID = 0L;
4577
4980
  if (value == null) { throw new NullPointerException(); }
4578
4981
  ensureConnectedDevicesIsMutable();
4579
4982
  connectedDevices_.set(index, value);
4580
- bitField0_ |= 0x00800000;
4983
+ bitField0_ |= 0x04000000;
4581
4984
  onChanged();
4582
4985
  return this;
4583
4986
  }
@@ -4595,7 +4998,7 @@ private static final long serialVersionUID = 0L;
4595
4998
  if (value == null) { throw new NullPointerException(); }
4596
4999
  ensureConnectedDevicesIsMutable();
4597
5000
  connectedDevices_.add(value);
4598
- bitField0_ |= 0x00800000;
5001
+ bitField0_ |= 0x04000000;
4599
5002
  onChanged();
4600
5003
  return this;
4601
5004
  }
@@ -4613,7 +5016,7 @@ private static final long serialVersionUID = 0L;
4613
5016
  ensureConnectedDevicesIsMutable();
4614
5017
  com.google.protobuf.AbstractMessageLite.Builder.addAll(
4615
5018
  values, connectedDevices_);
4616
- bitField0_ |= 0x00800000;
5019
+ bitField0_ |= 0x04000000;
4617
5020
  onChanged();
4618
5021
  return this;
4619
5022
  }
@@ -4628,7 +5031,7 @@ private static final long serialVersionUID = 0L;
4628
5031
  public Builder clearConnectedDevices() {
4629
5032
  connectedDevices_ =
4630
5033
  com.google.protobuf.LazyStringArrayList.emptyList();
4631
- bitField0_ = (bitField0_ & ~0x00800000);;
5034
+ bitField0_ = (bitField0_ & ~0x04000000);;
4632
5035
  onChanged();
4633
5036
  return this;
4634
5037
  }
@@ -4647,7 +5050,7 @@ private static final long serialVersionUID = 0L;
4647
5050
  checkByteStringIsUtf8(value);
4648
5051
  ensureConnectedDevicesIsMutable();
4649
5052
  connectedDevices_.add(value);
4650
- bitField0_ |= 0x00800000;
5053
+ bitField0_ |= 0x04000000;
4651
5054
  onChanged();
4652
5055
  return this;
4653
5056
  }
@@ -4658,7 +5061,7 @@ private static final long serialVersionUID = 0L;
4658
5061
  if (!vlans_.isModifiable()) {
4659
5062
  vlans_ = new com.google.protobuf.LazyStringArrayList(vlans_);
4660
5063
  }
4661
- bitField0_ |= 0x01000000;
5064
+ bitField0_ |= 0x08000000;
4662
5065
  }
4663
5066
  /**
4664
5067
  * <pre>
@@ -4724,7 +5127,7 @@ private static final long serialVersionUID = 0L;
4724
5127
  if (value == null) { throw new NullPointerException(); }
4725
5128
  ensureVlansIsMutable();
4726
5129
  vlans_.set(index, value);
4727
- bitField0_ |= 0x01000000;
5130
+ bitField0_ |= 0x08000000;
4728
5131
  onChanged();
4729
5132
  return this;
4730
5133
  }
@@ -4742,7 +5145,7 @@ private static final long serialVersionUID = 0L;
4742
5145
  if (value == null) { throw new NullPointerException(); }
4743
5146
  ensureVlansIsMutable();
4744
5147
  vlans_.add(value);
4745
- bitField0_ |= 0x01000000;
5148
+ bitField0_ |= 0x08000000;
4746
5149
  onChanged();
4747
5150
  return this;
4748
5151
  }
@@ -4760,7 +5163,7 @@ private static final long serialVersionUID = 0L;
4760
5163
  ensureVlansIsMutable();
4761
5164
  com.google.protobuf.AbstractMessageLite.Builder.addAll(
4762
5165
  values, vlans_);
4763
- bitField0_ |= 0x01000000;
5166
+ bitField0_ |= 0x08000000;
4764
5167
  onChanged();
4765
5168
  return this;
4766
5169
  }
@@ -4775,7 +5178,7 @@ private static final long serialVersionUID = 0L;
4775
5178
  public Builder clearVlans() {
4776
5179
  vlans_ =
4777
5180
  com.google.protobuf.LazyStringArrayList.emptyList();
4778
- bitField0_ = (bitField0_ & ~0x01000000);;
5181
+ bitField0_ = (bitField0_ & ~0x08000000);;
4779
5182
  onChanged();
4780
5183
  return this;
4781
5184
  }
@@ -4794,7 +5197,7 @@ private static final long serialVersionUID = 0L;
4794
5197
  checkByteStringIsUtf8(value);
4795
5198
  ensureVlansIsMutable();
4796
5199
  vlans_.add(value);
4797
- bitField0_ |= 0x01000000;
5200
+ bitField0_ |= 0x08000000;
4798
5201
  onChanged();
4799
5202
  return this;
4800
5203
  }
@@ -4810,7 +5213,7 @@ private static final long serialVersionUID = 0L;
4810
5213
  */
4811
5214
  @java.lang.Override
4812
5215
  public boolean hasIpv6PrefixLength() {
4813
- return ((bitField0_ & 0x02000000) != 0);
5216
+ return ((bitField0_ & 0x10000000) != 0);
4814
5217
  }
4815
5218
  /**
4816
5219
  * <pre>
@@ -4836,7 +5239,7 @@ private static final long serialVersionUID = 0L;
4836
5239
  public Builder setIpv6PrefixLength(long value) {
4837
5240
 
4838
5241
  ipv6PrefixLength_ = value;
4839
- bitField0_ |= 0x02000000;
5242
+ bitField0_ |= 0x10000000;
4840
5243
  onChanged();
4841
5244
  return this;
4842
5245
  }
@@ -4849,7 +5252,7 @@ private static final long serialVersionUID = 0L;
4849
5252
  * @return This builder for chaining.
4850
5253
  */
4851
5254
  public Builder clearIpv6PrefixLength() {
4852
- bitField0_ = (bitField0_ & ~0x02000000);
5255
+ bitField0_ = (bitField0_ & ~0x10000000);
4853
5256
  ipv6PrefixLength_ = 0L;
4854
5257
  onChanged();
4855
5258
  return this;
@@ -4865,7 +5268,7 @@ private static final long serialVersionUID = 0L;
4865
5268
  * @return Whether the networkSignature field is set.
4866
5269
  */
4867
5270
  public boolean hasNetworkSignature() {
4868
- return ((bitField0_ & 0x04000000) != 0);
5271
+ return ((bitField0_ & 0x20000000) != 0);
4869
5272
  }
4870
5273
  /**
4871
5274
  * <pre>
@@ -4921,7 +5324,7 @@ private static final long serialVersionUID = 0L;
4921
5324
  java.lang.String value) {
4922
5325
  if (value == null) { throw new NullPointerException(); }
4923
5326
  networkSignature_ = value;
4924
- bitField0_ |= 0x04000000;
5327
+ bitField0_ |= 0x20000000;
4925
5328
  onChanged();
4926
5329
  return this;
4927
5330
  }
@@ -4935,7 +5338,7 @@ private static final long serialVersionUID = 0L;
4935
5338
  */
4936
5339
  public Builder clearNetworkSignature() {
4937
5340
  networkSignature_ = getDefaultInstance().getNetworkSignature();
4938
- bitField0_ = (bitField0_ & ~0x04000000);
5341
+ bitField0_ = (bitField0_ & ~0x20000000);
4939
5342
  onChanged();
4940
5343
  return this;
4941
5344
  }
@@ -4953,7 +5356,7 @@ private static final long serialVersionUID = 0L;
4953
5356
  if (value == null) { throw new NullPointerException(); }
4954
5357
  checkByteStringIsUtf8(value);
4955
5358
  networkSignature_ = value;
4956
- bitField0_ |= 0x04000000;
5359
+ bitField0_ |= 0x20000000;
4957
5360
  onChanged();
4958
5361
  return this;
4959
5362
  }