@lansweeper/data-platform-outbound-grpc 0.3.12 → 0.3.13
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.
- package/CHANGELOG.md +8 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +81 -0
- package/gen-proto/outbound_pb.js +673 -0
- package/generated-go/outbound.pb.go +9695 -9464
- package/java.json +1 -1
- package/model/pom.xml +1 -1
- package/model/src/main/proto/outbound.proto +20 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Asset$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Asset$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Asset.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/AssetOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/HyperV$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/HyperV$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/HyperV.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/HyperVNetwork$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/HyperVNetwork$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/HyperVNetwork.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/HyperVNetworkOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/HyperVOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Outbound.class +0 -0
- package/model/target/classes/outbound.proto +20 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Asset.java +252 -60
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/AssetOrBuilder.java +15 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/HyperV.java +1833 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/HyperVNetwork.java +542 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/HyperVNetworkOrBuilder.java +22 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/HyperVOrBuilder.java +136 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +2847 -2812
- package/model/target/maven-archiver/pom.properties +2 -2
- package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +9 -1
- package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +5 -1
- package/model/target/{outbound-model-0.3.11-sources.jar → outbound-model-0.3.12-sources.jar} +0 -0
- package/model/target/{outbound-model-0.3.11.jar → outbound-model-0.3.12.jar} +0 -0
- package/package.json +2 -2
- package/pom.xml +1 -1
- package/proto/outbound.proto +20 -0
- package/service/pom.xml +1 -1
- package/service/target/maven-archiver/pom.properties +2 -2
- package/service/target/{outbound-service-0.3.11-sources.jar → outbound-service-0.3.12-sources.jar} +0 -0
- package/service/target/{outbound-service-0.3.11.jar → outbound-service-0.3.12.jar} +0 -0
package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Asset.java
CHANGED
|
@@ -1046,6 +1046,32 @@ private static final long serialVersionUID = 0L;
|
|
|
1046
1046
|
return adComputer_ == null ? com.lansweeper.dp.outbound.v1.ActiveDirectoryComputer.getDefaultInstance() : adComputer_;
|
|
1047
1047
|
}
|
|
1048
1048
|
|
|
1049
|
+
public static final int HYPER_V_COMPUTER_FIELD_NUMBER = 89;
|
|
1050
|
+
private com.lansweeper.dp.outbound.v1.HyperV hyperVComputer_;
|
|
1051
|
+
/**
|
|
1052
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.HyperV hyper_v_computer = 89;</code>
|
|
1053
|
+
* @return Whether the hyperVComputer field is set.
|
|
1054
|
+
*/
|
|
1055
|
+
@java.lang.Override
|
|
1056
|
+
public boolean hasHyperVComputer() {
|
|
1057
|
+
return ((bitField0_ & 0x00200000) != 0);
|
|
1058
|
+
}
|
|
1059
|
+
/**
|
|
1060
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.HyperV hyper_v_computer = 89;</code>
|
|
1061
|
+
* @return The hyperVComputer.
|
|
1062
|
+
*/
|
|
1063
|
+
@java.lang.Override
|
|
1064
|
+
public com.lansweeper.dp.outbound.v1.HyperV getHyperVComputer() {
|
|
1065
|
+
return hyperVComputer_ == null ? com.lansweeper.dp.outbound.v1.HyperV.getDefaultInstance() : hyperVComputer_;
|
|
1066
|
+
}
|
|
1067
|
+
/**
|
|
1068
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.HyperV hyper_v_computer = 89;</code>
|
|
1069
|
+
*/
|
|
1070
|
+
@java.lang.Override
|
|
1071
|
+
public com.lansweeper.dp.outbound.v1.HyperVOrBuilder getHyperVComputerOrBuilder() {
|
|
1072
|
+
return hyperVComputer_ == null ? com.lansweeper.dp.outbound.v1.HyperV.getDefaultInstance() : hyperVComputer_;
|
|
1073
|
+
}
|
|
1074
|
+
|
|
1049
1075
|
public static final int PRINTER_FIELD_NUMBER = 84;
|
|
1050
1076
|
private com.lansweeper.dp.outbound.v1.Printer printer_;
|
|
1051
1077
|
/**
|
|
@@ -1054,7 +1080,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1054
1080
|
*/
|
|
1055
1081
|
@java.lang.Override
|
|
1056
1082
|
public boolean hasPrinter() {
|
|
1057
|
-
return ((bitField0_ &
|
|
1083
|
+
return ((bitField0_ & 0x00400000) != 0);
|
|
1058
1084
|
}
|
|
1059
1085
|
/**
|
|
1060
1086
|
* <code>optional .com.lansweeper.dp.outbound.v1.Printer printer = 84;</code>
|
|
@@ -1080,7 +1106,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1080
1106
|
*/
|
|
1081
1107
|
@java.lang.Override
|
|
1082
1108
|
public boolean hasUps() {
|
|
1083
|
-
return ((bitField0_ &
|
|
1109
|
+
return ((bitField0_ & 0x00800000) != 0);
|
|
1084
1110
|
}
|
|
1085
1111
|
/**
|
|
1086
1112
|
* <code>optional .com.lansweeper.dp.outbound.v1.Ups ups = 85;</code>
|
|
@@ -1110,7 +1136,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1110
1136
|
*/
|
|
1111
1137
|
@java.lang.Override
|
|
1112
1138
|
public boolean hasOtModule() {
|
|
1113
|
-
return ((bitField0_ &
|
|
1139
|
+
return ((bitField0_ & 0x01000000) != 0);
|
|
1114
1140
|
}
|
|
1115
1141
|
/**
|
|
1116
1142
|
* <pre>
|
|
@@ -1144,7 +1170,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1144
1170
|
*/
|
|
1145
1171
|
@java.lang.Override
|
|
1146
1172
|
public boolean hasCloud() {
|
|
1147
|
-
return ((bitField0_ &
|
|
1173
|
+
return ((bitField0_ & 0x02000000) != 0);
|
|
1148
1174
|
}
|
|
1149
1175
|
/**
|
|
1150
1176
|
* <code>optional .com.lansweeper.dp.outbound.v1.CloudEntity cloud = 17;</code>
|
|
@@ -1250,10 +1276,10 @@ private static final long serialVersionUID = 0L;
|
|
|
1250
1276
|
for (int i = 0; i < tag_.size(); i++) {
|
|
1251
1277
|
output.writeMessage(14, tag_.get(i));
|
|
1252
1278
|
}
|
|
1253
|
-
if (((bitField0_ &
|
|
1279
|
+
if (((bitField0_ & 0x01000000) != 0)) {
|
|
1254
1280
|
output.writeMessage(16, getOtModule());
|
|
1255
1281
|
}
|
|
1256
|
-
if (((bitField0_ &
|
|
1282
|
+
if (((bitField0_ & 0x02000000) != 0)) {
|
|
1257
1283
|
output.writeMessage(17, getCloud());
|
|
1258
1284
|
}
|
|
1259
1285
|
for (int i = 0; i < relation_.size(); i++) {
|
|
@@ -1298,10 +1324,10 @@ private static final long serialVersionUID = 0L;
|
|
|
1298
1324
|
for (int i = 0; i < warrantyInfo_.size(); i++) {
|
|
1299
1325
|
output.writeMessage(81, warrantyInfo_.get(i));
|
|
1300
1326
|
}
|
|
1301
|
-
if (((bitField0_ &
|
|
1327
|
+
if (((bitField0_ & 0x00400000) != 0)) {
|
|
1302
1328
|
output.writeMessage(84, getPrinter());
|
|
1303
1329
|
}
|
|
1304
|
-
if (((bitField0_ &
|
|
1330
|
+
if (((bitField0_ & 0x00800000) != 0)) {
|
|
1305
1331
|
output.writeMessage(85, getUps());
|
|
1306
1332
|
}
|
|
1307
1333
|
for (int i = 0; i < unlinkedSourceInfo_.size(); i++) {
|
|
@@ -1313,6 +1339,9 @@ private static final long serialVersionUID = 0L;
|
|
|
1313
1339
|
if (((bitField0_ & 0x00100000) != 0)) {
|
|
1314
1340
|
output.writeMessage(88, getAdComputer());
|
|
1315
1341
|
}
|
|
1342
|
+
if (((bitField0_ & 0x00200000) != 0)) {
|
|
1343
|
+
output.writeMessage(89, getHyperVComputer());
|
|
1344
|
+
}
|
|
1316
1345
|
getUnknownFields().writeTo(output);
|
|
1317
1346
|
}
|
|
1318
1347
|
|
|
@@ -1366,11 +1395,11 @@ private static final long serialVersionUID = 0L;
|
|
|
1366
1395
|
size += com.google.protobuf.CodedOutputStream
|
|
1367
1396
|
.computeMessageSize(14, tag_.get(i));
|
|
1368
1397
|
}
|
|
1369
|
-
if (((bitField0_ &
|
|
1398
|
+
if (((bitField0_ & 0x01000000) != 0)) {
|
|
1370
1399
|
size += com.google.protobuf.CodedOutputStream
|
|
1371
1400
|
.computeMessageSize(16, getOtModule());
|
|
1372
1401
|
}
|
|
1373
|
-
if (((bitField0_ &
|
|
1402
|
+
if (((bitField0_ & 0x02000000) != 0)) {
|
|
1374
1403
|
size += com.google.protobuf.CodedOutputStream
|
|
1375
1404
|
.computeMessageSize(17, getCloud());
|
|
1376
1405
|
}
|
|
@@ -1427,11 +1456,11 @@ private static final long serialVersionUID = 0L;
|
|
|
1427
1456
|
size += com.google.protobuf.CodedOutputStream
|
|
1428
1457
|
.computeMessageSize(81, warrantyInfo_.get(i));
|
|
1429
1458
|
}
|
|
1430
|
-
if (((bitField0_ &
|
|
1459
|
+
if (((bitField0_ & 0x00400000) != 0)) {
|
|
1431
1460
|
size += com.google.protobuf.CodedOutputStream
|
|
1432
1461
|
.computeMessageSize(84, getPrinter());
|
|
1433
1462
|
}
|
|
1434
|
-
if (((bitField0_ &
|
|
1463
|
+
if (((bitField0_ & 0x00800000) != 0)) {
|
|
1435
1464
|
size += com.google.protobuf.CodedOutputStream
|
|
1436
1465
|
.computeMessageSize(85, getUps());
|
|
1437
1466
|
}
|
|
@@ -1447,6 +1476,10 @@ private static final long serialVersionUID = 0L;
|
|
|
1447
1476
|
size += com.google.protobuf.CodedOutputStream
|
|
1448
1477
|
.computeMessageSize(88, getAdComputer());
|
|
1449
1478
|
}
|
|
1479
|
+
if (((bitField0_ & 0x00200000) != 0)) {
|
|
1480
|
+
size += com.google.protobuf.CodedOutputStream
|
|
1481
|
+
.computeMessageSize(89, getHyperVComputer());
|
|
1482
|
+
}
|
|
1450
1483
|
size += getUnknownFields().getSerializedSize();
|
|
1451
1484
|
memoizedSize = size;
|
|
1452
1485
|
return size;
|
|
@@ -1579,6 +1612,11 @@ private static final long serialVersionUID = 0L;
|
|
|
1579
1612
|
if (!getAdComputer()
|
|
1580
1613
|
.equals(other.getAdComputer())) return false;
|
|
1581
1614
|
}
|
|
1615
|
+
if (hasHyperVComputer() != other.hasHyperVComputer()) return false;
|
|
1616
|
+
if (hasHyperVComputer()) {
|
|
1617
|
+
if (!getHyperVComputer()
|
|
1618
|
+
.equals(other.getHyperVComputer())) return false;
|
|
1619
|
+
}
|
|
1582
1620
|
if (hasPrinter() != other.hasPrinter()) return false;
|
|
1583
1621
|
if (hasPrinter()) {
|
|
1584
1622
|
if (!getPrinter()
|
|
@@ -1720,6 +1758,10 @@ private static final long serialVersionUID = 0L;
|
|
|
1720
1758
|
hash = (37 * hash) + AD_COMPUTER_FIELD_NUMBER;
|
|
1721
1759
|
hash = (53 * hash) + getAdComputer().hashCode();
|
|
1722
1760
|
}
|
|
1761
|
+
if (hasHyperVComputer()) {
|
|
1762
|
+
hash = (37 * hash) + HYPER_V_COMPUTER_FIELD_NUMBER;
|
|
1763
|
+
hash = (53 * hash) + getHyperVComputer().hashCode();
|
|
1764
|
+
}
|
|
1723
1765
|
if (hasPrinter()) {
|
|
1724
1766
|
hash = (37 * hash) + PRINTER_FIELD_NUMBER;
|
|
1725
1767
|
hash = (53 * hash) + getPrinter().hashCode();
|
|
@@ -1898,6 +1940,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1898
1940
|
getComputerFieldBuilder();
|
|
1899
1941
|
getServerGroupFieldBuilder();
|
|
1900
1942
|
getAdComputerFieldBuilder();
|
|
1943
|
+
getHyperVComputerFieldBuilder();
|
|
1901
1944
|
getPrinterFieldBuilder();
|
|
1902
1945
|
getUpsFieldBuilder();
|
|
1903
1946
|
getOtModuleFieldBuilder();
|
|
@@ -1909,6 +1952,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1909
1952
|
public Builder clear() {
|
|
1910
1953
|
super.clear();
|
|
1911
1954
|
bitField0_ = 0;
|
|
1955
|
+
bitField1_ = 0;
|
|
1912
1956
|
id_ = null;
|
|
1913
1957
|
if (idBuilder_ != null) {
|
|
1914
1958
|
idBuilder_.dispose();
|
|
@@ -2044,6 +2088,11 @@ private static final long serialVersionUID = 0L;
|
|
|
2044
2088
|
adComputerBuilder_.dispose();
|
|
2045
2089
|
adComputerBuilder_ = null;
|
|
2046
2090
|
}
|
|
2091
|
+
hyperVComputer_ = null;
|
|
2092
|
+
if (hyperVComputerBuilder_ != null) {
|
|
2093
|
+
hyperVComputerBuilder_.dispose();
|
|
2094
|
+
hyperVComputerBuilder_ = null;
|
|
2095
|
+
}
|
|
2047
2096
|
printer_ = null;
|
|
2048
2097
|
if (printerBuilder_ != null) {
|
|
2049
2098
|
printerBuilder_.dispose();
|
|
@@ -2070,7 +2119,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2070
2119
|
changeLog_ = null;
|
|
2071
2120
|
changeLogBuilder_.clear();
|
|
2072
2121
|
}
|
|
2073
|
-
|
|
2122
|
+
bitField1_ = (bitField1_ & ~0x00000001);
|
|
2074
2123
|
return this;
|
|
2075
2124
|
}
|
|
2076
2125
|
|
|
@@ -2099,6 +2148,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2099
2148
|
com.lansweeper.dp.outbound.v1.Asset result = new com.lansweeper.dp.outbound.v1.Asset(this);
|
|
2100
2149
|
buildPartialRepeatedFields(result);
|
|
2101
2150
|
if (bitField0_ != 0) { buildPartial0(result); }
|
|
2151
|
+
if (bitField1_ != 0) { buildPartial1(result); }
|
|
2102
2152
|
onBuilt();
|
|
2103
2153
|
return result;
|
|
2104
2154
|
}
|
|
@@ -2159,9 +2209,9 @@ private static final long serialVersionUID = 0L;
|
|
|
2159
2209
|
result.warrantyInfo_ = warrantyInfoBuilder_.build();
|
|
2160
2210
|
}
|
|
2161
2211
|
if (changeLogBuilder_ == null) {
|
|
2162
|
-
if (((
|
|
2212
|
+
if (((bitField1_ & 0x00000001) != 0)) {
|
|
2163
2213
|
changeLog_ = java.util.Collections.unmodifiableList(changeLog_);
|
|
2164
|
-
|
|
2214
|
+
bitField1_ = (bitField1_ & ~0x00000001);
|
|
2165
2215
|
}
|
|
2166
2216
|
result.changeLog_ = changeLog_;
|
|
2167
2217
|
} else {
|
|
@@ -2293,32 +2343,42 @@ private static final long serialVersionUID = 0L;
|
|
|
2293
2343
|
to_bitField0_ |= 0x00100000;
|
|
2294
2344
|
}
|
|
2295
2345
|
if (((from_bitField0_ & 0x08000000) != 0)) {
|
|
2346
|
+
result.hyperVComputer_ = hyperVComputerBuilder_ == null
|
|
2347
|
+
? hyperVComputer_
|
|
2348
|
+
: hyperVComputerBuilder_.build();
|
|
2349
|
+
to_bitField0_ |= 0x00200000;
|
|
2350
|
+
}
|
|
2351
|
+
if (((from_bitField0_ & 0x10000000) != 0)) {
|
|
2296
2352
|
result.printer_ = printerBuilder_ == null
|
|
2297
2353
|
? printer_
|
|
2298
2354
|
: printerBuilder_.build();
|
|
2299
|
-
to_bitField0_ |=
|
|
2355
|
+
to_bitField0_ |= 0x00400000;
|
|
2300
2356
|
}
|
|
2301
|
-
if (((from_bitField0_ &
|
|
2357
|
+
if (((from_bitField0_ & 0x20000000) != 0)) {
|
|
2302
2358
|
result.ups_ = upsBuilder_ == null
|
|
2303
2359
|
? ups_
|
|
2304
2360
|
: upsBuilder_.build();
|
|
2305
|
-
to_bitField0_ |=
|
|
2361
|
+
to_bitField0_ |= 0x00800000;
|
|
2306
2362
|
}
|
|
2307
|
-
if (((from_bitField0_ &
|
|
2363
|
+
if (((from_bitField0_ & 0x40000000) != 0)) {
|
|
2308
2364
|
result.otModule_ = otModuleBuilder_ == null
|
|
2309
2365
|
? otModule_
|
|
2310
2366
|
: otModuleBuilder_.build();
|
|
2311
|
-
to_bitField0_ |=
|
|
2367
|
+
to_bitField0_ |= 0x01000000;
|
|
2312
2368
|
}
|
|
2313
|
-
if (((from_bitField0_ &
|
|
2369
|
+
if (((from_bitField0_ & 0x80000000) != 0)) {
|
|
2314
2370
|
result.cloud_ = cloudBuilder_ == null
|
|
2315
2371
|
? cloud_
|
|
2316
2372
|
: cloudBuilder_.build();
|
|
2317
|
-
to_bitField0_ |=
|
|
2373
|
+
to_bitField0_ |= 0x02000000;
|
|
2318
2374
|
}
|
|
2319
2375
|
result.bitField0_ |= to_bitField0_;
|
|
2320
2376
|
}
|
|
2321
2377
|
|
|
2378
|
+
private void buildPartial1(com.lansweeper.dp.outbound.v1.Asset result) {
|
|
2379
|
+
int from_bitField1_ = bitField1_;
|
|
2380
|
+
}
|
|
2381
|
+
|
|
2322
2382
|
@java.lang.Override
|
|
2323
2383
|
public Builder clone() {
|
|
2324
2384
|
return super.clone();
|
|
@@ -2588,6 +2648,9 @@ private static final long serialVersionUID = 0L;
|
|
|
2588
2648
|
if (other.hasAdComputer()) {
|
|
2589
2649
|
mergeAdComputer(other.getAdComputer());
|
|
2590
2650
|
}
|
|
2651
|
+
if (other.hasHyperVComputer()) {
|
|
2652
|
+
mergeHyperVComputer(other.getHyperVComputer());
|
|
2653
|
+
}
|
|
2591
2654
|
if (other.hasPrinter()) {
|
|
2592
2655
|
mergePrinter(other.getPrinter());
|
|
2593
2656
|
}
|
|
@@ -2604,7 +2667,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2604
2667
|
if (!other.changeLog_.isEmpty()) {
|
|
2605
2668
|
if (changeLog_.isEmpty()) {
|
|
2606
2669
|
changeLog_ = other.changeLog_;
|
|
2607
|
-
|
|
2670
|
+
bitField1_ = (bitField1_ & ~0x00000001);
|
|
2608
2671
|
} else {
|
|
2609
2672
|
ensureChangeLogIsMutable();
|
|
2610
2673
|
changeLog_.addAll(other.changeLog_);
|
|
@@ -2617,7 +2680,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2617
2680
|
changeLogBuilder_.dispose();
|
|
2618
2681
|
changeLogBuilder_ = null;
|
|
2619
2682
|
changeLog_ = other.changeLog_;
|
|
2620
|
-
|
|
2683
|
+
bitField1_ = (bitField1_ & ~0x00000001);
|
|
2621
2684
|
changeLogBuilder_ =
|
|
2622
2685
|
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
|
|
2623
2686
|
getChangeLogFieldBuilder() : null;
|
|
@@ -2739,14 +2802,14 @@ private static final long serialVersionUID = 0L;
|
|
|
2739
2802
|
input.readMessage(
|
|
2740
2803
|
getOtModuleFieldBuilder().getBuilder(),
|
|
2741
2804
|
extensionRegistry);
|
|
2742
|
-
bitField0_ |=
|
|
2805
|
+
bitField0_ |= 0x40000000;
|
|
2743
2806
|
break;
|
|
2744
2807
|
} // case 130
|
|
2745
2808
|
case 138: {
|
|
2746
2809
|
input.readMessage(
|
|
2747
2810
|
getCloudFieldBuilder().getBuilder(),
|
|
2748
2811
|
extensionRegistry);
|
|
2749
|
-
bitField0_ |=
|
|
2812
|
+
bitField0_ |= 0x80000000;
|
|
2750
2813
|
break;
|
|
2751
2814
|
} // case 138
|
|
2752
2815
|
case 162: {
|
|
@@ -2875,14 +2938,14 @@ private static final long serialVersionUID = 0L;
|
|
|
2875
2938
|
input.readMessage(
|
|
2876
2939
|
getPrinterFieldBuilder().getBuilder(),
|
|
2877
2940
|
extensionRegistry);
|
|
2878
|
-
bitField0_ |=
|
|
2941
|
+
bitField0_ |= 0x10000000;
|
|
2879
2942
|
break;
|
|
2880
2943
|
} // case 674
|
|
2881
2944
|
case 682: {
|
|
2882
2945
|
input.readMessage(
|
|
2883
2946
|
getUpsFieldBuilder().getBuilder(),
|
|
2884
2947
|
extensionRegistry);
|
|
2885
|
-
bitField0_ |=
|
|
2948
|
+
bitField0_ |= 0x20000000;
|
|
2886
2949
|
break;
|
|
2887
2950
|
} // case 682
|
|
2888
2951
|
case 690: {
|
|
@@ -2912,6 +2975,13 @@ private static final long serialVersionUID = 0L;
|
|
|
2912
2975
|
bitField0_ |= 0x04000000;
|
|
2913
2976
|
break;
|
|
2914
2977
|
} // case 706
|
|
2978
|
+
case 714: {
|
|
2979
|
+
input.readMessage(
|
|
2980
|
+
getHyperVComputerFieldBuilder().getBuilder(),
|
|
2981
|
+
extensionRegistry);
|
|
2982
|
+
bitField0_ |= 0x08000000;
|
|
2983
|
+
break;
|
|
2984
|
+
} // case 714
|
|
2915
2985
|
default: {
|
|
2916
2986
|
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
|
|
2917
2987
|
done = true; // was an endgroup tag
|
|
@@ -2928,6 +2998,7 @@ private static final long serialVersionUID = 0L;
|
|
|
2928
2998
|
return this;
|
|
2929
2999
|
}
|
|
2930
3000
|
private int bitField0_;
|
|
3001
|
+
private int bitField1_;
|
|
2931
3002
|
|
|
2932
3003
|
private com.lansweeper.dp.outbound.v1.EntityPath id_;
|
|
2933
3004
|
private com.google.protobuf.SingleFieldBuilderV3<
|
|
@@ -7186,6 +7257,127 @@ private static final long serialVersionUID = 0L;
|
|
|
7186
7257
|
return adComputerBuilder_;
|
|
7187
7258
|
}
|
|
7188
7259
|
|
|
7260
|
+
private com.lansweeper.dp.outbound.v1.HyperV hyperVComputer_;
|
|
7261
|
+
private com.google.protobuf.SingleFieldBuilderV3<
|
|
7262
|
+
com.lansweeper.dp.outbound.v1.HyperV, com.lansweeper.dp.outbound.v1.HyperV.Builder, com.lansweeper.dp.outbound.v1.HyperVOrBuilder> hyperVComputerBuilder_;
|
|
7263
|
+
/**
|
|
7264
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.HyperV hyper_v_computer = 89;</code>
|
|
7265
|
+
* @return Whether the hyperVComputer field is set.
|
|
7266
|
+
*/
|
|
7267
|
+
public boolean hasHyperVComputer() {
|
|
7268
|
+
return ((bitField0_ & 0x08000000) != 0);
|
|
7269
|
+
}
|
|
7270
|
+
/**
|
|
7271
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.HyperV hyper_v_computer = 89;</code>
|
|
7272
|
+
* @return The hyperVComputer.
|
|
7273
|
+
*/
|
|
7274
|
+
public com.lansweeper.dp.outbound.v1.HyperV getHyperVComputer() {
|
|
7275
|
+
if (hyperVComputerBuilder_ == null) {
|
|
7276
|
+
return hyperVComputer_ == null ? com.lansweeper.dp.outbound.v1.HyperV.getDefaultInstance() : hyperVComputer_;
|
|
7277
|
+
} else {
|
|
7278
|
+
return hyperVComputerBuilder_.getMessage();
|
|
7279
|
+
}
|
|
7280
|
+
}
|
|
7281
|
+
/**
|
|
7282
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.HyperV hyper_v_computer = 89;</code>
|
|
7283
|
+
*/
|
|
7284
|
+
public Builder setHyperVComputer(com.lansweeper.dp.outbound.v1.HyperV value) {
|
|
7285
|
+
if (hyperVComputerBuilder_ == null) {
|
|
7286
|
+
if (value == null) {
|
|
7287
|
+
throw new NullPointerException();
|
|
7288
|
+
}
|
|
7289
|
+
hyperVComputer_ = value;
|
|
7290
|
+
} else {
|
|
7291
|
+
hyperVComputerBuilder_.setMessage(value);
|
|
7292
|
+
}
|
|
7293
|
+
bitField0_ |= 0x08000000;
|
|
7294
|
+
onChanged();
|
|
7295
|
+
return this;
|
|
7296
|
+
}
|
|
7297
|
+
/**
|
|
7298
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.HyperV hyper_v_computer = 89;</code>
|
|
7299
|
+
*/
|
|
7300
|
+
public Builder setHyperVComputer(
|
|
7301
|
+
com.lansweeper.dp.outbound.v1.HyperV.Builder builderForValue) {
|
|
7302
|
+
if (hyperVComputerBuilder_ == null) {
|
|
7303
|
+
hyperVComputer_ = builderForValue.build();
|
|
7304
|
+
} else {
|
|
7305
|
+
hyperVComputerBuilder_.setMessage(builderForValue.build());
|
|
7306
|
+
}
|
|
7307
|
+
bitField0_ |= 0x08000000;
|
|
7308
|
+
onChanged();
|
|
7309
|
+
return this;
|
|
7310
|
+
}
|
|
7311
|
+
/**
|
|
7312
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.HyperV hyper_v_computer = 89;</code>
|
|
7313
|
+
*/
|
|
7314
|
+
public Builder mergeHyperVComputer(com.lansweeper.dp.outbound.v1.HyperV value) {
|
|
7315
|
+
if (hyperVComputerBuilder_ == null) {
|
|
7316
|
+
if (((bitField0_ & 0x08000000) != 0) &&
|
|
7317
|
+
hyperVComputer_ != null &&
|
|
7318
|
+
hyperVComputer_ != com.lansweeper.dp.outbound.v1.HyperV.getDefaultInstance()) {
|
|
7319
|
+
getHyperVComputerBuilder().mergeFrom(value);
|
|
7320
|
+
} else {
|
|
7321
|
+
hyperVComputer_ = value;
|
|
7322
|
+
}
|
|
7323
|
+
} else {
|
|
7324
|
+
hyperVComputerBuilder_.mergeFrom(value);
|
|
7325
|
+
}
|
|
7326
|
+
if (hyperVComputer_ != null) {
|
|
7327
|
+
bitField0_ |= 0x08000000;
|
|
7328
|
+
onChanged();
|
|
7329
|
+
}
|
|
7330
|
+
return this;
|
|
7331
|
+
}
|
|
7332
|
+
/**
|
|
7333
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.HyperV hyper_v_computer = 89;</code>
|
|
7334
|
+
*/
|
|
7335
|
+
public Builder clearHyperVComputer() {
|
|
7336
|
+
bitField0_ = (bitField0_ & ~0x08000000);
|
|
7337
|
+
hyperVComputer_ = null;
|
|
7338
|
+
if (hyperVComputerBuilder_ != null) {
|
|
7339
|
+
hyperVComputerBuilder_.dispose();
|
|
7340
|
+
hyperVComputerBuilder_ = null;
|
|
7341
|
+
}
|
|
7342
|
+
onChanged();
|
|
7343
|
+
return this;
|
|
7344
|
+
}
|
|
7345
|
+
/**
|
|
7346
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.HyperV hyper_v_computer = 89;</code>
|
|
7347
|
+
*/
|
|
7348
|
+
public com.lansweeper.dp.outbound.v1.HyperV.Builder getHyperVComputerBuilder() {
|
|
7349
|
+
bitField0_ |= 0x08000000;
|
|
7350
|
+
onChanged();
|
|
7351
|
+
return getHyperVComputerFieldBuilder().getBuilder();
|
|
7352
|
+
}
|
|
7353
|
+
/**
|
|
7354
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.HyperV hyper_v_computer = 89;</code>
|
|
7355
|
+
*/
|
|
7356
|
+
public com.lansweeper.dp.outbound.v1.HyperVOrBuilder getHyperVComputerOrBuilder() {
|
|
7357
|
+
if (hyperVComputerBuilder_ != null) {
|
|
7358
|
+
return hyperVComputerBuilder_.getMessageOrBuilder();
|
|
7359
|
+
} else {
|
|
7360
|
+
return hyperVComputer_ == null ?
|
|
7361
|
+
com.lansweeper.dp.outbound.v1.HyperV.getDefaultInstance() : hyperVComputer_;
|
|
7362
|
+
}
|
|
7363
|
+
}
|
|
7364
|
+
/**
|
|
7365
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.HyperV hyper_v_computer = 89;</code>
|
|
7366
|
+
*/
|
|
7367
|
+
private com.google.protobuf.SingleFieldBuilderV3<
|
|
7368
|
+
com.lansweeper.dp.outbound.v1.HyperV, com.lansweeper.dp.outbound.v1.HyperV.Builder, com.lansweeper.dp.outbound.v1.HyperVOrBuilder>
|
|
7369
|
+
getHyperVComputerFieldBuilder() {
|
|
7370
|
+
if (hyperVComputerBuilder_ == null) {
|
|
7371
|
+
hyperVComputerBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
|
|
7372
|
+
com.lansweeper.dp.outbound.v1.HyperV, com.lansweeper.dp.outbound.v1.HyperV.Builder, com.lansweeper.dp.outbound.v1.HyperVOrBuilder>(
|
|
7373
|
+
getHyperVComputer(),
|
|
7374
|
+
getParentForChildren(),
|
|
7375
|
+
isClean());
|
|
7376
|
+
hyperVComputer_ = null;
|
|
7377
|
+
}
|
|
7378
|
+
return hyperVComputerBuilder_;
|
|
7379
|
+
}
|
|
7380
|
+
|
|
7189
7381
|
private com.lansweeper.dp.outbound.v1.Printer printer_;
|
|
7190
7382
|
private com.google.protobuf.SingleFieldBuilderV3<
|
|
7191
7383
|
com.lansweeper.dp.outbound.v1.Printer, com.lansweeper.dp.outbound.v1.Printer.Builder, com.lansweeper.dp.outbound.v1.PrinterOrBuilder> printerBuilder_;
|
|
@@ -7194,7 +7386,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7194
7386
|
* @return Whether the printer field is set.
|
|
7195
7387
|
*/
|
|
7196
7388
|
public boolean hasPrinter() {
|
|
7197
|
-
return ((bitField0_ &
|
|
7389
|
+
return ((bitField0_ & 0x10000000) != 0);
|
|
7198
7390
|
}
|
|
7199
7391
|
/**
|
|
7200
7392
|
* <code>optional .com.lansweeper.dp.outbound.v1.Printer printer = 84;</code>
|
|
@@ -7219,7 +7411,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7219
7411
|
} else {
|
|
7220
7412
|
printerBuilder_.setMessage(value);
|
|
7221
7413
|
}
|
|
7222
|
-
bitField0_ |=
|
|
7414
|
+
bitField0_ |= 0x10000000;
|
|
7223
7415
|
onChanged();
|
|
7224
7416
|
return this;
|
|
7225
7417
|
}
|
|
@@ -7233,7 +7425,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7233
7425
|
} else {
|
|
7234
7426
|
printerBuilder_.setMessage(builderForValue.build());
|
|
7235
7427
|
}
|
|
7236
|
-
bitField0_ |=
|
|
7428
|
+
bitField0_ |= 0x10000000;
|
|
7237
7429
|
onChanged();
|
|
7238
7430
|
return this;
|
|
7239
7431
|
}
|
|
@@ -7242,7 +7434,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7242
7434
|
*/
|
|
7243
7435
|
public Builder mergePrinter(com.lansweeper.dp.outbound.v1.Printer value) {
|
|
7244
7436
|
if (printerBuilder_ == null) {
|
|
7245
|
-
if (((bitField0_ &
|
|
7437
|
+
if (((bitField0_ & 0x10000000) != 0) &&
|
|
7246
7438
|
printer_ != null &&
|
|
7247
7439
|
printer_ != com.lansweeper.dp.outbound.v1.Printer.getDefaultInstance()) {
|
|
7248
7440
|
getPrinterBuilder().mergeFrom(value);
|
|
@@ -7253,7 +7445,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7253
7445
|
printerBuilder_.mergeFrom(value);
|
|
7254
7446
|
}
|
|
7255
7447
|
if (printer_ != null) {
|
|
7256
|
-
bitField0_ |=
|
|
7448
|
+
bitField0_ |= 0x10000000;
|
|
7257
7449
|
onChanged();
|
|
7258
7450
|
}
|
|
7259
7451
|
return this;
|
|
@@ -7262,7 +7454,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7262
7454
|
* <code>optional .com.lansweeper.dp.outbound.v1.Printer printer = 84;</code>
|
|
7263
7455
|
*/
|
|
7264
7456
|
public Builder clearPrinter() {
|
|
7265
|
-
bitField0_ = (bitField0_ & ~
|
|
7457
|
+
bitField0_ = (bitField0_ & ~0x10000000);
|
|
7266
7458
|
printer_ = null;
|
|
7267
7459
|
if (printerBuilder_ != null) {
|
|
7268
7460
|
printerBuilder_.dispose();
|
|
@@ -7275,7 +7467,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7275
7467
|
* <code>optional .com.lansweeper.dp.outbound.v1.Printer printer = 84;</code>
|
|
7276
7468
|
*/
|
|
7277
7469
|
public com.lansweeper.dp.outbound.v1.Printer.Builder getPrinterBuilder() {
|
|
7278
|
-
bitField0_ |=
|
|
7470
|
+
bitField0_ |= 0x10000000;
|
|
7279
7471
|
onChanged();
|
|
7280
7472
|
return getPrinterFieldBuilder().getBuilder();
|
|
7281
7473
|
}
|
|
@@ -7315,7 +7507,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7315
7507
|
* @return Whether the ups field is set.
|
|
7316
7508
|
*/
|
|
7317
7509
|
public boolean hasUps() {
|
|
7318
|
-
return ((bitField0_ &
|
|
7510
|
+
return ((bitField0_ & 0x20000000) != 0);
|
|
7319
7511
|
}
|
|
7320
7512
|
/**
|
|
7321
7513
|
* <code>optional .com.lansweeper.dp.outbound.v1.Ups ups = 85;</code>
|
|
@@ -7340,7 +7532,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7340
7532
|
} else {
|
|
7341
7533
|
upsBuilder_.setMessage(value);
|
|
7342
7534
|
}
|
|
7343
|
-
bitField0_ |=
|
|
7535
|
+
bitField0_ |= 0x20000000;
|
|
7344
7536
|
onChanged();
|
|
7345
7537
|
return this;
|
|
7346
7538
|
}
|
|
@@ -7354,7 +7546,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7354
7546
|
} else {
|
|
7355
7547
|
upsBuilder_.setMessage(builderForValue.build());
|
|
7356
7548
|
}
|
|
7357
|
-
bitField0_ |=
|
|
7549
|
+
bitField0_ |= 0x20000000;
|
|
7358
7550
|
onChanged();
|
|
7359
7551
|
return this;
|
|
7360
7552
|
}
|
|
@@ -7363,7 +7555,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7363
7555
|
*/
|
|
7364
7556
|
public Builder mergeUps(com.lansweeper.dp.outbound.v1.Ups value) {
|
|
7365
7557
|
if (upsBuilder_ == null) {
|
|
7366
|
-
if (((bitField0_ &
|
|
7558
|
+
if (((bitField0_ & 0x20000000) != 0) &&
|
|
7367
7559
|
ups_ != null &&
|
|
7368
7560
|
ups_ != com.lansweeper.dp.outbound.v1.Ups.getDefaultInstance()) {
|
|
7369
7561
|
getUpsBuilder().mergeFrom(value);
|
|
@@ -7374,7 +7566,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7374
7566
|
upsBuilder_.mergeFrom(value);
|
|
7375
7567
|
}
|
|
7376
7568
|
if (ups_ != null) {
|
|
7377
|
-
bitField0_ |=
|
|
7569
|
+
bitField0_ |= 0x20000000;
|
|
7378
7570
|
onChanged();
|
|
7379
7571
|
}
|
|
7380
7572
|
return this;
|
|
@@ -7383,7 +7575,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7383
7575
|
* <code>optional .com.lansweeper.dp.outbound.v1.Ups ups = 85;</code>
|
|
7384
7576
|
*/
|
|
7385
7577
|
public Builder clearUps() {
|
|
7386
|
-
bitField0_ = (bitField0_ & ~
|
|
7578
|
+
bitField0_ = (bitField0_ & ~0x20000000);
|
|
7387
7579
|
ups_ = null;
|
|
7388
7580
|
if (upsBuilder_ != null) {
|
|
7389
7581
|
upsBuilder_.dispose();
|
|
@@ -7396,7 +7588,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7396
7588
|
* <code>optional .com.lansweeper.dp.outbound.v1.Ups ups = 85;</code>
|
|
7397
7589
|
*/
|
|
7398
7590
|
public com.lansweeper.dp.outbound.v1.Ups.Builder getUpsBuilder() {
|
|
7399
|
-
bitField0_ |=
|
|
7591
|
+
bitField0_ |= 0x20000000;
|
|
7400
7592
|
onChanged();
|
|
7401
7593
|
return getUpsFieldBuilder().getBuilder();
|
|
7402
7594
|
}
|
|
@@ -7440,7 +7632,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7440
7632
|
* @return Whether the otModule field is set.
|
|
7441
7633
|
*/
|
|
7442
7634
|
public boolean hasOtModule() {
|
|
7443
|
-
return ((bitField0_ &
|
|
7635
|
+
return ((bitField0_ & 0x40000000) != 0);
|
|
7444
7636
|
}
|
|
7445
7637
|
/**
|
|
7446
7638
|
* <pre>
|
|
@@ -7473,7 +7665,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7473
7665
|
} else {
|
|
7474
7666
|
otModuleBuilder_.setMessage(value);
|
|
7475
7667
|
}
|
|
7476
|
-
bitField0_ |=
|
|
7668
|
+
bitField0_ |= 0x40000000;
|
|
7477
7669
|
onChanged();
|
|
7478
7670
|
return this;
|
|
7479
7671
|
}
|
|
@@ -7491,7 +7683,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7491
7683
|
} else {
|
|
7492
7684
|
otModuleBuilder_.setMessage(builderForValue.build());
|
|
7493
7685
|
}
|
|
7494
|
-
bitField0_ |=
|
|
7686
|
+
bitField0_ |= 0x40000000;
|
|
7495
7687
|
onChanged();
|
|
7496
7688
|
return this;
|
|
7497
7689
|
}
|
|
@@ -7504,7 +7696,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7504
7696
|
*/
|
|
7505
7697
|
public Builder mergeOtModule(com.lansweeper.dp.outbound.v1.OtModule value) {
|
|
7506
7698
|
if (otModuleBuilder_ == null) {
|
|
7507
|
-
if (((bitField0_ &
|
|
7699
|
+
if (((bitField0_ & 0x40000000) != 0) &&
|
|
7508
7700
|
otModule_ != null &&
|
|
7509
7701
|
otModule_ != com.lansweeper.dp.outbound.v1.OtModule.getDefaultInstance()) {
|
|
7510
7702
|
getOtModuleBuilder().mergeFrom(value);
|
|
@@ -7515,7 +7707,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7515
7707
|
otModuleBuilder_.mergeFrom(value);
|
|
7516
7708
|
}
|
|
7517
7709
|
if (otModule_ != null) {
|
|
7518
|
-
bitField0_ |=
|
|
7710
|
+
bitField0_ |= 0x40000000;
|
|
7519
7711
|
onChanged();
|
|
7520
7712
|
}
|
|
7521
7713
|
return this;
|
|
@@ -7528,7 +7720,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7528
7720
|
* <code>optional .com.lansweeper.dp.outbound.v1.OtModule ot_module = 16;</code>
|
|
7529
7721
|
*/
|
|
7530
7722
|
public Builder clearOtModule() {
|
|
7531
|
-
bitField0_ = (bitField0_ & ~
|
|
7723
|
+
bitField0_ = (bitField0_ & ~0x40000000);
|
|
7532
7724
|
otModule_ = null;
|
|
7533
7725
|
if (otModuleBuilder_ != null) {
|
|
7534
7726
|
otModuleBuilder_.dispose();
|
|
@@ -7545,7 +7737,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7545
7737
|
* <code>optional .com.lansweeper.dp.outbound.v1.OtModule ot_module = 16;</code>
|
|
7546
7738
|
*/
|
|
7547
7739
|
public com.lansweeper.dp.outbound.v1.OtModule.Builder getOtModuleBuilder() {
|
|
7548
|
-
bitField0_ |=
|
|
7740
|
+
bitField0_ |= 0x40000000;
|
|
7549
7741
|
onChanged();
|
|
7550
7742
|
return getOtModuleFieldBuilder().getBuilder();
|
|
7551
7743
|
}
|
|
@@ -7593,7 +7785,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7593
7785
|
* @return Whether the cloud field is set.
|
|
7594
7786
|
*/
|
|
7595
7787
|
public boolean hasCloud() {
|
|
7596
|
-
return ((bitField0_ &
|
|
7788
|
+
return ((bitField0_ & 0x80000000) != 0);
|
|
7597
7789
|
}
|
|
7598
7790
|
/**
|
|
7599
7791
|
* <code>optional .com.lansweeper.dp.outbound.v1.CloudEntity cloud = 17;</code>
|
|
@@ -7618,7 +7810,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7618
7810
|
} else {
|
|
7619
7811
|
cloudBuilder_.setMessage(value);
|
|
7620
7812
|
}
|
|
7621
|
-
bitField0_ |=
|
|
7813
|
+
bitField0_ |= 0x80000000;
|
|
7622
7814
|
onChanged();
|
|
7623
7815
|
return this;
|
|
7624
7816
|
}
|
|
@@ -7632,7 +7824,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7632
7824
|
} else {
|
|
7633
7825
|
cloudBuilder_.setMessage(builderForValue.build());
|
|
7634
7826
|
}
|
|
7635
|
-
bitField0_ |=
|
|
7827
|
+
bitField0_ |= 0x80000000;
|
|
7636
7828
|
onChanged();
|
|
7637
7829
|
return this;
|
|
7638
7830
|
}
|
|
@@ -7641,7 +7833,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7641
7833
|
*/
|
|
7642
7834
|
public Builder mergeCloud(com.lansweeper.dp.outbound.v1.CloudEntity value) {
|
|
7643
7835
|
if (cloudBuilder_ == null) {
|
|
7644
|
-
if (((bitField0_ &
|
|
7836
|
+
if (((bitField0_ & 0x80000000) != 0) &&
|
|
7645
7837
|
cloud_ != null &&
|
|
7646
7838
|
cloud_ != com.lansweeper.dp.outbound.v1.CloudEntity.getDefaultInstance()) {
|
|
7647
7839
|
getCloudBuilder().mergeFrom(value);
|
|
@@ -7652,7 +7844,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7652
7844
|
cloudBuilder_.mergeFrom(value);
|
|
7653
7845
|
}
|
|
7654
7846
|
if (cloud_ != null) {
|
|
7655
|
-
bitField0_ |=
|
|
7847
|
+
bitField0_ |= 0x80000000;
|
|
7656
7848
|
onChanged();
|
|
7657
7849
|
}
|
|
7658
7850
|
return this;
|
|
@@ -7661,7 +7853,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7661
7853
|
* <code>optional .com.lansweeper.dp.outbound.v1.CloudEntity cloud = 17;</code>
|
|
7662
7854
|
*/
|
|
7663
7855
|
public Builder clearCloud() {
|
|
7664
|
-
bitField0_ = (bitField0_ & ~
|
|
7856
|
+
bitField0_ = (bitField0_ & ~0x80000000);
|
|
7665
7857
|
cloud_ = null;
|
|
7666
7858
|
if (cloudBuilder_ != null) {
|
|
7667
7859
|
cloudBuilder_.dispose();
|
|
@@ -7674,7 +7866,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7674
7866
|
* <code>optional .com.lansweeper.dp.outbound.v1.CloudEntity cloud = 17;</code>
|
|
7675
7867
|
*/
|
|
7676
7868
|
public com.lansweeper.dp.outbound.v1.CloudEntity.Builder getCloudBuilder() {
|
|
7677
|
-
bitField0_ |=
|
|
7869
|
+
bitField0_ |= 0x80000000;
|
|
7678
7870
|
onChanged();
|
|
7679
7871
|
return getCloudFieldBuilder().getBuilder();
|
|
7680
7872
|
}
|
|
@@ -7709,9 +7901,9 @@ private static final long serialVersionUID = 0L;
|
|
|
7709
7901
|
private java.util.List<com.lansweeper.dp.outbound.v1.AssetChangeEvent> changeLog_ =
|
|
7710
7902
|
java.util.Collections.emptyList();
|
|
7711
7903
|
private void ensureChangeLogIsMutable() {
|
|
7712
|
-
if (!((
|
|
7904
|
+
if (!((bitField1_ & 0x00000001) != 0)) {
|
|
7713
7905
|
changeLog_ = new java.util.ArrayList<com.lansweeper.dp.outbound.v1.AssetChangeEvent>(changeLog_);
|
|
7714
|
-
|
|
7906
|
+
bitField1_ |= 0x00000001;
|
|
7715
7907
|
}
|
|
7716
7908
|
}
|
|
7717
7909
|
|
|
@@ -7861,7 +8053,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7861
8053
|
public Builder clearChangeLog() {
|
|
7862
8054
|
if (changeLogBuilder_ == null) {
|
|
7863
8055
|
changeLog_ = java.util.Collections.emptyList();
|
|
7864
|
-
|
|
8056
|
+
bitField1_ = (bitField1_ & ~0x00000001);
|
|
7865
8057
|
onChanged();
|
|
7866
8058
|
} else {
|
|
7867
8059
|
changeLogBuilder_.clear();
|
|
@@ -7938,7 +8130,7 @@ private static final long serialVersionUID = 0L;
|
|
|
7938
8130
|
changeLogBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
|
|
7939
8131
|
com.lansweeper.dp.outbound.v1.AssetChangeEvent, com.lansweeper.dp.outbound.v1.AssetChangeEvent.Builder, com.lansweeper.dp.outbound.v1.AssetChangeEventOrBuilder>(
|
|
7940
8132
|
changeLog_,
|
|
7941
|
-
((
|
|
8133
|
+
((bitField1_ & 0x00000001) != 0),
|
|
7942
8134
|
getParentForChildren(),
|
|
7943
8135
|
isClean());
|
|
7944
8136
|
changeLog_ = null;
|