@lansweeper/data-platform-outbound-grpc 0.9.1 → 0.10.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (27) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/gen-proto/image.json +1 -1
  3. package/gen-proto/outbound_pb.d.ts +18 -0
  4. package/gen-proto/outbound_pb.js +145 -1
  5. package/generated-go/outbound.pb.go +11657 -11623
  6. package/java.json +1 -1
  7. package/model/pom.xml +1 -1
  8. package/model/src/main/proto/outbound.proto +3 -0
  9. package/model/target/classes/com/lansweeper/dp/outbound/v1/LegacyFields$1.class +0 -0
  10. package/model/target/classes/com/lansweeper/dp/outbound/v1/LegacyFields$Builder.class +0 -0
  11. package/model/target/classes/com/lansweeper/dp/outbound/v1/LegacyFields.class +0 -0
  12. package/model/target/classes/com/lansweeper/dp/outbound/v1/LegacyFieldsOrBuilder.class +0 -0
  13. package/model/target/classes/com/lansweeper/dp/outbound/v1/Outbound.class +0 -0
  14. package/model/target/classes/outbound.proto +3 -0
  15. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/LegacyFields.java +782 -203
  16. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/LegacyFieldsOrBuilder.java +87 -0
  17. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +3807 -3804
  18. package/model/target/maven-archiver/pom.properties +2 -2
  19. package/model/target/{outbound-model-0.9.0-sources.jar → outbound-model-0.10.0-sources.jar} +0 -0
  20. package/model/target/{outbound-model-0.9.0.jar → outbound-model-0.10.0.jar} +0 -0
  21. package/package.json +2 -2
  22. package/pom.xml +1 -1
  23. package/proto/outbound.proto +3 -0
  24. package/service/pom.xml +1 -1
  25. package/service/target/maven-archiver/pom.properties +2 -2
  26. package/service/target/{outbound-service-0.9.0-sources.jar → outbound-service-0.10.0-sources.jar} +0 -0
  27. package/service/target/{outbound-service-0.9.0.jar → outbound-service-0.10.0.jar} +0 -0
@@ -23,7 +23,10 @@ private static final long serialVersionUID = 0L;
23
23
  super(builder);
24
24
  }
25
25
  private LegacyFields() {
26
+ assetId_ = "";
26
27
  groupLink_ = java.util.Collections.emptyList();
28
+ ipLocationKey_ = "";
29
+ ipLocationId_ = "";
27
30
  }
28
31
 
29
32
  @java.lang.Override
@@ -47,6 +50,65 @@ private static final long serialVersionUID = 0L;
47
50
  }
48
51
 
49
52
  private int bitField0_;
53
+ public static final int ASSET_ID_FIELD_NUMBER = 19;
54
+ @SuppressWarnings("serial")
55
+ private volatile java.lang.Object assetId_ = "";
56
+ /**
57
+ * <pre>
58
+ * Numeric ID of the asset in the on prem. It has to be a string to be compliant with the asset.proto model.
59
+ * </pre>
60
+ *
61
+ * <code>optional string asset_id = 19;</code>
62
+ * @return Whether the assetId field is set.
63
+ */
64
+ @java.lang.Override
65
+ public boolean hasAssetId() {
66
+ return ((bitField0_ & 0x00000001) != 0);
67
+ }
68
+ /**
69
+ * <pre>
70
+ * Numeric ID of the asset in the on prem. It has to be a string to be compliant with the asset.proto model.
71
+ * </pre>
72
+ *
73
+ * <code>optional string asset_id = 19;</code>
74
+ * @return The assetId.
75
+ */
76
+ @java.lang.Override
77
+ public java.lang.String getAssetId() {
78
+ java.lang.Object ref = assetId_;
79
+ if (ref instanceof java.lang.String) {
80
+ return (java.lang.String) ref;
81
+ } else {
82
+ com.google.protobuf.ByteString bs =
83
+ (com.google.protobuf.ByteString) ref;
84
+ java.lang.String s = bs.toStringUtf8();
85
+ assetId_ = s;
86
+ return s;
87
+ }
88
+ }
89
+ /**
90
+ * <pre>
91
+ * Numeric ID of the asset in the on prem. It has to be a string to be compliant with the asset.proto model.
92
+ * </pre>
93
+ *
94
+ * <code>optional string asset_id = 19;</code>
95
+ * @return The bytes for assetId.
96
+ */
97
+ @java.lang.Override
98
+ public com.google.protobuf.ByteString
99
+ getAssetIdBytes() {
100
+ java.lang.Object ref = assetId_;
101
+ if (ref instanceof java.lang.String) {
102
+ com.google.protobuf.ByteString b =
103
+ com.google.protobuf.ByteString.copyFromUtf8(
104
+ (java.lang.String) ref);
105
+ assetId_ = b;
106
+ return b;
107
+ } else {
108
+ return (com.google.protobuf.ByteString) ref;
109
+ }
110
+ }
111
+
50
112
  public static final int LAST_TRIED_FIELD_NUMBER = 1;
51
113
  private com.google.protobuf.Timestamp lastTried_;
52
114
  /**
@@ -55,7 +117,7 @@ private static final long serialVersionUID = 0L;
55
117
  */
56
118
  @java.lang.Override
57
119
  public boolean hasLastTried() {
58
- return ((bitField0_ & 0x00000001) != 0);
120
+ return ((bitField0_ & 0x00000002) != 0);
59
121
  }
60
122
  /**
61
123
  * <code>optional .google.protobuf.Timestamp last_tried = 1;</code>
@@ -81,7 +143,7 @@ private static final long serialVersionUID = 0L;
81
143
  */
82
144
  @java.lang.Override
83
145
  public boolean hasLastActiveScan() {
84
- return ((bitField0_ & 0x00000002) != 0);
146
+ return ((bitField0_ & 0x00000004) != 0);
85
147
  }
86
148
  /**
87
149
  * <code>optional .google.protobuf.Timestamp last_active_scan = 2;</code>
@@ -107,7 +169,7 @@ private static final long serialVersionUID = 0L;
107
169
  */
108
170
  @java.lang.Override
109
171
  public boolean hasLastIpScan() {
110
- return ((bitField0_ & 0x00000004) != 0);
172
+ return ((bitField0_ & 0x00000008) != 0);
111
173
  }
112
174
  /**
113
175
  * <code>optional .google.protobuf.Timestamp last_ip_scan = 3;</code>
@@ -133,7 +195,7 @@ private static final long serialVersionUID = 0L;
133
195
  */
134
196
  @java.lang.Override
135
197
  public boolean hasLastSaved() {
136
- return ((bitField0_ & 0x00000008) != 0);
198
+ return ((bitField0_ & 0x00000010) != 0);
137
199
  }
138
200
  /**
139
201
  * <code>optional .google.protobuf.Timestamp last_saved = 4;</code>
@@ -159,7 +221,7 @@ private static final long serialVersionUID = 0L;
159
221
  */
160
222
  @java.lang.Override
161
223
  public boolean hasLastSccmScan() {
162
- return ((bitField0_ & 0x00000010) != 0);
224
+ return ((bitField0_ & 0x00000020) != 0);
163
225
  }
164
226
  /**
165
227
  * <code>optional .google.protobuf.Timestamp last_sccm_scan = 5;</code>
@@ -185,7 +247,7 @@ private static final long serialVersionUID = 0L;
185
247
  */
186
248
  @java.lang.Override
187
249
  public boolean hasLastLsAgent() {
188
- return ((bitField0_ & 0x00000020) != 0);
250
+ return ((bitField0_ & 0x00000040) != 0);
189
251
  }
190
252
  /**
191
253
  * <code>optional .google.protobuf.Timestamp last_ls_agent = 6;</code>
@@ -211,7 +273,7 @@ private static final long serialVersionUID = 0L;
211
273
  */
212
274
  @java.lang.Override
213
275
  public boolean hasLastLsFallBack() {
214
- return ((bitField0_ & 0x00000040) != 0);
276
+ return ((bitField0_ & 0x00000080) != 0);
215
277
  }
216
278
  /**
217
279
  * <code>optional .google.protobuf.Timestamp last_ls_fall_back = 7;</code>
@@ -237,7 +299,7 @@ private static final long serialVersionUID = 0L;
237
299
  */
238
300
  @java.lang.Override
239
301
  public boolean hasLastWorkGroupScan() {
240
- return ((bitField0_ & 0x00000080) != 0);
302
+ return ((bitField0_ & 0x00000100) != 0);
241
303
  }
242
304
  /**
243
305
  * <code>optional .google.protobuf.Timestamp last_work_group_scan = 8;</code>
@@ -263,7 +325,7 @@ private static final long serialVersionUID = 0L;
263
325
  */
264
326
  @java.lang.Override
265
327
  public boolean hasLastAssetRadarScan() {
266
- return ((bitField0_ & 0x00000100) != 0);
328
+ return ((bitField0_ & 0x00000200) != 0);
267
329
  }
268
330
  /**
269
331
  * <code>optional .google.protobuf.Timestamp last_asset_radar_scan = 9;</code>
@@ -289,7 +351,7 @@ private static final long serialVersionUID = 0L;
289
351
  */
290
352
  @java.lang.Override
291
353
  public boolean hasLastPerformanceScan() {
292
- return ((bitField0_ & 0x00000200) != 0);
354
+ return ((bitField0_ & 0x00000400) != 0);
293
355
  }
294
356
  /**
295
357
  * <code>optional .google.protobuf.Timestamp last_performance_scan = 10;</code>
@@ -315,7 +377,7 @@ private static final long serialVersionUID = 0L;
315
377
  */
316
378
  @java.lang.Override
317
379
  public boolean hasLastLsPush() {
318
- return ((bitField0_ & 0x00000400) != 0);
380
+ return ((bitField0_ & 0x00000800) != 0);
319
381
  }
320
382
  /**
321
383
  * <code>optional .google.protobuf.Timestamp last_ls_push = 11;</code>
@@ -341,7 +403,7 @@ private static final long serialVersionUID = 0L;
341
403
  */
342
404
  @java.lang.Override
343
405
  public boolean hasLastScheduled() {
344
- return ((bitField0_ & 0x00000800) != 0);
406
+ return ((bitField0_ & 0x00001000) != 0);
345
407
  }
346
408
  /**
347
409
  * <code>optional .google.protobuf.Timestamp last_scheduled = 12;</code>
@@ -367,7 +429,7 @@ private static final long serialVersionUID = 0L;
367
429
  */
368
430
  @java.lang.Override
369
431
  public boolean hasLastTriggered() {
370
- return ((bitField0_ & 0x00001000) != 0);
432
+ return ((bitField0_ & 0x00002000) != 0);
371
433
  }
372
434
  /**
373
435
  * <code>optional .google.protobuf.Timestamp last_triggered = 13;</code>
@@ -393,7 +455,7 @@ private static final long serialVersionUID = 0L;
393
455
  */
394
456
  @java.lang.Override
395
457
  public boolean hasLastLsAgentDirect() {
396
- return ((bitField0_ & 0x00002000) != 0);
458
+ return ((bitField0_ & 0x00004000) != 0);
397
459
  }
398
460
  /**
399
461
  * <code>optional .google.protobuf.Timestamp last_ls_agent_direct = 14;</code>
@@ -423,7 +485,7 @@ private static final long serialVersionUID = 0L;
423
485
  */
424
486
  @java.lang.Override
425
487
  public boolean hasCustom() {
426
- return ((bitField0_ & 0x00004000) != 0);
488
+ return ((bitField0_ & 0x00008000) != 0);
427
489
  }
428
490
  /**
429
491
  * <pre>
@@ -510,6 +572,124 @@ private static final long serialVersionUID = 0L;
510
572
  return groupLink_.get(index);
511
573
  }
512
574
 
575
+ public static final int IP_LOCATION_KEY_FIELD_NUMBER = 17;
576
+ @SuppressWarnings("serial")
577
+ private volatile java.lang.Object ipLocationKey_ = "";
578
+ /**
579
+ * <pre>
580
+ * ip location config key. Reference the IP Location collection in mongoDB, and it's currently not store in vNEXT model.
581
+ * </pre>
582
+ *
583
+ * <code>optional string ip_location_key = 17;</code>
584
+ * @return Whether the ipLocationKey field is set.
585
+ */
586
+ @java.lang.Override
587
+ public boolean hasIpLocationKey() {
588
+ return ((bitField0_ & 0x00010000) != 0);
589
+ }
590
+ /**
591
+ * <pre>
592
+ * ip location config key. Reference the IP Location collection in mongoDB, and it's currently not store in vNEXT model.
593
+ * </pre>
594
+ *
595
+ * <code>optional string ip_location_key = 17;</code>
596
+ * @return The ipLocationKey.
597
+ */
598
+ @java.lang.Override
599
+ public java.lang.String getIpLocationKey() {
600
+ java.lang.Object ref = ipLocationKey_;
601
+ if (ref instanceof java.lang.String) {
602
+ return (java.lang.String) ref;
603
+ } else {
604
+ com.google.protobuf.ByteString bs =
605
+ (com.google.protobuf.ByteString) ref;
606
+ java.lang.String s = bs.toStringUtf8();
607
+ ipLocationKey_ = s;
608
+ return s;
609
+ }
610
+ }
611
+ /**
612
+ * <pre>
613
+ * ip location config key. Reference the IP Location collection in mongoDB, and it's currently not store in vNEXT model.
614
+ * </pre>
615
+ *
616
+ * <code>optional string ip_location_key = 17;</code>
617
+ * @return The bytes for ipLocationKey.
618
+ */
619
+ @java.lang.Override
620
+ public com.google.protobuf.ByteString
621
+ getIpLocationKeyBytes() {
622
+ java.lang.Object ref = ipLocationKey_;
623
+ if (ref instanceof java.lang.String) {
624
+ com.google.protobuf.ByteString b =
625
+ com.google.protobuf.ByteString.copyFromUtf8(
626
+ (java.lang.String) ref);
627
+ ipLocationKey_ = b;
628
+ return b;
629
+ } else {
630
+ return (com.google.protobuf.ByteString) ref;
631
+ }
632
+ }
633
+
634
+ public static final int IP_LOCATION_ID_FIELD_NUMBER = 18;
635
+ @SuppressWarnings("serial")
636
+ private volatile java.lang.Object ipLocationId_ = "";
637
+ /**
638
+ * <pre>
639
+ * ip location config ID. Reference the IP Location id in the onprem, if existing.
640
+ * </pre>
641
+ *
642
+ * <code>optional string ip_location_id = 18;</code>
643
+ * @return Whether the ipLocationId field is set.
644
+ */
645
+ @java.lang.Override
646
+ public boolean hasIpLocationId() {
647
+ return ((bitField0_ & 0x00020000) != 0);
648
+ }
649
+ /**
650
+ * <pre>
651
+ * ip location config ID. Reference the IP Location id in the onprem, if existing.
652
+ * </pre>
653
+ *
654
+ * <code>optional string ip_location_id = 18;</code>
655
+ * @return The ipLocationId.
656
+ */
657
+ @java.lang.Override
658
+ public java.lang.String getIpLocationId() {
659
+ java.lang.Object ref = ipLocationId_;
660
+ if (ref instanceof java.lang.String) {
661
+ return (java.lang.String) ref;
662
+ } else {
663
+ com.google.protobuf.ByteString bs =
664
+ (com.google.protobuf.ByteString) ref;
665
+ java.lang.String s = bs.toStringUtf8();
666
+ ipLocationId_ = s;
667
+ return s;
668
+ }
669
+ }
670
+ /**
671
+ * <pre>
672
+ * ip location config ID. Reference the IP Location id in the onprem, if existing.
673
+ * </pre>
674
+ *
675
+ * <code>optional string ip_location_id = 18;</code>
676
+ * @return The bytes for ipLocationId.
677
+ */
678
+ @java.lang.Override
679
+ public com.google.protobuf.ByteString
680
+ getIpLocationIdBytes() {
681
+ java.lang.Object ref = ipLocationId_;
682
+ if (ref instanceof java.lang.String) {
683
+ com.google.protobuf.ByteString b =
684
+ com.google.protobuf.ByteString.copyFromUtf8(
685
+ (java.lang.String) ref);
686
+ ipLocationId_ = b;
687
+ return b;
688
+ } else {
689
+ return (com.google.protobuf.ByteString) ref;
690
+ }
691
+ }
692
+
513
693
  private byte memoizedIsInitialized = -1;
