@lansweeper/data-platform-outbound-grpc 0.3.13 → 0.3.15
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 +16 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +388 -0
- package/gen-proto/outbound_pb.js +3767 -129
- package/generated-go/outbound.pb.go +22238 -20918
- package/java.json +1 -1
- package/model/pom.xml +1 -1
- package/model/src/main/proto/outbound.proto +121 -10
- 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/CoreFields$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/CoreFields$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/CoreFields.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/CoreFieldsOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/DeviceActionResult$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/DeviceActionResult$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/DeviceActionResult.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/DeviceActionResultOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/IntuneApplication$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/IntuneApplication$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/IntuneApplication.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/IntuneApplicationOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/IntuneDevice$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/IntuneDevice$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/IntuneDevice.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/IntuneDeviceOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Outbound.class +0 -0
- package/model/target/classes/outbound.proto +121 -10
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Asset.java +372 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/AssetOrBuilder.java +30 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/BootConfig.java +2 -2
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ComputerConnectedModem.java +9 -9
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ComputerConnectedModemOrBuilder.java +3 -3
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/CoreFields.java +113 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/CoreFieldsOrBuilder.java +19 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/DeviceActionResult.java +1084 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/DeviceActionResultOrBuilder.java +72 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/IntuneApplication.java +947 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/IntuneApplicationOrBuilder.java +58 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/IntuneDevice.java +12075 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/IntuneDeviceOrBuilder.java +1015 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +2931 -2803
- package/model/target/maven-archiver/pom.properties +2 -2
- package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +12 -0
- package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +7 -1
- package/model/target/{outbound-model-0.3.12-sources.jar → outbound-model-0.3.14-sources.jar} +0 -0
- package/model/target/{outbound-model-0.3.12.jar → outbound-model-0.3.14.jar} +0 -0
- package/package.json +2 -2
- package/pom.xml +1 -1
- package/proto/outbound.proto +121 -10
- package/service/pom.xml +1 -1
- package/service/target/maven-archiver/pom.properties +2 -2
- package/service/target/{outbound-service-0.3.12-sources.jar → outbound-service-0.3.14-sources.jar} +0 -0
- package/service/target/{outbound-service-0.3.12.jar → outbound-service-0.3.14.jar} +0 -0
package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Asset.java
CHANGED
|
@@ -1229,6 +1229,58 @@ private static final long serialVersionUID = 0L;
|
|
|
1229
1229
|
return changeLog_.get(index);
|
|
1230
1230
|
}
|
|
1231
1231
|
|
|
1232
|
+
public static final int INTUNE_DEVICE_FIELD_NUMBER = 90;
|
|
1233
|
+
private com.lansweeper.dp.outbound.v1.IntuneDevice intuneDevice_;
|
|
1234
|
+
/**
|
|
1235
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.IntuneDevice intune_device = 90;</code>
|
|
1236
|
+
* @return Whether the intuneDevice field is set.
|
|
1237
|
+
*/
|
|
1238
|
+
@java.lang.Override
|
|
1239
|
+
public boolean hasIntuneDevice() {
|
|
1240
|
+
return ((bitField0_ & 0x04000000) != 0);
|
|
1241
|
+
}
|
|
1242
|
+
/**
|
|
1243
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.IntuneDevice intune_device = 90;</code>
|
|
1244
|
+
* @return The intuneDevice.
|
|
1245
|
+
*/
|
|
1246
|
+
@java.lang.Override
|
|
1247
|
+
public com.lansweeper.dp.outbound.v1.IntuneDevice getIntuneDevice() {
|
|
1248
|
+
return intuneDevice_ == null ? com.lansweeper.dp.outbound.v1.IntuneDevice.getDefaultInstance() : intuneDevice_;
|
|
1249
|
+
}
|
|
1250
|
+
/**
|
|
1251
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.IntuneDevice intune_device = 90;</code>
|
|
1252
|
+
*/
|
|
1253
|
+
@java.lang.Override
|
|
1254
|
+
public com.lansweeper.dp.outbound.v1.IntuneDeviceOrBuilder getIntuneDeviceOrBuilder() {
|
|
1255
|
+
return intuneDevice_ == null ? com.lansweeper.dp.outbound.v1.IntuneDevice.getDefaultInstance() : intuneDevice_;
|
|
1256
|
+
}
|
|
1257
|
+
|
|
1258
|
+
public static final int INTUNE_APPLICATION_FIELD_NUMBER = 91;
|
|
1259
|
+
private com.lansweeper.dp.outbound.v1.IntuneApplication intuneApplication_;
|
|
1260
|
+
/**
|
|
1261
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.IntuneApplication intune_application = 91;</code>
|
|
1262
|
+
* @return Whether the intuneApplication field is set.
|
|
1263
|
+
*/
|
|
1264
|
+
@java.lang.Override
|
|
1265
|
+
public boolean hasIntuneApplication() {
|
|
1266
|
+
return ((bitField0_ & 0x08000000) != 0);
|
|
1267
|
+
}
|
|
1268
|
+
/**
|
|
1269
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.IntuneApplication intune_application = 91;</code>
|
|
1270
|
+
* @return The intuneApplication.
|
|
1271
|
+
*/
|
|
1272
|
+
@java.lang.Override
|
|
1273
|
+
public com.lansweeper.dp.outbound.v1.IntuneApplication getIntuneApplication() {
|
|
1274
|
+
return intuneApplication_ == null ? com.lansweeper.dp.outbound.v1.IntuneApplication.getDefaultInstance() : intuneApplication_;
|
|
1275
|
+
}
|
|
1276
|
+
/**
|
|
1277
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.IntuneApplication intune_application = 91;</code>
|
|
1278
|
+
*/
|
|
1279
|
+
@java.lang.Override
|
|
1280
|
+
public com.lansweeper.dp.outbound.v1.IntuneApplicationOrBuilder getIntuneApplicationOrBuilder() {
|
|
1281
|
+
return intuneApplication_ == null ? com.lansweeper.dp.outbound.v1.IntuneApplication.getDefaultInstance() : intuneApplication_;
|
|
1282
|
+
}
|
|
1283
|
+
|
|
1232
1284
|
private byte memoizedIsInitialized = -1;
|
|
1233
1285
|
@java.lang.Override
|
|
1234
1286
|
public final boolean isInitialized() {
|
|
@@ -1342,6 +1394,12 @@ private static final long serialVersionUID = 0L;
|
|
|
1342
1394
|
if (((bitField0_ & 0x00200000) != 0)) {
|
|
1343
1395
|
output.writeMessage(89, getHyperVComputer());
|
|
1344
1396
|
}
|
|
1397
|
+
if (((bitField0_ & 0x04000000) != 0)) {
|
|
1398
|
+
output.writeMessage(90, getIntuneDevice());
|
|
1399
|
+
}
|
|
1400
|
+
if (((bitField0_ & 0x08000000) != 0)) {
|
|
1401
|
+
output.writeMessage(91, getIntuneApplication());
|
|
1402
|
+
}
|
|
1345
1403
|
getUnknownFields().writeTo(output);
|
|
1346
1404
|
}
|
|
1347
1405
|
|
|
@@ -1480,6 +1538,14 @@ private static final long serialVersionUID = 0L;
|
|
|
1480
1538
|
size += com.google.protobuf.CodedOutputStream
|
|
1481
1539
|
.computeMessageSize(89, getHyperVComputer());
|
|
1482
1540
|
}
|
|
1541
|
+
if (((bitField0_ & 0x04000000) != 0)) {
|
|
1542
|
+
size += com.google.protobuf.CodedOutputStream
|
|
1543
|
+
.computeMessageSize(90, getIntuneDevice());
|
|
1544
|
+
}
|
|
1545
|
+
if (((bitField0_ & 0x08000000) != 0)) {
|
|
1546
|
+
size += com.google.protobuf.CodedOutputStream
|
|
1547
|
+
.computeMessageSize(91, getIntuneApplication());
|
|
1548
|
+
}
|
|
1483
1549
|
size += getUnknownFields().getSerializedSize();
|
|
1484
1550
|
memoizedSize = size;
|
|
1485
1551
|
return size;
|
|
@@ -1639,6 +1705,16 @@ private static final long serialVersionUID = 0L;
|
|
|
1639
1705
|
}
|
|
1640
1706
|
if (!getChangeLogList()
|
|
1641
1707
|
.equals(other.getChangeLogList())) return false;
|
|
1708
|
+
if (hasIntuneDevice() != other.hasIntuneDevice()) return false;
|
|
1709
|
+
if (hasIntuneDevice()) {
|
|
1710
|
+
if (!getIntuneDevice()
|
|
1711
|
+
.equals(other.getIntuneDevice())) return false;
|
|
1712
|
+
}
|
|
1713
|
+
if (hasIntuneApplication() != other.hasIntuneApplication()) return false;
|
|
1714
|
+
if (hasIntuneApplication()) {
|
|
1715
|
+
if (!getIntuneApplication()
|
|
1716
|
+
.equals(other.getIntuneApplication())) return false;
|
|
1717
|
+
}
|
|
1642
1718
|
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
|
|
1643
1719
|
return true;
|
|
1644
1720
|
}
|
|
@@ -1782,6 +1858,14 @@ private static final long serialVersionUID = 0L;
|
|
|
1782
1858
|
hash = (37 * hash) + CHANGE_LOG_FIELD_NUMBER;
|
|
1783
1859
|
hash = (53 * hash) + getChangeLogList().hashCode();
|
|
1784
1860
|
}
|
|
1861
|
+
if (hasIntuneDevice()) {
|
|
1862
|
+
hash = (37 * hash) + INTUNE_DEVICE_FIELD_NUMBER;
|
|
1863
|
+
hash = (53 * hash) + getIntuneDevice().hashCode();
|
|
1864
|
+
}
|
|
1865
|
+
if (hasIntuneApplication()) {
|
|
1866
|
+
hash = (37 * hash) + INTUNE_APPLICATION_FIELD_NUMBER;
|
|
1867
|
+
hash = (53 * hash) + getIntuneApplication().hashCode();
|
|
1868
|
+
}
|
|
1785
1869
|
hash = (29 * hash) + getUnknownFields().hashCode();
|
|
1786
1870
|
memoizedHashCode = hash;
|
|
1787
1871
|
return hash;
|
|
@@ -1946,6 +2030,8 @@ private static final long serialVersionUID = 0L;
|
|
|
1946
2030
|
getOtModuleFieldBuilder();
|
|
1947
2031
|
getCloudFieldBuilder();
|
|
1948
2032
|
getChangeLogFieldBuilder();
|
|
2033
|
+
getIntuneDeviceFieldBuilder();
|
|
2034
|
+
getIntuneApplicationFieldBuilder();
|
|
1949
2035
|
}
|
|
1950
2036
|
}
|
|
1951
2037
|
@java.lang.Override
|
|
@@ -2120,6 +2206,16 @@ private static final long serialVersionUID = 0L;
|
|
|
2120
2206
|
changeLogBuilder_.clear();
|
|
2121
2207
|
}
|
|
2122
2208
|
bitField1_ = (bitField1_ & ~0x00000001);
|
|
2209
|
+
intuneDevice_ = null;
|
|
2210
|
+
if (intuneDeviceBuilder_ != null) {
|
|
2211
|
+
intuneDeviceBuilder_.dispose();
|
|
2212
|
+
intuneDeviceBuilder_ = null;
|
|
2213
|
+
}
|
|
2214
|
+
intuneApplication_ = null;
|
|
2215
|
+
if (intuneApplicationBuilder_ != null) {
|
|
2216
|
+
intuneApplicationBuilder_.dispose();
|
|
2217
|
+
intuneApplicationBuilder_ = null;
|
|
2218
|
+
}
|
|
2123
2219
|
return this;
|
|
2124
2220
|
}
|
|
2125
2221
|
|
|
@@ -2377,6 +2473,20 @@ private static final long serialVersionUID = 0L;
|
|
|
2377
2473
|
|
|
2378
2474
|
private void buildPartial1(com.lansweeper.dp.outbound.v1.Asset result) {
|
|
2379
2475
|
int from_bitField1_ = bitField1_;
|
|
2476
|
+
int to_bitField0_ = 0;
|
|
2477
|
+
if (((from_bitField1_ & 0x00000002) != 0)) {
|
|
2478
|
+
result.intuneDevice_ = intuneDeviceBuilder_ == null
|
|
2479
|
+
? intuneDevice_
|
|
2480
|
+
: intuneDeviceBuilder_.build();
|
|
2481
|
+
to_bitField0_ |= 0x04000000;
|
|
2482
|
+
}
|
|
2483
|
+
if (((from_bitField1_ & 0x00000004) != 0)) {
|
|
2484
|
+
result.intuneApplication_ = intuneApplicationBuilder_ == null
|
|
2485
|
+
? intuneApplication_
|
|
2486
|
+
: intuneApplicationBuilder_.build();
|
|
2487
|
+
to_bitField0_ |= 0x08000000;
|
|
2488
|
+
}
|
|
2489
|
+
result.bitField0_ |= to_bitField0_;
|
|
2380
2490
|
}
|
|
2381
2491
|
|
|
2382
2492
|
@java.lang.Override
|
|
@@ -2689,6 +2799,12 @@ private static final long serialVersionUID = 0L;
|
|
|
2689
2799
|
}
|
|
2690
2800
|
}
|
|
2691
2801
|
}
|
|
2802
|
+
if (other.hasIntuneDevice()) {
|
|
2803
|
+
mergeIntuneDevice(other.getIntuneDevice());
|
|
2804
|
+
}
|
|
2805
|
+
if (other.hasIntuneApplication()) {
|
|
2806
|
+
mergeIntuneApplication(other.getIntuneApplication());
|
|
2807
|
+
}
|
|
2692
2808
|
this.mergeUnknownFields(other.getUnknownFields());
|
|
2693
2809
|
onChanged();
|
|
2694
2810
|
return this;
|
|
@@ -2982,6 +3098,20 @@ private static final long serialVersionUID = 0L;
|
|
|
2982
3098
|
bitField0_ |= 0x08000000;
|
|
2983
3099
|
break;
|
|
2984
3100
|
} // case 714
|
|
3101
|
+
case 722: {
|
|
3102
|
+
input.readMessage(
|
|
3103
|
+
getIntuneDeviceFieldBuilder().getBuilder(),
|
|
3104
|
+
extensionRegistry);
|
|
3105
|
+
bitField1_ |= 0x00000002;
|
|
3106
|
+
break;
|
|
3107
|
+
} // case 722
|
|
3108
|
+
case 730: {
|
|
3109
|
+
input.readMessage(
|
|
3110
|
+
getIntuneApplicationFieldBuilder().getBuilder(),
|
|
3111
|
+
extensionRegistry);
|
|
3112
|
+
bitField1_ |= 0x00000004;
|
|
3113
|
+
break;
|
|
3114
|
+
} // case 730
|
|
2985
3115
|
default: {
|
|
2986
3116
|
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
|
|
2987
3117
|
done = true; // was an endgroup tag
|
|
@@ -8137,6 +8267,248 @@ private static final long serialVersionUID = 0L;
|
|
|
8137
8267
|
}
|
|
8138
8268
|
return changeLogBuilder_;
|
|
8139
8269
|
}
|
|
8270
|
+
|
|
8271
|
+
private com.lansweeper.dp.outbound.v1.IntuneDevice intuneDevice_;
|
|
8272
|
+
private com.google.protobuf.SingleFieldBuilderV3<
|
|
8273
|
+
com.lansweeper.dp.outbound.v1.IntuneDevice, com.lansweeper.dp.outbound.v1.IntuneDevice.Builder, com.lansweeper.dp.outbound.v1.IntuneDeviceOrBuilder> intuneDeviceBuilder_;
|
|
8274
|
+
/**
|
|
8275
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.IntuneDevice intune_device = 90;</code>
|
|
8276
|
+
* @return Whether the intuneDevice field is set.
|
|
8277
|
+
*/
|
|
8278
|
+
public boolean hasIntuneDevice() {
|
|
8279
|
+
return ((bitField1_ & 0x00000002) != 0);
|
|
8280
|
+
}
|
|
8281
|
+
/**
|
|
8282
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.IntuneDevice intune_device = 90;</code>
|
|
8283
|
+
* @return The intuneDevice.
|
|
8284
|
+
*/
|
|
8285
|
+
public com.lansweeper.dp.outbound.v1.IntuneDevice getIntuneDevice() {
|
|
8286
|
+
if (intuneDeviceBuilder_ == null) {
|
|
8287
|
+
return intuneDevice_ == null ? com.lansweeper.dp.outbound.v1.IntuneDevice.getDefaultInstance() : intuneDevice_;
|
|
8288
|
+
} else {
|
|
8289
|
+
return intuneDeviceBuilder_.getMessage();
|
|
8290
|
+
}
|
|
8291
|
+
}
|
|
8292
|
+
/**
|
|
8293
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.IntuneDevice intune_device = 90;</code>
|
|
8294
|
+
*/
|
|
8295
|
+
public Builder setIntuneDevice(com.lansweeper.dp.outbound.v1.IntuneDevice value) {
|
|
8296
|
+
if (intuneDeviceBuilder_ == null) {
|
|
8297
|
+
if (value == null) {
|
|
8298
|
+
throw new NullPointerException();
|
|
8299
|
+
}
|
|
8300
|
+
intuneDevice_ = value;
|
|
8301
|
+
} else {
|
|
8302
|
+
intuneDeviceBuilder_.setMessage(value);
|
|
8303
|
+
}
|
|
8304
|
+
bitField1_ |= 0x00000002;
|
|
8305
|
+
onChanged();
|
|
8306
|
+
return this;
|
|
8307
|
+
}
|
|
8308
|
+
/**
|
|
8309
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.IntuneDevice intune_device = 90;</code>
|
|
8310
|
+
*/
|
|
8311
|
+
public Builder setIntuneDevice(
|
|
8312
|
+
com.lansweeper.dp.outbound.v1.IntuneDevice.Builder builderForValue) {
|
|
8313
|
+
if (intuneDeviceBuilder_ == null) {
|
|
8314
|
+
intuneDevice_ = builderForValue.build();
|
|
8315
|
+
} else {
|
|
8316
|
+
intuneDeviceBuilder_.setMessage(builderForValue.build());
|
|
8317
|
+
}
|
|
8318
|
+
bitField1_ |= 0x00000002;
|
|
8319
|
+
onChanged();
|
|
8320
|
+
return this;
|
|
8321
|
+
}
|
|
8322
|
+
/**
|
|
8323
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.IntuneDevice intune_device = 90;</code>
|
|
8324
|
+
*/
|
|
8325
|
+
public Builder mergeIntuneDevice(com.lansweeper.dp.outbound.v1.IntuneDevice value) {
|
|
8326
|
+
if (intuneDeviceBuilder_ == null) {
|
|
8327
|
+
if (((bitField1_ & 0x00000002) != 0) &&
|
|
8328
|
+
intuneDevice_ != null &&
|
|
8329
|
+
intuneDevice_ != com.lansweeper.dp.outbound.v1.IntuneDevice.getDefaultInstance()) {
|
|
8330
|
+
getIntuneDeviceBuilder().mergeFrom(value);
|
|
8331
|
+
} else {
|
|
8332
|
+
intuneDevice_ = value;
|
|
8333
|
+
}
|
|
8334
|
+
} else {
|
|
8335
|
+
intuneDeviceBuilder_.mergeFrom(value);
|
|
8336
|
+
}
|
|
8337
|
+
if (intuneDevice_ != null) {
|
|
8338
|
+
bitField1_ |= 0x00000002;
|
|
8339
|
+
onChanged();
|
|
8340
|
+
}
|
|
8341
|
+
return this;
|
|
8342
|
+
}
|
|
8343
|
+
/**
|
|
8344
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.IntuneDevice intune_device = 90;</code>
|
|
8345
|
+
*/
|
|
8346
|
+
public Builder clearIntuneDevice() {
|
|
8347
|
+
bitField1_ = (bitField1_ & ~0x00000002);
|
|
8348
|
+
intuneDevice_ = null;
|
|
8349
|
+
if (intuneDeviceBuilder_ != null) {
|
|
8350
|
+
intuneDeviceBuilder_.dispose();
|
|
8351
|
+
intuneDeviceBuilder_ = null;
|
|
8352
|
+
}
|
|
8353
|
+
onChanged();
|
|
8354
|
+
return this;
|
|
8355
|
+
}
|
|
8356
|
+
/**
|
|
8357
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.IntuneDevice intune_device = 90;</code>
|
|
8358
|
+
*/
|
|
8359
|
+
public com.lansweeper.dp.outbound.v1.IntuneDevice.Builder getIntuneDeviceBuilder() {
|
|
8360
|
+
bitField1_ |= 0x00000002;
|
|
8361
|
+
onChanged();
|
|
8362
|
+
return getIntuneDeviceFieldBuilder().getBuilder();
|
|
8363
|
+
}
|
|
8364
|
+
/**
|
|
8365
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.IntuneDevice intune_device = 90;</code>
|
|
8366
|
+
*/
|
|
8367
|
+
public com.lansweeper.dp.outbound.v1.IntuneDeviceOrBuilder getIntuneDeviceOrBuilder() {
|
|
8368
|
+
if (intuneDeviceBuilder_ != null) {
|
|
8369
|
+
return intuneDeviceBuilder_.getMessageOrBuilder();
|
|
8370
|
+
} else {
|
|
8371
|
+
return intuneDevice_ == null ?
|
|
8372
|
+
com.lansweeper.dp.outbound.v1.IntuneDevice.getDefaultInstance() : intuneDevice_;
|
|
8373
|
+
}
|
|
8374
|
+
}
|
|
8375
|
+
/**
|
|
8376
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.IntuneDevice intune_device = 90;</code>
|
|
8377
|
+
*/
|
|
8378
|
+
private com.google.protobuf.SingleFieldBuilderV3<
|
|
8379
|
+
com.lansweeper.dp.outbound.v1.IntuneDevice, com.lansweeper.dp.outbound.v1.IntuneDevice.Builder, com.lansweeper.dp.outbound.v1.IntuneDeviceOrBuilder>
|
|
8380
|
+
getIntuneDeviceFieldBuilder() {
|
|
8381
|
+
if (intuneDeviceBuilder_ == null) {
|
|
8382
|
+
intuneDeviceBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
|
|
8383
|
+
com.lansweeper.dp.outbound.v1.IntuneDevice, com.lansweeper.dp.outbound.v1.IntuneDevice.Builder, com.lansweeper.dp.outbound.v1.IntuneDeviceOrBuilder>(
|
|
8384
|
+
getIntuneDevice(),
|
|
8385
|
+
getParentForChildren(),
|
|
8386
|
+
isClean());
|
|
8387
|
+
intuneDevice_ = null;
|
|
8388
|
+
}
|
|
8389
|
+
return intuneDeviceBuilder_;
|
|
8390
|
+
}
|
|
8391
|
+
|
|
8392
|
+
private com.lansweeper.dp.outbound.v1.IntuneApplication intuneApplication_;
|
|
8393
|
+
private com.google.protobuf.SingleFieldBuilderV3<
|
|
8394
|
+
com.lansweeper.dp.outbound.v1.IntuneApplication, com.lansweeper.dp.outbound.v1.IntuneApplication.Builder, com.lansweeper.dp.outbound.v1.IntuneApplicationOrBuilder> intuneApplicationBuilder_;
|
|
8395
|
+
/**
|
|
8396
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.IntuneApplication intune_application = 91;</code>
|
|
8397
|
+
* @return Whether the intuneApplication field is set.
|
|
8398
|
+
*/
|
|
8399
|
+
public boolean hasIntuneApplication() {
|
|
8400
|
+
return ((bitField1_ & 0x00000004) != 0);
|
|
8401
|
+
}
|
|
8402
|
+
/**
|
|
8403
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.IntuneApplication intune_application = 91;</code>
|
|
8404
|
+
* @return The intuneApplication.
|
|
8405
|
+
*/
|
|
8406
|
+
public com.lansweeper.dp.outbound.v1.IntuneApplication getIntuneApplication() {
|
|
8407
|
+
if (intuneApplicationBuilder_ == null) {
|
|
8408
|
+
return intuneApplication_ == null ? com.lansweeper.dp.outbound.v1.IntuneApplication.getDefaultInstance() : intuneApplication_;
|
|
8409
|
+
} else {
|
|
8410
|
+
return intuneApplicationBuilder_.getMessage();
|
|
8411
|
+
}
|
|
8412
|
+
}
|
|
8413
|
+
/**
|
|
8414
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.IntuneApplication intune_application = 91;</code>
|
|
8415
|
+
*/
|
|
8416
|
+
public Builder setIntuneApplication(com.lansweeper.dp.outbound.v1.IntuneApplication value) {
|
|
8417
|
+
if (intuneApplicationBuilder_ == null) {
|
|
8418
|
+
if (value == null) {
|
|
8419
|
+
throw new NullPointerException();
|
|
8420
|
+
}
|
|
8421
|
+
intuneApplication_ = value;
|
|
8422
|
+
} else {
|
|
8423
|
+
intuneApplicationBuilder_.setMessage(value);
|
|
8424
|
+
}
|
|
8425
|
+
bitField1_ |= 0x00000004;
|
|
8426
|
+
onChanged();
|
|
8427
|
+
return this;
|
|
8428
|
+
}
|
|
8429
|
+
/**
|
|
8430
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.IntuneApplication intune_application = 91;</code>
|
|
8431
|
+
*/
|
|
8432
|
+
public Builder setIntuneApplication(
|
|
8433
|
+
com.lansweeper.dp.outbound.v1.IntuneApplication.Builder builderForValue) {
|
|
8434
|
+
if (intuneApplicationBuilder_ == null) {
|
|
8435
|
+
intuneApplication_ = builderForValue.build();
|
|
8436
|
+
} else {
|
|
8437
|
+
intuneApplicationBuilder_.setMessage(builderForValue.build());
|
|
8438
|
+
}
|
|
8439
|
+
bitField1_ |= 0x00000004;
|
|
8440
|
+
onChanged();
|
|
8441
|
+
return this;
|
|
8442
|
+
}
|
|
8443
|
+
/**
|
|
8444
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.IntuneApplication intune_application = 91;</code>
|
|
8445
|
+
*/
|
|
8446
|
+
public Builder mergeIntuneApplication(com.lansweeper.dp.outbound.v1.IntuneApplication value) {
|
|
8447
|
+
if (intuneApplicationBuilder_ == null) {
|
|
8448
|
+
if (((bitField1_ & 0x00000004) != 0) &&
|
|
8449
|
+
intuneApplication_ != null &&
|
|
8450
|
+
intuneApplication_ != com.lansweeper.dp.outbound.v1.IntuneApplication.getDefaultInstance()) {
|
|
8451
|
+
getIntuneApplicationBuilder().mergeFrom(value);
|
|
8452
|
+
} else {
|
|
8453
|
+
intuneApplication_ = value;
|
|
8454
|
+
}
|
|
8455
|
+
} else {
|
|
8456
|
+
intuneApplicationBuilder_.mergeFrom(value);
|
|
8457
|
+
}
|
|
8458
|
+
if (intuneApplication_ != null) {
|
|
8459
|
+
bitField1_ |= 0x00000004;
|
|
8460
|
+
onChanged();
|
|
8461
|
+
}
|
|
8462
|
+
return this;
|
|
8463
|
+
}
|
|
8464
|
+
/**
|
|
8465
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.IntuneApplication intune_application = 91;</code>
|
|
8466
|
+
*/
|
|
8467
|
+
public Builder clearIntuneApplication() {
|
|
8468
|
+
bitField1_ = (bitField1_ & ~0x00000004);
|
|
8469
|
+
intuneApplication_ = null;
|
|
8470
|
+
if (intuneApplicationBuilder_ != null) {
|
|
8471
|
+
intuneApplicationBuilder_.dispose();
|
|
8472
|
+
intuneApplicationBuilder_ = null;
|
|
8473
|
+
}
|
|
8474
|
+
onChanged();
|
|
8475
|
+
return this;
|
|
8476
|
+
}
|
|
8477
|
+
/**
|
|
8478
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.IntuneApplication intune_application = 91;</code>
|
|
8479
|
+
*/
|
|
8480
|
+
public com.lansweeper.dp.outbound.v1.IntuneApplication.Builder getIntuneApplicationBuilder() {
|
|
8481
|
+
bitField1_ |= 0x00000004;
|
|
8482
|
+
onChanged();
|
|
8483
|
+
return getIntuneApplicationFieldBuilder().getBuilder();
|
|
8484
|
+
}
|
|
8485
|
+
/**
|
|
8486
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.IntuneApplication intune_application = 91;</code>
|
|
8487
|
+
*/
|
|
8488
|
+
public com.lansweeper.dp.outbound.v1.IntuneApplicationOrBuilder getIntuneApplicationOrBuilder() {
|
|
8489
|
+
if (intuneApplicationBuilder_ != null) {
|
|
8490
|
+
return intuneApplicationBuilder_.getMessageOrBuilder();
|
|
8491
|
+
} else {
|
|
8492
|
+
return intuneApplication_ == null ?
|
|
8493
|
+
com.lansweeper.dp.outbound.v1.IntuneApplication.getDefaultInstance() : intuneApplication_;
|
|
8494
|
+
}
|
|
8495
|
+
}
|
|
8496
|
+
/**
|
|
8497
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.IntuneApplication intune_application = 91;</code>
|
|
8498
|
+
*/
|
|
8499
|
+
private com.google.protobuf.SingleFieldBuilderV3<
|
|
8500
|
+
com.lansweeper.dp.outbound.v1.IntuneApplication, com.lansweeper.dp.outbound.v1.IntuneApplication.Builder, com.lansweeper.dp.outbound.v1.IntuneApplicationOrBuilder>
|
|
8501
|
+
getIntuneApplicationFieldBuilder() {
|
|
8502
|
+
if (intuneApplicationBuilder_ == null) {
|
|
8503
|
+
intuneApplicationBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
|
|
8504
|
+
com.lansweeper.dp.outbound.v1.IntuneApplication, com.lansweeper.dp.outbound.v1.IntuneApplication.Builder, com.lansweeper.dp.outbound.v1.IntuneApplicationOrBuilder>(
|
|
8505
|
+
getIntuneApplication(),
|
|
8506
|
+
getParentForChildren(),
|
|
8507
|
+
isClean());
|
|
8508
|
+
intuneApplication_ = null;
|
|
8509
|
+
}
|
|
8510
|
+
return intuneApplicationBuilder_;
|
|
8511
|
+
}
|
|
8140
8512
|
@java.lang.Override
|
|
8141
8513
|
public final Builder setUnknownFields(
|
|
8142
8514
|
final com.google.protobuf.UnknownFieldSet unknownFields) {
|
|
@@ -720,4 +720,34 @@ public interface AssetOrBuilder extends
|
|
|
720
720
|
*/
|
|
721
721
|
com.lansweeper.dp.outbound.v1.AssetChangeEventOrBuilder getChangeLogOrBuilder(
|
|
722
722
|
int index);
|
|
723
|
+
|
|
724
|
+
/**
|
|
725
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.IntuneDevice intune_device = 90;</code>
|
|
726
|
+
* @return Whether the intuneDevice field is set.
|
|
727
|
+
*/
|
|
728
|
+
boolean hasIntuneDevice();
|
|
729
|
+
/**
|
|
730
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.IntuneDevice intune_device = 90;</code>
|
|
731
|
+
* @return The intuneDevice.
|
|
732
|
+
*/
|
|
733
|
+
com.lansweeper.dp.outbound.v1.IntuneDevice getIntuneDevice();
|
|
734
|
+
/**
|
|
735
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.IntuneDevice intune_device = 90;</code>
|
|
736
|
+
*/
|
|
737
|
+
com.lansweeper.dp.outbound.v1.IntuneDeviceOrBuilder getIntuneDeviceOrBuilder();
|
|
738
|
+
|
|
739
|
+
/**
|
|
740
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.IntuneApplication intune_application = 91;</code>
|
|
741
|
+
* @return Whether the intuneApplication field is set.
|
|
742
|
+
*/
|
|
743
|
+
boolean hasIntuneApplication();
|
|
744
|
+
/**
|
|
745
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.IntuneApplication intune_application = 91;</code>
|
|
746
|
+
* @return The intuneApplication.
|
|
747
|
+
*/
|
|
748
|
+
com.lansweeper.dp.outbound.v1.IntuneApplication getIntuneApplication();
|
|
749
|
+
/**
|
|
750
|
+
* <code>optional .com.lansweeper.dp.outbound.v1.IntuneApplication intune_application = 91;</code>
|
|
751
|
+
*/
|
|
752
|
+
com.lansweeper.dp.outbound.v1.IntuneApplicationOrBuilder getIntuneApplicationOrBuilder();
|
|
723
753
|
}
|
package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/BootConfig.java
CHANGED
|
@@ -7,7 +7,7 @@ package com.lansweeper.dp.outbound.v1;
|
|
|
7
7
|
/**
|
|
8
8
|
* <pre>
|
|
9
9
|
**
|
|
10
|
-
* BootConfig: Windows.BootConfig
|
|
10
|
+
* BootConfig: Windows.BootConfig
|
|
11
11
|
* </pre>
|
|
12
12
|
*
|
|
13
13
|
* Protobuf type {@code com.lansweeper.dp.outbound.v1.BootConfig}
|
|
@@ -710,7 +710,7 @@ private static final long serialVersionUID = 0L;
|
|
|
710
710
|
/**
|
|
711
711
|
* <pre>
|
|
712
712
|
**
|
|
713
|
-
* BootConfig: Windows.BootConfig
|
|
713
|
+
* BootConfig: Windows.BootConfig
|
|
714
714
|
* </pre>
|
|
715
715
|
*
|
|
716
716
|
* Protobuf type {@code com.lansweeper.dp.outbound.v1.BootConfig}
|
|
@@ -168,7 +168,7 @@ private static final long serialVersionUID = 0L;
|
|
|
168
168
|
private volatile java.lang.Object countryInfo_ = "";
|
|
169
169
|
/**
|
|
170
170
|
* <pre>
|
|
171
|
-
* windows: country_selected, mac: country_info
|
|
171
|
+
* windows: country_selected, mac: country_info
|
|
172
172
|
* </pre>
|
|
173
173
|
*
|
|
174
174
|
* <code>optional string country_info = 3;</code>
|
|
@@ -180,7 +180,7 @@ private static final long serialVersionUID = 0L;
|
|
|
180
180
|
}
|
|
181
181
|
/**
|
|
182
182
|
* <pre>
|
|
183
|
-
* windows: country_selected, mac: country_info
|
|
183
|
+
* windows: country_selected, mac: country_info
|
|
184
184
|
* </pre>
|
|
185
185
|
*
|
|
186
186
|
* <code>optional string country_info = 3;</code>
|
|
@@ -201,7 +201,7 @@ private static final long serialVersionUID = 0L;
|
|
|
201
201
|
}
|
|
202
202
|
/**
|
|
203
203
|
* <pre>
|
|
204
|
-
* windows: country_selected, mac: country_info
|
|
204
|
+
* windows: country_selected, mac: country_info
|
|
205
205
|
* </pre>
|
|
206
206
|
*
|
|
207
207
|
* <code>optional string country_info = 3;</code>
|
|
@@ -1655,7 +1655,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1655
1655
|
private java.lang.Object countryInfo_ = "";
|
|
1656
1656
|
/**
|
|
1657
1657
|
* <pre>
|
|
1658
|
-
* windows: country_selected, mac: country_info
|
|
1658
|
+
* windows: country_selected, mac: country_info
|
|
1659
1659
|
* </pre>
|
|
1660
1660
|
*
|
|
1661
1661
|
* <code>optional string country_info = 3;</code>
|
|
@@ -1666,7 +1666,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1666
1666
|
}
|
|
1667
1667
|
/**
|
|
1668
1668
|
* <pre>
|
|
1669
|
-
* windows: country_selected, mac: country_info
|
|
1669
|
+
* windows: country_selected, mac: country_info
|
|
1670
1670
|
* </pre>
|
|
1671
1671
|
*
|
|
1672
1672
|
* <code>optional string country_info = 3;</code>
|
|
@@ -1686,7 +1686,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1686
1686
|
}
|
|
1687
1687
|
/**
|
|
1688
1688
|
* <pre>
|
|
1689
|
-
* windows: country_selected, mac: country_info
|
|
1689
|
+
* windows: country_selected, mac: country_info
|
|
1690
1690
|
* </pre>
|
|
1691
1691
|
*
|
|
1692
1692
|
* <code>optional string country_info = 3;</code>
|
|
@@ -1707,7 +1707,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1707
1707
|
}
|
|
1708
1708
|
/**
|
|
1709
1709
|
* <pre>
|
|
1710
|
-
* windows: country_selected, mac: country_info
|
|
1710
|
+
* windows: country_selected, mac: country_info
|
|
1711
1711
|
* </pre>
|
|
1712
1712
|
*
|
|
1713
1713
|
* <code>optional string country_info = 3;</code>
|
|
@@ -1724,7 +1724,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1724
1724
|
}
|
|
1725
1725
|
/**
|
|
1726
1726
|
* <pre>
|
|
1727
|
-
* windows: country_selected, mac: country_info
|
|
1727
|
+
* windows: country_selected, mac: country_info
|
|
1728
1728
|
* </pre>
|
|
1729
1729
|
*
|
|
1730
1730
|
* <code>optional string country_info = 3;</code>
|
|
@@ -1738,7 +1738,7 @@ private static final long serialVersionUID = 0L;
|
|
|
1738
1738
|
}
|
|
1739
1739
|
/**
|
|
1740
1740
|
* <pre>
|
|
1741
|
-
* windows: country_selected, mac: country_info
|
|
1741
|
+
* windows: country_selected, mac: country_info
|
|
1742
1742
|
* </pre>
|
|
1743
1743
|
*
|
|
1744
1744
|
* <code>optional string country_info = 3;</code>
|
|
@@ -56,7 +56,7 @@ public interface ComputerConnectedModemOrBuilder extends
|
|
|
56
56
|
|
|
57
57
|
/**
|
|
58
58
|
* <pre>
|
|
59
|
-
* windows: country_selected, mac: country_info
|
|
59
|
+
* windows: country_selected, mac: country_info
|
|
60
60
|
* </pre>
|
|
61
61
|
*
|
|
62
62
|
* <code>optional string country_info = 3;</code>
|
|
@@ -65,7 +65,7 @@ public interface ComputerConnectedModemOrBuilder extends
|
|
|
65
65
|
boolean hasCountryInfo();
|
|
66
66
|
/**
|
|
67
67
|
* <pre>
|
|
68
|
-
* windows: country_selected, mac: country_info
|
|
68
|
+
* windows: country_selected, mac: country_info
|
|
69
69
|
* </pre>
|
|
70
70
|
*
|
|
71
71
|
* <code>optional string country_info = 3;</code>
|
|
@@ -74,7 +74,7 @@ public interface ComputerConnectedModemOrBuilder extends
|
|
|
74
74
|
java.lang.String getCountryInfo();
|
|
75
75
|
/**
|
|
76
76
|
* <pre>
|
|
77
|
-
* windows: country_selected, mac: country_info
|
|
77
|
+
* windows: country_selected, mac: country_info
|
|
78
78
|
* </pre>
|
|
79
79
|
*
|
|
80
80
|
* <code>optional string country_info = 3;</code>
|