@lansweeper/data-platform-outbound-grpc 0.1.1 → 0.1.3
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 +12 -0
- package/gen-proto/outbound_pb.js +99 -0
- package/generated-go/outbound.pb.go +3688 -0
- package/generated-go/outbound_grpc.pb.go +174 -0
- package/go.mod +3 -0
- package/package.json +2 -2
- package/pom.xml +1 -1
- package/proto/outbound.proto +4 -0
- package/src/main/java/com/lansweeper/dp/outbound/v1/Outbound.java +618 -307
|
@@ -10723,6 +10723,21 @@ public final class Outbound {
|
|
|
10723
10723
|
*/
|
|
10724
10724
|
com.lansweeper.dp.outbound.v1.Outbound.CatalogModelOrBuilder getCatalogModelOrBuilder();
|
|
10725
10725
|
|
|
10726
|
+
/**
|
|
10727
|
+
* <code>.com.lansweeper.dp.outbound.v1.CatalogModel catalog_family = 25;</code>
|
|
10728
|
+
* @return Whether the catalogFamily field is set.
|
|
10729
|
+
*/
|
|
10730
|
+
boolean hasCatalogFamily();
|
|
10731
|
+
/**
|
|
10732
|
+
* <code>.com.lansweeper.dp.outbound.v1.CatalogModel catalog_family = 25;</code>
|
|
10733
|
+
* @return The catalogFamily.
|
|
10734
|
+
*/
|
|
10735
|
+
com.lansweeper.dp.outbound.v1.Outbound.CatalogModel getCatalogFamily();
|
|
10736
|
+
/**
|
|
10737
|
+
* <code>.com.lansweeper.dp.outbound.v1.CatalogModel catalog_family = 25;</code>
|
|
10738
|
+
*/
|
|
10739
|
+
com.lansweeper.dp.outbound.v1.Outbound.CatalogModelOrBuilder getCatalogFamilyOrBuilder();
|
|
10740
|
+
|
|
10726
10741
|
/**
|
|
10727
10742
|
* <code>.com.lansweeper.dp.outbound.v1.RawHardwareInfo raw = 24;</code>
|
|
10728
10743
|
* @return Whether the raw field is set.
|
|
@@ -10884,7 +10899,7 @@ public final class Outbound {
|
|
|
10884
10899
|
}
|
|
10885
10900
|
case 194: {
|
|
10886
10901
|
com.lansweeper.dp.outbound.v1.Outbound.RawHardwareInfo.Builder subBuilder = null;
|
|
10887
|
-
if (((bitField0_ &
|
|
10902
|
+
if (((bitField0_ & 0x00008000) != 0)) {
|
|
10888
10903
|
subBuilder = raw_.toBuilder();
|
|
10889
10904
|
}
|
|
10890
10905
|
raw_ = input.readMessage(com.lansweeper.dp.outbound.v1.Outbound.RawHardwareInfo.parser(), extensionRegistry);
|
|
@@ -10892,6 +10907,19 @@ public final class Outbound {
|
|
|
10892
10907
|
subBuilder.mergeFrom(raw_);
|
|
10893
10908
|
raw_ = subBuilder.buildPartial();
|
|
10894
10909
|
}
|
|
10910
|
+
bitField0_ |= 0x00008000;
|
|
10911
|
+
break;
|
|
10912
|
+
}
|
|
10913
|
+
case 202: {
|
|
10914
|
+
com.lansweeper.dp.outbound.v1.Outbound.CatalogModel.Builder subBuilder = null;
|
|
10915
|
+
if (((bitField0_ & 0x00004000) != 0)) {
|
|
10916
|
+
subBuilder = catalogFamily_.toBuilder();
|
|
10917
|
+
}
|
|
10918
|
+
catalogFamily_ = input.readMessage(com.lansweeper.dp.outbound.v1.Outbound.CatalogModel.parser(), extensionRegistry);
|
|
10919
|
+
if (subBuilder != null) {
|
|
10920
|
+
subBuilder.mergeFrom(catalogFamily_);
|
|
10921
|
+
catalogFamily_ = subBuilder.buildPartial();
|
|
10922
|
+
}
|
|
10895
10923
|
bitField0_ |= 0x00004000;
|
|
10896
10924
|
break;
|
|
10897
10925
|
}
|
|
@@ -11370,6 +11398,32 @@ public final class Outbound {
|
|
|
11370
11398
|
return catalogModel_ == null ? com.lansweeper.dp.outbound.v1.Outbound.CatalogModel.getDefaultInstance() : catalogModel_;
|
|
11371
11399
|
}
|
|
11372
11400
|
|
|
11401
|
+
public static final int CATALOG_FAMILY_FIELD_NUMBER = 25;
|
|
11402
|
+
private com.lansweeper.dp.outbound.v1.Outbound.CatalogModel catalogFamily_;
|
|
11403
|
+
/**
|
|
11404
|
+
* <code>.com.lansweeper.dp.outbound.v1.CatalogModel catalog_family = 25;</code>
|
|
11405
|
+
* @return Whether the catalogFamily field is set.
|
|
11406
|
+
*/
|
|
11407
|
+
@java.lang.Override
|
|
11408
|
+
public boolean hasCatalogFamily() {
|
|
11409
|
+
return ((bitField0_ & 0x00004000) != 0);
|
|
11410
|
+
}
|
|
11411
|
+
/**
|
|
11412
|
+
* <code>.com.lansweeper.dp.outbound.v1.CatalogModel catalog_family = 25;</code>
|
|
11413
|
+
* @return The catalogFamily.
|
|
11414
|
+
*/
|
|
11415
|
+
@java.lang.Override
|
|
11416
|
+
public com.lansweeper.dp.outbound.v1.Outbound.CatalogModel getCatalogFamily() {
|
|
11417
|
+
return catalogFamily_ == null ? com.lansweeper.dp.outbound.v1.Outbound.CatalogModel.getDefaultInstance() : catalogFamily_;
|
|
11418
|
+
}
|
|
11419
|
+
/**
|
|
11420
|
+
* <code>.com.lansweeper.dp.outbound.v1.CatalogModel catalog_family = 25;</code>
|
|
11421
|
+
*/
|
|
11422
|
+
@java.lang.Override
|
|
11423
|
+
public com.lansweeper.dp.outbound.v1.Outbound.CatalogModelOrBuilder getCatalogFamilyOrBuilder() {
|
|
11424
|
+
return catalogFamily_ == null ? com.lansweeper.dp.outbound.v1.Outbound.CatalogModel.getDefaultInstance() : catalogFamily_;
|
|
11425
|
+
}
|
|
11426
|
+
|
|
11373
11427
|
public static final int RAW_FIELD_NUMBER = 24;
|
|
11374
11428
|
private com.lansweeper.dp.outbound.v1.Outbound.RawHardwareInfo raw_;
|
|
11375
11429
|
/**
|
|
@@ -11378,7 +11432,7 @@ public final class Outbound {
|
|
|
11378
11432
|
*/
|
|
11379
11433
|
@java.lang.Override
|
|
11380
11434
|
public boolean hasRaw() {
|
|
11381
|
-
return ((bitField0_ &
|
|
11435
|
+
return ((bitField0_ & 0x00008000) != 0);
|
|
11382
11436
|
}
|
|
11383
11437
|
/**
|
|
11384
11438
|
* <code>.com.lansweeper.dp.outbound.v1.RawHardwareInfo raw = 24;</code>
|
|
@@ -11452,9 +11506,12 @@ public final class Outbound {
|
|
|
11452
11506
|
if (((bitField0_ & 0x00002000) != 0)) {
|
|
11453
11507
|
output.writeMessage(23, getCatalogModel());
|
|
11454
11508
|
}
|
|
11455
|
-
if (((bitField0_ &
|
|
11509
|
+
if (((bitField0_ & 0x00008000) != 0)) {
|
|
11456
11510
|
output.writeMessage(24, getRaw());
|
|
11457
11511
|
}
|
|
11512
|
+
if (((bitField0_ & 0x00004000) != 0)) {
|
|
11513
|
+
output.writeMessage(25, getCatalogFamily());
|
|
11514
|
+
}
|
|
11458
11515
|
unknownFields.writeTo(output);
|
|
11459
11516
|
}
|
|
11460
11517
|
|
|
@@ -11514,10 +11571,14 @@ public final class Outbound {
|
|
|
11514
11571
|
size += com.google.protobuf.CodedOutputStream
|
|
11515
11572
|
.computeMessageSize(23, getCatalogModel());
|
|
11516
11573
|
}
|
|
11517
|
-
if (((bitField0_ &
|
|
11574
|
+
if (((bitField0_ & 0x00008000) != 0)) {
|
|
11518
11575
|
size += com.google.protobuf.CodedOutputStream
|
|
11519
11576
|
.computeMessageSize(24, getRaw());
|
|
11520
11577
|
}
|
|
11578
|
+
if (((bitField0_ & 0x00004000) != 0)) {
|
|
11579
|
+
size += com.google.protobuf.CodedOutputStream
|
|
11580
|
+
.computeMessageSize(25, getCatalogFamily());
|
|
11581
|
+
}
|
|
11521
11582
|
size += unknownFields.getSerializedSize();
|
|
11522
11583
|
memoizedSize = size;
|
|
11523
11584
|
return size;
|
|
@@ -11603,6 +11664,11 @@ public final class Outbound {
|
|
|
11603
11664
|
if (!getCatalogModel()
|
|
11604
11665
|
.equals(other.getCatalogModel())) return false;
|
|
11605
11666
|
}
|
|
11667
|
+
if (hasCatalogFamily() != other.hasCatalogFamily()) return false;
|
|
11668
|
+
if (hasCatalogFamily()) {
|
|
11669
|
+
if (!getCatalogFamily()
|
|
11670
|
+
.equals(other.getCatalogFamily())) return false;
|
|
11671
|
+
}
|
|
11606
11672
|
if (hasRaw() != other.hasRaw()) return false;
|
|
11607
11673
|
if (hasRaw()) {
|
|
11608
11674
|
if (!getRaw()
|
|
@@ -11680,6 +11746,10 @@ public final class Outbound {
|
|
|
11680
11746
|
hash = (37 * hash) + CATALOG_MODEL_FIELD_NUMBER;
|
|
11681
11747
|
hash = (53 * hash) + getCatalogModel().hashCode();
|
|
11682
11748
|
}
|
|
11749
|
+
if (hasCatalogFamily()) {
|
|
11750
|
+
hash = (37 * hash) + CATALOG_FAMILY_FIELD_NUMBER;
|
|
11751
|
+
hash = (53 * hash) + getCatalogFamily().hashCode();
|
|
11752
|
+
}
|
|
11683
11753
|
if (hasRaw()) {
|
|
11684
11754
|
hash = (37 * hash) + RAW_FIELD_NUMBER;
|
|
11685
11755
|
hash = (53 * hash) + getRaw().hashCode();
|
|
@@ -11814,6 +11884,7 @@ public final class Outbound {
|
|
|
11814
11884
|
.alwaysUseFieldBuilders) {
|
|
11815
11885
|
getCatalogBrandFieldBuilder();
|
|
11816
11886
|
getCatalogModelFieldBuilder();
|
|
11887
|
+
getCatalogFamilyFieldBuilder();
|
|
11817
11888
|
getRawFieldBuilder();
|
|
11818
11889
|
}
|
|
11819
11890
|
}
|
|
@@ -11856,12 +11927,18 @@ public final class Outbound {
|
|
|
11856
11927
|
catalogModelBuilder_.clear();
|
|
11857
11928
|
}
|
|
11858
11929
|
bitField0_ = (bitField0_ & ~0x00002000);
|
|
11930
|
+
if (catalogFamilyBuilder_ == null) {
|
|
11931
|
+
catalogFamily_ = null;
|
|
11932
|
+
} else {
|
|
11933
|
+
catalogFamilyBuilder_.clear();
|
|
11934
|
+
}
|
|
11935
|
+
bitField0_ = (bitField0_ & ~0x00004000);
|
|
11859
11936
|
if (rawBuilder_ == null) {
|
|
11860
11937
|
raw_ = null;
|
|
11861
11938
|
} else {
|
|
11862
11939
|
rawBuilder_.clear();
|
|
11863
11940
|
}
|
|
11864
|
-
bitField0_ = (bitField0_ & ~
|
|
11941
|
+
bitField0_ = (bitField0_ & ~0x00008000);
|
|
11865
11942
|
return this;
|
|
11866
11943
|
}
|
|
11867
11944
|
|
|
@@ -11955,12 +12032,20 @@ public final class Outbound {
|
|
|
11955
12032
|
to_bitField0_ |= 0x00002000;
|
|
11956
12033
|
}
|
|
11957
12034
|
if (((from_bitField0_ & 0x00004000) != 0)) {
|
|
12035
|
+
if (catalogFamilyBuilder_ == null) {
|
|
12036
|
+
result.catalogFamily_ = catalogFamily_;
|
|
12037
|
+
} else {
|
|
12038
|
+
result.catalogFamily_ = catalogFamilyBuilder_.build();
|
|
12039
|
+
}
|
|
12040
|
+
to_bitField0_ |= 0x00004000;
|
|
12041
|
+
}
|
|
12042
|
+
if (((from_bitField0_ & 0x00008000) != 0)) {
|
|
11958
12043
|
if (rawBuilder_ == null) {
|
|
11959
12044
|
result.raw_ = raw_;
|
|
11960
12045
|
} else {
|
|
11961
12046
|
result.raw_ = rawBuilder_.build();
|
|
11962
12047
|
}
|
|
11963
|
-
to_bitField0_ |=
|
|
12048
|
+
to_bitField0_ |= 0x00008000;
|
|
11964
12049
|
}
|
|
11965
12050
|
result.bitField0_ = to_bitField0_;
|
|
11966
12051
|
onBuilt();
|
|
@@ -12065,6 +12150,9 @@ public final class Outbound {
|
|
|
12065
12150
|
if (other.hasCatalogModel()) {
|
|
12066
12151
|
mergeCatalogModel(other.getCatalogModel());
|
|
12067
12152
|
}
|
|
12153
|
+
if (other.hasCatalogFamily()) {
|
|
12154
|
+
mergeCatalogFamily(other.getCatalogFamily());
|
|
12155
|
+
}
|
|
12068
12156
|
if (other.hasRaw()) {
|
|
12069
12157
|
mergeRaw(other.getRaw());
|
|
12070
12158
|
}
|
|
@@ -13070,6 +13158,126 @@ public final class Outbound {
|
|
|
13070
13158
|
return catalogModelBuilder_;
|
|
13071
13159
|
}
|
|
13072
13160
|
|
|
13161
|
+
private com.lansweeper.dp.outbound.v1.Outbound.CatalogModel catalogFamily_;
|
|
13162
|
+
private com.google.protobuf.SingleFieldBuilderV3<
|
|
13163
|
+
com.lansweeper.dp.outbound.v1.Outbound.CatalogModel, com.lansweeper.dp.outbound.v1.Outbound.CatalogModel.Builder, com.lansweeper.dp.outbound.v1.Outbound.CatalogModelOrBuilder> catalogFamilyBuilder_;
|
|
13164
|
+
/**
|
|
13165
|
+
* <code>.com.lansweeper.dp.outbound.v1.CatalogModel catalog_family = 25;</code>
|
|
13166
|
+
* @return Whether the catalogFamily field is set.
|
|
13167
|
+
*/
|
|
13168
|
+
public boolean hasCatalogFamily() {
|
|
13169
|
+
return ((bitField0_ & 0x00004000) != 0);
|
|
13170
|
+
}
|
|
13171
|
+
/**
|
|
13172
|
+
* <code>.com.lansweeper.dp.outbound.v1.CatalogModel catalog_family = 25;</code>
|
|
13173
|
+
* @return The catalogFamily.
|
|
13174
|
+
*/
|
|
13175
|
+
public com.lansweeper.dp.outbound.v1.Outbound.CatalogModel getCatalogFamily() {
|
|
13176
|
+
if (catalogFamilyBuilder_ == null) {
|
|
13177
|
+
return catalogFamily_ == null ? com.lansweeper.dp.outbound.v1.Outbound.CatalogModel.getDefaultInstance() : catalogFamily_;
|
|
13178
|
+
} else {
|
|
13179
|
+
return catalogFamilyBuilder_.getMessage();
|
|
13180
|
+
}
|
|
13181
|
+
}
|
|
13182
|
+
/**
|
|
13183
|
+
* <code>.com.lansweeper.dp.outbound.v1.CatalogModel catalog_family = 25;</code>
|
|
13184
|
+
*/
|
|
13185
|
+
public Builder setCatalogFamily(com.lansweeper.dp.outbound.v1.Outbound.CatalogModel value) {
|
|
13186
|
+
if (catalogFamilyBuilder_ == null) {
|
|
13187
|
+
if (value == null) {
|
|
13188
|
+
throw new NullPointerException();
|
|
13189
|
+
}
|
|
13190
|
+
catalogFamily_ = value;
|
|
13191
|
+
onChanged();
|
|
13192
|
+
} else {
|
|
13193
|
+
catalogFamilyBuilder_.setMessage(value);
|
|
13194
|
+
}
|
|
13195
|
+
bitField0_ |= 0x00004000;
|
|
13196
|
+
return this;
|
|
13197
|
+
}
|
|
13198
|
+
/**
|
|
13199
|
+
* <code>.com.lansweeper.dp.outbound.v1.CatalogModel catalog_family = 25;</code>
|
|
13200
|
+
*/
|
|
13201
|
+
public Builder setCatalogFamily(
|
|
13202
|
+
com.lansweeper.dp.outbound.v1.Outbound.CatalogModel.Builder builderForValue) {
|
|
13203
|
+
if (catalogFamilyBuilder_ == null) {
|
|
13204
|
+
catalogFamily_ = builderForValue.build();
|
|
13205
|
+
onChanged();
|
|
13206
|
+
} else {
|
|
13207
|
+
catalogFamilyBuilder_.setMessage(builderForValue.build());
|
|
13208
|
+
}
|
|
13209
|
+
bitField0_ |= 0x00004000;
|
|
13210
|
+
return this;
|
|
13211
|
+
}
|
|
13212
|
+
/**
|
|
13213
|
+
* <code>.com.lansweeper.dp.outbound.v1.CatalogModel catalog_family = 25;</code>
|
|
13214
|
+
*/
|
|
13215
|
+
public Builder mergeCatalogFamily(com.lansweeper.dp.outbound.v1.Outbound.CatalogModel value) {
|
|
13216
|
+
if (catalogFamilyBuilder_ == null) {
|
|
13217
|
+
if (((bitField0_ & 0x00004000) != 0) &&
|
|
13218
|
+
catalogFamily_ != null &&
|
|
13219
|
+
catalogFamily_ != com.lansweeper.dp.outbound.v1.Outbound.CatalogModel.getDefaultInstance()) {
|
|
13220
|
+
catalogFamily_ =
|
|
13221
|
+
com.lansweeper.dp.outbound.v1.Outbound.CatalogModel.newBuilder(catalogFamily_).mergeFrom(value).buildPartial();
|
|
13222
|
+
} else {
|
|
13223
|
+
catalogFamily_ = value;
|
|
13224
|
+
}
|
|
13225
|
+
onChanged();
|
|
13226
|
+
} else {
|
|
13227
|
+
catalogFamilyBuilder_.mergeFrom(value);
|
|
13228
|
+
}
|
|
13229
|
+
bitField0_ |= 0x00004000;
|
|
13230
|
+
return this;
|
|
13231
|
+
}
|
|
13232
|
+
/**
|
|
13233
|
+
* <code>.com.lansweeper.dp.outbound.v1.CatalogModel catalog_family = 25;</code>
|
|
13234
|
+
*/
|
|
13235
|
+
public Builder clearCatalogFamily() {
|
|
13236
|
+
if (catalogFamilyBuilder_ == null) {
|
|
13237
|
+
catalogFamily_ = null;
|
|
13238
|
+
onChanged();
|
|
13239
|
+
} else {
|
|
13240
|
+
catalogFamilyBuilder_.clear();
|
|
13241
|
+
}
|
|
13242
|
+
bitField0_ = (bitField0_ & ~0x00004000);
|
|
13243
|
+
return this;
|
|
13244
|
+
}
|
|
13245
|
+
/**
|
|
13246
|
+
* <code>.com.lansweeper.dp.outbound.v1.CatalogModel catalog_family = 25;</code>
|
|
13247
|
+
*/
|
|
13248
|
+
public com.lansweeper.dp.outbound.v1.Outbound.CatalogModel.Builder getCatalogFamilyBuilder() {
|
|
13249
|
+
bitField0_ |= 0x00004000;
|
|
13250
|
+
onChanged();
|
|
13251
|
+
return getCatalogFamilyFieldBuilder().getBuilder();
|
|
13252
|
+
}
|
|
13253
|
+
/**
|
|
13254
|
+
* <code>.com.lansweeper.dp.outbound.v1.CatalogModel catalog_family = 25;</code>
|
|
13255
|
+
*/
|
|
13256
|
+
public com.lansweeper.dp.outbound.v1.Outbound.CatalogModelOrBuilder getCatalogFamilyOrBuilder() {
|
|
13257
|
+
if (catalogFamilyBuilder_ != null) {
|
|
13258
|
+
return catalogFamilyBuilder_.getMessageOrBuilder();
|
|
13259
|
+
} else {
|
|
13260
|
+
return catalogFamily_ == null ?
|
|
13261
|
+
com.lansweeper.dp.outbound.v1.Outbound.CatalogModel.getDefaultInstance() : catalogFamily_;
|
|
13262
|
+
}
|
|
13263
|
+
}
|
|
13264
|
+
/**
|
|
13265
|
+
* <code>.com.lansweeper.dp.outbound.v1.CatalogModel catalog_family = 25;</code>
|
|
13266
|
+
*/
|
|
13267
|
+
private com.google.protobuf.SingleFieldBuilderV3<
|
|
13268
|
+
com.lansweeper.dp.outbound.v1.Outbound.CatalogModel, com.lansweeper.dp.outbound.v1.Outbound.CatalogModel.Builder, com.lansweeper.dp.outbound.v1.Outbound.CatalogModelOrBuilder>
|
|
13269
|
+
getCatalogFamilyFieldBuilder() {
|
|
13270
|
+
if (catalogFamilyBuilder_ == null) {
|
|
13271
|
+
catalogFamilyBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
|
|
13272
|
+
com.lansweeper.dp.outbound.v1.Outbound.CatalogModel, com.lansweeper.dp.outbound.v1.Outbound.CatalogModel.Builder, com.lansweeper.dp.outbound.v1.Outbound.CatalogModelOrBuilder>(
|
|
13273
|
+
getCatalogFamily(),
|
|
13274
|
+
getParentForChildren(),
|
|
13275
|
+
isClean());
|
|
13276
|
+
catalogFamily_ = null;
|
|
13277
|
+
}
|
|
13278
|
+
return catalogFamilyBuilder_;
|
|
13279
|
+
}
|
|
13280
|
+
|
|
13073
13281
|
private com.lansweeper.dp.outbound.v1.Outbound.RawHardwareInfo raw_;
|
|
13074
13282
|
private com.google.protobuf.SingleFieldBuilderV3<
|
|
13075
13283
|
com.lansweeper.dp.outbound.v1.Outbound.RawHardwareInfo, com.lansweeper.dp.outbound.v1.Outbound.RawHardwareInfo.Builder, com.lansweeper.dp.outbound.v1.Outbound.RawHardwareInfoOrBuilder> rawBuilder_;
|
|
@@ -13078,7 +13286,7 @@ public final class Outbound {
|
|
|
13078
13286
|
* @return Whether the raw field is set.
|
|
13079
13287
|
*/
|
|
13080
13288
|
public boolean hasRaw() {
|
|
13081
|
-
return ((bitField0_ &
|
|
13289
|
+
return ((bitField0_ & 0x00008000) != 0);
|
|
13082
13290
|
}
|
|
13083
13291
|
/**
|
|
13084
13292
|
* <code>.com.lansweeper.dp.outbound.v1.RawHardwareInfo raw = 24;</code>
|
|
@@ -13104,7 +13312,7 @@ public final class Outbound {
|
|
|
13104
13312
|
} else {
|
|
13105
13313
|
rawBuilder_.setMessage(value);
|
|
13106
13314
|
}
|
|
13107
|
-
bitField0_ |=
|
|
13315
|
+
bitField0_ |= 0x00008000;
|
|
13108
13316
|
return this;
|
|
13109
13317
|
}
|
|
13110
13318
|
/**
|
|
@@ -13118,7 +13326,7 @@ public final class Outbound {
|
|
|
13118
13326
|
} else {
|
|
13119
13327
|
rawBuilder_.setMessage(builderForValue.build());
|
|
13120
13328
|
}
|
|
13121
|
-
bitField0_ |=
|
|
13329
|
+
bitField0_ |= 0x00008000;
|
|
13122
13330
|
return this;
|
|
13123
13331
|
}
|
|
13124
13332
|
/**
|
|
@@ -13126,7 +13334,7 @@ public final class Outbound {
|
|
|
13126
13334
|
*/
|
|
13127
13335
|
public Builder mergeRaw(com.lansweeper.dp.outbound.v1.Outbound.RawHardwareInfo value) {
|
|
13128
13336
|
if (rawBuilder_ == null) {
|
|
13129
|
-
if (((bitField0_ &
|
|
13337
|
+
if (((bitField0_ & 0x00008000) != 0) &&
|
|
13130
13338
|
raw_ != null &&
|
|
13131
13339
|
raw_ != com.lansweeper.dp.outbound.v1.Outbound.RawHardwareInfo.getDefaultInstance()) {
|
|
13132
13340
|
raw_ =
|
|
@@ -13138,7 +13346,7 @@ public final class Outbound {
|
|
|
13138
13346
|
} else {
|
|
13139
13347
|
rawBuilder_.mergeFrom(value);
|
|
13140
13348
|
}
|
|
13141
|
-
bitField0_ |=
|
|
13349
|
+
bitField0_ |= 0x00008000;
|
|
13142
13350
|
return this;
|
|
13143
13351
|
}
|
|
13144
13352
|
/**
|
|
@@ -13151,14 +13359,14 @@ public final class Outbound {
|
|
|
13151
13359
|
} else {
|
|
13152
13360
|
rawBuilder_.clear();
|
|
13153
13361
|
}
|
|
13154
|
-
bitField0_ = (bitField0_ & ~
|
|
13362
|
+
bitField0_ = (bitField0_ & ~0x00008000);
|
|
13155
13363
|
return this;
|
|
13156
13364
|
}
|
|
13157
13365
|
/**
|
|
13158
13366
|
* <code>.com.lansweeper.dp.outbound.v1.RawHardwareInfo raw = 24;</code>
|
|
13159
13367
|
*/
|
|
13160
13368
|
public com.lansweeper.dp.outbound.v1.Outbound.RawHardwareInfo.Builder getRawBuilder() {
|
|
13161
|
-
bitField0_ |=
|
|
13369
|
+
bitField0_ |= 0x00008000;
|
|
13162
13370
|
onChanged();
|
|
13163
13371
|
return getRawFieldBuilder().getBuilder();
|
|
13164
13372
|
}
|
|
@@ -14397,6 +14605,17 @@ public final class Outbound {
|
|
|
14397
14605
|
*/
|
|
14398
14606
|
long getId();
|
|
14399
14607
|
|
|
14608
|
+
/**
|
|
14609
|
+
* <code>int64 make_id = 11;</code>
|
|
14610
|
+
* @return Whether the makeId field is set.
|
|
14611
|
+
*/
|
|
14612
|
+
boolean hasMakeId();
|
|
14613
|
+
/**
|
|
14614
|
+
* <code>int64 make_id = 11;</code>
|
|
14615
|
+
* @return The makeId.
|
|
14616
|
+
*/
|
|
14617
|
+
long getMakeId();
|
|
14618
|
+
|
|
14400
14619
|
/**
|
|
14401
14620
|
* <code>string name = 2;</code>
|
|
14402
14621
|
* @return Whether the name field is set.
|
|
@@ -14616,48 +14835,48 @@ public final class Outbound {
|
|
|
14616
14835
|
}
|
|
14617
14836
|
case 18: {
|
|
14618
14837
|
java.lang.String s = input.readStringRequireUtf8();
|
|
14619
|
-
bitField0_ |=
|
|
14838
|
+
bitField0_ |= 0x00000004;
|
|
14620
14839
|
name_ = s;
|
|
14621
14840
|
break;
|
|
14622
14841
|
}
|
|
14623
14842
|
case 26: {
|
|
14624
14843
|
java.lang.String s = input.readStringRequireUtf8();
|
|
14625
|
-
bitField0_ |=
|
|
14844
|
+
bitField0_ |= 0x00000008;
|
|
14626
14845
|
version_ = s;
|
|
14627
14846
|
break;
|
|
14628
14847
|
}
|
|
14629
14848
|
case 34: {
|
|
14630
14849
|
java.lang.String s = input.readStringRequireUtf8();
|
|
14631
|
-
bitField0_ |=
|
|
14850
|
+
bitField0_ |= 0x00000010;
|
|
14632
14851
|
build_ = s;
|
|
14633
14852
|
break;
|
|
14634
14853
|
}
|
|
14635
14854
|
case 42: {
|
|
14636
14855
|
java.lang.String s = input.readStringRequireUtf8();
|
|
14637
|
-
bitField0_ |=
|
|
14856
|
+
bitField0_ |= 0x00000020;
|
|
14638
14857
|
fwVersion_ = s;
|
|
14639
14858
|
break;
|
|
14640
14859
|
}
|
|
14641
14860
|
case 50: {
|
|
14642
14861
|
java.lang.String s = input.readStringRequireUtf8();
|
|
14643
|
-
bitField0_ |=
|
|
14862
|
+
bitField0_ |= 0x00000040;
|
|
14644
14863
|
cpe_ = s;
|
|
14645
14864
|
break;
|
|
14646
14865
|
}
|
|
14647
14866
|
case 58: {
|
|
14648
14867
|
java.lang.String s = input.readStringRequireUtf8();
|
|
14649
|
-
bitField0_ |=
|
|
14868
|
+
bitField0_ |= 0x00000080;
|
|
14650
14869
|
fwCpe_ = s;
|
|
14651
14870
|
break;
|
|
14652
14871
|
}
|
|
14653
14872
|
case 64: {
|
|
14654
|
-
bitField0_ |=
|
|
14873
|
+
bitField0_ |= 0x00000100;
|
|
14655
14874
|
rank_ = input.readInt32();
|
|
14656
14875
|
break;
|
|
14657
14876
|
}
|
|
14658
14877
|
case 74: {
|
|
14659
14878
|
com.lansweeper.dp.outbound.v1.Outbound.CatalogBrand.Builder subBuilder = null;
|
|
14660
|
-
if (((bitField0_ &
|
|
14879
|
+
if (((bitField0_ & 0x00000200) != 0)) {
|
|
14661
14880
|
subBuilder = catalogBrand_.toBuilder();
|
|
14662
14881
|
}
|
|
14663
14882
|
catalogBrand_ = input.readMessage(com.lansweeper.dp.outbound.v1.Outbound.CatalogBrand.parser(), extensionRegistry);
|
|
@@ -14665,12 +14884,12 @@ public final class Outbound {
|
|
|
14665
14884
|
subBuilder.mergeFrom(catalogBrand_);
|
|
14666
14885
|
catalogBrand_ = subBuilder.buildPartial();
|
|
14667
14886
|
}
|
|
14668
|
-
bitField0_ |=
|
|
14887
|
+
bitField0_ |= 0x00000200;
|
|
14669
14888
|
break;
|
|
14670
14889
|
}
|
|
14671
14890
|
case 82: {
|
|
14672
14891
|
com.lansweeper.dp.outbound.v1.Outbound.CatalogOs.Builder subBuilder = null;
|
|
14673
|
-
if (((bitField0_ &
|
|
14892
|
+
if (((bitField0_ & 0x00000400) != 0)) {
|
|
14674
14893
|
subBuilder = catalogOs_.toBuilder();
|
|
14675
14894
|
}
|
|
14676
14895
|
catalogOs_ = input.readMessage(com.lansweeper.dp.outbound.v1.Outbound.CatalogOs.parser(), extensionRegistry);
|
|
@@ -14678,7 +14897,12 @@ public final class Outbound {
|
|
|
14678
14897
|
subBuilder.mergeFrom(catalogOs_);
|
|
14679
14898
|
catalogOs_ = subBuilder.buildPartial();
|
|
14680
14899
|
}
|
|
14681
|
-
bitField0_ |=
|
|
14900
|
+
bitField0_ |= 0x00000400;
|
|
14901
|
+
break;
|
|
14902
|
+
}
|
|
14903
|
+
case 88: {
|
|
14904
|
+
bitField0_ |= 0x00000002;
|
|
14905
|
+
makeId_ = input.readInt64();
|
|
14682
14906
|
break;
|
|
14683
14907
|
}
|
|
14684
14908
|
case 258: {
|
|
@@ -14786,6 +15010,25 @@ public final class Outbound {
|
|
|
14786
15010
|
return id_;
|
|
14787
15011
|
}
|
|
14788
15012
|
|
|
15013
|
+
public static final int MAKE_ID_FIELD_NUMBER = 11;
|
|
15014
|
+
private long makeId_;
|
|
15015
|
+
/**
|
|
15016
|
+
* <code>int64 make_id = 11;</code>
|
|
15017
|
+
* @return Whether the makeId field is set.
|
|
15018
|
+
*/
|
|
15019
|
+
@java.lang.Override
|
|
15020
|
+
public boolean hasMakeId() {
|
|
15021
|
+
return ((bitField0_ & 0x00000002) != 0);
|
|
15022
|
+
}
|
|
15023
|
+
/**
|
|
15024
|
+
* <code>int64 make_id = 11;</code>
|
|
15025
|
+
* @return The makeId.
|
|
15026
|
+
*/
|
|
15027
|
+
@java.lang.Override
|
|
15028
|
+
public long getMakeId() {
|
|
15029
|
+
return makeId_;
|
|
15030
|
+
}
|
|
15031
|
+
|
|
14789
15032
|
public static final int NAME_FIELD_NUMBER = 2;
|
|
14790
15033
|
private volatile java.lang.Object name_;
|
|
14791
15034
|
/**
|
|
@@ -14794,7 +15037,7 @@ public final class Outbound {
|
|
|
14794
15037
|
*/
|
|
14795
15038
|
@java.lang.Override
|
|
14796
15039
|
public boolean hasName() {
|
|
14797
|
-
return ((bitField0_ &
|
|
15040
|
+
return ((bitField0_ & 0x00000004) != 0);
|
|
14798
15041
|
}
|
|
14799
15042
|
/**
|
|
14800
15043
|
* <code>string name = 2;</code>
|
|
@@ -14840,7 +15083,7 @@ public final class Outbound {
|
|
|
14840
15083
|
*/
|
|
14841
15084
|
@java.lang.Override
|
|
14842
15085
|
public boolean hasVersion() {
|
|
14843
|
-
return ((bitField0_ &
|
|
15086
|
+
return ((bitField0_ & 0x00000008) != 0);
|
|
14844
15087
|
}
|
|
14845
15088
|
/**
|
|
14846
15089
|
* <code>string version = 3;</code>
|
|
@@ -14886,7 +15129,7 @@ public final class Outbound {
|
|
|
14886
15129
|
*/
|
|
14887
15130
|
@java.lang.Override
|
|
14888
15131
|
public boolean hasBuild() {
|
|
14889
|
-
return ((bitField0_ &
|
|
15132
|
+
return ((bitField0_ & 0x00000010) != 0);
|
|
14890
15133
|
}
|
|
14891
15134
|
/**
|
|
14892
15135
|
* <code>string build = 4;</code>
|
|
@@ -14932,7 +15175,7 @@ public final class Outbound {
|
|
|
14932
15175
|
*/
|
|
14933
15176
|
@java.lang.Override
|
|
14934
15177
|
public boolean hasFwVersion() {
|
|
14935
|
-
return ((bitField0_ &
|
|
15178
|
+
return ((bitField0_ & 0x00000020) != 0);
|
|
14936
15179
|
}
|
|
14937
15180
|
/**
|
|
14938
15181
|
* <code>string fw_version = 5;</code>
|
|
@@ -14978,7 +15221,7 @@ public final class Outbound {
|
|
|
14978
15221
|
*/
|
|
14979
15222
|
@java.lang.Override
|
|
14980
15223
|
public boolean hasCpe() {
|
|
14981
|
-
return ((bitField0_ &
|
|
15224
|
+
return ((bitField0_ & 0x00000040) != 0);
|
|
14982
15225
|
}
|
|
14983
15226
|
/**
|
|
14984
15227
|
* <code>string cpe = 6;</code>
|
|
@@ -15024,7 +15267,7 @@ public final class Outbound {
|
|
|
15024
15267
|
*/
|
|
15025
15268
|
@java.lang.Override
|
|
15026
15269
|
public boolean hasFwCpe() {
|
|
15027
|
-
return ((bitField0_ &
|
|
15270
|
+
return ((bitField0_ & 0x00000080) != 0);
|
|
15028
15271
|
}
|
|
15029
15272
|
/**
|
|
15030
15273
|
* <code>string fw_cpe = 7;</code>
|
|
@@ -15070,7 +15313,7 @@ public final class Outbound {
|
|
|
15070
15313
|
*/
|
|
15071
15314
|
@java.lang.Override
|
|
15072
15315
|
public boolean hasRank() {
|
|
15073
|
-
return ((bitField0_ &
|
|
15316
|
+
return ((bitField0_ & 0x00000100) != 0);
|
|
15074
15317
|
}
|
|
15075
15318
|
/**
|
|
15076
15319
|
* <code>int32 rank = 8;</code>
|
|
@@ -15089,7 +15332,7 @@ public final class Outbound {
|
|
|
15089
15332
|
*/
|
|
15090
15333
|
@java.lang.Override
|
|
15091
15334
|
public boolean hasCatalogBrand() {
|
|
15092
|
-
return ((bitField0_ &
|
|
15335
|
+
return ((bitField0_ & 0x00000200) != 0);
|
|
15093
15336
|
}
|
|
15094
15337
|
/**
|
|
15095
15338
|
* <code>.com.lansweeper.dp.outbound.v1.CatalogBrand catalog_brand = 9;</code>
|
|
@@ -15115,7 +15358,7 @@ public final class Outbound {
|
|
|
15115
15358
|
*/
|
|
15116
15359
|
@java.lang.Override
|
|
15117
15360
|
public boolean hasCatalogOs() {
|
|
15118
|
-
return ((bitField0_ &
|
|
15361
|
+
return ((bitField0_ & 0x00000400) != 0);
|
|
15119
15362
|
}
|
|
15120
15363
|
/**
|
|
15121
15364
|
* <code>.com.lansweeper.dp.outbound.v1.CatalogOs catalog_os = 10;</code>
|
|
@@ -15181,33 +15424,36 @@ public final class Outbound {
|
|
|
15181
15424
|
if (((bitField0_ & 0x00000001) != 0)) {
|
|
15182
15425
|
output.writeInt64(1, id_);
|
|
15183
15426
|
}
|
|
15184
|
-
if (((bitField0_ &
|
|
15427
|
+
if (((bitField0_ & 0x00000004) != 0)) {
|
|
15185
15428
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, name_);
|
|
15186
15429
|
}
|
|
15187
|
-
if (((bitField0_ &
|
|
15430
|
+
if (((bitField0_ & 0x00000008) != 0)) {
|
|
15188
15431
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 3, version_);
|
|
15189
15432
|
}
|
|
15190
|
-
if (((bitField0_ &
|
|
15433
|
+
if (((bitField0_ & 0x00000010) != 0)) {
|
|
15191
15434
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 4, build_);
|
|
15192
15435
|
}
|
|
15193
|
-
if (((bitField0_ &
|
|
15436
|
+
if (((bitField0_ & 0x00000020) != 0)) {
|
|
15194
15437
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 5, fwVersion_);
|
|
15195
15438
|
}
|
|
15196
|
-
if (((bitField0_ &
|
|
15439
|
+
if (((bitField0_ & 0x00000040) != 0)) {
|
|
15197
15440
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 6, cpe_);
|
|
15198
15441
|
}
|
|
15199
|
-
if (((bitField0_ &
|
|
15442
|
+
if (((bitField0_ & 0x00000080) != 0)) {
|
|
15200
15443
|
com.google.protobuf.GeneratedMessageV3.writeString(output, 7, fwCpe_);
|
|
15201
15444
|
}
|
|
15202
|
-
if (((bitField0_ &
|
|
15445
|
+
if (((bitField0_ & 0x00000100) != 0)) {
|
|
15203
15446
|
output.writeInt32(8, rank_);
|
|
15204
15447
|
}
|
|
15205
|
-
if (((bitField0_ &
|
|
15448
|
+
if (((bitField0_ & 0x00000200) != 0)) {
|
|
15206
15449
|
output.writeMessage(9, getCatalogBrand());
|
|
15207
15450
|
}
|
|
15208
|
-
if (((bitField0_ &
|
|
15451
|
+
if (((bitField0_ & 0x00000400) != 0)) {
|
|
15209
15452
|
output.writeMessage(10, getCatalogOs());
|
|
15210
15453
|
}
|
|
15454
|
+
if (((bitField0_ & 0x00000002) != 0)) {
|
|
15455
|
+
output.writeInt64(11, makeId_);
|
|
15456
|
+
}
|
|
15211
15457
|
if (rawCase_ == 32) {
|
|
15212
15458
|
output.writeMessage(32, (com.lansweeper.dp.outbound.v1.Outbound.WindowsRawOperatingSystemInfo) raw_);
|
|
15213
15459
|
}
|
|
@@ -15224,36 +15470,40 @@ public final class Outbound {
|
|
|
15224
15470
|
size += com.google.protobuf.CodedOutputStream
|
|
15225
15471
|
.computeInt64Size(1, id_);
|
|
15226
15472
|
}
|
|
15227
|
-
if (((bitField0_ &
|
|
15473
|
+
if (((bitField0_ & 0x00000004) != 0)) {
|
|
15228
15474
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, name_);
|
|
15229
15475
|
}
|
|
15230
|
-
if (((bitField0_ &
|
|
15476
|
+
if (((bitField0_ & 0x00000008) != 0)) {
|
|
15231
15477
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, version_);
|
|
15232
15478
|
}
|
|
15233
|
-
if (((bitField0_ &
|
|
15479
|
+
if (((bitField0_ & 0x00000010) != 0)) {
|
|
15234
15480
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, build_);
|
|
15235
15481
|
}
|
|
15236
|
-
if (((bitField0_ &
|
|
15482
|
+
if (((bitField0_ & 0x00000020) != 0)) {
|
|
15237
15483
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(5, fwVersion_);
|
|
15238
15484
|
}
|
|
15239
|
-
if (((bitField0_ &
|
|
15485
|
+
if (((bitField0_ & 0x00000040) != 0)) {
|
|
15240
15486
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(6, cpe_);
|
|
15241
15487
|
}
|
|
15242
|
-
if (((bitField0_ &
|
|
15488
|
+
if (((bitField0_ & 0x00000080) != 0)) {
|
|
15243
15489
|
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(7, fwCpe_);
|
|
15244
15490
|
}
|
|
15245
|
-
if (((bitField0_ &
|
|
15491
|
+
if (((bitField0_ & 0x00000100) != 0)) {
|
|
15246
15492
|
size += com.google.protobuf.CodedOutputStream
|
|
15247
15493
|
.computeInt32Size(8, rank_);
|
|
15248
15494
|
}
|
|
15249
|
-
if (((bitField0_ &
|
|
15495
|
+
if (((bitField0_ & 0x00000200) != 0)) {
|
|
15250
15496
|
size += com.google.protobuf.CodedOutputStream
|
|
15251
15497
|
.computeMessageSize(9, getCatalogBrand());
|
|
15252
15498
|
}
|
|
15253
|
-
if (((bitField0_ &
|
|
15499
|
+
if (((bitField0_ & 0x00000400) != 0)) {
|
|
15254
15500
|
size += com.google.protobuf.CodedOutputStream
|
|
15255
15501
|
.computeMessageSize(10, getCatalogOs());
|
|
15256
15502
|
}
|
|
15503
|
+
if (((bitField0_ & 0x00000002) != 0)) {
|
|
15504
|
+
size += com.google.protobuf.CodedOutputStream
|
|
15505
|
+
.computeInt64Size(11, makeId_);
|
|
15506
|
+
}
|
|
15257
15507
|
if (rawCase_ == 32) {
|
|
15258
15508
|
size += com.google.protobuf.CodedOutputStream
|
|
15259
15509
|
.computeMessageSize(32, (com.lansweeper.dp.outbound.v1.Outbound.WindowsRawOperatingSystemInfo) raw_);
|
|
@@ -15278,6 +15528,11 @@ public final class Outbound {
|
|
|
15278
15528
|
if (getId()
|
|
15279
15529
|
!= other.getId()) return false;
|
|
15280
15530
|
}
|
|
15531
|
+
if (hasMakeId() != other.hasMakeId()) return false;
|
|
15532
|
+
if (hasMakeId()) {
|
|
15533
|
+
if (getMakeId()
|
|
15534
|
+
!= other.getMakeId()) return false;
|
|
15535
|
+
}
|
|
15281
15536
|
if (hasName() != other.hasName()) return false;
|
|
15282
15537
|
if (hasName()) {
|
|
15283
15538
|
if (!getName()
|
|
@@ -15348,6 +15603,11 @@ public final class Outbound {
|
|
|
15348
15603
|
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
|
|
15349
15604
|
getId());
|
|
15350
15605
|
}
|
|
15606
|
+
if (hasMakeId()) {
|
|
15607
|
+
hash = (37 * hash) + MAKE_ID_FIELD_NUMBER;
|
|
15608
|
+
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
|
|
15609
|
+
getMakeId());
|
|
15610
|
+
}
|
|
15351
15611
|
if (hasName()) {
|
|
15352
15612
|
hash = (37 * hash) + NAME_FIELD_NUMBER;
|
|
15353
15613
|
hash = (53 * hash) + getName().hashCode();
|
|
@@ -15529,32 +15789,34 @@ public final class Outbound {
|
|
|
15529
15789
|
super.clear();
|
|
15530
15790
|
id_ = 0L;
|
|
15531
15791
|
bitField0_ = (bitField0_ & ~0x00000001);
|
|
15532
|
-
|
|
15792
|
+
makeId_ = 0L;
|
|
15533
15793
|
bitField0_ = (bitField0_ & ~0x00000002);
|
|
15534
|
-
|
|
15794
|
+
name_ = "";
|
|
15535
15795
|
bitField0_ = (bitField0_ & ~0x00000004);
|
|
15536
|
-
|
|
15796
|
+
version_ = "";
|
|
15537
15797
|
bitField0_ = (bitField0_ & ~0x00000008);
|
|
15538
|
-
|
|
15798
|
+
build_ = "";
|
|
15539
15799
|
bitField0_ = (bitField0_ & ~0x00000010);
|
|
15540
|
-
|
|
15800
|
+
fwVersion_ = "";
|
|
15541
15801
|
bitField0_ = (bitField0_ & ~0x00000020);
|
|
15542
|
-
|
|
15802
|
+
cpe_ = "";
|
|
15543
15803
|
bitField0_ = (bitField0_ & ~0x00000040);
|
|
15544
|
-
|
|
15804
|
+
fwCpe_ = "";
|
|
15545
15805
|
bitField0_ = (bitField0_ & ~0x00000080);
|
|
15806
|
+
rank_ = 0;
|
|
15807
|
+
bitField0_ = (bitField0_ & ~0x00000100);
|
|
15546
15808
|
if (catalogBrandBuilder_ == null) {
|
|
15547
15809
|
catalogBrand_ = null;
|
|
15548
15810
|
} else {
|
|
15549
15811
|
catalogBrandBuilder_.clear();
|
|
15550
15812
|
}
|
|
15551
|
-
bitField0_ = (bitField0_ & ~
|
|
15813
|
+
bitField0_ = (bitField0_ & ~0x00000200);
|
|
15552
15814
|
if (catalogOsBuilder_ == null) {
|
|
15553
15815
|
catalogOs_ = null;
|
|
15554
15816
|
} else {
|
|
15555
15817
|
catalogOsBuilder_.clear();
|
|
15556
15818
|
}
|
|
15557
|
-
bitField0_ = (bitField0_ & ~
|
|
15819
|
+
bitField0_ = (bitField0_ & ~0x00000400);
|
|
15558
15820
|
rawCase_ = 0;
|
|
15559
15821
|
raw_ = null;
|
|
15560
15822
|
return this;
|
|
@@ -15590,48 +15852,52 @@ public final class Outbound {
|
|
|
15590
15852
|
to_bitField0_ |= 0x00000001;
|
|
15591
15853
|
}
|
|
15592
15854
|
if (((from_bitField0_ & 0x00000002) != 0)) {
|
|
15855
|
+
result.makeId_ = makeId_;
|
|
15593
15856
|
to_bitField0_ |= 0x00000002;
|
|
15594
15857
|
}
|
|
15595
|
-
result.name_ = name_;
|
|
15596
15858
|
if (((from_bitField0_ & 0x00000004) != 0)) {
|
|
15597
15859
|
to_bitField0_ |= 0x00000004;
|
|
15598
15860
|
}
|
|
15599
|
-
result.
|
|
15861
|
+
result.name_ = name_;
|
|
15600
15862
|
if (((from_bitField0_ & 0x00000008) != 0)) {
|
|
15601
15863
|
to_bitField0_ |= 0x00000008;
|
|
15602
15864
|
}
|
|
15603
|
-
result.
|
|
15865
|
+
result.version_ = version_;
|
|
15604
15866
|
if (((from_bitField0_ & 0x00000010) != 0)) {
|
|
15605
15867
|
to_bitField0_ |= 0x00000010;
|
|
15606
15868
|
}
|
|
15607
|
-
result.
|
|
15869
|
+
result.build_ = build_;
|
|
15608
15870
|
if (((from_bitField0_ & 0x00000020) != 0)) {
|
|
15609
15871
|
to_bitField0_ |= 0x00000020;
|
|
15610
15872
|
}
|
|
15611
|
-
result.
|
|
15873
|
+
result.fwVersion_ = fwVersion_;
|
|
15612
15874
|
if (((from_bitField0_ & 0x00000040) != 0)) {
|
|
15613
15875
|
to_bitField0_ |= 0x00000040;
|
|
15614
15876
|
}
|
|
15615
|
-
result.
|
|
15877
|
+
result.cpe_ = cpe_;
|
|
15616
15878
|
if (((from_bitField0_ & 0x00000080) != 0)) {
|
|
15617
|
-
result.rank_ = rank_;
|
|
15618
15879
|
to_bitField0_ |= 0x00000080;
|
|
15619
15880
|
}
|
|
15881
|
+
result.fwCpe_ = fwCpe_;
|
|
15620
15882
|
if (((from_bitField0_ & 0x00000100) != 0)) {
|
|
15883
|
+
result.rank_ = rank_;
|
|
15884
|
+
to_bitField0_ |= 0x00000100;
|
|
15885
|
+
}
|
|
15886
|
+
if (((from_bitField0_ & 0x00000200) != 0)) {
|
|
15621
15887
|
if (catalogBrandBuilder_ == null) {
|
|
15622
15888
|
result.catalogBrand_ = catalogBrand_;
|
|
15623
15889
|
} else {
|
|
15624
15890
|
result.catalogBrand_ = catalogBrandBuilder_.build();
|
|
15625
15891
|
}
|
|
15626
|
-
to_bitField0_ |=
|
|
15892
|
+
to_bitField0_ |= 0x00000200;
|
|
15627
15893
|
}
|
|
15628
|
-
if (((from_bitField0_ &
|
|
15894
|
+
if (((from_bitField0_ & 0x00000400) != 0)) {
|
|
15629
15895
|
if (catalogOsBuilder_ == null) {
|
|
15630
15896
|
result.catalogOs_ = catalogOs_;
|
|
15631
15897
|
} else {
|
|
15632
15898
|
result.catalogOs_ = catalogOsBuilder_.build();
|
|
15633
15899
|
}
|
|
15634
|
-
to_bitField0_ |=
|
|
15900
|
+
to_bitField0_ |= 0x00000400;
|
|
15635
15901
|
}
|
|
15636
15902
|
if (rawCase_ == 32) {
|
|
15637
15903
|
if (windowsBuilder_ == null) {
|
|
@@ -15693,33 +15959,36 @@ public final class Outbound {
|
|
|
15693
15959
|
if (other.hasId()) {
|
|
15694
15960
|
setId(other.getId());
|
|
15695
15961
|
}
|
|
15962
|
+
if (other.hasMakeId()) {
|
|
15963
|
+
setMakeId(other.getMakeId());
|
|
15964
|
+
}
|
|
15696
15965
|
if (other.hasName()) {
|
|
15697
|
-
bitField0_ |=
|
|
15966
|
+
bitField0_ |= 0x00000004;
|
|
15698
15967
|
name_ = other.name_;
|
|
15699
15968
|
onChanged();
|
|
15700
15969
|
}
|
|
15701
15970
|
if (other.hasVersion()) {
|
|
15702
|
-
bitField0_ |=
|
|
15971
|
+
bitField0_ |= 0x00000008;
|
|
15703
15972
|
version_ = other.version_;
|
|
15704
15973
|
onChanged();
|
|
15705
15974
|
}
|
|
15706
15975
|
if (other.hasBuild()) {
|
|
15707
|
-
bitField0_ |=
|
|
15976
|
+
bitField0_ |= 0x00000010;
|
|
15708
15977
|
build_ = other.build_;
|
|
15709
15978
|
onChanged();
|
|
15710
15979
|
}
|
|
15711
15980
|
if (other.hasFwVersion()) {
|
|
15712
|
-
bitField0_ |=
|
|
15981
|
+
bitField0_ |= 0x00000020;
|
|
15713
15982
|
fwVersion_ = other.fwVersion_;
|
|
15714
15983
|
onChanged();
|
|
15715
15984
|
}
|
|
15716
15985
|
if (other.hasCpe()) {
|
|
15717
|
-
bitField0_ |=
|
|
15986
|
+
bitField0_ |= 0x00000040;
|
|
15718
15987
|
cpe_ = other.cpe_;
|
|
15719
15988
|
onChanged();
|
|
15720
15989
|
}
|
|
15721
15990
|
if (other.hasFwCpe()) {
|
|
15722
|
-
bitField0_ |=
|
|
15991
|
+
bitField0_ |= 0x00000080;
|
|
15723
15992
|
fwCpe_ = other.fwCpe_;
|
|
15724
15993
|
onChanged();
|
|
15725
15994
|
}
|
|
@@ -15825,13 +16094,52 @@ public final class Outbound {
|
|
|
15825
16094
|
return this;
|
|
15826
16095
|
}
|
|
15827
16096
|
|
|
16097
|
+
private long makeId_ ;
|
|
16098
|
+
/**
|
|
16099
|
+
* <code>int64 make_id = 11;</code>
|
|
16100
|
+
* @return Whether the makeId field is set.
|
|
16101
|
+
*/
|
|
16102
|
+
@java.lang.Override
|
|
16103
|
+
public boolean hasMakeId() {
|
|
16104
|
+
return ((bitField0_ & 0x00000002) != 0);
|
|
16105
|
+
}
|
|
16106
|
+
/**
|
|
16107
|
+
* <code>int64 make_id = 11;</code>
|
|
16108
|
+
* @return The makeId.
|
|
16109
|
+
*/
|
|
16110
|
+
@java.lang.Override
|
|
16111
|
+
public long getMakeId() {
|
|
16112
|
+
return makeId_;
|
|
16113
|
+
}
|
|
16114
|
+
/**
|
|
16115
|
+
* <code>int64 make_id = 11;</code>
|
|
16116
|
+
* @param value The makeId to set.
|
|
16117
|
+
* @return This builder for chaining.
|
|
16118
|
+
*/
|
|
16119
|
+
public Builder setMakeId(long value) {
|
|
16120
|
+
bitField0_ |= 0x00000002;
|
|
16121
|
+
makeId_ = value;
|
|
16122
|
+
onChanged();
|
|
16123
|
+
return this;
|
|
16124
|
+
}
|
|
16125
|
+
/**
|
|
16126
|
+
* <code>int64 make_id = 11;</code>
|
|
16127
|
+
* @return This builder for chaining.
|
|
16128
|
+
*/
|
|
16129
|
+
public Builder clearMakeId() {
|
|
16130
|
+
bitField0_ = (bitField0_ & ~0x00000002);
|
|
16131
|
+
makeId_ = 0L;
|
|
16132
|
+
onChanged();
|
|
16133
|
+
return this;
|
|
16134
|
+
}
|
|
16135
|
+
|
|
15828
16136
|
private java.lang.Object name_ = "";
|
|
15829
16137
|
/**
|
|
15830
16138
|
* <code>string name = 2;</code>
|
|
15831
16139
|
* @return Whether the name field is set.
|
|
15832
16140
|
*/
|
|
15833
16141
|
public boolean hasName() {
|
|
15834
|
-
return ((bitField0_ &
|
|
16142
|
+
return ((bitField0_ & 0x00000004) != 0);
|
|
15835
16143
|
}
|
|
15836
16144
|
/**
|
|
15837
16145
|
* <code>string name = 2;</code>
|
|
@@ -15876,7 +16184,7 @@ public final class Outbound {
|
|
|
15876
16184
|
if (value == null) {
|
|
15877
16185
|
throw new NullPointerException();
|
|
15878
16186
|
}
|
|
15879
|
-
bitField0_ |=
|
|
16187
|
+
bitField0_ |= 0x00000004;
|
|
15880
16188
|
name_ = value;
|
|
15881
16189
|
onChanged();
|
|
15882
16190
|
return this;
|
|
@@ -15886,7 +16194,7 @@ public final class Outbound {
|
|
|
15886
16194
|
* @return This builder for chaining.
|
|
15887
16195
|
*/
|
|
15888
16196
|
public Builder clearName() {
|
|
15889
|
-
bitField0_ = (bitField0_ & ~
|
|
16197
|
+
bitField0_ = (bitField0_ & ~0x00000004);
|
|
15890
16198
|
name_ = getDefaultInstance().getName();
|
|
15891
16199
|
onChanged();
|
|
15892
16200
|
return this;
|
|
@@ -15902,7 +16210,7 @@ public final class Outbound {
|
|
|
15902
16210
|
throw new NullPointerException();
|
|
15903
16211
|
}
|
|
15904
16212
|
checkByteStringIsUtf8(value);
|
|
15905
|
-
bitField0_ |=
|
|
16213
|
+
bitField0_ |= 0x00000004;
|
|
15906
16214
|
name_ = value;
|
|
15907
16215
|
onChanged();
|
|
15908
16216
|
return this;
|
|
@@ -15914,7 +16222,7 @@ public final class Outbound {
|
|
|
15914
16222
|
* @return Whether the version field is set.
|
|
15915
16223
|
*/
|
|
15916
16224
|
public boolean hasVersion() {
|
|
15917
|
-
return ((bitField0_ &
|
|
16225
|
+
return ((bitField0_ & 0x00000008) != 0);
|
|
15918
16226
|
}
|
|
15919
16227
|
/**
|
|
15920
16228
|
* <code>string version = 3;</code>
|
|
@@ -15959,7 +16267,7 @@ public final class Outbound {
|
|
|
15959
16267
|
if (value == null) {
|
|
15960
16268
|
throw new NullPointerException();
|
|
15961
16269
|
}
|
|
15962
|
-
bitField0_ |=
|
|
16270
|
+
bitField0_ |= 0x00000008;
|
|
15963
16271
|
version_ = value;
|
|
15964
16272
|
onChanged();
|
|
15965
16273
|
return this;
|
|
@@ -15969,7 +16277,7 @@ public final class Outbound {
|
|
|
15969
16277
|
* @return This builder for chaining.
|
|
15970
16278
|
*/
|
|
15971
16279
|
public Builder clearVersion() {
|
|
15972
|
-
bitField0_ = (bitField0_ & ~
|
|
16280
|
+
bitField0_ = (bitField0_ & ~0x00000008);
|
|
15973
16281
|
version_ = getDefaultInstance().getVersion();
|
|
15974
16282
|
onChanged();
|
|
15975
16283
|
return this;
|
|
@@ -15985,7 +16293,7 @@ public final class Outbound {
|
|
|
15985
16293
|
throw new NullPointerException();
|
|
15986
16294
|
}
|
|
15987
16295
|
checkByteStringIsUtf8(value);
|
|
15988
|
-
bitField0_ |=
|
|
16296
|
+
bitField0_ |= 0x00000008;
|
|
15989
16297
|
version_ = value;
|
|
15990
16298
|
onChanged();
|
|
15991
16299
|
return this;
|
|
@@ -15997,7 +16305,7 @@ public final class Outbound {
|
|
|
15997
16305
|
* @return Whether the build field is set.
|
|
15998
16306
|
*/
|
|
15999
16307
|
public boolean hasBuild() {
|
|
16000
|
-
return ((bitField0_ &
|
|
16308
|
+
return ((bitField0_ & 0x00000010) != 0);
|
|
16001
16309
|
}
|
|
16002
16310
|
/**
|
|
16003
16311
|
* <code>string build = 4;</code>
|
|
@@ -16042,7 +16350,7 @@ public final class Outbound {
|
|
|
16042
16350
|
if (value == null) {
|
|
16043
16351
|
throw new NullPointerException();
|
|
16044
16352
|
}
|
|
16045
|
-
bitField0_ |=
|
|
16353
|
+
bitField0_ |= 0x00000010;
|
|
16046
16354
|
build_ = value;
|
|
16047
16355
|
onChanged();
|
|
16048
16356
|
return this;
|
|
@@ -16052,7 +16360,7 @@ public final class Outbound {
|
|
|
16052
16360
|
* @return This builder for chaining.
|
|
16053
16361
|
*/
|
|
16054
16362
|
public Builder clearBuild() {
|
|
16055
|
-
bitField0_ = (bitField0_ & ~
|
|
16363
|
+
bitField0_ = (bitField0_ & ~0x00000010);
|
|
16056
16364
|
build_ = getDefaultInstance().getBuild();
|
|
16057
16365
|
onChanged();
|
|
16058
16366
|
return this;
|
|
@@ -16068,7 +16376,7 @@ public final class Outbound {
|
|
|
16068
16376
|
throw new NullPointerException();
|
|
16069
16377
|
}
|
|
16070
16378
|
checkByteStringIsUtf8(value);
|
|
16071
|
-
bitField0_ |=
|
|
16379
|
+
bitField0_ |= 0x00000010;
|
|
16072
16380
|
build_ = value;
|
|
16073
16381
|
onChanged();
|
|
16074
16382
|
return this;
|
|
@@ -16080,7 +16388,7 @@ public final class Outbound {
|
|
|
16080
16388
|
* @return Whether the fwVersion field is set.
|
|
16081
16389
|
*/
|
|
16082
16390
|
public boolean hasFwVersion() {
|
|
16083
|
-
return ((bitField0_ &
|
|
16391
|
+
return ((bitField0_ & 0x00000020) != 0);
|
|
16084
16392
|
}
|
|
16085
16393
|
/**
|
|
16086
16394
|
* <code>string fw_version = 5;</code>
|
|
@@ -16125,7 +16433,7 @@ public final class Outbound {
|
|
|
16125
16433
|
if (value == null) {
|
|
16126
16434
|
throw new NullPointerException();
|
|
16127
16435
|
}
|
|
16128
|
-
bitField0_ |=
|
|
16436
|
+
bitField0_ |= 0x00000020;
|
|
16129
16437
|
fwVersion_ = value;
|
|
16130
16438
|
onChanged();
|
|
16131
16439
|
return this;
|
|
@@ -16135,7 +16443,7 @@ public final class Outbound {
|
|
|
16135
16443
|
* @return This builder for chaining.
|
|
16136
16444
|
*/
|
|
16137
16445
|
public Builder clearFwVersion() {
|
|
16138
|
-
bitField0_ = (bitField0_ & ~
|
|
16446
|
+
bitField0_ = (bitField0_ & ~0x00000020);
|
|
16139
16447
|
fwVersion_ = getDefaultInstance().getFwVersion();
|
|
16140
16448
|
onChanged();
|
|
16141
16449
|
return this;
|
|
@@ -16151,7 +16459,7 @@ public final class Outbound {
|
|
|
16151
16459
|
throw new NullPointerException();
|
|
16152
16460
|
}
|
|
16153
16461
|
checkByteStringIsUtf8(value);
|
|
16154
|
-
bitField0_ |=
|
|
16462
|
+
bitField0_ |= 0x00000020;
|
|
16155
16463
|
fwVersion_ = value;
|
|
16156
16464
|
onChanged();
|
|
16157
16465
|
return this;
|
|
@@ -16163,7 +16471,7 @@ public final class Outbound {
|
|
|
16163
16471
|
* @return Whether the cpe field is set.
|
|
16164
16472
|
*/
|
|
16165
16473
|
public boolean hasCpe() {
|
|
16166
|
-
return ((bitField0_ &
|
|
16474
|
+
return ((bitField0_ & 0x00000040) != 0);
|
|
16167
16475
|
}
|
|
16168
16476
|
/**
|
|
16169
16477
|
* <code>string cpe = 6;</code>
|
|
@@ -16208,7 +16516,7 @@ public final class Outbound {
|
|
|
16208
16516
|
if (value == null) {
|
|
16209
16517
|
throw new NullPointerException();
|
|
16210
16518
|
}
|
|
16211
|
-
bitField0_ |=
|
|
16519
|
+
bitField0_ |= 0x00000040;
|
|
16212
16520
|
cpe_ = value;
|
|
16213
16521
|
onChanged();
|
|
16214
16522
|
return this;
|
|
@@ -16218,7 +16526,7 @@ public final class Outbound {
|
|
|
16218
16526
|
* @return This builder for chaining.
|
|
16219
16527
|
*/
|
|
16220
16528
|
public Builder clearCpe() {
|
|
16221
|
-
bitField0_ = (bitField0_ & ~
|
|
16529
|
+
bitField0_ = (bitField0_ & ~0x00000040);
|
|
16222
16530
|
cpe_ = getDefaultInstance().getCpe();
|
|
16223
16531
|
onChanged();
|
|
16224
16532
|
return this;
|
|
@@ -16234,7 +16542,7 @@ public final class Outbound {
|
|
|
16234
16542
|
throw new NullPointerException();
|
|
16235
16543
|
}
|
|
16236
16544
|
checkByteStringIsUtf8(value);
|
|
16237
|
-
bitField0_ |=
|
|
16545
|
+
bitField0_ |= 0x00000040;
|
|
16238
16546
|
cpe_ = value;
|
|
16239
16547
|
onChanged();
|
|
16240
16548
|
return this;
|
|
@@ -16246,7 +16554,7 @@ public final class Outbound {
|
|
|
16246
16554
|
* @return Whether the fwCpe field is set.
|
|
16247
16555
|
*/
|
|
16248
16556
|
public boolean hasFwCpe() {
|
|
16249
|
-
return ((bitField0_ &
|
|
16557
|
+
return ((bitField0_ & 0x00000080) != 0);
|
|
16250
16558
|
}
|
|
16251
16559
|
/**
|
|
16252
16560
|
* <code>string fw_cpe = 7;</code>
|
|
@@ -16291,7 +16599,7 @@ public final class Outbound {
|
|
|
16291
16599
|
if (value == null) {
|
|
16292
16600
|
throw new NullPointerException();
|
|
16293
16601
|
}
|
|
16294
|
-
bitField0_ |=
|
|
16602
|
+
bitField0_ |= 0x00000080;
|
|
16295
16603
|
fwCpe_ = value;
|
|
16296
16604
|
onChanged();
|
|
16297
16605
|
return this;
|
|
@@ -16301,7 +16609,7 @@ public final class Outbound {
|
|
|
16301
16609
|
* @return This builder for chaining.
|
|
16302
16610
|
*/
|
|
16303
16611
|
public Builder clearFwCpe() {
|
|
16304
|
-
bitField0_ = (bitField0_ & ~
|
|
16612
|
+
bitField0_ = (bitField0_ & ~0x00000080);
|
|
16305
16613
|
fwCpe_ = getDefaultInstance().getFwCpe();
|
|
16306
16614
|
onChanged();
|
|
16307
16615
|
return this;
|
|
@@ -16317,7 +16625,7 @@ public final class Outbound {
|
|
|
16317
16625
|
throw new NullPointerException();
|
|
16318
16626
|
}
|
|
16319
16627
|
checkByteStringIsUtf8(value);
|
|
16320
|
-
bitField0_ |=
|
|
16628
|
+
bitField0_ |= 0x00000080;
|
|
16321
16629
|
fwCpe_ = value;
|
|
16322
16630
|
onChanged();
|
|
16323
16631
|
return this;
|
|
@@ -16330,7 +16638,7 @@ public final class Outbound {
|
|
|
16330
16638
|
*/
|
|
16331
16639
|
@java.lang.Override
|
|
16332
16640
|
public boolean hasRank() {
|
|
16333
|
-
return ((bitField0_ &
|
|
16641
|
+
return ((bitField0_ & 0x00000100) != 0);
|
|
16334
16642
|
}
|
|
16335
16643
|
/**
|
|
16336
16644
|
* <code>int32 rank = 8;</code>
|
|
@@ -16346,7 +16654,7 @@ public final class Outbound {
|
|
|
16346
16654
|
* @return This builder for chaining.
|
|
16347
16655
|
*/
|
|
16348
16656
|
public Builder setRank(int value) {
|
|
16349
|
-
bitField0_ |=
|
|
16657
|
+
bitField0_ |= 0x00000100;
|
|
16350
16658
|
rank_ = value;
|
|
16351
16659
|
onChanged();
|
|
16352
16660
|
return this;
|
|
@@ -16356,7 +16664,7 @@ public final class Outbound {
|
|
|
16356
16664
|
* @return This builder for chaining.
|
|
16357
16665
|
*/
|
|
16358
16666
|
public Builder clearRank() {
|
|
16359
|
-
bitField0_ = (bitField0_ & ~
|
|
16667
|
+
bitField0_ = (bitField0_ & ~0x00000100);
|
|
16360
16668
|
rank_ = 0;
|
|
16361
16669
|
onChanged();
|
|
16362
16670
|
return this;
|
|
@@ -16370,7 +16678,7 @@ public final class Outbound {
|
|
|
16370
16678
|
* @return Whether the catalogBrand field is set.
|
|
16371
16679
|
*/
|
|
16372
16680
|
public boolean hasCatalogBrand() {
|
|
16373
|
-
return ((bitField0_ &
|
|
16681
|
+
return ((bitField0_ & 0x00000200) != 0);
|
|
16374
16682
|
}
|
|
16375
16683
|
/**
|
|
16376
16684
|
* <code>.com.lansweeper.dp.outbound.v1.CatalogBrand catalog_brand = 9;</code>
|
|
@@ -16396,7 +16704,7 @@ public final class Outbound {
|
|
|
16396
16704
|
} else {
|
|
16397
16705
|
catalogBrandBuilder_.setMessage(value);
|
|
16398
16706
|
}
|
|
16399
|
-
bitField0_ |=
|
|
16707
|
+
bitField0_ |= 0x00000200;
|
|
16400
16708
|
return this;
|
|
16401
16709
|
}
|
|
16402
16710
|
/**
|
|
@@ -16410,7 +16718,7 @@ public final class Outbound {
|
|
|
16410
16718
|
} else {
|
|
16411
16719
|
catalogBrandBuilder_.setMessage(builderForValue.build());
|
|
16412
16720
|
}
|
|
16413
|
-
bitField0_ |=
|
|
16721
|
+
bitField0_ |= 0x00000200;
|
|
16414
16722
|
return this;
|
|
16415
16723
|
}
|
|
16416
16724
|
/**
|
|
@@ -16418,7 +16726,7 @@ public final class Outbound {
|
|
|
16418
16726
|
*/
|
|
16419
16727
|
public Builder mergeCatalogBrand(com.lansweeper.dp.outbound.v1.Outbound.CatalogBrand value) {
|
|
16420
16728
|
if (catalogBrandBuilder_ == null) {
|
|
16421
|
-
if (((bitField0_ &
|
|
16729
|
+
if (((bitField0_ & 0x00000200) != 0) &&
|
|
16422
16730
|
catalogBrand_ != null &&
|
|
16423
16731
|
catalogBrand_ != com.lansweeper.dp.outbound.v1.Outbound.CatalogBrand.getDefaultInstance()) {
|
|
16424
16732
|
catalogBrand_ =
|
|
@@ -16430,7 +16738,7 @@ public final class Outbound {
|
|
|
16430
16738
|
} else {
|
|
16431
16739
|
catalogBrandBuilder_.mergeFrom(value);
|
|
16432
16740
|
}
|
|
16433
|
-
bitField0_ |=
|
|
16741
|
+
bitField0_ |= 0x00000200;
|
|
16434
16742
|
return this;
|
|
16435
16743
|
}
|
|
16436
16744
|
/**
|
|
@@ -16443,14 +16751,14 @@ public final class Outbound {
|
|
|
16443
16751
|
} else {
|
|
16444
16752
|
catalogBrandBuilder_.clear();
|
|
16445
16753
|
}
|
|
16446
|
-
bitField0_ = (bitField0_ & ~
|
|
16754
|
+
bitField0_ = (bitField0_ & ~0x00000200);
|
|
16447
16755
|
return this;
|
|
16448
16756
|
}
|
|
16449
16757
|
/**
|
|
16450
16758
|
* <code>.com.lansweeper.dp.outbound.v1.CatalogBrand catalog_brand = 9;</code>
|
|
16451
16759
|
*/
|
|
16452
16760
|
public com.lansweeper.dp.outbound.v1.Outbound.CatalogBrand.Builder getCatalogBrandBuilder() {
|
|
16453
|
-
bitField0_ |=
|
|
16761
|
+
bitField0_ |= 0x00000200;
|
|
16454
16762
|
onChanged();
|
|
16455
16763
|
return getCatalogBrandFieldBuilder().getBuilder();
|
|
16456
16764
|
}
|
|
@@ -16490,7 +16798,7 @@ public final class Outbound {
|
|
|
16490
16798
|
* @return Whether the catalogOs field is set.
|
|
16491
16799
|
*/
|
|
16492
16800
|
public boolean hasCatalogOs() {
|
|
16493
|
-
return ((bitField0_ &
|
|
16801
|
+
return ((bitField0_ & 0x00000400) != 0);
|
|
16494
16802
|
}
|
|
16495
16803
|
/**
|
|
16496
16804
|
* <code>.com.lansweeper.dp.outbound.v1.CatalogOs catalog_os = 10;</code>
|
|
@@ -16516,7 +16824,7 @@ public final class Outbound {
|
|
|
16516
16824
|
} else {
|
|
16517
16825
|
catalogOsBuilder_.setMessage(value);
|
|
16518
16826
|
}
|
|
16519
|
-
bitField0_ |=
|
|
16827
|
+
bitField0_ |= 0x00000400;
|
|
16520
16828
|
return this;
|
|
16521
16829
|
}
|
|
16522
16830
|
/**
|
|
@@ -16530,7 +16838,7 @@ public final class Outbound {
|
|
|
16530
16838
|
} else {
|
|
16531
16839
|
catalogOsBuilder_.setMessage(builderForValue.build());
|
|
16532
16840
|
}
|
|
16533
|
-
bitField0_ |=
|
|
16841
|
+
bitField0_ |= 0x00000400;
|
|
16534
16842
|
return this;
|
|
16535
16843
|
}
|
|
16536
16844
|
/**
|
|
@@ -16538,7 +16846,7 @@ public final class Outbound {
|
|
|
16538
16846
|
*/
|
|
16539
16847
|
public Builder mergeCatalogOs(com.lansweeper.dp.outbound.v1.Outbound.CatalogOs value) {
|
|
16540
16848
|
if (catalogOsBuilder_ == null) {
|
|
16541
|
-
if (((bitField0_ &
|
|
16849
|
+
if (((bitField0_ & 0x00000400) != 0) &&
|
|
16542
16850
|
catalogOs_ != null &&
|
|
16543
16851
|
catalogOs_ != com.lansweeper.dp.outbound.v1.Outbound.CatalogOs.getDefaultInstance()) {
|
|
16544
16852
|
catalogOs_ =
|
|
@@ -16550,7 +16858,7 @@ public final class Outbound {
|
|
|
16550
16858
|
} else {
|
|
16551
16859
|
catalogOsBuilder_.mergeFrom(value);
|
|
16552
16860
|
}
|
|
16553
|
-
bitField0_ |=
|
|
16861
|
+
bitField0_ |= 0x00000400;
|
|
16554
16862
|
return this;
|
|
16555
16863
|
}
|
|
16556
16864
|
/**
|
|
@@ -16563,14 +16871,14 @@ public final class Outbound {
|
|
|
16563
16871
|
} else {
|
|
16564
16872
|
catalogOsBuilder_.clear();
|
|
16565
16873
|
}
|
|
16566
|
-
bitField0_ = (bitField0_ & ~
|
|
16874
|
+
bitField0_ = (bitField0_ & ~0x00000400);
|
|
16567
16875
|
return this;
|
|
16568
16876
|
}
|
|
16569
16877
|
/**
|
|
16570
16878
|
* <code>.com.lansweeper.dp.outbound.v1.CatalogOs catalog_os = 10;</code>
|
|
16571
16879
|
*/
|
|
16572
16880
|
public com.lansweeper.dp.outbound.v1.Outbound.CatalogOs.Builder getCatalogOsBuilder() {
|
|
16573
|
-
bitField0_ |=
|
|
16881
|
+
bitField0_ |= 0x00000400;
|
|
16574
16882
|
onChanged();
|
|
16575
16883
|
return getCatalogOsFieldBuilder().getBuilder();
|
|
16576
16884
|
}
|
|
@@ -42833,7 +43141,7 @@ public final class Outbound {
|
|
|
42833
43141
|
"l\030\005 \001(\tH\002\210\001\001\022\020\n\003mac\030\006 \001(\tH\003\210\001\001\022\027\n\nmac_ve" +
|
|
42834
43142
|
"ndor\030\007 \001(\tH\004\210\001\001\022\026\n\tsensor_id\030\010 \001(\tH\005\210\001\001B" +
|
|
42835
43143
|
"\t\n\007_domainB\r\n\013_ip_addressB\t\n\007_serialB\006\n\004" +
|
|
42836
|
-
"_macB\r\n\013_mac_vendorB\014\n\n_sensor_id\"\
|
|
43144
|
+
"_macB\r\n\013_mac_vendorB\014\n\n_sensor_id\"\223\006\n\014Ha" +
|
|
42837
43145
|
"rdwareInfo\022\024\n\007type_id\030\001 \001(\003H\000\210\001\001\022\024\n\007make" +
|
|
42838
43146
|
"_id\030\002 \001(\003H\001\210\001\001\022\025\n\010model_id\030\003 \001(\003H\002\210\001\001\022\026\n" +
|
|
42839
43147
|
"\tfamily_id\030\004 \001(\003H\003\210\001\001\022\026\n\tis_family\030\006 \001(\010" +
|
|
@@ -42844,193 +43152,196 @@ public final class Outbound {
|
|
|
42844
43152
|
"\001\001\022G\n\rcatalog_brand\030\026 \001(\0132+.com.lansweep" +
|
|
42845
43153
|
"er.dp.outbound.v1.CatalogBrandH\014\210\001\001\022G\n\rc" +
|
|
42846
43154
|
"atalog_model\030\027 \001(\0132+.com.lansweeper.dp.o" +
|
|
42847
|
-
"utbound.v1.CatalogModelH\r\210\001\001\
|
|
42848
|
-
"\0132
|
|
42849
|
-
"
|
|
42850
|
-
"
|
|
42851
|
-
"\
|
|
42852
|
-
"\n\
|
|
42853
|
-
"\
|
|
42854
|
-
"
|
|
42855
|
-
"
|
|
42856
|
-
"\
|
|
42857
|
-
"
|
|
42858
|
-
"\
|
|
42859
|
-
"
|
|
42860
|
-
"
|
|
42861
|
-
"
|
|
42862
|
-
"\001\022\
|
|
42863
|
-
"\022\
|
|
42864
|
-
"(\
|
|
42865
|
-
"
|
|
42866
|
-
"
|
|
42867
|
-
"
|
|
42868
|
-
"
|
|
42869
|
-
"
|
|
42870
|
-
"
|
|
42871
|
-
"\
|
|
42872
|
-
"
|
|
42873
|
-
"
|
|
42874
|
-
"\
|
|
42875
|
-
"\
|
|
42876
|
-
"\n\
|
|
42877
|
-
"
|
|
42878
|
-
" \001(\
|
|
42879
|
-
"\001\001\022\
|
|
42880
|
-
"
|
|
42881
|
-
"
|
|
42882
|
-
"
|
|
42883
|
-
"\n\
|
|
42884
|
-
"
|
|
42885
|
-
"
|
|
42886
|
-
"\
|
|
42887
|
-
"\"\
|
|
42888
|
-
"
|
|
42889
|
-
"
|
|
42890
|
-
"\
|
|
42891
|
-
"
|
|
42892
|
-
"
|
|
42893
|
-
"
|
|
42894
|
-
"\
|
|
42895
|
-
"\022\
|
|
42896
|
-
" \001(\
|
|
42897
|
-
"
|
|
42898
|
-
"
|
|
42899
|
-
"
|
|
42900
|
-
"\
|
|
42901
|
-
"
|
|
42902
|
-
"
|
|
42903
|
-
"
|
|
42904
|
-
"
|
|
42905
|
-
"\
|
|
42906
|
-
"\
|
|
42907
|
-
"\
|
|
42908
|
-
"
|
|
42909
|
-
"\
|
|
42910
|
-
"
|
|
42911
|
-
"
|
|
42912
|
-
"\001
|
|
42913
|
-
"\
|
|
42914
|
-
"\
|
|
42915
|
-
"\001\022\
|
|
42916
|
-
"
|
|
42917
|
-
"\001(\
|
|
42918
|
-
"
|
|
42919
|
-
"
|
|
42920
|
-
"\
|
|
42921
|
-
"
|
|
42922
|
-
"\
|
|
42923
|
-
"\
|
|
42924
|
-
"
|
|
42925
|
-
"\
|
|
42926
|
-
"\001\001\022\
|
|
42927
|
-
"
|
|
42928
|
-
"
|
|
42929
|
-
"\001\001\022\
|
|
42930
|
-
"
|
|
42931
|
-
"
|
|
42932
|
-
"\
|
|
42933
|
-
"
|
|
42934
|
-
"
|
|
42935
|
-
"\
|
|
42936
|
-
"
|
|
42937
|
-
"
|
|
42938
|
-
"
|
|
42939
|
-
"
|
|
42940
|
-
"
|
|
42941
|
-
"
|
|
42942
|
-
"
|
|
42943
|
-
"
|
|
42944
|
-
"
|
|
42945
|
-
"
|
|
42946
|
-
"
|
|
42947
|
-
"
|
|
42948
|
-
"
|
|
42949
|
-
"
|
|
42950
|
-
"
|
|
42951
|
-
"\
|
|
42952
|
-
"
|
|
42953
|
-
"\
|
|
42954
|
-
"
|
|
42955
|
-
"
|
|
42956
|
-
"
|
|
42957
|
-
"\
|
|
42958
|
-
"
|
|
42959
|
-
"\030\
|
|
42960
|
-
"
|
|
42961
|
-
"\030\
|
|
42962
|
-
"\022\
|
|
42963
|
-
"
|
|
42964
|
-
"
|
|
42965
|
-
"
|
|
42966
|
-
"
|
|
42967
|
-
"
|
|
42968
|
-
"
|
|
42969
|
-
"
|
|
42970
|
-
"
|
|
42971
|
-
"\
|
|
42972
|
-
"\n\
|
|
42973
|
-
"
|
|
42974
|
-
"
|
|
42975
|
-
"
|
|
42976
|
-
"
|
|
42977
|
-
"
|
|
42978
|
-
"
|
|
42979
|
-
"
|
|
42980
|
-
"\001\022\
|
|
42981
|
-
"\030\
|
|
42982
|
-
"
|
|
42983
|
-
"
|
|
42984
|
-
"\001\022\
|
|
42985
|
-
"
|
|
42986
|
-
"
|
|
42987
|
-
"\
|
|
42988
|
-
"
|
|
42989
|
-
"\
|
|
42990
|
-
"
|
|
42991
|
-
"\
|
|
42992
|
-
"
|
|
42993
|
-
"
|
|
42994
|
-
"
|
|
42995
|
-
"
|
|
42996
|
-
"
|
|
42997
|
-
"
|
|
42998
|
-
"
|
|
42999
|
-
"\n\
|
|
43000
|
-
"\
|
|
43001
|
-
"
|
|
43002
|
-
"
|
|
43003
|
-
"
|
|
43004
|
-
"\
|
|
43005
|
-
"\
|
|
43006
|
-
"
|
|
43007
|
-
"\001\022\
|
|
43008
|
-
"(\
|
|
43009
|
-
"
|
|
43010
|
-
"(\
|
|
43011
|
-
"
|
|
43012
|
-
"\
|
|
43013
|
-
"
|
|
43014
|
-
"
|
|
43015
|
-
"
|
|
43016
|
-
"
|
|
43017
|
-
"\
|
|
43018
|
-
"
|
|
43019
|
-
"
|
|
43020
|
-
"
|
|
43021
|
-
"
|
|
43022
|
-
"
|
|
43023
|
-
"
|
|
43024
|
-
"
|
|
43025
|
-
"
|
|
43026
|
-
"\n\
|
|
43027
|
-
"\n\
|
|
43028
|
-
"
|
|
43029
|
-
"
|
|
43030
|
-
"
|
|
43031
|
-
".
|
|
43032
|
-
"
|
|
43033
|
-
"
|
|
43155
|
+
"utbound.v1.CatalogModelH\r\210\001\001\022H\n\016catalog_" +
|
|
43156
|
+
"family\030\031 \001(\0132+.com.lansweeper.dp.outboun" +
|
|
43157
|
+
"d.v1.CatalogModelH\016\210\001\001\022@\n\003raw\030\030 \001(\0132..co" +
|
|
43158
|
+
"m.lansweeper.dp.outbound.v1.RawHardwareI" +
|
|
43159
|
+
"nfoH\017\210\001\001B\n\n\010_type_idB\n\n\010_make_idB\013\n\t_mod" +
|
|
43160
|
+
"el_idB\014\n\n_family_idB\014\n\n_is_familyB\t\n\007_se" +
|
|
43161
|
+
"rialB\014\n\n_type_nameB\014\n\n_make_nameB\r\n\013_mod" +
|
|
43162
|
+
"el_nameB\016\n\014_family_nameB\006\n\004_cpeB\007\n\005_rank" +
|
|
43163
|
+
"B\020\n\016_catalog_brandB\020\n\016_catalog_modelB\021\n\017" +
|
|
43164
|
+
"_catalog_familyB\006\n\004_raw\"\265\001\n\017RawHardwareI" +
|
|
43165
|
+
"nfo\022\031\n\014architecture\030\001 \001(\tH\000\210\001\001\022\022\n\005model\030" +
|
|
43166
|
+
"\002 \001(\tH\001\210\001\001\022\031\n\014manufacturer\030\003 \001(\tH\002\210\001\001\022\032\n" +
|
|
43167
|
+
"\rserial_number\030\004 \001(\tH\003\210\001\001B\017\n\r_architectu" +
|
|
43168
|
+
"reB\010\n\006_modelB\017\n\r_manufacturerB\020\n\016_serial" +
|
|
43169
|
+
"_number\"\256\004\n\023OperatingSystemInfo\022\017\n\002id\030\001 " +
|
|
43170
|
+
"\001(\003H\001\210\001\001\022\024\n\007make_id\030\013 \001(\003H\002\210\001\001\022\021\n\004name\030\002" +
|
|
43171
|
+
" \001(\tH\003\210\001\001\022\024\n\007version\030\003 \001(\tH\004\210\001\001\022\022\n\005build" +
|
|
43172
|
+
"\030\004 \001(\tH\005\210\001\001\022\027\n\nfw_version\030\005 \001(\tH\006\210\001\001\022\020\n\003" +
|
|
43173
|
+
"cpe\030\006 \001(\tH\007\210\001\001\022\023\n\006fw_cpe\030\007 \001(\tH\010\210\001\001\022\021\n\004r" +
|
|
43174
|
+
"ank\030\010 \001(\005H\t\210\001\001\022G\n\rcatalog_brand\030\t \001(\0132+." +
|
|
43175
|
+
"com.lansweeper.dp.outbound.v1.CatalogBra" +
|
|
43176
|
+
"ndH\n\210\001\001\022A\n\ncatalog_os\030\n \001(\0132(.com.lanswe" +
|
|
43177
|
+
"eper.dp.outbound.v1.CatalogOsH\013\210\001\001\022O\n\007wi" +
|
|
43178
|
+
"ndows\030 \001(\0132<.com.lansweeper.dp.outbound" +
|
|
43179
|
+
".v1.WindowsRawOperatingSystemInfoH\000B\005\n\003r" +
|
|
43180
|
+
"awB\005\n\003_idB\n\n\010_make_idB\007\n\005_nameB\n\n\010_versi" +
|
|
43181
|
+
"onB\010\n\006_buildB\r\n\013_fw_versionB\006\n\004_cpeB\t\n\007_" +
|
|
43182
|
+
"fw_cpeB\007\n\005_rankB\020\n\016_catalog_brandB\r\n\013_ca" +
|
|
43183
|
+
"talog_os\"\325\003\n\035WindowsRawOperatingSystemIn" +
|
|
43184
|
+
"fo\022\024\n\007version\030\001 \001(\tH\000\210\001\001\022\031\n\014service_pack" +
|
|
43185
|
+
"\030\002 \001(\005H\001\210\001\001\022\022\n\005build\030\003 \001(\tH\002\210\001\001\022\031\n\014versi" +
|
|
43186
|
+
"on_name\030\004 \001(\tH\003\210\001\001\022\031\n\014build_number\030\005 \001(\t" +
|
|
43187
|
+
"H\004\210\001\001\022\031\n\014product_type\030\006 \001(\005H\005\210\001\001\022!\n\024is_d" +
|
|
43188
|
+
"omain_controller\030\007 \001(\010H\006\210\001\001\022\033\n\016part_of_d" +
|
|
43189
|
+
"omain\030\010 \001(\010H\007\210\001\001\022\037\n\022is_azure_ad_joined\030\t" +
|
|
43190
|
+
" \001(\010H\010\210\001\001\022\024\n\007os_code\030\n \001(\tH\t\210\001\001B\n\n\010_vers" +
|
|
43191
|
+
"ionB\017\n\r_service_packB\010\n\006_buildB\017\n\r_versi" +
|
|
43192
|
+
"on_nameB\017\n\r_build_numberB\017\n\r_product_typ" +
|
|
43193
|
+
"eB\027\n\025_is_domain_controllerB\021\n\017_part_of_d" +
|
|
43194
|
+
"omainB\025\n\023_is_azure_ad_joinedB\n\n\010_os_code" +
|
|
43195
|
+
"\"}\n\021SoftwareInventory\022-\n\ttimestamp\030\001 \001(\013" +
|
|
43196
|
+
"2\032.google.protobuf.Timestamp\0229\n\010software" +
|
|
43197
|
+
"\030\002 \003(\0132\'.com.lansweeper.dp.outbound.v1.S" +
|
|
43198
|
+
"oftware\"\233\005\n\010Software\022\021\n\004rank\030\001 \001(\005H\000\210\001\001\022" +
|
|
43199
|
+
"\024\n\007type_id\030\002 \001(\003H\001\210\001\001\022\023\n\006cat_id\030\003 \001(\003H\002\210" +
|
|
43200
|
+
"\001\001\022\024\n\007make_id\030\004 \001(\003H\003\210\001\001\022\022\n\005sw_id\030\005 \001(\003H" +
|
|
43201
|
+
"\004\210\001\001\022\026\n\tparent_id\030\006 \001(\003H\005\210\001\001\022\026\n\ttype_nam" +
|
|
43202
|
+
"e\030\007 \001(\tH\006\210\001\001\022\025\n\010cat_name\030\010 \001(\tH\007\210\001\001\022\026\n\tm" +
|
|
43203
|
+
"ake_name\030\t \001(\tH\010\210\001\001\022\021\n\004name\030\n \001(\tH\t\210\001\001\022\024" +
|
|
43204
|
+
"\n\007version\030\013 \001(\tH\n\210\001\001\022\027\n\nmarket_ver\030\014 \001(\t" +
|
|
43205
|
+
"H\013\210\001\001\022\024\n\007edition\030\r \001(\tH\014\210\001\001\022\022\n\005build\030\016 \001" +
|
|
43206
|
+
"(\tH\r\210\001\001\022\020\n\003cpe\030\017 \001(\tH\016\210\001\001\022M\n\020catalog_sof" +
|
|
43207
|
+
"tware\030\020 \001(\0132..com.lansweeper.dp.outbound" +
|
|
43208
|
+
".v1.CatalogSoftwareH\017\210\001\001\0227\n\003raw\030\021 \001(\0132*." +
|
|
43209
|
+
"com.lansweeper.dp.outbound.v1.RawSoftwar" +
|
|
43210
|
+
"eB\007\n\005_rankB\n\n\010_type_idB\t\n\007_cat_idB\n\n\010_ma" +
|
|
43211
|
+
"ke_idB\010\n\006_sw_idB\014\n\n_parent_idB\014\n\n_type_n" +
|
|
43212
|
+
"ameB\013\n\t_cat_nameB\014\n\n_make_nameB\007\n\005_nameB" +
|
|
43213
|
+
"\n\n\010_versionB\r\n\013_market_verB\n\n\010_editionB\010" +
|
|
43214
|
+
"\n\006_buildB\006\n\004_cpeB\023\n\021_catalog_software\"\255\002" +
|
|
43215
|
+
"\n\013RawSoftware\022\014\n\004name\030\001 \001(\t\022\023\n\006vendor\030\002 " +
|
|
43216
|
+
"\001(\tH\000\210\001\001\022\024\n\007version\030\003 \001(\tH\001\210\001\001\022\021\n\004info\030\004" +
|
|
43217
|
+
" \001(\tH\002\210\001\001\022\025\n\010exe_path\030\005 \001(\tH\003\210\001\001\022\021\n\004arch" +
|
|
43218
|
+
"\030\006 \001(\tH\004\210\001\001\022\031\n\014install_date\030\007 \001(\003H\005\210\001\001\022\030" +
|
|
43219
|
+
"\n\013source_type\030\010 \001(\tH\006\210\001\001\022\022\n\005sw_id\030\t \001(\tH" +
|
|
43220
|
+
"\007\210\001\001B\t\n\007_vendorB\n\n\010_versionB\007\n\005_infoB\013\n\t" +
|
|
43221
|
+
"_exe_pathB\007\n\005_archB\017\n\r_install_dateB\016\n\014_" +
|
|
43222
|
+
"source_typeB\010\n\006_sw_id\"\335\n\n\014CatalogBrand\022\n" +
|
|
43223
|
+
"\n\002id\030\001 \001(\003\022\020\n\010make_key\030\002 \001(\t\022\021\n\tmake_nam" +
|
|
43224
|
+
"e\030\003 \001(\t\022\030\n\013override_id\030\004 \001(\003H\000\210\001\001\022\026\n\tpar" +
|
|
43225
|
+
"ent_id\030\022 \001(\003H\001\210\001\001\022\035\n\020last_update_time\030\005 " +
|
|
43226
|
+
"\001(\003H\002\210\001\001\022\031\n\014country_code\030\006 \001(\tH\003\210\001\001\022\033\n\016l" +
|
|
43227
|
+
"ogo_image_url\030\007 \001(\tH\004\210\001\001\022\035\n\020banner_image" +
|
|
43228
|
+
"_url\030\010 \001(\tH\005\210\001\001\022\031\n\014wikipedia_id\030\t \001(\tH\006\210" +
|
|
43229
|
+
"\001\001\022 \n\023wikipedia_lang_code\030\n \001(\tH\007\210\001\001\022\030\n\013" +
|
|
43230
|
+
"website_url\030\013 \001(\tH\010\210\001\001\022\030\n\013support_url\030\014 " +
|
|
43231
|
+
"\001(\tH\t\210\001\001\022\032\n\rsupport_phone\030\r \001(\tH\n\210\001\001\022\035\n\020" +
|
|
43232
|
+
"facebook_account\030\016 \001(\tH\013\210\001\001\022\034\n\017twitter_a" +
|
|
43233
|
+
"ccount\030\017 \001(\tH\014\210\001\001\022\031\n\014warranty_url\030\020 \001(\tH" +
|
|
43234
|
+
"\r\210\001\001\022 \n\023warranty_direct_url\030\021 \001(\tH\016\210\001\001\022\032" +
|
|
43235
|
+
"\n\rcommunity_url\030\024 \001(\tH\017\210\001\001\022\035\n\020linkedin_a" +
|
|
43236
|
+
"ccount\030\025 \001(\tH\020\210\001\001\022\036\n\021instagram_account\030\026" +
|
|
43237
|
+
" \001(\tH\021\210\001\001\022\034\n\017youtube_account\030\027 \001(\tH\022\210\001\001\022" +
|
|
43238
|
+
"\036\n\021pinterest_account\030\030 \001(\tH\023\210\001\001\022\033\n\016class" +
|
|
43239
|
+
"_hardware\030\031 \001(\010H\024\210\001\001\022\033\n\016class_software\030\032" +
|
|
43240
|
+
" \001(\010H\025\210\001\001\022\033\n\016class_consumer\030\033 \001(\010H\026\210\001\001\022\035" +
|
|
43241
|
+
"\n\020class_enterprise\030\034 \001(\010H\027\210\001\001\022\035\n\020class_i" +
|
|
43242
|
+
"ndustrial\030\035 \001(\010H\030\210\001\001\022\035\n\020class_individual" +
|
|
43243
|
+
"\030\036 \001(\010H\031\210\001\001\022\030\n\013match_score\030\023 \001(\005H\032\210\001\001B\016\n" +
|
|
43244
|
+
"\014_override_idB\014\n\n_parent_idB\023\n\021_last_upd" +
|
|
43245
|
+
"ate_timeB\017\n\r_country_codeB\021\n\017_logo_image" +
|
|
43246
|
+
"_urlB\023\n\021_banner_image_urlB\017\n\r_wikipedia_" +
|
|
43247
|
+
"idB\026\n\024_wikipedia_lang_codeB\016\n\014_website_u" +
|
|
43248
|
+
"rlB\016\n\014_support_urlB\020\n\016_support_phoneB\023\n\021" +
|
|
43249
|
+
"_facebook_accountB\022\n\020_twitter_accountB\017\n" +
|
|
43250
|
+
"\r_warranty_urlB\026\n\024_warranty_direct_urlB\020" +
|
|
43251
|
+
"\n\016_community_urlB\023\n\021_linkedin_accountB\024\n" +
|
|
43252
|
+
"\022_instagram_accountB\022\n\020_youtube_accountB" +
|
|
43253
|
+
"\024\n\022_pinterest_accountB\021\n\017_class_hardware" +
|
|
43254
|
+
"B\021\n\017_class_softwareB\021\n\017_class_consumerB\023" +
|
|
43255
|
+
"\n\021_class_enterpriseB\023\n\021_class_industrial" +
|
|
43256
|
+
"B\023\n\021_class_individualB\016\n\014_match_score\"\207\t" +
|
|
43257
|
+
"\n\014CatalogModel\022\n\n\002id\030\001 \001(\003\022\013\n\003key\030\002 \001(\t\022" +
|
|
43258
|
+
"\017\n\007make_id\030\003 \001(\003\022\024\n\014device_model\030\004 \001(\t\022\030" +
|
|
43259
|
+
"\n\013device_type\030\005 \001(\tH\000\210\001\001\022\036\n\021device_model" +
|
|
43260
|
+
"_code\030\006 \001(\tH\001\210\001\001\022\030\n\013override_id\030\007 \001(\003H\002\210" +
|
|
43261
|
+
"\001\001\022\032\n\ros_default_id\030\010 \001(\003H\003\210\001\001\022\031\n\014os_lat" +
|
|
43262
|
+
"est_id\030\t \001(\003H\004\210\001\001\022\026\n\tfamily_id\030\n \001(\003H\005\210\001" +
|
|
43263
|
+
"\001\022\026\n\tis_family\030\013 \001(\010H\006\210\001\001\022\027\n\nmanual_url\030" +
|
|
43264
|
+
"\014 \001(\tH\007\210\001\001\022\024\n\007faq_url\030\r \001(\tH\010\210\001\001\022\031\n\014rele" +
|
|
43265
|
+
"ase_date\030\016 \001(\003H\t\210\001\001\022\026\n\tdisc_date\030\017 \001(\003H\n" +
|
|
43266
|
+
"\210\001\001\022\025\n\010eos_date\030\032 \001(\003H\013\210\001\001\022 \n\023lifecyle_c" +
|
|
43267
|
+
"onfidence\030\035 \001(\tH\014\210\001\001\022\030\n\013price_class\030\030 \001(" +
|
|
43268
|
+
"\tH\r\210\001\001\022\032\n\rproduct_class\030\031 \001(\tH\016\210\001\001\022\034\n\017sh" +
|
|
43269
|
+
"_ifttt_handle\030\021 \001(\tH\017\210\001\001\022\033\n\023sh_google_as" +
|
|
43270
|
+
"s_langs\030\022 \003(\t\022\026\n\016sh_alexa_langs\030\023 \003(\t\022\033\n" +
|
|
43271
|
+
"\016sh_hass_handle\030\024 \001(\tH\020\210\001\001\022\036\n\021sh_apple_h" +
|
|
43272
|
+
"ome_kit\030\025 \001(\010H\021\210\001\001\022\037\n\022sh_open_hab_handle" +
|
|
43273
|
+
"\030\026 \001(\tH\022\210\001\001\022\025\n\010nist_cpe\030\034 \001(\tH\023\210\001\001\022\033\n\016sp" +
|
|
43274
|
+
"read_in_type\030\027 \001(\001H\024\210\001\001\022\035\n\020last_update_t" +
|
|
43275
|
+
"ime\030\020 \001(\003H\025\210\001\001\022\030\n\013match_score\030\033 \001(\005H\026\210\001\001" +
|
|
43276
|
+
"B\016\n\014_device_typeB\024\n\022_device_model_codeB\016" +
|
|
43277
|
+
"\n\014_override_idB\020\n\016_os_default_idB\017\n\r_os_" +
|
|
43278
|
+
"latest_idB\014\n\n_family_idB\014\n\n_is_familyB\r\n" +
|
|
43279
|
+
"\013_manual_urlB\n\n\010_faq_urlB\017\n\r_release_dat" +
|
|
43280
|
+
"eB\014\n\n_disc_dateB\013\n\t_eos_dateB\026\n\024_lifecyl" +
|
|
43281
|
+
"e_confidenceB\016\n\014_price_classB\020\n\016_product" +
|
|
43282
|
+
"_classB\022\n\020_sh_ifttt_handleB\021\n\017_sh_hass_h" +
|
|
43283
|
+
"andleB\024\n\022_sh_apple_home_kitB\025\n\023_sh_open_" +
|
|
43284
|
+
"hab_handleB\013\n\t_nist_cpeB\021\n\017_spread_in_ty" +
|
|
43285
|
+
"peB\023\n\021_last_update_timeB\016\n\014_match_score\"" +
|
|
43286
|
+
"\260\010\n\tCatalogOs\022\n\n\002id\030\001 \001(\003\022\016\n\006os_key\030\002 \001(" +
|
|
43287
|
+
"\t\022\017\n\007os_name\030\003 \001(\t\022\027\n\nos_version\030\004 \001(\tH\000" +
|
|
43288
|
+
"\210\001\001\022\025\n\010os_build\030\014 \001(\tH\001\210\001\001\022\034\n\017os_version" +
|
|
43289
|
+
"_name\030\005 \001(\tH\002\210\001\001\022\030\n\013override_id\030\006 \001(\003H\003\210" +
|
|
43290
|
+
"\001\001\022\024\n\007make_id\030\007 \001(\003H\004\210\001\001\022\026\n\tparent_id\030\010 " +
|
|
43291
|
+
"\001(\003H\005\210\001\001\022\031\n\014release_date\030\t \001(\003H\006\210\001\001\022\025\n\010e" +
|
|
43292
|
+
"ol_date\030\n \001(\003H\007\210\001\001\022\025\n\010eos_date\030\026 \001(\003H\010\210\001" +
|
|
43293
|
+
"\001\022\026\n\teosx_date\030\031 \001(\003H\t\210\001\001\022 \n\023lifecyle_co" +
|
|
43294
|
+
"nfidence\030\032 \001(\tH\n\210\001\001\022\033\n\016logo_image_url\030\r " +
|
|
43295
|
+
"\001(\tH\013\210\001\001\022\035\n\020banner_image_url\030\016 \001(\tH\014\210\001\001\022" +
|
|
43296
|
+
"\031\n\014wikipedia_id\030\017 \001(\tH\r\210\001\001\022 \n\023wikipedia_" +
|
|
43297
|
+
"lang_code\030\020 \001(\tH\016\210\001\001\022\030\n\013website_url\030\021 \001(" +
|
|
43298
|
+
"\tH\017\210\001\001\022\030\n\013support_url\030\022 \001(\tH\020\210\001\001\022\032\n\rsupp" +
|
|
43299
|
+
"ort_phone\030\023 \001(\tH\021\210\001\001\022\035\n\020facebook_account" +
|
|
43300
|
+
"\030\024 \001(\tH\022\210\001\001\022\034\n\017twitter_account\030\025 \001(\tH\023\210\001" +
|
|
43301
|
+
"\001\022\025\n\010nist_cpe\030\027 \001(\tH\024\210\001\001\022\035\n\020last_update_" +
|
|
43302
|
+
"time\030\013 \001(\003H\025\210\001\001\022\030\n\013match_score\030\030 \001(\005H\026\210\001" +
|
|
43303
|
+
"\001B\r\n\013_os_versionB\013\n\t_os_buildB\022\n\020_os_ver" +
|
|
43304
|
+
"sion_nameB\016\n\014_override_idB\n\n\010_make_idB\014\n" +
|
|
43305
|
+
"\n_parent_idB\017\n\r_release_dateB\013\n\t_eol_dat" +
|
|
43306
|
+
"eB\013\n\t_eos_dateB\014\n\n_eosx_dateB\026\n\024_lifecyl" +
|
|
43307
|
+
"e_confidenceB\021\n\017_logo_image_urlB\023\n\021_bann" +
|
|
43308
|
+
"er_image_urlB\017\n\r_wikipedia_idB\026\n\024_wikipe" +
|
|
43309
|
+
"dia_lang_codeB\016\n\014_website_urlB\016\n\014_suppor" +
|
|
43310
|
+
"t_urlB\020\n\016_support_phoneB\023\n\021_facebook_acc" +
|
|
43311
|
+
"ountB\022\n\020_twitter_accountB\013\n\t_nist_cpeB\023\n" +
|
|
43312
|
+
"\021_last_update_timeB\016\n\014_match_score\"\266\007\n\017C" +
|
|
43313
|
+
"atalogSoftware\022\n\n\002id\030\001 \001(\003\022\016\n\006sw_key\030\002 \001" +
|
|
43314
|
+
"(\t\022\017\n\007sw_name\030\003 \001(\t\022\027\n\nsw_version\030\004 \001(\tH" +
|
|
43315
|
+
"\000\210\001\001\022\032\n\rsw_market_ver\030\005 \001(\tH\001\210\001\001\022\027\n\nsw_e" +
|
|
43316
|
+
"dition\030\006 \001(\tH\002\210\001\001\022\024\n\007sw_lang\030\027 \001(\tH\003\210\001\001\022" +
|
|
43317
|
+
"\025\n\010sw_build\030\007 \001(\tH\004\210\001\001\022\030\n\013override_id\030\010 " +
|
|
43318
|
+
"\001(\003H\005\210\001\001\022\024\n\007make_id\030\t \001(\003H\006\210\001\001\022\026\n\tparent" +
|
|
43319
|
+
"_id\030\n \001(\003H\007\210\001\001\022\024\n\007sw_type\030\013 \001(\tH\010\210\001\001\022\030\n\013" +
|
|
43320
|
+
"sw_category\030\014 \001(\tH\t\210\001\001\022\036\n\021nist_cpe_templ" +
|
|
43321
|
+
"ate\030\r \001(\tH\n\210\001\001\022\031\n\014release_date\030\016 \001(\003H\013\210\001" +
|
|
43322
|
+
"\001\022\025\n\010eol_date\030\017 \001(\003H\014\210\001\001\022\025\n\010eos_date\030\020 \001" +
|
|
43323
|
+
"(\003H\r\210\001\001\022\026\n\teosx_date\030\022 \001(\003H\016\210\001\001\022 \n\023lifec" +
|
|
43324
|
+
"yle_confidence\030\023 \001(\tH\017\210\001\001\022\035\n\020last_update" +
|
|
43325
|
+
"_time\030\021 \001(\003H\020\210\001\001\022\030\n\013flag_latest\030\024 \001(\010H\021\210" +
|
|
43326
|
+
"\001\001\022\034\n\017flag_widespread\030\025 \001(\010H\022\210\001\001\022\034\n\017flag" +
|
|
43327
|
+
"_deprecated\030\026 \001(\010H\023\210\001\001\022\030\n\013match_score\030d " +
|
|
43328
|
+
"\001(\005H\024\210\001\001B\r\n\013_sw_versionB\020\n\016_sw_market_ve" +
|
|
43329
|
+
"rB\r\n\013_sw_editionB\n\n\010_sw_langB\013\n\t_sw_buil" +
|
|
43330
|
+
"dB\016\n\014_override_idB\n\n\010_make_idB\014\n\n_parent" +
|
|
43331
|
+
"_idB\n\n\010_sw_typeB\016\n\014_sw_categoryB\024\n\022_nist" +
|
|
43332
|
+
"_cpe_templateB\017\n\r_release_dateB\013\n\t_eol_d" +
|
|
43333
|
+
"ateB\013\n\t_eos_dateB\014\n\n_eosx_dateB\026\n\024_lifec" +
|
|
43334
|
+
"yle_confidenceB\023\n\021_last_update_timeB\016\n\014_" +
|
|
43335
|
+
"flag_latestB\022\n\020_flag_widespreadB\022\n\020_flag" +
|
|
43336
|
+
"_deprecatedB\016\n\014_match_score\"\034\n\016CatalogMo" +
|
|
43337
|
+
"nitor\022\n\n\002id\030\001 \001(\0032\204\002\n\027DataCoreOutboundSe" +
|
|
43338
|
+
"rvice\022p\n\tGetEntity\022/.com.lansweeper.dp.o" +
|
|
43339
|
+
"utbound.v1.GetEntityRequest\0320.com.lanswe" +
|
|
43340
|
+
"eper.dp.outbound.v1.GetEntityResponse\"\000\022" +
|
|
43341
|
+
"w\n\014ListEntities\0220.com.lansweeper.dp.outb" +
|
|
43342
|
+
"ound.v1.ListEntityRequest\0321.com.lansweep" +
|
|
43343
|
+
"er.dp.outbound.v1.ListEntityResponse\"\0000\001" +
|
|
43344
|
+
"B\021Z\017../generated-gob\006proto3"
|
|
43034
43345
|
};
|
|
43035
43346
|
descriptor = com.google.protobuf.Descriptors.FileDescriptor
|
|
43036
43347
|
.internalBuildGeneratedFileFrom(descriptorData,
|
|
@@ -43096,7 +43407,7 @@ public final class Outbound {
|
|
|
43096
43407
|
internal_static_com_lansweeper_dp_outbound_v1_HardwareInfo_fieldAccessorTable = new
|
|
43097
43408
|
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
|
|
43098
43409
|
internal_static_com_lansweeper_dp_outbound_v1_HardwareInfo_descriptor,
|
|
43099
|
-
new java.lang.String[] { "TypeId", "MakeId", "ModelId", "FamilyId", "IsFamily", "Serial", "TypeName", "MakeName", "ModelName", "FamilyName", "Cpe", "Rank", "CatalogBrand", "CatalogModel", "Raw", "TypeId", "MakeId", "ModelId", "FamilyId", "IsFamily", "Serial", "TypeName", "MakeName", "ModelName", "FamilyName", "Cpe", "Rank", "CatalogBrand", "CatalogModel", "Raw", });
|
|
43410
|
+
new java.lang.String[] { "TypeId", "MakeId", "ModelId", "FamilyId", "IsFamily", "Serial", "TypeName", "MakeName", "ModelName", "FamilyName", "Cpe", "Rank", "CatalogBrand", "CatalogModel", "CatalogFamily", "Raw", "TypeId", "MakeId", "ModelId", "FamilyId", "IsFamily", "Serial", "TypeName", "MakeName", "ModelName", "FamilyName", "Cpe", "Rank", "CatalogBrand", "CatalogModel", "CatalogFamily", "Raw", });
|
|
43100
43411
|
internal_static_com_lansweeper_dp_outbound_v1_RawHardwareInfo_descriptor =
|
|
43101
43412
|
getDescriptor().getMessageTypes().get(10);
|
|
43102
43413
|
internal_static_com_lansweeper_dp_outbound_v1_RawHardwareInfo_fieldAccessorTable = new
|
|
@@ -43108,7 +43419,7 @@ public final class Outbound {
|
|
|
43108
43419
|
internal_static_com_lansweeper_dp_outbound_v1_OperatingSystemInfo_fieldAccessorTable = new
|
|
43109
43420
|
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
|
|
43110
43421
|
internal_static_com_lansweeper_dp_outbound_v1_OperatingSystemInfo_descriptor,
|
|
43111
|
-
new java.lang.String[] { "Id", "Name", "Version", "Build", "FwVersion", "Cpe", "FwCpe", "Rank", "CatalogBrand", "CatalogOs", "Windows", "Raw", "Id", "Name", "Version", "Build", "FwVersion", "Cpe", "FwCpe", "Rank", "CatalogBrand", "CatalogOs", });
|
|
43422
|
+
new java.lang.String[] { "Id", "MakeId", "Name", "Version", "Build", "FwVersion", "Cpe", "FwCpe", "Rank", "CatalogBrand", "CatalogOs", "Windows", "Raw", "Id", "MakeId", "Name", "Version", "Build", "FwVersion", "Cpe", "FwCpe", "Rank", "CatalogBrand", "CatalogOs", });
|
|
43112
43423
|
internal_static_com_lansweeper_dp_outbound_v1_WindowsRawOperatingSystemInfo_descriptor =
|
|
43113
43424
|
getDescriptor().getMessageTypes().get(12);
|
|
43114
43425
|
internal_static_com_lansweeper_dp_outbound_v1_WindowsRawOperatingSystemInfo_fieldAccessorTable = new
|