514
694
  @java.lang.Override
515
695
  public final boolean isInitialized() {
@@ -524,54 +704,63 @@ private static final long serialVersionUID = 0L;
524
704
  @java.lang.Override
525
705
  public void writeTo(com.google.protobuf.CodedOutputStream output)
526
706
  throws java.io.IOException {
527
- if (((bitField0_ & 0x00000001) != 0)) {
707
+ if (((bitField0_ & 0x00000002) != 0)) {
528
708
  output.writeMessage(1, getLastTried());
529
709
  }
530
- if (((bitField0_ & 0x00000002) != 0)) {
710
+ if (((bitField0_ & 0x00000004) != 0)) {
531
711
  output.writeMessage(2, getLastActiveScan());
532
712
  }
533
- if (((bitField0_ & 0x00000004) != 0)) {
713
+ if (((bitField0_ & 0x00000008) != 0)) {
534
714
  output.writeMessage(3, getLastIpScan());
535
715
  }
536
- if (((bitField0_ & 0x00000008) != 0)) {
716
+ if (((bitField0_ & 0x00000010) != 0)) {
537
717
  output.writeMessage(4, getLastSaved());
538
718
  }
539
- if (((bitField0_ & 0x00000010) != 0)) {
719
+ if (((bitField0_ & 0x00000020) != 0)) {
540
720
  output.writeMessage(5, getLastSccmScan());
541
721
  }
542
- if (((bitField0_ & 0x00000020) != 0)) {
722
+ if (((bitField0_ & 0x00000040) != 0)) {
543
723
  output.writeMessage(6, getLastLsAgent());
544
724
  }
545
- if (((bitField0_ & 0x00000040) != 0)) {
725
+ if (((bitField0_ & 0x00000080) != 0)) {
546
726
  output.writeMessage(7, getLastLsFallBack());
547
727
  }
548
- if (((bitField0_ & 0x00000080) != 0)) {
728
+ if (((bitField0_ & 0x00000100) != 0)) {
549
729
  output.writeMessage(8, getLastWorkGroupScan());
550
730
  }
551
- if (((bitField0_ & 0x00000100) != 0)) {
731
+ if (((bitField0_ & 0x00000200) != 0)) {
552
732
  output.writeMessage(9, getLastAssetRadarScan());
553
733
  }
554
- if (((bitField0_ & 0x00000200) != 0)) {
734
+ if (((bitField0_ & 0x00000400) != 0)) {
555
735
  output.writeMessage(10, getLastPerformanceScan());
556
736
  }
557
- if (((bitField0_ & 0x00000400) != 0)) {
737
+ if (((bitField0_ & 0x00000800) != 0)) {
558
738
  output.writeMessage(11, getLastLsPush());
559
739
  }
560
- if (((bitField0_ & 0x00000800) != 0)) {
740
+ if (((bitField0_ & 0x00001000) != 0)) {
561
741
  output.writeMessage(12, getLastScheduled());
562
742
  }
563
- if (((bitField0_ & 0x00001000) != 0)) {
743
+ if (((bitField0_ & 0x00002000) != 0)) {
564
744
  output.writeMessage(13, getLastTriggered());
565
745
  }
566
- if (((bitField0_ & 0x00002000) != 0)) {
746
+ if (((bitField0_ & 0x00004000) != 0)) {
567
747
  output.writeMessage(14, getLastLsAgentDirect());
568
748
  }
569
- if (((bitField0_ & 0x00004000) != 0)) {
749
+ if (((bitField0_ & 0x00008000) != 0)) {
570
750
  output.writeMessage(15, getCustom());
571
751
  }
572
752
  for (int i = 0; i < groupLink_.size(); i++) {
573
753
  output.writeMessage(16, groupLink_.get(i));
574
754
  }
755
+ if (((bitField0_ & 0x00010000) != 0)) {
756
+ com.google.protobuf.GeneratedMessageV3.writeString(output, 17, ipLocationKey_);
757
+ }
758
+ if (((bitField0_ & 0x00020000) != 0)) {
759
+ com.google.protobuf.GeneratedMessageV3.writeString(output, 18, ipLocationId_);
760
+ }
761
+ if (((bitField0_ & 0x00000001) != 0)) {
762
+ com.google.protobuf.GeneratedMessageV3.writeString(output, 19, assetId_);
763
+ }
575
764
  getUnknownFields().writeTo(output);
576
765
  }
577
766
 
@@ -581,63 +770,63 @@ private static final long serialVersionUID = 0L;
581
770
  if (size != -1) return size;
582
771
 
583
772
  size = 0;
584
- if (((bitField0_ & 0x00000001) != 0)) {
773
+ if (((bitField0_ & 0x00000002) != 0)) {
585
774
  size += com.google.protobuf.CodedOutputStream
586
775
  .computeMessageSize(1, getLastTried());
587
776
  }
588
- if (((bitField0_ & 0x00000002) != 0)) {
777
+ if (((bitField0_ & 0x00000004) != 0)) {
589
778
  size += com.google.protobuf.CodedOutputStream
590
779
  .computeMessageSize(2, getLastActiveScan());
591
780
  }
592
- if (((bitField0_ & 0x00000004) != 0)) {
781
+ if (((bitField0_ & 0x00000008) != 0)) {
593
782
  size += com.google.protobuf.CodedOutputStream
594
783
  .computeMessageSize(3, getLastIpScan());
595
784
  }
596
- if (((bitField0_ & 0x00000008) != 0)) {
785
+ if (((bitField0_ & 0x00000010) != 0)) {
597
786
  size += com.google.protobuf.CodedOutputStream
598
787
  .computeMessageSize(4, getLastSaved());
599
788
  }
600
- if (((bitField0_ & 0x00000010) != 0)) {
789
+ if (((bitField0_ & 0x00000020) != 0)) {
601
790
  size += com.google.protobuf.CodedOutputStream
602
791
  .computeMessageSize(5, getLastSccmScan());
603
792
  }
604
- if (((bitField0_ & 0x00000020) != 0)) {
793
+ if (((bitField0_ & 0x00000040) != 0)) {
605
794
  size += com.google.protobuf.CodedOutputStream
606
795
  .computeMessageSize(6, getLastLsAgent());
607
796
  }
608
- if (((bitField0_ & 0x00000040) != 0)) {
797
+ if (((bitField0_ & 0x00000080) != 0)) {
609
798
  size += com.google.protobuf.CodedOutputStream
610
799
  .computeMessageSize(7, getLastLsFallBack());
611
800
  }
612
- if (((bitField0_ & 0x00000080) != 0)) {
801
+ if (((bitField0_ & 0x00000100) != 0)) {
613
802
  size += com.google.protobuf.CodedOutputStream
614
803
  .computeMessageSize(8, getLastWorkGroupScan());
615
804
  }
616
- if (((bitField0_ & 0x00000100) != 0)) {
805
+ if (((bitField0_ & 0x00000200) != 0)) {
617
806
  size += com.google.protobuf.CodedOutputStream
618
807
  .computeMessageSize(9, getLastAssetRadarScan());
619
808
  }
620
- if (((bitField0_ & 0x00000200) != 0)) {
809
+ if (((bitField0_ & 0x00000400) != 0)) {
621
810
  size += com.google.protobuf.CodedOutputStream
622
811
  .computeMessageSize(10, getLastPerformanceScan());
623
812
  }
624
- if (((bitField0_ & 0x00000400) != 0)) {
813
+ if (((bitField0_ & 0x00000800) != 0)) {
625
814
  size += com.google.protobuf.CodedOutputStream
626
815
  .computeMessageSize(11, getLastLsPush());
627
816
  }
628
- if (((bitField0_ & 0x00000800) != 0)) {
817
+ if (((bitField0_ & 0x00001000) != 0)) {
629
818
  size += com.google.protobuf.CodedOutputStream
630
819
  .computeMessageSize(12, getLastScheduled());
631
820
  }
632
- if (((bitField0_ & 0x00001000) != 0)) {
821
+ if (((bitField0_ & 0x00002000) != 0)) {
633
822
  size += com.google.protobuf.CodedOutputStream
634
823
  .computeMessageSize(13, getLastTriggered());
635
824
  }
636
- if (((bitField0_ & 0x00002000) != 0)) {
825
+ if (((bitField0_ & 0x00004000) != 0)) {
637
826
  size += com.google.protobuf.CodedOutputStream
638
827
  .computeMessageSize(14, getLastLsAgentDirect());
639
828
  }
640
- if (((bitField0_ & 0x00004000) != 0)) {
829
+ if (((bitField0_ & 0x00008000) != 0)) {
641
830
  size += com.google.protobuf.CodedOutputStream
642
831
  .computeMessageSize(15, getCustom());
643
832
  }
@@ -645,6 +834,15 @@ private static final long serialVersionUID = 0L;
645
834
  size += com.google.protobuf.CodedOutputStream
646
835
  .computeMessageSize(16, groupLink_.get(i));
647
836
  }
837
+ if (((bitField0_ & 0x00010000) != 0)) {
838
+ size += com.google.protobuf.GeneratedMessageV3.computeStringSize(17, ipLocationKey_);
839
+ }
840
+ if (((bitField0_ & 0x00020000) != 0)) {
841
+ size += com.google.protobuf.GeneratedMessageV3.computeStringSize(18, ipLocationId_);
842
+ }
843
+ if (((bitField0_ & 0x00000001) != 0)) {
844
+ size += com.google.protobuf.GeneratedMessageV3.computeStringSize(19, assetId_);
845
+ }
648
846
  size += getUnknownFields().getSerializedSize();
649
847
  memoizedSize = size;
650
848
  return size;
@@ -660,6 +858,11 @@ private static final long serialVersionUID = 0L;
660
858
  }
661
859
  com.lansweeper.dp.outbound.v1.LegacyFields other = (com.lansweeper.dp.outbound.v1.LegacyFields) obj;
662
860
 
861
+ if (hasAssetId() != other.hasAssetId()) return false;
862
+ if (hasAssetId()) {
863
+ if (!getAssetId()
864
+ .equals(other.getAssetId())) return false;
865
+ }
663
866
  if (hasLastTried() != other.hasLastTried()) return false;
664
867
  if (hasLastTried()) {
665
868
  if (!getLastTried()
@@ -737,6 +940,16 @@ private static final long serialVersionUID = 0L;
737
940
  }
738
941
  if (!getGroupLinkList()
739
942
  .equals(other.getGroupLinkList())) return false;
943
+ if (hasIpLocationKey() != other.hasIpLocationKey()) return false;
944
+ if (hasIpLocationKey()) {
945
+ if (!getIpLocationKey()
946
+ .equals(other.getIpLocationKey())) return false;
947
+ }
948
+ if (hasIpLocationId() != other.hasIpLocationId()) return false;
949
+ if (hasIpLocationId()) {
950
+ if (!getIpLocationId()
951
+ .equals(other.getIpLocationId())) return false;
952
+ }
740
953
  if (!getUnknownFields().equals(other.getUnknownFields())) return false;
741
954
  return true;
742
955
  }
@@ -748,6 +961,10 @@ private static final long serialVersionUID = 0L;
748
961
  }
749
962
  int hash = 41;
750
963
  hash = (19 * hash) + getDescriptor().hashCode();
964
+ if (hasAssetId()) {
965
+ hash = (37 * hash) + ASSET_ID_FIELD_NUMBER;
966
+ hash = (53 * hash) + getAssetId().hashCode();
967
+ }
751
968
  if (hasLastTried()) {
752
969
  hash = (37 * hash) + LAST_TRIED_FIELD_NUMBER;
753
970
  hash = (53 * hash) + getLastTried().hashCode();
@@ -812,6 +1029,14 @@ private static final long serialVersionUID = 0L;
812
1029
  hash = (37 * hash) + GROUP_LINK_FIELD_NUMBER;
813
1030
  hash = (53 * hash) + getGroupLinkList().hashCode();
814
1031
  }
1032
+ if (hasIpLocationKey()) {
1033
+ hash = (37 * hash) + IP_LOCATION_KEY_FIELD_NUMBER;
1034
+ hash = (53 * hash) + getIpLocationKey().hashCode();
1035
+ }
1036
+ if (hasIpLocationId()) {
1037
+ hash = (37 * hash) + IP_LOCATION_ID_FIELD_NUMBER;
1038
+ hash = (53 * hash) + getIpLocationId().hashCode();
1039
+ }
815
1040
  hash = (29 * hash) + getUnknownFields().hashCode();
816
1041
  memoizedHashCode = hash;
817
1042
  return hash;
@@ -970,6 +1195,7 @@ private static final long serialVersionUID = 0L;
970
1195
  public Builder clear() {
971
1196
  super.clear();
972
1197
  bitField0_ = 0;
1198
+ assetId_ = "";
973
1199
  lastTried_ = null;
974
1200
  if (lastTriedBuilder_ != null) {
975
1201
  lastTriedBuilder_.dispose();
@@ -1051,7 +1277,9 @@ private static final long serialVersionUID = 0L;
1051
1277
  groupLink_ = null;
1052
1278
  groupLinkBuilder_.clear();
1053
1279
  }
1054
- bitField0_ = (bitField0_ & ~0x00008000);
1280
+ bitField0_ = (bitField0_ & ~0x00010000);
1281
+ ipLocationKey_ = "";
1282
+ ipLocationId_ = "";
1055
1283
  return this;
1056
1284
  }
1057
1285
 
@@ -1086,9 +1314,9 @@ private static final long serialVersionUID = 0L;
1086
1314
 
1087
1315
  private void buildPartialRepeatedFields(com.lansweeper.dp.outbound.v1.LegacyFields result) {
1088
1316
  if (groupLinkBuilder_ == null) {
1089
- if (((bitField0_ & 0x00008000) != 0)) {
1317
+ if (((bitField0_ & 0x00010000) != 0)) {
1090
1318
  groupLink_ = java.util.Collections.unmodifiableList(groupLink_);
1091
- bitField0_ = (bitField0_ & ~0x00008000);
1319
+ bitField0_ = (bitField0_ & ~0x00010000);
1092
1320
  }
1093
1321
  result.groupLink_ = groupLink_;
1094
1322
  } else {
@@ -1100,94 +1328,106 @@ private static final long serialVersionUID = 0L;
1100
1328
  int from_bitField0_ = bitField0_;
1101
1329
  int to_bitField0_ = 0;
1102
1330
  if (((from_bitField0_ & 0x00000001) != 0)) {
1331
+ result.assetId_ = assetId_;
1332
+ to_bitField0_ |= 0x00000001;
1333
+ }
1334
+ if (((from_bitField0_ & 0x00000002) != 0)) {
1103
1335
  result.lastTried_ = lastTriedBuilder_ == null
1104
1336
  ? lastTried_
1105
1337
  : lastTriedBuilder_.build();
1106
- to_bitField0_ |= 0x00000001;
1338
+ to_bitField0_ |= 0x00000002;
1107
1339
  }
1108
- if (((from_bitField0_ & 0x00000002) != 0)) {
1340
+ if (((from_bitField0_ & 0x00000004) != 0)) {
1109
1341
  result.lastActiveScan_ = lastActiveScanBuilder_ == null
1110
1342
  ? lastActiveScan_
1111
1343
  : lastActiveScanBuilder_.build();
1112
- to_bitField0_ |= 0x00000002;
1344
+ to_bitField0_ |= 0x00000004;
1113
1345
  }
1114
- if (((from_bitField0_ & 0x00000004) != 0)) {
1346
+ if (((from_bitField0_ & 0x00000008) != 0)) {
1115
1347
  result.lastIpScan_ = lastIpScanBuilder_ == null
1116
1348
  ? lastIpScan_
1117
1349
  : lastIpScanBuilder_.build();
1118
- to_bitField0_ |= 0x00000004;
1350
+ to_bitField0_ |= 0x00000008;
1119
1351
  }
1120
- if (((from_bitField0_ & 0x00000008) != 0)) {
1352
+ if (((from_bitField0_ & 0x00000010) != 0)) {
1121
1353
  result.lastSaved_ = lastSavedBuilder_ == null
1122
1354
  ? lastSaved_
1123
1355
  : lastSavedBuilder_.build();
1124
- to_bitField0_ |= 0x00000008;
1356
+ to_bitField0_ |= 0x00000010;
1125
1357
  }
1126
- if (((from_bitField0_ & 0x00000010) != 0)) {
1358
+ if (((from_bitField0_ & 0x00000020) != 0)) {
1127
1359
  result.lastSccmScan_ = lastSccmScanBuilder_ == null
1128
1360
  ? lastSccmScan_
1129
1361
  : lastSccmScanBuilder_.build();
1130
- to_bitField0_ |= 0x00000010;
1362
+ to_bitField0_ |= 0x00000020;
1131
1363
  }
1132
- if (((from_bitField0_ & 0x00000020) != 0)) {
1364
+ if (((from_bitField0_ & 0x00000040) != 0)) {
1133
1365
  result.lastLsAgent_ = lastLsAgentBuilder_ == null
1134
1366
  ? lastLsAgent_
1135
1367
  : lastLsAgentBuilder_.build();
1136
- to_bitField0_ |= 0x00000020;
1368
+ to_bitField0_ |= 0x00000040;
1137
1369
  }
1138
- if (((from_bitField0_ & 0x00000040) != 0)) {
1370
+ if (((from_bitField0_ & 0x00000080) != 0)) {
1139
1371
  result.lastLsFallBack_ = lastLsFallBackBuilder_ == null
1140
1372
  ? lastLsFallBack_
1141
1373
  : lastLsFallBackBuilder_.build();
1142
- to_bitField0_ |= 0x00000040;
1374
+ to_bitField0_ |= 0x00000080;
1143
1375
  }
1144
- if (((from_bitField0_ & 0x00000080) != 0)) {
1376
+ if (((from_bitField0_ & 0x00000100) != 0)) {
1145
1377
  result.lastWorkGroupScan_ = lastWorkGroupScanBuilder_ == null
1146
1378
  ? lastWorkGroupScan_
1147
1379
  : lastWorkGroupScanBuilder_.build();
1148
- to_bitField0_ |= 0x00000080;
1380
+ to_bitField0_ |= 0x00000100;
1149
1381
  }
1150
- if (((from_bitField0_ & 0x00000100) != 0)) {
1382
+ if (((from_bitField0_ & 0x00000200) != 0)) {
1151
1383
  result.lastAssetRadarScan_ = lastAssetRadarScanBuilder_ == null
1152
1384
  ? lastAssetRadarScan_
1153
1385
  : lastAssetRadarScanBuilder_.build();
1154
- to_bitField0_ |= 0x00000100;
1386
+ to_bitField0_ |= 0x00000200;
1155
1387
  }
1156
- if (((from_bitField0_ & 0x00000200) != 0)) {
1388
+ if (((from_bitField0_ & 0x00000400) != 0)) {
1157
1389
  result.lastPerformanceScan_ = lastPerformanceScanBuilder_ == null
1158
1390
  ? lastPerformanceScan_
1159
1391
  : lastPerformanceScanBuilder_.build();
1160
- to_bitField0_ |= 0x00000200;
1392
+ to_bitField0_ |= 0x00000400;
1161
1393
  }
1162
- if (((from_bitField0_ & 0x00000400) != 0)) {
1394
+ if (((from_bitField0_ & 0x00000800) != 0)) {
1163
1395
  result.lastLsPush_ = lastLsPushBuilder_ == null
1164
1396
  ? lastLsPush_
1165
1397
  : lastLsPushBuilder_.build();
1166
- to_bitField0_ |= 0x00000400;
1398
+ to_bitField0_ |= 0x00000800;
1167
1399
  }
1168
- if (((from_bitField0_ & 0x00000800) != 0)) {
1400
+ if (((from_bitField0_ & 0x00001000) != 0)) {
1169
1401
  result.lastScheduled_ = lastScheduledBuilder_ == null
1170
1402
  ? lastScheduled_
1171
1403
  : lastScheduledBuilder_.build();
1172
- to_bitField0_ |= 0x00000800;
1404
+ to_bitField0_ |= 0x00001000;
1173
1405
  }
1174
- if (((from_bitField0_ & 0x00001000) != 0)) {
1406
+ if (((from_bitField0_ & 0x00002000) != 0)) {
1175
1407
  result.lastTriggered_ = lastTriggeredBuilder_ == null
1176
1408
  ? lastTriggered_
1177
1409
  : lastTriggeredBuilder_.build();
1178
- to_bitField0_ |= 0x00001000;
1410
+ to_bitField0_ |= 0x00002000;
1179
1411
  }
1180
- if (((from_bitField0_ & 0x00002000) != 0)) {
1412
+ if (((from_bitField0_ & 0x00004000) != 0)) {
1181
1413
  result.lastLsAgentDirect_ = lastLsAgentDirectBuilder_ == null
1182
1414
  ? lastLsAgentDirect_
1183
1415
  : lastLsAgentDirectBuilder_.build();
1184
- to_bitField0_ |= 0x00002000;
1416
+ to_bitField0_ |= 0x00004000;
1185
1417
  }
1186
- if (((from_bitField0_ & 0x00004000) != 0)) {
1418
+ if (((from_bitField0_ & 0x00008000) != 0)) {
1187
1419
  result.custom_ = customBuilder_ == null
1188
1420
  ? custom_
1189
1421
  : customBuilder_.build();
1190
- to_bitField0_ |= 0x00004000;
1422
+ to_bitField0_ |= 0x00008000;
1423
+ }
1424
+ if (((from_bitField0_ & 0x00020000) != 0)) {
1425
+ result.ipLocationKey_ = ipLocationKey_;
1426
+ to_bitField0_ |= 0x00010000;
1427
+ }
1428
+ if (((from_bitField0_ & 0x00040000) != 0)) {
1429
+ result.ipLocationId_ = ipLocationId_;
1430
+ to_bitField0_ |= 0x00020000;
1191
1431
  }
1192
1432
  result.bitField0_ |= to_bitField0_;
1193
1433
  }
@@ -1236,6 +1476,11 @@ private static final long serialVersionUID = 0L;
1236
1476
 
1237
1477
  public Builder mergeFrom(com.lansweeper.dp.outbound.v1.LegacyFields other) {
1238
1478
  if (other == com.lansweeper.dp.outbound.v1.LegacyFields.getDefaultInstance()) return this;
1479
+ if (other.hasAssetId()) {
1480
+ assetId_ = other.assetId_;
1481
+ bitField0_ |= 0x00000001;
1482
+ onChanged();
1483
+ }
1239
1484
  if (other.hasLastTried()) {
1240
1485
  mergeLastTried(other.getLastTried());
1241
1486
  }
@@ -1285,7 +1530,7 @@ private static final long serialVersionUID = 0L;
1285
1530
  if (!other.groupLink_.isEmpty()) {
1286
1531
  if (groupLink_.isEmpty()) {
1287
1532
  groupLink_ = other.groupLink_;
1288
- bitField0_ = (bitField0_ & ~0x00008000);
1533
+ bitField0_ = (bitField0_ & ~0x00010000);
1289
1534
  } else {
1290
1535
  ensureGroupLinkIsMutable();
1291
1536
  groupLink_.addAll(other.groupLink_);
@@ -1298,7 +1543,7 @@ private static final long serialVersionUID = 0L;
1298
1543
  groupLinkBuilder_.dispose();
1299
1544
  groupLinkBuilder_ = null;
1300
1545
  groupLink_ = other.groupLink_;
1301
- bitField0_ = (bitField0_ & ~0x00008000);
1546
+ bitField0_ = (bitField0_ & ~0x00010000);
1302
1547
  groupLinkBuilder_ =
1303
1548
  com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
1304
1549
  getGroupLinkFieldBuilder() : null;
@@ -1307,6 +1552,16 @@ private static final long serialVersionUID = 0L;
1307
1552
  }
1308
1553
  }
1309
1554
  }
1555
+ if (other.hasIpLocationKey()) {
1556
+ ipLocationKey_ = other.ipLocationKey_;
1557
+ bitField0_ |= 0x00020000;
1558
+ onChanged();
1559
+ }
1560
+ if (other.hasIpLocationId()) {
1561
+ ipLocationId_ = other.ipLocationId_;
1562
+ bitField0_ |= 0x00040000;
1563
+ onChanged();
1564
+ }
1310
1565
  this.mergeUnknownFields(other.getUnknownFields());
1311
1566
  onChanged();
1312
1567
  return this;
@@ -1337,105 +1592,105 @@ private static final long serialVersionUID = 0L;
1337
1592
  input.readMessage(
1338
1593
  getLastTriedFieldBuilder().getBuilder(),
1339
1594
  extensionRegistry);
1340
- bitField0_ |= 0x00000001;
1595
+ bitField0_ |= 0x00000002;
1341
1596
  break;
1342
1597
  } // case 10
1343
1598
  case 18: {
1344
1599
  input.readMessage(
1345
1600
  getLastActiveScanFieldBuilder().getBuilder(),
1346
1601
  extensionRegistry);
1347
- bitField0_ |= 0x00000002;
1602
+ bitField0_ |= 0x00000004;
1348
1603
  break;
1349
1604
  } // case 18
1350
1605
  case 26: {
1351
1606
  input.readMessage(
1352
1607
  getLastIpScanFieldBuilder().getBuilder(),
1353
1608
  extensionRegistry);
1354
- bitField0_ |= 0x00000004;
1609
+ bitField0_ |= 0x00000008;
1355
1610
  break;
1356
1611
  } // case 26
1357
1612
  case 34: {
1358
1613
  input.readMessage(
1359
1614
  getLastSavedFieldBuilder().getBuilder(),
1360
1615
  extensionRegistry);
1361
- bitField0_ |= 0x00000008;
1616
+ bitField0_ |= 0x00000010;
1362
1617
  break;
1363
1618
  } // case 34
1364
1619
  case 42: {
1365
1620
  input.readMessage(
1366
1621
  getLastSccmScanFieldBuilder().getBuilder(),
1367
1622
  extensionRegistry);
1368
- bitField0_ |= 0x00000010;
1623
+ bitField0_ |= 0x00000020;
1369
1624
  break;
1370
1625
  } // case 42
1371
1626
  case 50: {
1372
1627
  input.readMessage(
1373
1628
  getLastLsAgentFieldBuilder().getBuilder(),
1374
1629
  extensionRegistry);
1375
- bitField0_ |= 0x00000020;
1630
+ bitField0_ |= 0x00000040;
1376
1631
  break;
1377
1632
  } // case 50
1378
1633
  case 58: {
1379
1634
  input.readMessage(
1380
1635
  getLastLsFallBackFieldBuilder().getBuilder(),
1381
1636
  extensionRegistry);
1382
- bitField0_ |= 0x00000040;
1637
+ bitField0_ |= 0x00000080;
1383
1638
  break;
1384
1639
  } // case 58
1385
1640
  case 66: {
1386
1641
  input.readMessage(
1387
1642
  getLastWorkGroupScanFieldBuilder().getBuilder(),
1388
1643
  extensionRegistry);
1389
- bitField0_ |= 0x00000080;
1644
+ bitField0_ |= 0x00000100;
1390
1645
  break;
1391
1646
  } // case 66
1392
1647
  case 74: {
1393
1648
  input.readMessage(
1394
1649
  getLastAssetRadarScanFieldBuilder().getBuilder(),
1395
1650
  extensionRegistry);
1396
- bitField0_ |= 0x00000100;
1651
+ bitField0_ |= 0x00000200;
1397
1652
  break;
1398
1653
  } // case 74
1399
1654
  case 82: {
1400
1655
  input.readMessage(
1401
1656
  getLastPerformanceScanFieldBuilder().getBuilder(),
1402
1657
  extensionRegistry);
1403
- bitField0_ |= 0x00000200;
1658
+ bitField0_ |= 0x00000400;
1404
1659
  break;
1405
1660
  } // case 82
1406
1661
  case 90: {
1407
1662
  input.readMessage(
1408
1663
  getLastLsPushFieldBuilder().getBuilder(),
1409
1664
  extensionRegistry);
1410
- bitField0_ |= 0x00000400;
1665
+ bitField0_ |= 0x00000800;
1411
1666
  break;
1412
1667
  } // case 90
1413
1668
  case 98: {
1414
1669
  input.readMessage(
1415
1670
  getLastScheduledFieldBuilder().getBuilder(),
1416
1671
  extensionRegistry);
1417
- bitField0_ |= 0x00000800;
1672
+ bitField0_ |= 0x00001000;
1418
1673
  break;
1419
1674
  } // case 98
1420
1675
  case 106: {
1421
1676
  input.readMessage(
1422
1677
  getLastTriggeredFieldBuilder().getBuilder(),
1423
1678
  extensionRegistry);
1424
- bitField0_ |= 0x00001000;
1679
+ bitField0_ |= 0x00002000;
1425
1680
  break;
1426
1681
  } // case 106
1427
1682
  case 114: {
1428
1683
  input.readMessage(
1429
1684
  getLastLsAgentDirectFieldBuilder().getBuilder(),
1430
1685
  extensionRegistry);
1431
- bitField0_ |= 0x00002000;
1686
+ bitField0_ |= 0x00004000;
1432
1687
  break;
1433
1688
  } // case 114
1434
1689
  case 122: {
1435
1690
  input.readMessage(
1436
1691
  getCustomFieldBuilder().getBuilder(),
1437
1692
  extensionRegistry);
1438
- bitField0_ |= 0x00004000;
1693
+ bitField0_ |= 0x00008000;
1439
1694
  break;
1440
1695
  } // case 122
1441
1696
  case 130: {
@@ -1451,6 +1706,21 @@ private static final long serialVersionUID = 0L;
1451
1706
  }
1452
1707
  break;
1453
1708
  } // case 130
1709
+ case 138: {
1710
+ ipLocationKey_ = input.readStringRequireUtf8();
1711
+ bitField0_ |= 0x00020000;
1712
+ break;
1713
+ } // case 138
1714
+ case 146: {
1715
+ ipLocationId_ = input.readStringRequireUtf8();
1716
+ bitField0_ |= 0x00040000;
1717
+ break;
1718
+ } // case 146
1719
+ case 154: {
1720
+ assetId_ = input.readStringRequireUtf8();
1721
+ bitField0_ |= 0x00000001;
1722
+ break;
1723
+ } // case 154
1454
1724
  default: {
1455
1725
  if (!super.parseUnknownField(input, extensionRegistry, tag)) {
1456
1726
  done = true; // was an endgroup tag
@@ -1468,6 +1738,109 @@ private static final long serialVersionUID = 0L;
1468
1738
  }
1469
1739
  private int bitField0_;
1470
1740
 
1741
+ private java.lang.Object assetId_ = "";
1742
+ /**
1743
+ * <pre>
1744
+ * Numeric ID of the asset in the on prem. It has to be a string to be compliant with the asset.proto model.
1745
+ * </pre>
1746
+ *
1747
+ * <code>optional string asset_id = 19;</code>
1748
+ * @return Whether the assetId field is set.
1749
+ */
1750
+ public boolean hasAssetId() {
1751
+ return ((bitField0_ & 0x00000001) != 0);
1752
+ }
1753
+ /**
1754
+ * <pre>
1755
+ * Numeric ID of the asset in the on prem. It has to be a string to be compliant with the asset.proto model.
1756
+ * </pre>
1757
+ *
1758
+ * <code>optional string asset_id = 19;</code>
1759
+ * @return The assetId.
1760
+ */
1761
+ public java.lang.String getAssetId() {
1762
+ java.lang.Object ref = assetId_;
1763
+ if (!(ref instanceof java.lang.String)) {
1764
+ com.google.protobuf.ByteString bs =
1765
+ (com.google.protobuf.ByteString) ref;
1766
+ java.lang.String s = bs.toStringUtf8();
1767
+ assetId_ = s;
1768
+ return s;
1769
+ } else {
1770
+ return (java.lang.String) ref;
1771
+ }
1772
+ }
1773
+ /**
1774
+ * <pre>
1775
+ * Numeric ID of the asset in the on prem. It has to be a string to be compliant with the asset.proto model.
1776
+ * </pre>
1777
+ *
1778
+ * <code>optional string asset_id = 19;</code>
1779
+ * @return The bytes for assetId.
1780
+ */
1781
+ public com.google.protobuf.ByteString
1782
+ getAssetIdBytes() {
1783
+ java.lang.Object ref = assetId_;
1784
+ if (ref instanceof String) {
1785
+ com.google.protobuf.ByteString b =
1786
+ com.google.protobuf.ByteString.copyFromUtf8(
1787
+ (java.lang.String) ref);
1788
+ assetId_ = b;
1789
+ return b;
1790
+ } else {
1791
+ return (com.google.protobuf.ByteString) ref;
1792
+ }
1793
+ }
1794
+ /**
1795
+ * <pre>
1796
+ * Numeric ID of the asset in the on prem. It has to be a string to be compliant with the asset.proto model.
1797
+ * </pre>
1798
+ *
1799
+ * <code>optional string asset_id = 19;</code>
1800
+ * @param value The assetId to set.
1801
+ * @return This builder for chaining.
1802
+ */
1803
+ public Builder setAssetId(
1804
+ java.lang.String value) {
1805
+ if (value == null) { throw new NullPointerException(); }
1806
+ assetId_ = value;
1807
+ bitField0_ |= 0x00000001;
1808
+ onChanged();
1809
+ return this;
1810
+ }
1811
+ /**
1812
+ * <pre>
1813
+ * Numeric ID of the asset in the on prem. It has to be a string to be compliant with the asset.proto model.
1814
+ * </pre>
1815
+ *
1816
+ * <code>optional string asset_id = 19;</code>
1817
+ * @return This builder for chaining.
1818
+ */
1819
+ public Builder clearAssetId() {
1820
+ assetId_ = getDefaultInstance().getAssetId();
1821
+ bitField0_ = (bitField0_ & ~0x00000001);
1822
+ onChanged();
1823
+ return this;
1824
+ }
1825
+ /**
1826
+ * <pre>
1827
+ * Numeric ID of the asset in the on prem. It has to be a string to be compliant with the asset.proto model.
1828
+ * </pre>
1829
+ *
1830
+ * <code>optional string asset_id = 19;</code>
1831
+ * @param value The bytes for assetId to set.
1832
+ * @return This builder for chaining.
1833
+ */
1834
+ public Builder setAssetIdBytes(
1835
+ com.google.protobuf.ByteString value) {
1836
+ if (value == null) { throw new NullPointerException(); }
1837
+ checkByteStringIsUtf8(value);
1838
+ assetId_ = value;
1839
+ bitField0_ |= 0x00000001;
1840
+ onChanged();
1841
+ return this;
1842
+ }
1843
+
1471
1844
  private com.google.protobuf.Timestamp lastTried_;
1472
1845
  private com.google.protobuf.SingleFieldBuilderV3<
1473
1846
  com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder> lastTriedBuilder_;
@@ -1476,7 +1849,7 @@ private static final long serialVersionUID = 0L;
1476
1849
  * @return Whether the lastTried field is set.
1477
1850
  */
1478
1851
  public boolean hasLastTried() {
1479
- return ((bitField0_ & 0x00000001) != 0);
1852
+ return ((bitField0_ & 0x00000002) != 0);
1480
1853
  }
1481
1854
  /**
1482
1855
  * <code>optional .google.protobuf.Timestamp last_tried = 1;</code>
@@ -1501,7 +1874,7 @@ private static final long serialVersionUID = 0L;
1501
1874
  } else {
1502
1875
  lastTriedBuilder_.setMessage(value);
1503
1876
  }
1504
- bitField0_ |= 0x00000001;
1877
+ bitField0_ |= 0x00000002;
1505
1878
  onChanged();
1506
1879
  return this;
1507
1880
  }
@@ -1515,7 +1888,7 @@ private static final long serialVersionUID = 0L;
1515
1888
  } else {
1516
1889
  lastTriedBuilder_.setMessage(builderForValue.build());
1517
1890
  }
1518
- bitField0_ |= 0x00000001;
1891
+ bitField0_ |= 0x00000002;
1519
1892
  onChanged();
1520
1893
  return this;
1521
1894
  }
@@ -1524,7 +1897,7 @@ private static final long serialVersionUID = 0L;
1524
1897
  */
1525
1898
  public Builder mergeLastTried(com.google.protobuf.Timestamp value) {
1526
1899
  if (lastTriedBuilder_ == null) {
1527
- if (((bitField0_ & 0x00000001) != 0) &&
1900
+ if (((bitField0_ & 0x00000002) != 0) &&
1528
1901
  lastTried_ != null &&
1529
1902
  lastTried_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
1530
1903
  getLastTriedBuilder().mergeFrom(value);
@@ -1535,7 +1908,7 @@ private static final long serialVersionUID = 0L;
1535
1908
  lastTriedBuilder_.mergeFrom(value);
1536
1909
  }
1537
1910
  if (lastTried_ != null) {
1538
- bitField0_ |= 0x00000001;
1911
+ bitField0_ |= 0x00000002;
1539
1912
  onChanged();
1540
1913
  }
1541
1914
  return this;
@@ -1544,7 +1917,7 @@ private static final long serialVersionUID = 0L;
1544
1917
  * <code>optional .google.protobuf.Timestamp last_tried = 1;</code>
1545
1918
  */
1546
1919
  public Builder clearLastTried() {
1547
- bitField0_ = (bitField0_ & ~0x00000001);
1920
+ bitField0_ = (bitField0_ & ~0x00000002);
1548
1921
  lastTried_ = null;
1549
1922
  if (lastTriedBuilder_ != null) {
1550
1923
  lastTriedBuilder_.dispose();
@@ -1557,7 +1930,7 @@ private static final long serialVersionUID = 0L;
1557
1930
  * <code>optional .google.protobuf.Timestamp last_tried = 1;</code>
1558
1931
  */
1559
1932
  public com.google.protobuf.Timestamp.Builder getLastTriedBuilder() {
1560
- bitField0_ |= 0x00000001;
1933
+ bitField0_ |= 0x00000002;
1561
1934
  onChanged();
1562
1935
  return getLastTriedFieldBuilder().getBuilder();
1563
1936
  }
@@ -1597,7 +1970,7 @@ private static final long serialVersionUID = 0L;
1597
1970
  * @return Whether the lastActiveScan field is set.
1598
1971
  */
1599
1972
  public boolean hasLastActiveScan() {
1600
- return ((bitField0_ & 0x00000002) != 0);
1973
+ return ((bitField0_ & 0x00000004) != 0);
1601
1974
  }
1602
1975
  /**
1603
1976
  * <code>optional .google.protobuf.Timestamp last_active_scan = 2;</code>
@@ -1622,7 +1995,7 @@ private static final long serialVersionUID = 0L;
1622
1995
  } else {
1623
1996
  lastActiveScanBuilder_.setMessage(value);
1624
1997
  }
1625
- bitField0_ |= 0x00000002;
1998
+ bitField0_ |= 0x00000004;
1626
1999
  onChanged();
1627
2000
  return this;
1628
2001
  }
@@ -1636,7 +2009,7 @@ private static final long serialVersionUID = 0L;
1636
2009
  } else {
1637
2010
  lastActiveScanBuilder_.setMessage(builderForValue.build());
1638
2011
  }
1639
- bitField0_ |= 0x00000002;
2012
+ bitField0_ |= 0x00000004;
1640
2013
  onChanged();
1641
2014
  return this;
1642
2015
  }
@@ -1645,7 +2018,7 @@ private static final long serialVersionUID = 0L;
1645
2018
  */
1646
2019
  public Builder mergeLastActiveScan(com.google.protobuf.Timestamp value) {
1647
2020
  if (lastActiveScanBuilder_ == null) {
1648
- if (((bitField0_ & 0x00000002) != 0) &&
2021
+ if (((bitField0_ & 0x00000004) != 0) &&
1649
2022
  lastActiveScan_ != null &&
1650
2023
  lastActiveScan_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
1651
2024
  getLastActiveScanBuilder().mergeFrom(value);
@@ -1656,7 +2029,7 @@ private static final long serialVersionUID = 0L;
1656
2029
  lastActiveScanBuilder_.mergeFrom(value);
1657
2030
  }
1658
2031
  if (lastActiveScan_ != null) {
1659
- bitField0_ |= 0x00000002;
2032
+ bitField0_ |= 0x00000004;
1660
2033
  onChanged();
1661
2034
  }
1662
2035
  return this;
@@ -1665,7 +2038,7 @@ private static final long serialVersionUID = 0L;
1665
2038
  * <code>optional .google.protobuf.Timestamp last_active_scan = 2;</code>
1666
2039
  */
1667
2040
  public Builder clearLastActiveScan() {
1668
- bitField0_ = (bitField0_ & ~0x00000002);
2041
+ bitField0_ = (bitField0_ & ~0x00000004);
1669
2042
  lastActiveScan_ = null;
1670
2043
  if (lastActiveScanBuilder_ != null) {
1671
2044
  lastActiveScanBuilder_.dispose();
@@ -1678,7 +2051,7 @@ private static final long serialVersionUID = 0L;
1678
2051
  * <code>optional .google.protobuf.Timestamp last_active_scan = 2;</code>
1679
2052
  */
1680
2053
  public com.google.protobuf.Timestamp.Builder getLastActiveScanBuilder() {
1681
- bitField0_ |= 0x00000002;
2054
+ bitField0_ |= 0x00000004;
1682
2055
  onChanged();
1683
2056
  return getLastActiveScanFieldBuilder().getBuilder();
1684
2057
  }
@@ -1718,7 +2091,7 @@ private static final long serialVersionUID = 0L;
1718
2091
  * @return Whether the lastIpScan field is set.
1719
2092
  */
1720
2093
  public boolean hasLastIpScan() {
1721
- return ((bitField0_ & 0x00000004) != 0);
2094
+ return ((bitField0_ & 0x00000008) != 0);
1722
2095
  }
1723
2096
  /**
1724
2097
  * <code>optional .google.protobuf.Timestamp last_ip_scan = 3;</code>
@@ -1743,7 +2116,7 @@ private static final long serialVersionUID = 0L;
1743
2116
  } else {
1744
2117
  lastIpScanBuilder_.setMessage(value);
1745
2118
  }
1746
- bitField0_ |= 0x00000004;
2119
+ bitField0_ |= 0x00000008;
1747
2120
  onChanged();
1748
2121
  return this;
1749
2122
  }
@@ -1757,7 +2130,7 @@ private static final long serialVersionUID = 0L;
1757
2130
  } else {
1758
2131
  lastIpScanBuilder_.setMessage(builderForValue.build());
1759
2132
  }
1760
- bitField0_ |= 0x00000004;
2133
+ bitField0_ |= 0x00000008;
1761
2134
  onChanged();
1762
2135
  return this;
1763
2136
  }
@@ -1766,7 +2139,7 @@ private static final long serialVersionUID = 0L;
1766
2139
  */
1767
2140
  public Builder mergeLastIpScan(com.google.protobuf.Timestamp value) {
1768
2141
  if (lastIpScanBuilder_ == null) {
1769
- if (((bitField0_ & 0x00000004) != 0) &&
2142
+ if (((bitField0_ & 0x00000008) != 0) &&
1770
2143
  lastIpScan_ != null &&
1771
2144
  lastIpScan_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
1772
2145
  getLastIpScanBuilder().mergeFrom(value);
@@ -1777,7 +2150,7 @@ private static final long serialVersionUID = 0L;
1777
2150
  lastIpScanBuilder_.mergeFrom(value);
1778
2151
  }
1779
2152
  if (lastIpScan_ != null) {
1780
- bitField0_ |= 0x00000004;
2153
+ bitField0_ |= 0x00000008;
1781
2154
  onChanged();
1782
2155
  }
1783
2156
  return this;
@@ -1786,7 +2159,7 @@ private static final long serialVersionUID = 0L;
1786
2159
  * <code>optional .google.protobuf.Timestamp last_ip_scan = 3;</code>
1787
2160
  */
1788
2161
  public Builder clearLastIpScan() {
1789
- bitField0_ = (bitField0_ & ~0x00000004);
2162
+ bitField0_ = (bitField0_ & ~0x00000008);
1790
2163
  lastIpScan_ = null;
1791
2164
  if (lastIpScanBuilder_ != null) {
1792
2165
  lastIpScanBuilder_.dispose();
@@ -1799,7 +2172,7 @@ private static final long serialVersionUID = 0L;
1799
2172
  * <code>optional .google.protobuf.Timestamp last_ip_scan = 3;</code>
1800
2173
  */
1801
2174
  public com.google.protobuf.Timestamp.Builder getLastIpScanBuilder() {
1802
- bitField0_ |= 0x00000004;
2175
+ bitField0_ |= 0x00000008;
1803
2176
  onChanged();
1804
2177
  return getLastIpScanFieldBuilder().getBuilder();
1805
2178
  }
@@ -1839,7 +2212,7 @@ private static final long serialVersionUID = 0L;
1839
2212
  * @return Whether the lastSaved field is set.
1840
2213
  */
1841
2214
  public boolean hasLastSaved() {
1842
- return ((bitField0_ & 0x00000008) != 0);
2215
+ return ((bitField0_ & 0x00000010) != 0);
1843
2216
  }
1844
2217
  /**
1845
2218
  * <code>optional .google.protobuf.Timestamp last_saved = 4;</code>
@@ -1864,7 +2237,7 @@ private static final long serialVersionUID = 0L;
1864
2237
  } else {
1865
2238
  lastSavedBuilder_.setMessage(value);
1866
2239
  }
1867
- bitField0_ |= 0x00000008;
2240
+ bitField0_ |= 0x00000010;
1868
2241
  onChanged();
1869
2242
  return this;
1870
2243
  }
@@ -1878,7 +2251,7 @@ private static final long serialVersionUID = 0L;
1878
2251
  } else {
1879
2252
  lastSavedBuilder_.setMessage(builderForValue.build());
1880
2253
  }
1881
- bitField0_ |= 0x00000008;
2254
+ bitField0_ |= 0x00000010;
1882
2255
  onChanged();
1883
2256
  return this;
1884
2257
  }
@@ -1887,7 +2260,7 @@ private static final long serialVersionUID = 0L;
1887
2260
  */
1888
2261
  public Builder mergeLastSaved(com.google.protobuf.Timestamp value) {
1889
2262
  if (lastSavedBuilder_ == null) {
1890
- if (((bitField0_ & 0x00000008) != 0) &&
2263
+ if (((bitField0_ & 0x00000010) != 0) &&
1891
2264
  lastSaved_ != null &&
1892
2265
  lastSaved_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
1893
2266
  getLastSavedBuilder().mergeFrom(value);
@@ -1898,7 +2271,7 @@ private static final long serialVersionUID = 0L;
1898
2271
  lastSavedBuilder_.mergeFrom(value);
1899
2272
  }
1900
2273
  if (lastSaved_ != null) {
1901
- bitField0_ |= 0x00000008;
2274
+ bitField0_ |= 0x00000010;
1902
2275
  onChanged();
1903
2276
  }
1904
2277
  return this;
@@ -1907,7 +2280,7 @@ private static final long serialVersionUID = 0L;
1907
2280
  * <code>optional .google.protobuf.Timestamp last_saved = 4;</code>
1908
2281
  */
1909
2282
  public Builder clearLastSaved() {
1910
- bitField0_ = (bitField0_ & ~0x00000008);
2283
+ bitField0_ = (bitField0_ & ~0x00000010);
1911
2284
  lastSaved_ = null;
1912
2285
  if (lastSavedBuilder_ != null) {
1913
2286
  lastSavedBuilder_.dispose();
@@ -1920,7 +2293,7 @@ private static final long serialVersionUID = 0L;
1920
2293
  * <code>optional .google.protobuf.Timestamp last_saved = 4;</code>
1921
2294
  */
1922
2295
  public com.google.protobuf.Timestamp.Builder getLastSavedBuilder() {
1923
- bitField0_ |= 0x00000008;
2296
+ bitField0_ |= 0x00000010;
1924
2297
  onChanged();
1925
2298
  return getLastSavedFieldBuilder().getBuilder();
1926
2299
  }
@@ -1960,7 +2333,7 @@ private static final long serialVersionUID = 0L;
1960
2333
  * @return Whether the lastSccmScan field is set.
1961
2334
  */
1962
2335
  public boolean hasLastSccmScan() {
1963
- return ((bitField0_ & 0x00000010) != 0);
2336
+ return ((bitField0_ & 0x00000020) != 0);
1964
2337
  }
1965
2338
  /**
1966
2339
  * <code>optional .google.protobuf.Timestamp last_sccm_scan = 5;</code>
@@ -1985,7 +2358,7 @@ private static final long serialVersionUID = 0L;
1985
2358
  } else {
1986
2359
  lastSccmScanBuilder_.setMessage(value);
1987
2360
  }
1988
- bitField0_ |= 0x00000010;
2361
+ bitField0_ |= 0x00000020;
1989
2362
  onChanged();
1990
2363
  return this;
1991
2364
  }
@@ -1999,7 +2372,7 @@ private static final long serialVersionUID = 0L;
1999
2372
  } else {
2000
2373
  lastSccmScanBuilder_.setMessage(builderForValue.build());
2001
2374
  }
2002
- bitField0_ |= 0x00000010;
2375
+ bitField0_ |= 0x00000020;
2003
2376
  onChanged();
2004
2377
  return this;
2005
2378
  }
@@ -2008,7 +2381,7 @@ private static final long serialVersionUID = 0L;
2008
2381
  */
2009
2382
  public Builder mergeLastSccmScan(com.google.protobuf.Timestamp value) {
2010
2383
  if (lastSccmScanBuilder_ == null) {
2011
- if (((bitField0_ & 0x00000010) != 0) &&
2384
+ if (((bitField0_ & 0x00000020) != 0) &&
2012
2385
  lastSccmScan_ != null &&
2013
2386
  lastSccmScan_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
2014
2387
  getLastSccmScanBuilder().mergeFrom(value);
@@ -2019,7 +2392,7 @@ private static final long serialVersionUID = 0L;
2019
2392
  lastSccmScanBuilder_.mergeFrom(value);
2020
2393
  }
2021
2394
  if (lastSccmScan_ != null) {
2022
- bitField0_ |= 0x00000010;
2395
+ bitField0_ |= 0x00000020;
2023
2396
  onChanged();
2024
2397
  }
2025
2398
  return this;
@@ -2028,7 +2401,7 @@ private static final long serialVersionUID = 0L;
2028
2401
  * <code>optional .google.protobuf.Timestamp last_sccm_scan = 5;</code>
2029
2402
  */
2030
2403
  public Builder clearLastSccmScan() {
2031
- bitField0_ = (bitField0_ & ~0x00000010);
2404
+ bitField0_ = (bitField0_ & ~0x00000020);
2032
2405
  lastSccmScan_ = null;
2033
2406
  if (lastSccmScanBuilder_ != null) {
2034
2407
  lastSccmScanBuilder_.dispose();
@@ -2041,7 +2414,7 @@ private static final long serialVersionUID = 0L;
2041
2414
  * <code>optional .google.protobuf.Timestamp last_sccm_scan = 5;</code>
2042
2415
  */
2043
2416
  public com.google.protobuf.Timestamp.Builder getLastSccmScanBuilder() {
2044
- bitField0_ |= 0x00000010;
2417
+ bitField0_ |= 0x00000020;
2045
2418
  onChanged();
2046
2419
  return getLastSccmScanFieldBuilder().getBuilder();
2047
2420
  }
@@ -2081,7 +2454,7 @@ private static final long serialVersionUID = 0L;
2081
2454
  * @return Whether the lastLsAgent field is set.
2082
2455
  */
2083
2456
  public boolean hasLastLsAgent() {
2084
- return ((bitField0_ & 0x00000020) != 0);
2457
+ return ((bitField0_ & 0x00000040) != 0);
2085
2458
  }
2086
2459
  /**
2087
2460
  * <code>optional .google.protobuf.Timestamp last_ls_agent = 6;</code>
@@ -2106,7 +2479,7 @@ private static final long serialVersionUID = 0L;
2106
2479
  } else {
2107
2480
  lastLsAgentBuilder_.setMessage(value);
2108
2481
  }
2109
- bitField0_ |= 0x00000020;
2482
+ bitField0_ |= 0x00000040;
2110
2483
  onChanged();
2111
2484
  return this;
2112
2485
  }
@@ -2120,7 +2493,7 @@ private static final long serialVersionUID = 0L;
2120
2493
  } else {
2121
2494
  lastLsAgentBuilder_.setMessage(builderForValue.build());
2122
2495
  }
2123
- bitField0_ |= 0x00000020;
2496
+ bitField0_ |= 0x00000040;
2124
2497
  onChanged();
2125
2498
  return this;
2126
2499
  }
@@ -2129,7 +2502,7 @@ private static final long serialVersionUID = 0L;
2129
2502
  */
2130
2503
  public Builder mergeLastLsAgent(com.google.protobuf.Timestamp value) {
2131
2504
  if (lastLsAgentBuilder_ == null) {
2132
- if (((bitField0_ & 0x00000020) != 0) &&
2505
+ if (((bitField0_ & 0x00000040) != 0) &&
2133
2506
  lastLsAgent_ != null &&
2134
2507
  lastLsAgent_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
2135
2508
  getLastLsAgentBuilder().mergeFrom(value);
@@ -2140,7 +2513,7 @@ private static final long serialVersionUID = 0L;
2140
2513
  lastLsAgentBuilder_.mergeFrom(value);
2141
2514
  }
2142
2515
  if (lastLsAgent_ != null) {
2143
- bitField0_ |= 0x00000020;
2516
+ bitField0_ |= 0x00000040;
2144
2517
  onChanged();
2145
2518
  }
2146
2519
  return this;
@@ -2149,7 +2522,7 @@ private static final long serialVersionUID = 0L;
2149
2522
  * <code>optional .google.protobuf.Timestamp last_ls_agent = 6;</code>
2150
2523
  */
2151
2524
  public Builder clearLastLsAgent() {
2152
- bitField0_ = (bitField0_ & ~0x00000020);
2525
+ bitField0_ = (bitField0_ & ~0x00000040);
2153
2526
  lastLsAgent_ = null;
2154
2527
  if (lastLsAgentBuilder_ != null) {
2155
2528
  lastLsAgentBuilder_.dispose();
@@ -2162,7 +2535,7 @@ private static final long serialVersionUID = 0L;
2162
2535
  * <code>optional .google.protobuf.Timestamp last_ls_agent = 6;</code>
2163
2536
  */
2164
2537
  public com.google.protobuf.Timestamp.Builder getLastLsAgentBuilder() {
2165
- bitField0_ |= 0x00000020;
2538
+ bitField0_ |= 0x00000040;
2166
2539
  onChanged();
2167
2540
  return getLastLsAgentFieldBuilder().getBuilder();
2168
2541
  }
@@ -2202,7 +2575,7 @@ private static final long serialVersionUID = 0L;
2202
2575
  * @return Whether the lastLsFallBack field is set.
2203
2576
  */
2204
2577
  public boolean hasLastLsFallBack() {
2205
- return ((bitField0_ & 0x00000040) != 0);
2578
+ return ((bitField0_ & 0x00000080) != 0);
2206
2579
  }
2207
2580
  /**
2208
2581
  * <code>optional .google.protobuf.Timestamp last_ls_fall_back = 7;</code>
@@ -2227,7 +2600,7 @@ private static final long serialVersionUID = 0L;
2227
2600
  } else {
2228
2601
  lastLsFallBackBuilder_.setMessage(value);
2229
2602
  }
2230
- bitField0_ |= 0x00000040;
2603
+ bitField0_ |= 0x00000080;
2231
2604
  onChanged();
2232
2605
  return this;
2233
2606
  }
@@ -2241,7 +2614,7 @@ private static final long serialVersionUID = 0L;
2241
2614
  } else {
2242
2615
  lastLsFallBackBuilder_.setMessage(builderForValue.build());
2243
2616
  }
2244
- bitField0_ |= 0x00000040;
2617
+ bitField0_ |= 0x00000080;
2245
2618
  onChanged();
2246
2619
  return this;
2247
2620
  }
@@ -2250,7 +2623,7 @@ private static final long serialVersionUID = 0L;
2250
2623
  */
2251
2624
  public Builder mergeLastLsFallBack(com.google.protobuf.Timestamp value) {
2252
2625
  if (lastLsFallBackBuilder_ == null) {
2253
- if (((bitField0_ & 0x00000040) != 0) &&
2626
+ if (((bitField0_ & 0x00000080) != 0) &&
2254
2627
  lastLsFallBack_ != null &&
2255
2628
  lastLsFallBack_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
2256
2629
  getLastLsFallBackBuilder().mergeFrom(value);
@@ -2261,7 +2634,7 @@ private static final long serialVersionUID = 0L;
2261
2634
  lastLsFallBackBuilder_.mergeFrom(value);
2262
2635
  }
2263
2636
  if (lastLsFallBack_ != null) {
2264
- bitField0_ |= 0x00000040;
2637
+ bitField0_ |= 0x00000080;
2265
2638
  onChanged();
2266
2639
  }
2267
2640
  return this;
@@ -2270,7 +2643,7 @@ private static final long serialVersionUID = 0L;
2270
2643
  * <code>optional .google.protobuf.Timestamp last_ls_fall_back = 7;</code>
2271
2644
  */
2272
2645
  public Builder clearLastLsFallBack() {
2273
- bitField0_ = (bitField0_ & ~0x00000040);
2646
+ bitField0_ = (bitField0_ & ~0x00000080);
2274
2647
  lastLsFallBack_ = null;
2275
2648
  if (lastLsFallBackBuilder_ != null) {
2276
2649
  lastLsFallBackBuilder_.dispose();
@@ -2283,7 +2656,7 @@ private static final long serialVersionUID = 0L;
2283
2656
  * <code>optional .google.protobuf.Timestamp last_ls_fall_back = 7;</code>
2284
2657
  */
2285
2658
  public com.google.protobuf.Timestamp.Builder getLastLsFallBackBuilder() {
2286
- bitField0_ |= 0x00000040;
2659
+ bitField0_ |= 0x00000080;
2287
2660
  onChanged();
2288
2661
  return getLastLsFallBackFieldBuilder().getBuilder();
2289
2662
  }
@@ -2323,7 +2696,7 @@ private static final long serialVersionUID = 0L;
2323
2696
  * @return Whether the lastWorkGroupScan field is set.
2324
2697
  */
2325
2698
  public boolean hasLastWorkGroupScan() {
2326
- return ((bitField0_ & 0x00000080) != 0);
2699
+ return ((bitField0_ & 0x00000100) != 0);
2327
2700
  }
2328
2701
  /**
2329
2702
  * <code>optional .google.protobuf.Timestamp last_work_group_scan = 8;</code>
@@ -2348,7 +2721,7 @@ private static final long serialVersionUID = 0L;
2348
2721
  } else {
2349
2722
  lastWorkGroupScanBuilder_.setMessage(value);
2350
2723
  }
2351
- bitField0_ |= 0x00000080;
2724
+ bitField0_ |= 0x00000100;
2352
2725
  onChanged();
2353
2726
  return this;
2354
2727
  }
@@ -2362,7 +2735,7 @@ private static final long serialVersionUID = 0L;
2362
2735
  } else {
2363
2736
  lastWorkGroupScanBuilder_.setMessage(builderForValue.build());
2364
2737
  }
2365
- bitField0_ |= 0x00000080;
2738
+ bitField0_ |= 0x00000100;
2366
2739
  onChanged();
2367
2740
  return this;
2368
2741
  }
@@ -2371,7 +2744,7 @@ private static final long serialVersionUID = 0L;
2371
2744
  */
2372
2745
  public Builder mergeLastWorkGroupScan(com.google.protobuf.Timestamp value) {
2373
2746
  if (lastWorkGroupScanBuilder_ == null) {
2374
- if (((bitField0_ & 0x00000080) != 0) &&
2747
+ if (((bitField0_ & 0x00000100) != 0) &&
2375
2748
  lastWorkGroupScan_ != null &&
2376
2749
  lastWorkGroupScan_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
2377
2750
  getLastWorkGroupScanBuilder().mergeFrom(value);
@@ -2382,7 +2755,7 @@ private static final long serialVersionUID = 0L;
2382
2755
  lastWorkGroupScanBuilder_.mergeFrom(value);
2383
2756
  }
2384
2757
  if (lastWorkGroupScan_ != null) {
2385
- bitField0_ |= 0x00000080;
2758
+ bitField0_ |= 0x00000100;
2386
2759
  onChanged();
2387
2760
  }
2388
2761
  return this;
@@ -2391,7 +2764,7 @@ private static final long serialVersionUID = 0L;
2391
2764
  * <code>optional .google.protobuf.Timestamp last_work_group_scan = 8;</code>
2392
2765
  */
2393
2766
  public Builder clearLastWorkGroupScan() {
2394
- bitField0_ = (bitField0_ & ~0x00000080);
2767
+ bitField0_ = (bitField0_ & ~0x00000100);
2395
2768
  lastWorkGroupScan_ = null;
2396
2769
  if (lastWorkGroupScanBuilder_ != null) {
2397
2770
  lastWorkGroupScanBuilder_.dispose();
@@ -2404,7 +2777,7 @@ private static final long serialVersionUID = 0L;
2404
2777
  * <code>optional .google.protobuf.Timestamp last_work_group_scan = 8;</code>
2405
2778
  */
2406
2779
  public com.google.protobuf.Timestamp.Builder getLastWorkGroupScanBuilder() {
2407
- bitField0_ |= 0x00000080;
2780
+ bitField0_ |= 0x00000100;
2408
2781
  onChanged();
2409
2782
  return getLastWorkGroupScanFieldBuilder().getBuilder();
2410
2783
  }
@@ -2444,7 +2817,7 @@ private static final long serialVersionUID = 0L;
2444
2817
  * @return Whether the lastAssetRadarScan field is set.
2445
2818
  */
2446
2819
  public boolean hasLastAssetRadarScan() {
2447
- return ((bitField0_ & 0x00000100) != 0);
2820
+ return ((bitField0_ & 0x00000200) != 0);
2448
2821
  }
2449
2822
  /**
2450
2823
  * <code>optional .google.protobuf.Timestamp last_asset_radar_scan = 9;</code>
@@ -2469,7 +2842,7 @@ private static final long serialVersionUID = 0L;
2469
2842
  } else {
2470
2843
  lastAssetRadarScanBuilder_.setMessage(value);
2471
2844
  }
2472
- bitField0_ |= 0x00000100;
2845
+ bitField0_ |= 0x00000200;
2473
2846
  onChanged();
2474
2847
  return this;
2475
2848
  }
@@ -2483,7 +2856,7 @@ private static final long serialVersionUID = 0L;
2483
2856
  } else {
2484
2857
  lastAssetRadarScanBuilder_.setMessage(builderForValue.build());
2485
2858
  }
2486
- bitField0_ |= 0x00000100;
2859
+ bitField0_ |= 0x00000200;
2487
2860
  onChanged();
2488
2861
  return this;
2489
2862
  }
@@ -2492,7 +2865,7 @@ private static final long serialVersionUID = 0L;
2492
2865
  */
2493
2866
  public Builder mergeLastAssetRadarScan(com.google.protobuf.Timestamp value) {
2494
2867
  if (lastAssetRadarScanBuilder_ == null) {
2495
- if (((bitField0_ & 0x00000100) != 0) &&
2868
+ if (((bitField0_ & 0x00000200) != 0) &&
2496
2869
  lastAssetRadarScan_ != null &&
2497
2870
  lastAssetRadarScan_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
2498
2871
  getLastAssetRadarScanBuilder().mergeFrom(value);
@@ -2503,7 +2876,7 @@ private static final long serialVersionUID = 0L;
2503
2876
  lastAssetRadarScanBuilder_.mergeFrom(value);
2504
2877
  }
2505
2878
  if (lastAssetRadarScan_ != null) {
2506
- bitField0_ |= 0x00000100;
2879
+ bitField0_ |= 0x00000200;
2507
2880
  onChanged();
2508
2881
  }
2509
2882
  return this;
@@ -2512,7 +2885,7 @@ private static final long serialVersionUID = 0L;
2512
2885
  * <code>optional .google.protobuf.Timestamp last_asset_radar_scan = 9;</code>
2513
2886
  */
2514
2887
  public Builder clearLastAssetRadarScan() {
2515
- bitField0_ = (bitField0_ & ~0x00000100);
2888
+ bitField0_ = (bitField0_ & ~0x00000200);
2516
2889
  lastAssetRadarScan_ = null;
2517
2890
  if (lastAssetRadarScanBuilder_ != null) {
2518
2891
  lastAssetRadarScanBuilder_.dispose();
@@ -2525,7 +2898,7 @@ private static final long serialVersionUID = 0L;
2525
2898
  * <code>optional .google.protobuf.Timestamp last_asset_radar_scan = 9;</code>
2526
2899
  */
2527
2900
  public com.google.protobuf.Timestamp.Builder getLastAssetRadarScanBuilder() {
2528
- bitField0_ |= 0x00000100;
2901
+ bitField0_ |= 0x00000200;
2529
2902
  onChanged();
2530
2903
  return getLastAssetRadarScanFieldBuilder().getBuilder();
2531
2904
  }
@@ -2565,7 +2938,7 @@ private static final long serialVersionUID = 0L;
2565
2938
  * @return Whether the lastPerformanceScan field is set.
2566
2939
  */
2567
2940
  public boolean hasLastPerformanceScan() {
2568
- return ((bitField0_ & 0x00000200) != 0);
2941
+ return ((bitField0_ & 0x00000400) != 0);
2569
2942
  }
2570
2943
  /**
2571
2944
  * <code>optional .google.protobuf.Timestamp last_performance_scan = 10;</code>
@@ -2590,7 +2963,7 @@ private static final long serialVersionUID = 0L;
2590
2963
  } else {
2591
2964
  lastPerformanceScanBuilder_.setMessage(value);
2592
2965
  }
2593
- bitField0_ |= 0x00000200;
2966
+ bitField0_ |= 0x00000400;
2594
2967
  onChanged();
2595
2968
  return this;
2596
2969
  }
@@ -2604,7 +2977,7 @@ private static final long serialVersionUID = 0L;
2604
2977
  } else {
2605
2978
  lastPerformanceScanBuilder_.setMessage(builderForValue.build());
2606
2979
  }
2607
- bitField0_ |= 0x00000200;
2980
+ bitField0_ |= 0x00000400;
2608
2981
  onChanged();
2609
2982
  return this;
2610
2983
  }
@@ -2613,7 +2986,7 @@ private static final long serialVersionUID = 0L;
2613
2986
  */
2614
2987
  public Builder mergeLastPerformanceScan(com.google.protobuf.Timestamp value) {
2615
2988
  if (lastPerformanceScanBuilder_ == null) {
2616
- if (((bitField0_ & 0x00000200) != 0) &&
2989
+ if (((bitField0_ & 0x00000400) != 0) &&
2617
2990
  lastPerformanceScan_ != null &&
2618
2991
  lastPerformanceScan_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
2619
2992
  getLastPerformanceScanBuilder().mergeFrom(value);
@@ -2624,7 +2997,7 @@ private static final long serialVersionUID = 0L;
2624
2997
  lastPerformanceScanBuilder_.mergeFrom(value);
2625
2998
  }
2626
2999
  if (lastPerformanceScan_ != null) {
2627
- bitField0_ |= 0x00000200;
3000
+ bitField0_ |= 0x00000400;
2628
3001
  onChanged();
2629
3002
  }
2630
3003
  return this;
@@ -2633,7 +3006,7 @@ private static final long serialVersionUID = 0L;
2633
3006
  * <code>optional .google.protobuf.Timestamp last_performance_scan = 10;</code>
2634
3007
  */
2635
3008
  public Builder clearLastPerformanceScan() {
2636
- bitField0_ = (bitField0_ & ~0x00000200);
3009
+ bitField0_ = (bitField0_ & ~0x00000400);
2637
3010
  lastPerformanceScan_ = null;
2638
3011
  if (lastPerformanceScanBuilder_ != null) {
2639
3012
  lastPerformanceScanBuilder_.dispose();
@@ -2646,7 +3019,7 @@ private static final long serialVersionUID = 0L;
2646
3019
  * <code>optional .google.protobuf.Timestamp last_performance_scan = 10;</code>
2647
3020
  */
2648
3021
  public com.google.protobuf.Timestamp.Builder getLastPerformanceScanBuilder() {
2649
- bitField0_ |= 0x00000200;
3022
+ bitField0_ |= 0x00000400;
2650
3023
  onChanged();
2651
3024
  return getLastPerformanceScanFieldBuilder().getBuilder();
2652
3025
  }
@@ -2686,7 +3059,7 @@ private static final long serialVersionUID = 0L;
2686
3059
  * @return Whether the lastLsPush field is set.
2687
3060
  */
2688
3061
  public boolean hasLastLsPush() {
2689
- return ((bitField0_ & 0x00000400) != 0);
3062
+ return ((bitField0_ & 0x00000800) != 0);
2690
3063
  }
2691
3064
  /**
2692
3065
  * <code>optional .google.protobuf.Timestamp last_ls_push = 11;</code>
@@ -2711,7 +3084,7 @@ private static final long serialVersionUID = 0L;
2711
3084
  } else {
2712
3085
  lastLsPushBuilder_.setMessage(value);
2713
3086
  }
2714
- bitField0_ |= 0x00000400;
3087
+ bitField0_ |= 0x00000800;
2715
3088
  onChanged();
2716
3089
  return this;
2717
3090
  }
@@ -2725,7 +3098,7 @@ private static final long serialVersionUID = 0L;
2725
3098
  } else {
2726
3099
  lastLsPushBuilder_.setMessage(builderForValue.build());
2727
3100
  }
2728
- bitField0_ |= 0x00000400;
3101
+ bitField0_ |= 0x00000800;
2729
3102
  onChanged();
2730
3103
  return this;
2731
3104
  }
@@ -2734,7 +3107,7 @@ private static final long serialVersionUID = 0L;
2734
3107
  */
2735
3108
  public Builder mergeLastLsPush(com.google.protobuf.Timestamp value) {
2736
3109
  if (lastLsPushBuilder_ == null) {
2737
- if (((bitField0_ & 0x00000400) != 0) &&
3110
+ if (((bitField0_ & 0x00000800) != 0) &&
2738
3111
  lastLsPush_ != null &&
2739
3112
  lastLsPush_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
2740
3113
  getLastLsPushBuilder().mergeFrom(value);
@@ -2745,7 +3118,7 @@ private static final long serialVersionUID = 0L;
2745
3118
  lastLsPushBuilder_.mergeFrom(value);
2746
3119
  }
2747
3120
  if (lastLsPush_ != null) {
2748
- bitField0_ |= 0x00000400;
3121
+ bitField0_ |= 0x00000800;
2749
3122
  onChanged();
2750
3123
  }
2751
3124
  return this;
@@ -2754,7 +3127,7 @@ private static final long serialVersionUID = 0L;
2754
3127
  * <code>optional .google.protobuf.Timestamp last_ls_push = 11;</code>
2755
3128
  */
2756
3129
  public Builder clearLastLsPush() {
2757
- bitField0_ = (bitField0_ & ~0x00000400);
3130
+ bitField0_ = (bitField0_ & ~0x00000800);
2758
3131
  lastLsPush_ = null;
2759
3132
  if (lastLsPushBuilder_ != null) {
2760
3133
  lastLsPushBuilder_.dispose();
@@ -2767,7 +3140,7 @@ private static final long serialVersionUID = 0L;
2767
3140
  * <code>optional .google.protobuf.Timestamp last_ls_push = 11;</code>
2768
3141
  */
2769
3142
  public com.google.protobuf.Timestamp.Builder getLastLsPushBuilder() {
2770
- bitField0_ |= 0x00000400;
3143
+ bitField0_ |= 0x00000800;
2771
3144
  onChanged();
2772
3145
  return getLastLsPushFieldBuilder().getBuilder();
2773
3146
  }
@@ -2807,7 +3180,7 @@ private static final long serialVersionUID = 0L;
2807
3180
  * @return Whether the lastScheduled field is set.
2808
3181
  */
2809
3182
  public boolean hasLastScheduled() {
2810
- return ((bitField0_ & 0x00000800) != 0);
3183
+ return ((bitField0_ & 0x00001000) != 0);
2811
3184
  }
2812
3185
  /**
2813
3186
  * <code>optional .google.protobuf.Timestamp last_scheduled = 12;</code>
@@ -2832,7 +3205,7 @@ private static final long serialVersionUID = 0L;
2832
3205
  } else {
2833
3206
  lastScheduledBuilder_.setMessage(value);
2834
3207
  }
2835
- bitField0_ |= 0x00000800;
3208
+ bitField0_ |= 0x00001000;
2836
3209
  onChanged();
2837
3210
  return this;
2838
3211
  }
@@ -2846,7 +3219,7 @@ private static final long serialVersionUID = 0L;
2846
3219
  } else {
2847
3220
  lastScheduledBuilder_.setMessage(builderForValue.build());
2848
3221
  }
2849
- bitField0_ |= 0x00000800;
3222
+ bitField0_ |= 0x00001000;
2850
3223
  onChanged();
2851
3224
  return this;
2852
3225
  }
@@ -2855,7 +3228,7 @@ private static final long serialVersionUID = 0L;
2855
3228
  */
2856
3229
  public Builder mergeLastScheduled(com.google.protobuf.Timestamp value) {
2857
3230
  if (lastScheduledBuilder_ == null) {
2858
- if (((bitField0_ & 0x00000800) != 0) &&
3231
+ if (((bitField0_ & 0x00001000) != 0) &&
2859
3232
  lastScheduled_ != null &&
2860
3233
  lastScheduled_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
2861
3234
  getLastScheduledBuilder().mergeFrom(value);
@@ -2866,7 +3239,7 @@ private static final long serialVersionUID = 0L;
2866
3239
  lastScheduledBuilder_.mergeFrom(value);
2867
3240
  }
2868
3241
  if (lastScheduled_ != null) {
2869
- bitField0_ |= 0x00000800;
3242
+ bitField0_ |= 0x00001000;
2870
3243
  onChanged();
2871
3244
  }
2872
3245
  return this;
@@ -2875,7 +3248,7 @@ private static final long serialVersionUID = 0L;
2875
3248
  * <code>optional .google.protobuf.Timestamp last_scheduled = 12;</code>
2876
3249
  */
2877
3250
  public Builder clearLastScheduled() {
2878
- bitField0_ = (bitField0_ & ~0x00000800);
3251
+ bitField0_ = (bitField0_ & ~0x00001000);
2879
3252
  lastScheduled_ = null;
2880
3253
  if (lastScheduledBuilder_ != null) {
2881
3254
  lastScheduledBuilder_.dispose();
@@ -2888,7 +3261,7 @@ private static final long serialVersionUID = 0L;
2888
3261
  * <code>optional .google.protobuf.Timestamp last_scheduled = 12;</code>
2889
3262
  */
2890
3263
  public com.google.protobuf.Timestamp.Builder getLastScheduledBuilder() {
2891
- bitField0_ |= 0x00000800;
3264
+ bitField0_ |= 0x00001000;
2892
3265
  onChanged();
2893
3266
  return getLastScheduledFieldBuilder().getBuilder();
2894
3267
  }
@@ -2928,7 +3301,7 @@ private static final long serialVersionUID = 0L;
2928
3301
  * @return Whether the lastTriggered field is set.
2929
3302
  */
2930
3303
  public boolean hasLastTriggered() {
2931
- return ((bitField0_ & 0x00001000) != 0);
3304
+ return ((bitField0_ & 0x00002000) != 0);
2932
3305
  }
2933
3306
  /**
2934
3307
  * <code>optional .google.protobuf.Timestamp last_triggered = 13;</code>
@@ -2953,7 +3326,7 @@ private static final long serialVersionUID = 0L;
2953
3326
  } else {
2954
3327
  lastTriggeredBuilder_.setMessage(value);
2955
3328
  }
2956
- bitField0_ |= 0x00001000;
3329
+ bitField0_ |= 0x00002000;
2957
3330
  onChanged();
2958
3331
  return this;
2959
3332
  }
@@ -2967,7 +3340,7 @@ private static final long serialVersionUID = 0L;
2967
3340
  } else {
2968
3341
  lastTriggeredBuilder_.setMessage(builderForValue.build());
2969
3342
  }
2970
- bitField0_ |= 0x00001000;
3343
+ bitField0_ |= 0x00002000;
2971
3344
  onChanged();
2972
3345
  return this;
2973
3346
  }
@@ -2976,7 +3349,7 @@ private static final long serialVersionUID = 0L;
2976
3349
  */
2977
3350
  public Builder mergeLastTriggered(com.google.protobuf.Timestamp value) {
2978
3351
  if (lastTriggeredBuilder_ == null) {
2979
- if (((bitField0_ & 0x00001000) != 0) &&
3352
+ if (((bitField0_ & 0x00002000) != 0) &&
2980
3353
  lastTriggered_ != null &&
2981
3354
  lastTriggered_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
2982
3355
  getLastTriggeredBuilder().mergeFrom(value);
@@ -2987,7 +3360,7 @@ private static final long serialVersionUID = 0L;
2987
3360
  lastTriggeredBuilder_.mergeFrom(value);
2988
3361
  }
2989
3362
  if (lastTriggered_ != null) {
2990
- bitField0_ |= 0x00001000;
3363
+ bitField0_ |= 0x00002000;
2991
3364
  onChanged();
2992
3365
  }
2993
3366
  return this;
@@ -2996,7 +3369,7 @@ private static final long serialVersionUID = 0L;
2996
3369
  * <code>optional .google.protobuf.Timestamp last_triggered = 13;</code>
2997
3370
  */
2998
3371
  public Builder clearLastTriggered() {
2999
- bitField0_ = (bitField0_ & ~0x00001000);
3372
+ bitField0_ = (bitField0_ & ~0x00002000);
3000
3373
  lastTriggered_ = null;
3001
3374
  if (lastTriggeredBuilder_ != null) {
3002
3375
  lastTriggeredBuilder_.dispose();
@@ -3009,7 +3382,7 @@ private static final long serialVersionUID = 0L;
3009
3382
  * <code>optional .google.protobuf.Timestamp last_triggered = 13;</code>
3010
3383
  */
3011
3384
  public com.google.protobuf.Timestamp.Builder getLastTriggeredBuilder() {
3012
- bitField0_ |= 0x00001000;
3385
+ bitField0_ |= 0x00002000;
3013
3386
  onChanged();
3014
3387
  return getLastTriggeredFieldBuilder().getBuilder();
3015
3388
  }
@@ -3049,7 +3422,7 @@ private static final long serialVersionUID = 0L;
3049
3422
  * @return Whether the lastLsAgentDirect field is set.
3050
3423
  */
3051
3424
  public boolean hasLastLsAgentDirect() {
3052
- return ((bitField0_ & 0x00002000) != 0);
3425
+ return ((bitField0_ & 0x00004000) != 0);
3053
3426
  }
3054
3427
  /**
3055
3428
  * <code>optional .google.protobuf.Timestamp last_ls_agent_direct = 14;</code>
@@ -3074,7 +3447,7 @@ private static final long serialVersionUID = 0L;
3074
3447
  } else {
3075
3448
  lastLsAgentDirectBuilder_.setMessage(value);
3076
3449
  }
3077
- bitField0_ |= 0x00002000;
3450
+ bitField0_ |= 0x00004000;
3078
3451
  onChanged();
3079
3452
  return this;
3080
3453
  }
@@ -3088,7 +3461,7 @@ private static final long serialVersionUID = 0L;
3088
3461
  } else {
3089
3462
  lastLsAgentDirectBuilder_.setMessage(builderForValue.build());
3090
3463
  }
3091
- bitField0_ |= 0x00002000;
3464
+ bitField0_ |= 0x00004000;
3092
3465
  onChanged();
3093
3466
  return this;
3094
3467
  }
@@ -3097,7 +3470,7 @@ private static final long serialVersionUID = 0L;
3097
3470
  */
3098
3471
  public Builder mergeLastLsAgentDirect(com.google.protobuf.Timestamp value) {
3099
3472
  if (lastLsAgentDirectBuilder_ == null) {
3100
- if (((bitField0_ & 0x00002000) != 0) &&
3473
+ if (((bitField0_ & 0x00004000) != 0) &&
3101
3474
  lastLsAgentDirect_ != null &&
3102
3475
  lastLsAgentDirect_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
3103
3476
  getLastLsAgentDirectBuilder().mergeFrom(value);
@@ -3108,7 +3481,7 @@ private static final long serialVersionUID = 0L;
3108
3481
  lastLsAgentDirectBuilder_.mergeFrom(value);
3109
3482
  }
3110
3483
  if (lastLsAgentDirect_ != null) {
3111
- bitField0_ |= 0x00002000;
3484
+ bitField0_ |= 0x00004000;
3112
3485
  onChanged();
3113
3486
  }
3114
3487
  return this;
@@ -3117,7 +3490,7 @@ private static final long serialVersionUID = 0L;
3117
3490
  * <code>optional .google.protobuf.Timestamp last_ls_agent_direct = 14;</code>
3118
3491
  */
3119
3492
  public Builder clearLastLsAgentDirect() {
3120
- bitField0_ = (bitField0_ & ~0x00002000);
3493
+ bitField0_ = (bitField0_ & ~0x00004000);
3121
3494
  lastLsAgentDirect_ = null;
3122
3495
  if (lastLsAgentDirectBuilder_ != null) {
3123
3496
  lastLsAgentDirectBuilder_.dispose();
@@ -3130,7 +3503,7 @@ private static final long serialVersionUID = 0L;
3130
3503
  * <code>optional .google.protobuf.Timestamp last_ls_agent_direct = 14;</code>
3131
3504
  */
3132
3505
  public com.google.protobuf.Timestamp.Builder getLastLsAgentDirectBuilder() {
3133
- bitField0_ |= 0x00002000;
3506
+ bitField0_ |= 0x00004000;
3134
3507
  onChanged();
3135
3508
  return getLastLsAgentDirectFieldBuilder().getBuilder();
3136
3509
  }
@@ -3174,7 +3547,7 @@ private static final long serialVersionUID = 0L;
3174
3547
  * @return Whether the custom field is set.
3175
3548
  */
3176
3549
  public boolean hasCustom() {
3177
- return ((bitField0_ & 0x00004000) != 0);
3550
+ return ((bitField0_ & 0x00008000) != 0);
3178
3551
  }
3179
3552
  /**
3180
3553
  * <pre>
@@ -3207,7 +3580,7 @@ private static final long serialVersionUID = 0L;
3207
3580
  } else {
3208
3581
  customBuilder_.setMessage(value);
3209
3582
  }
3210
- bitField0_ |= 0x00004000;
3583
+ bitField0_ |= 0x00008000;
3211
3584
  onChanged();
3212
3585
  return this;
3213
3586
  }
@@ -3225,7 +3598,7 @@ private static final long serialVersionUID = 0L;
3225
3598
  } else {
3226
3599
  customBuilder_.setMessage(builderForValue.build());
3227
3600
  }
3228
- bitField0_ |= 0x00004000;
3601
+ bitField0_ |= 0x00008000;
3229
3602
  onChanged();
3230
3603
  return this;
3231
3604
  }
@@ -3238,7 +3611,7 @@ private static final long serialVersionUID = 0L;
3238
3611
  */
3239
3612
  public Builder mergeCustom(com.lansweeper.dp.outbound.v1.AssetCustom value) {
3240
3613
  if (customBuilder_ == null) {
3241
- if (((bitField0_ & 0x00004000) != 0) &&
3614
+ if (((bitField0_ & 0x00008000) != 0) &&
3242
3615
  custom_ != null &&
3243
3616
  custom_ != com.lansweeper.dp.outbound.v1.AssetCustom.getDefaultInstance()) {
3244
3617
  getCustomBuilder().mergeFrom(value);
@@ -3249,7 +3622,7 @@ private static final long serialVersionUID = 0L;
3249
3622
  customBuilder_.mergeFrom(value);
3250
3623
  }
3251
3624
  if (custom_ != null) {
3252
- bitField0_ |= 0x00004000;
3625
+ bitField0_ |= 0x00008000;
3253
3626
  onChanged();
3254
3627
  }
3255
3628
  return this;
@@ -3262,7 +3635,7 @@ private static final long serialVersionUID = 0L;
3262
3635
  * <code>optional .com.lansweeper.dp.outbound.v1.AssetCustom custom = 15;</code>
3263
3636
  */
3264
3637
  public Builder clearCustom() {
3265
- bitField0_ = (bitField0_ & ~0x00004000);
3638
+ bitField0_ = (bitField0_ & ~0x00008000);
3266
3639
  custom_ = null;
3267
3640
  if (customBuilder_ != null) {
3268
3641
  customBuilder_.dispose();
@@ -3279,7 +3652,7 @@ private static final long serialVersionUID = 0L;
3279
3652
  * <code>optional .com.lansweeper.dp.outbound.v1.AssetCustom custom = 15;</code>
3280
3653
  */
3281
3654
  public com.lansweeper.dp.outbound.v1.AssetCustom.Builder getCustomBuilder() {
3282
- bitField0_ |= 0x00004000;
3655
+ bitField0_ |= 0x00008000;
3283
3656
  onChanged();
3284
3657
  return getCustomFieldBuilder().getBuilder();
3285
3658
  }
@@ -3322,9 +3695,9 @@ private static final long serialVersionUID = 0L;
3322
3695
  private java.util.List<com.lansweeper.dp.outbound.v1.AssetGroupLink> groupLink_ =
3323
3696
  java.util.Collections.emptyList();
3324
3697
  private void ensureGroupLinkIsMutable() {
3325
- if (!((bitField0_ & 0x00008000) != 0)) {
3698
+ if (!((bitField0_ & 0x00010000) != 0)) {
3326
3699
  groupLink_ = new java.util.ArrayList<com.lansweeper.dp.outbound.v1.AssetGroupLink>(groupLink_);
3327
- bitField0_ |= 0x00008000;
3700
+ bitField0_ |= 0x00010000;
3328
3701
  }
3329
3702
  }
3330
3703
 
@@ -3518,7 +3891,7 @@ private static final long serialVersionUID = 0L;
3518
3891
  public Builder clearGroupLink() {
3519
3892
  if (groupLinkBuilder_ == null) {
3520
3893
  groupLink_ = java.util.Collections.emptyList();
3521
- bitField0_ = (bitField0_ & ~0x00008000);
3894
+ bitField0_ = (bitField0_ & ~0x00010000);
3522
3895
  onChanged();
3523
3896
  } else {
3524
3897
  groupLinkBuilder_.clear();
@@ -3623,13 +3996,219 @@ private static final long serialVersionUID = 0L;
3623
3996
  groupLinkBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
3624
3997
  com.lansweeper.dp.outbound.v1.AssetGroupLink, com.lansweeper.dp.outbound.v1.AssetGroupLink.Builder, com.lansweeper.dp.outbound.v1.AssetGroupLinkOrBuilder>(
3625
3998
  groupLink_,
3626
- ((bitField0_ & 0x00008000) != 0),
3999
+ ((bitField0_ & 0x00010000) != 0),
3627
4000
  getParentForChildren(),
3628
4001
  isClean());
3629
4002
  groupLink_ = null;
3630
4003
  }
3631
4004
  return groupLinkBuilder_;
3632
4005
  }
4006
+
4007
+ private java.lang.Object ipLocationKey_ = "";
4008
+ /**
4009
+ * <pre>
4010
+ * ip location config key. Reference the IP Location collection in mongoDB, and it's currently not store in vNEXT model.
4011
+ * </pre>
4012
+ *
4013
+ * <code>optional string ip_location_key = 17;</code>
4014
+ * @return Whether the ipLocationKey field is set.
4015
+ */
4016
+ public boolean hasIpLocationKey() {
4017
+ return ((bitField0_ & 0x00020000) != 0);
4018
+ }
4019
+ /**
4020
+ * <pre>
4021
+ * ip location config key. Reference the IP Location collection in mongoDB, and it's currently not store in vNEXT model.
4022
+ * </pre>
4023
+ *
4024
+ * <code>optional string ip_location_key = 17;</code>
4025
+ * @return The ipLocationKey.
4026
+ */
4027
+ public java.lang.String getIpLocationKey() {
4028
+ java.lang.Object ref = ipLocationKey_;
4029
+ if (!(ref instanceof java.lang.String)) {
4030
+ com.google.protobuf.ByteString bs =
4031
+ (com.google.protobuf.ByteString) ref;
4032
+ java.lang.String s = bs.toStringUtf8();
4033
+ ipLocationKey_ = s;
4034
+ return s;
4035
+ } else {
4036
+ return (java.lang.String) ref;
4037
+ }
4038
+ }
4039
+ /**
4040
+ * <pre>
4041
+ * ip location config key. Reference the IP Location collection in mongoDB, and it's currently not store in vNEXT model.
4042
+ * </pre>
4043
+ *
4044
+ * <code>optional string ip_location_key = 17;</code>
4045
+ * @return The bytes for ipLocationKey.
4046
+ */
4047
+ public com.google.protobuf.ByteString
4048
+ getIpLocationKeyBytes() {
4049
+ java.lang.Object ref = ipLocationKey_;
4050
+ if (ref instanceof String) {
4051
+ com.google.protobuf.ByteString b =
4052
+ com.google.protobuf.ByteString.copyFromUtf8(
4053
+ (java.lang.String) ref);
4054
+ ipLocationKey_ = b;
4055
+ return b;
4056
+ } else {
4057
+ return (com.google.protobuf.ByteString) ref;
4058
+ }
4059
+ }
4060
+ /**
4061
+ * <pre>
4062
+ * ip location config key. Reference the IP Location collection in mongoDB, and it's currently not store in vNEXT model.
4063
+ * </pre>
4064
+ *
4065
+ * <code>optional string ip_location_key = 17;</code>
4066
+ * @param value The ipLocationKey to set.
4067
+ * @return This builder for chaining.
4068
+ */
4069
+ public Builder setIpLocationKey(
4070
+ java.lang.String value) {
4071
+ if (value == null) { throw new NullPointerException(); }
4072
+ ipLocationKey_ = value;
4073
+ bitField0_ |= 0x00020000;
4074
+ onChanged();
4075
+ return this;
4076
+ }
4077
+ /**
4078
+ * <pre>
4079
+ * ip location config key. Reference the IP Location collection in mongoDB, and it's currently not store in vNEXT model.
4080
+ * </pre>
4081
+ *
4082
+ * <code>optional string ip_location_key = 17;</code>
4083
+ * @return This builder for chaining.
4084
+ */
4085
+ public Builder clearIpLocationKey() {
4086
+ ipLocationKey_ = getDefaultInstance().getIpLocationKey();
4087
+ bitField0_ = (bitField0_ & ~0x00020000);
4088
+ onChanged();
4089
+ return this;
4090
+ }
4091
+ /**
4092
+ * <pre>
4093
+ * ip location config key. Reference the IP Location collection in mongoDB, and it's currently not store in vNEXT model.
4094
+ * </pre>
4095
+ *
4096
+ * <code>optional string ip_location_key = 17;</code>
4097
+ * @param value The bytes for ipLocationKey to set.
4098
+ * @return This builder for chaining.
4099
+ */
4100
+ public Builder setIpLocationKeyBytes(
4101
+ com.google.protobuf.ByteString value) {
4102
+ if (value == null) { throw new NullPointerException(); }
4103
+ checkByteStringIsUtf8(value);
4104
+ ipLocationKey_ = value;
4105
+ bitField0_ |= 0x00020000;
4106
+ onChanged();
4107
+ return this;
4108
+ }
4109
+
4110
+ private java.lang.Object ipLocationId_ = "";
4111
+ /**
4112
+ * <pre>
4113
+ * ip location config ID. Reference the IP Location id in the onprem, if existing.
4114
+ * </pre>
4115
+ *
4116
+ * <code>optional string ip_location_id = 18;</code>
4117
+ * @return Whether the ipLocationId field is set.
4118
+ */
4119
+ public boolean hasIpLocationId() {
4120
+ return ((bitField0_ & 0x00040000) != 0);
4121
+ }
4122
+ /**
4123
+ * <pre>
4124
+ * ip location config ID. Reference the IP Location id in the onprem, if existing.
4125
+ * </pre>
4126
+ *
4127
+ * <code>optional string ip_location_id = 18;</code>
4128
+ * @return The ipLocationId.
4129
+ */
4130
+ public java.lang.String getIpLocationId() {
4131
+ java.lang.Object ref = ipLocationId_;
4132
+ if (!(ref instanceof java.lang.String)) {
4133
+ com.google.protobuf.ByteString bs =
4134
+ (com.google.protobuf.ByteString) ref;
4135
+ java.lang.String s = bs.toStringUtf8();
4136
+ ipLocationId_ = s;
4137
+ return s;
4138
+ } else {
4139
+ return (java.lang.String) ref;
4140
+ }
4141
+ }
4142
+ /**
4143
+ * <pre>
4144
+ * ip location config ID. Reference the IP Location id in the onprem, if existing.
4145
+ * </pre>
4146
+ *
4147
+ * <code>optional string ip_location_id = 18;</code>
4148
+ * @return The bytes for ipLocationId.
4149
+ */
4150
+ public com.google.protobuf.ByteString
4151
+ getIpLocationIdBytes() {
4152
+ java.lang.Object ref = ipLocationId_;
4153
+ if (ref instanceof String) {
4154
+ com.google.protobuf.ByteString b =
4155
+ com.google.protobuf.ByteString.copyFromUtf8(
4156
+ (java.lang.String) ref);
4157
+ ipLocationId_ = b;
4158
+ return b;
4159
+ } else {
4160
+ return (com.google.protobuf.ByteString) ref;
4161
+ }
4162
+ }
4163
+ /**
4164
+ * <pre>
4165
+ * ip location config ID. Reference the IP Location id in the onprem, if existing.
4166
+ * </pre>
4167
+ *
4168
+ * <code>optional string ip_location_id = 18;</code>
4169
+ * @param value The ipLocationId to set.
4170
+ * @return This builder for chaining.
4171
+ */
4172
+ public Builder setIpLocationId(
4173
+ java.lang.String value) {
4174
+ if (value == null) { throw new NullPointerException(); }
4175
+ ipLocationId_ = value;
4176
+ bitField0_ |= 0x00040000;
4177
+ onChanged();
4178
+ return this;
4179
+ }
4180
+ /**
4181
+ * <pre>
4182
+ * ip location config ID. Reference the IP Location id in the onprem, if existing.
4183
+ * </pre>
4184
+ *
4185
+ * <code>optional string ip_location_id = 18;</code>
4186
+ * @return This builder for chaining.
4187
+ */
4188
+ public Builder clearIpLocationId() {
4189
+ ipLocationId_ = getDefaultInstance().getIpLocationId();
4190
+ bitField0_ = (bitField0_ & ~0x00040000);
4191
+ onChanged();
4192
+ return this;
4193
+ }
4194
+ /**
4195
+ * <pre>
4196
+ * ip location config ID. Reference the IP Location id in the onprem, if existing.
4197
+ * </pre>
4198
+ *
4199
+ * <code>optional string ip_location_id = 18;</code>
4200
+ * @param value The bytes for ipLocationId to set.
4201
+ * @return This builder for chaining.
4202
+ */
4203
+ public Builder setIpLocationIdBytes(
4204
+ com.google.protobuf.ByteString value) {
4205
+ if (value == null) { throw new NullPointerException(); }
4206
+ checkByteStringIsUtf8(value);
4207
+ ipLocationId_ = value;
4208
+ bitField0_ |= 0x00040000;
4209
+ onChanged();
4210
+ return this;
4211
+ }
3633
4212
  @java.lang.Override
3634
4213
  public final Builder setUnknownFields(
3635
4214
  final com.google.protobuf.UnknownFieldSet unknownFields) {