@lansweeper/data-platform-outbound-grpc 0.3.26 → 0.3.28

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 (43) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/gen-proto/image.json +1 -1
  3. package/gen-proto/outbound_pb.d.ts +46 -0
  4. package/gen-proto/outbound_pb.js +394 -3
  5. package/generated-go/outbound.pb.go +10782 -10643
  6. package/java.json +1 -1
  7. package/model/pom.xml +1 -1
  8. package/model/src/main/proto/outbound.proto +10 -0
  9. package/model/target/classes/com/lansweeper/dp/outbound/v1/CloudEntity$1.class +0 -0
  10. package/model/target/classes/com/lansweeper/dp/outbound/v1/CloudEntity$Builder.class +0 -0
  11. package/model/target/classes/com/lansweeper/dp/outbound/v1/CloudEntity.class +0 -0
  12. package/model/target/classes/com/lansweeper/dp/outbound/v1/CloudEntityOrBuilder.class +0 -0
  13. package/model/target/classes/com/lansweeper/dp/outbound/v1/Outbound.class +0 -0
  14. package/model/target/classes/com/lansweeper/dp/outbound/v1/PublicCloudLink$1.class +0 -0
  15. package/model/target/classes/com/lansweeper/dp/outbound/v1/PublicCloudLink$Builder.class +0 -0
  16. package/model/target/classes/com/lansweeper/dp/outbound/v1/PublicCloudLink.class +0 -0
  17. package/model/target/classes/com/lansweeper/dp/outbound/v1/PublicCloudLinkOrBuilder.class +0 -0
  18. package/model/target/classes/com/lansweeper/dp/outbound/v1/VmwareEsxiGuestVm$1.class +0 -0
  19. package/model/target/classes/com/lansweeper/dp/outbound/v1/VmwareEsxiGuestVm$Builder$EsxiGuestSnapshotsConverter.class +0 -0
  20. package/model/target/classes/com/lansweeper/dp/outbound/v1/VmwareEsxiGuestVm$Builder.class +0 -0
  21. package/model/target/classes/com/lansweeper/dp/outbound/v1/VmwareEsxiGuestVm$EsxiGuestSnapshotsDefaultEntryHolder.class +0 -0
  22. package/model/target/classes/com/lansweeper/dp/outbound/v1/VmwareEsxiGuestVm.class +0 -0
  23. package/model/target/classes/com/lansweeper/dp/outbound/v1/VmwareEsxiGuestVmOrBuilder.class +0 -0
  24. package/model/target/classes/outbound.proto +10 -0
  25. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/CloudEntity.java +508 -0
  26. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/CloudEntityOrBuilder.java +41 -0
  27. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +3129 -3109
  28. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/PublicCloudLink.java +950 -0
  29. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/PublicCloudLinkOrBuilder.java +58 -0
  30. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/VmwareEsxiGuestVm.java +193 -0
  31. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/VmwareEsxiGuestVmOrBuilder.java +29 -0
  32. package/model/target/maven-archiver/pom.properties +2 -2
  33. package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +4 -0
  34. package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +2 -0
  35. package/model/target/{outbound-model-0.3.25-sources.jar → outbound-model-0.3.27-sources.jar} +0 -0
  36. package/model/target/{outbound-model-0.3.25.jar → outbound-model-0.3.27.jar} +0 -0
  37. package/package.json +2 -2
  38. package/pom.xml +1 -1
  39. package/proto/outbound.proto +10 -0
  40. package/service/pom.xml +1 -1
  41. package/service/target/maven-archiver/pom.properties +2 -2
  42. package/service/target/{outbound-service-0.3.25-sources.jar → outbound-service-0.3.27-sources.jar} +0 -0
  43. package/service/target/{outbound-service-0.3.25.jar → outbound-service-0.3.27.jar} +0 -0
@@ -37,6 +37,8 @@ private static final long serialVersionUID = 0L;
37
37
  tenantId_ = "";
38
38
  tenantName_ = "";
39
39
  resourceGroup_ = "";
40
+ cloudAssetId_ = "";
41
+ publicCloudLinks_ = java.util.Collections.emptyList();
40
42
  }
41
43
 
42
44
  @java.lang.Override
@@ -538,6 +540,94 @@ private static final long serialVersionUID = 0L;
538
540
  }
539
541
  }
540
542
 
543
+ public static final int CLOUD_ASSET_ID_FIELD_NUMBER = 12;
544
+ @SuppressWarnings("serial")
545
+ private volatile java.lang.Object cloudAssetId_ = "";
546
+ /**
547
+ * <code>optional string cloud_asset_id = 12;</code>
548
+ * @return Whether the cloudAssetId field is set.
549
+ */
550
+ @java.lang.Override
551
+ public boolean hasCloudAssetId() {
552
+ return ((bitField0_ & 0x00000040) != 0);
553
+ }
554
+ /**
555
+ * <code>optional string cloud_asset_id = 12;</code>
556
+ * @return The cloudAssetId.
557
+ */
558
+ @java.lang.Override
559
+ public java.lang.String getCloudAssetId() {
560
+ java.lang.Object ref = cloudAssetId_;
561
+ if (ref instanceof java.lang.String) {
562
+ return (java.lang.String) ref;
563
+ } else {
564
+ com.google.protobuf.ByteString bs =
565
+ (com.google.protobuf.ByteString) ref;
566
+ java.lang.String s = bs.toStringUtf8();
567
+ cloudAssetId_ = s;
568
+ return s;
569
+ }
570
+ }
571
+ /**
572
+ * <code>optional string cloud_asset_id = 12;</code>
573
+ * @return The bytes for cloudAssetId.
574
+ */
575
+ @java.lang.Override
576
+ public com.google.protobuf.ByteString
577
+ getCloudAssetIdBytes() {
578
+ java.lang.Object ref = cloudAssetId_;
579
+ if (ref instanceof java.lang.String) {
580
+ com.google.protobuf.ByteString b =
581
+ com.google.protobuf.ByteString.copyFromUtf8(
582
+ (java.lang.String) ref);
583
+ cloudAssetId_ = b;
584
+ return b;
585
+ } else {
586
+ return (com.google.protobuf.ByteString) ref;
587
+ }
588
+ }
589
+
590
+ public static final int PUBLIC_CLOUD_LINKS_FIELD_NUMBER = 13;
591
+ @SuppressWarnings("serial")
592
+ private java.util.List<com.lansweeper.dp.outbound.v1.PublicCloudLink> publicCloudLinks_;
593
+ /**
594
+ * <code>repeated .com.lansweeper.dp.outbound.v1.PublicCloudLink public_cloud_links = 13;</code>
595
+ */
596
+ @java.lang.Override
597
+ public java.util.List<com.lansweeper.dp.outbound.v1.PublicCloudLink> getPublicCloudLinksList() {
598
+ return publicCloudLinks_;
599
+ }
600
+ /**
601
+ * <code>repeated .com.lansweeper.dp.outbound.v1.PublicCloudLink public_cloud_links = 13;</code>
602
+ */
603
+ @java.lang.Override
604
+ public java.util.List<? extends com.lansweeper.dp.outbound.v1.PublicCloudLinkOrBuilder>
605
+ getPublicCloudLinksOrBuilderList() {
606
+ return publicCloudLinks_;
607
+ }
608
+ /**
609
+ * <code>repeated .com.lansweeper.dp.outbound.v1.PublicCloudLink public_cloud_links = 13;</code>
610
+ */
611
+ @java.lang.Override
612
+ public int getPublicCloudLinksCount() {
613
+ return publicCloudLinks_.size();
614
+ }
615
+ /**
616
+ * <code>repeated .com.lansweeper.dp.outbound.v1.PublicCloudLink public_cloud_links = 13;</code>
617
+ */
618
+ @java.lang.Override
619
+ public com.lansweeper.dp.outbound.v1.PublicCloudLink getPublicCloudLinks(int index) {
620
+ return publicCloudLinks_.get(index);
621
+ }
622
+ /**
623
+ * <code>repeated .com.lansweeper.dp.outbound.v1.PublicCloudLink public_cloud_links = 13;</code>
624
+ */
625
+ @java.lang.Override
626
+ public com.lansweeper.dp.outbound.v1.PublicCloudLinkOrBuilder getPublicCloudLinksOrBuilder(
627
+ int index) {
628
+ return publicCloudLinks_.get(index);
629
+ }
630
+
541
631
  private byte memoizedIsInitialized = -1;
542
632
  @java.lang.Override
543
633
  public final boolean isInitialized() {
@@ -585,6 +675,12 @@ private static final long serialVersionUID = 0L;
585
675
  if (((bitField0_ & 0x00000020) != 0)) {
586
676
  com.google.protobuf.GeneratedMessageV3.writeString(output, 11, resourceGroup_);
587
677
  }
678
+ if (((bitField0_ & 0x00000040) != 0)) {
679
+ com.google.protobuf.GeneratedMessageV3.writeString(output, 12, cloudAssetId_);
680
+ }
681
+ for (int i = 0; i < publicCloudLinks_.size(); i++) {
682
+ output.writeMessage(13, publicCloudLinks_.get(i));
683
+ }
588
684
  getUnknownFields().writeTo(output);
589
685
  }
590
686
 
@@ -629,6 +725,13 @@ private static final long serialVersionUID = 0L;
629
725
  if (((bitField0_ & 0x00000020) != 0)) {
630
726
  size += com.google.protobuf.GeneratedMessageV3.computeStringSize(11, resourceGroup_);
631
727
  }
728
+ if (((bitField0_ & 0x00000040) != 0)) {
729
+ size += com.google.protobuf.GeneratedMessageV3.computeStringSize(12, cloudAssetId_);
730
+ }
731
+ for (int i = 0; i < publicCloudLinks_.size(); i++) {
732
+ size += com.google.protobuf.CodedOutputStream
733
+ .computeMessageSize(13, publicCloudLinks_.get(i));
734
+ }
632
735
  size += getUnknownFields().getSerializedSize();
633
736
  memoizedSize = size;
634
737
  return size;
@@ -684,6 +787,13 @@ private static final long serialVersionUID = 0L;
684
787
  if (!getResourceGroup()
685
788
  .equals(other.getResourceGroup())) return false;
686
789
  }
790
+ if (hasCloudAssetId() != other.hasCloudAssetId()) return false;
791
+ if (hasCloudAssetId()) {
792
+ if (!getCloudAssetId()
793
+ .equals(other.getCloudAssetId())) return false;
794
+ }
795
+ if (!getPublicCloudLinksList()
796
+ .equals(other.getPublicCloudLinksList())) return false;
687
797
  if (!getUnknownFields().equals(other.getUnknownFields())) return false;
688
798
  return true;
689
799
  }
@@ -731,6 +841,14 @@ private static final long serialVersionUID = 0L;
731
841
  hash = (37 * hash) + RESOURCE_GROUP_FIELD_NUMBER;
732
842
  hash = (53 * hash) + getResourceGroup().hashCode();
733
843
  }
844
+ if (hasCloudAssetId()) {
845
+ hash = (37 * hash) + CLOUD_ASSET_ID_FIELD_NUMBER;
846
+ hash = (53 * hash) + getCloudAssetId().hashCode();
847
+ }
848
+ if (getPublicCloudLinksCount() > 0) {
849
+ hash = (37 * hash) + PUBLIC_CLOUD_LINKS_FIELD_NUMBER;
850
+ hash = (53 * hash) + getPublicCloudLinksList().hashCode();
851
+ }
734
852
  hash = (29 * hash) + getUnknownFields().hashCode();
735
853
  memoizedHashCode = hash;
736
854
  return hash;
@@ -873,6 +991,7 @@ private static final long serialVersionUID = 0L;
873
991
  .alwaysUseFieldBuilders) {
874
992
  getBodyFieldBuilder();
875
993
  getCdkTagsFieldBuilder();
994
+ getPublicCloudLinksFieldBuilder();
876
995
  }
877
996
  }
878
997
  @java.lang.Override
@@ -900,6 +1019,14 @@ private static final long serialVersionUID = 0L;
900
1019
  tenantId_ = "";
901
1020
  tenantName_ = "";
902
1021
  resourceGroup_ = "";
1022
+ cloudAssetId_ = "";
1023
+ if (publicCloudLinksBuilder_ == null) {
1024
+ publicCloudLinks_ = java.util.Collections.emptyList();
1025
+ } else {
1026
+ publicCloudLinks_ = null;
1027
+ publicCloudLinksBuilder_.clear();
1028
+ }
1029
+ bitField0_ = (bitField0_ & ~0x00001000);
903
1030
  return this;
904
1031
  }
905
1032
 
@@ -942,6 +1069,15 @@ private static final long serialVersionUID = 0L;
942
1069
  } else {
943
1070
  result.cdkTags_ = cdkTagsBuilder_.build();
944
1071
  }
1072
+ if (publicCloudLinksBuilder_ == null) {
1073
+ if (((bitField0_ & 0x00001000) != 0)) {
1074
+ publicCloudLinks_ = java.util.Collections.unmodifiableList(publicCloudLinks_);
1075
+ bitField0_ = (bitField0_ & ~0x00001000);
1076
+ }
1077
+ result.publicCloudLinks_ = publicCloudLinks_;
1078
+ } else {
1079
+ result.publicCloudLinks_ = publicCloudLinksBuilder_.build();
1080
+ }
945
1081
  }
946
1082
 
947
1083
  private void buildPartial0(com.lansweeper.dp.outbound.v1.CloudEntity result) {
@@ -985,6 +1121,10 @@ private static final long serialVersionUID = 0L;
985
1121
  result.resourceGroup_ = resourceGroup_;
986
1122
  to_bitField0_ |= 0x00000020;
987
1123
  }
1124
+ if (((from_bitField0_ & 0x00000800) != 0)) {
1125
+ result.cloudAssetId_ = cloudAssetId_;
1126
+ to_bitField0_ |= 0x00000040;
1127
+ }
988
1128
  result.bitField0_ |= to_bitField0_;
989
1129
  }
990
1130
 
@@ -1106,6 +1246,37 @@ private static final long serialVersionUID = 0L;
1106
1246
  bitField0_ |= 0x00000400;
1107
1247
  onChanged();
1108
1248
  }
1249
+ if (other.hasCloudAssetId()) {
1250
+ cloudAssetId_ = other.cloudAssetId_;
1251
+ bitField0_ |= 0x00000800;
1252
+ onChanged();
1253
+ }
1254
+ if (publicCloudLinksBuilder_ == null) {
1255
+ if (!other.publicCloudLinks_.isEmpty()) {
1256
+ if (publicCloudLinks_.isEmpty()) {
1257
+ publicCloudLinks_ = other.publicCloudLinks_;
1258
+ bitField0_ = (bitField0_ & ~0x00001000);
1259
+ } else {
1260
+ ensurePublicCloudLinksIsMutable();
1261
+ publicCloudLinks_.addAll(other.publicCloudLinks_);
1262
+ }
1263
+ onChanged();
1264
+ }
1265
+ } else {
1266
+ if (!other.publicCloudLinks_.isEmpty()) {
1267
+ if (publicCloudLinksBuilder_.isEmpty()) {
1268
+ publicCloudLinksBuilder_.dispose();
1269
+ publicCloudLinksBuilder_ = null;
1270
+ publicCloudLinks_ = other.publicCloudLinks_;
1271
+ bitField0_ = (bitField0_ & ~0x00001000);
1272
+ publicCloudLinksBuilder_ =
1273
+ com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
1274
+ getPublicCloudLinksFieldBuilder() : null;
1275
+ } else {
1276
+ publicCloudLinksBuilder_.addAllMessages(other.publicCloudLinks_);
1277
+ }
1278
+ }
1279
+ }
1109
1280
  this.mergeUnknownFields(other.getUnknownFields());
1110
1281
  onChanged();
1111
1282
  return this;
@@ -1197,6 +1368,24 @@ private static final long serialVersionUID = 0L;
1197
1368
  bitField0_ |= 0x00000400;
1198
1369
  break;
1199
1370
  } // case 90
1371
+ case 98: {
1372
+ cloudAssetId_ = input.readStringRequireUtf8();
1373
+ bitField0_ |= 0x00000800;
1374
+ break;
1375
+ } // case 98
1376
+ case 106: {
1377
+ com.lansweeper.dp.outbound.v1.PublicCloudLink m =
1378
+ input.readMessage(
1379
+ com.lansweeper.dp.outbound.v1.PublicCloudLink.parser(),
1380
+ extensionRegistry);
1381
+ if (publicCloudLinksBuilder_ == null) {
1382
+ ensurePublicCloudLinksIsMutable();
1383
+ publicCloudLinks_.add(m);
1384
+ } else {
1385
+ publicCloudLinksBuilder_.addMessage(m);
1386
+ }
1387
+ break;
1388
+ } // case 106
1200
1389
  default: {
1201
1390
  if (!super.parseUnknownField(input, extensionRegistry, tag)) {
1202
1391
  done = true; // was an endgroup tag
@@ -2329,6 +2518,325 @@ private static final long serialVersionUID = 0L;
2329
2518
  onChanged();
2330
2519
  return this;
2331
2520
  }
2521
+
2522
+ private java.lang.Object cloudAssetId_ = "";
2523
+ /**
2524
+ * <code>optional string cloud_asset_id = 12;</code>
2525
+ * @return Whether the cloudAssetId field is set.
2526
+ */
2527
+ public boolean hasCloudAssetId() {
2528
+ return ((bitField0_ & 0x00000800) != 0);
2529
+ }
2530
+ /**
2531
+ * <code>optional string cloud_asset_id = 12;</code>
2532
+ * @return The cloudAssetId.
2533
+ */
2534
+ public java.lang.String getCloudAssetId() {
2535
+ java.lang.Object ref = cloudAssetId_;
2536
+ if (!(ref instanceof java.lang.String)) {
2537
+ com.google.protobuf.ByteString bs =
2538
+ (com.google.protobuf.ByteString) ref;
2539
+ java.lang.String s = bs.toStringUtf8();
2540
+ cloudAssetId_ = s;
2541
+ return s;
2542
+ } else {
2543
+ return (java.lang.String) ref;
2544
+ }
2545
+ }
2546
+ /**
2547
+ * <code>optional string cloud_asset_id = 12;</code>
2548
+ * @return The bytes for cloudAssetId.
2549
+ */
2550
+ public com.google.protobuf.ByteString
2551
+ getCloudAssetIdBytes() {
2552
+ java.lang.Object ref = cloudAssetId_;
2553
+ if (ref instanceof String) {
2554
+ com.google.protobuf.ByteString b =
2555
+ com.google.protobuf.ByteString.copyFromUtf8(
2556
+ (java.lang.String) ref);
2557
+ cloudAssetId_ = b;
2558
+ return b;
2559
+ } else {
2560
+ return (com.google.protobuf.ByteString) ref;
2561
+ }
2562
+ }
2563
+ /**
2564
+ * <code>optional string cloud_asset_id = 12;</code>
2565
+ * @param value The cloudAssetId to set.
2566
+ * @return This builder for chaining.
2567
+ */
2568
+ public Builder setCloudAssetId(
2569
+ java.lang.String value) {
2570
+ if (value == null) { throw new NullPointerException(); }
2571
+ cloudAssetId_ = value;
2572
+ bitField0_ |= 0x00000800;
2573
+ onChanged();
2574
+ return this;
2575
+ }
2576
+ /**
2577
+ * <code>optional string cloud_asset_id = 12;</code>
2578
+ * @return This builder for chaining.
2579
+ */
2580
+ public Builder clearCloudAssetId() {
2581
+ cloudAssetId_ = getDefaultInstance().getCloudAssetId();
2582
+ bitField0_ = (bitField0_ & ~0x00000800);
2583
+ onChanged();
2584
+ return this;
2585
+ }
2586
+ /**
2587
+ * <code>optional string cloud_asset_id = 12;</code>
2588
+ * @param value The bytes for cloudAssetId to set.
2589
+ * @return This builder for chaining.
2590
+ */
2591
+ public Builder setCloudAssetIdBytes(
2592
+ com.google.protobuf.ByteString value) {
2593
+ if (value == null) { throw new NullPointerException(); }
2594
+ checkByteStringIsUtf8(value);
2595
+ cloudAssetId_ = value;
2596
+ bitField0_ |= 0x00000800;
2597
+ onChanged();
2598
+ return this;
2599
+ }
2600
+
2601
+ private java.util.List<com.lansweeper.dp.outbound.v1.PublicCloudLink> publicCloudLinks_ =
2602
+ java.util.Collections.emptyList();
2603
+ private void ensurePublicCloudLinksIsMutable() {
2604
+ if (!((bitField0_ & 0x00001000) != 0)) {
2605
+ publicCloudLinks_ = new java.util.ArrayList<com.lansweeper.dp.outbound.v1.PublicCloudLink>(publicCloudLinks_);
2606
+ bitField0_ |= 0x00001000;
2607
+ }
2608
+ }
2609
+
2610
+ private com.google.protobuf.RepeatedFieldBuilderV3<
2611
+ com.lansweeper.dp.outbound.v1.PublicCloudLink, com.lansweeper.dp.outbound.v1.PublicCloudLink.Builder, com.lansweeper.dp.outbound.v1.PublicCloudLinkOrBuilder> publicCloudLinksBuilder_;
2612
+
2613
+ /**
2614
+ * <code>repeated .com.lansweeper.dp.outbound.v1.PublicCloudLink public_cloud_links = 13;</code>
2615
+ */
2616
+ public java.util.List<com.lansweeper.dp.outbound.v1.PublicCloudLink> getPublicCloudLinksList() {
2617
+ if (publicCloudLinksBuilder_ == null) {
2618
+ return java.util.Collections.unmodifiableList(publicCloudLinks_);
2619
+ } else {
2620
+ return publicCloudLinksBuilder_.getMessageList();
2621
+ }
2622
+ }
2623
+ /**
2624
+ * <code>repeated .com.lansweeper.dp.outbound.v1.PublicCloudLink public_cloud_links = 13;</code>
2625
+ */
2626
+ public int getPublicCloudLinksCount() {
2627
+ if (publicCloudLinksBuilder_ == null) {
2628
+ return publicCloudLinks_.size();
2629
+ } else {
2630
+ return publicCloudLinksBuilder_.getCount();
2631
+ }
2632
+ }
2633
+ /**
2634
+ * <code>repeated .com.lansweeper.dp.outbound.v1.PublicCloudLink public_cloud_links = 13;</code>
2635
+ */
2636
+ public com.lansweeper.dp.outbound.v1.PublicCloudLink getPublicCloudLinks(int index) {
2637
+ if (publicCloudLinksBuilder_ == null) {
2638
+ return publicCloudLinks_.get(index);
2639
+ } else {
2640
+ return publicCloudLinksBuilder_.getMessage(index);
2641
+ }
2642
+ }
2643
+ /**
2644
+ * <code>repeated .com.lansweeper.dp.outbound.v1.PublicCloudLink public_cloud_links = 13;</code>
2645
+ */
2646
+ public Builder setPublicCloudLinks(
2647
+ int index, com.lansweeper.dp.outbound.v1.PublicCloudLink value) {
2648
+ if (publicCloudLinksBuilder_ == null) {
2649
+ if (value == null) {
2650
+ throw new NullPointerException();
2651
+ }
2652
+ ensurePublicCloudLinksIsMutable();
2653
+ publicCloudLinks_.set(index, value);
2654
+ onChanged();
2655
+ } else {
2656
+ publicCloudLinksBuilder_.setMessage(index, value);
2657
+ }
2658
+ return this;
2659
+ }
2660
+ /**
2661
+ * <code>repeated .com.lansweeper.dp.outbound.v1.PublicCloudLink public_cloud_links = 13;</code>
2662
+ */
2663
+ public Builder setPublicCloudLinks(
2664
+ int index, com.lansweeper.dp.outbound.v1.PublicCloudLink.Builder builderForValue) {
2665
+ if (publicCloudLinksBuilder_ == null) {
2666
+ ensurePublicCloudLinksIsMutable();
2667
+ publicCloudLinks_.set(index, builderForValue.build());
2668
+ onChanged();
2669
+ } else {
2670
+ publicCloudLinksBuilder_.setMessage(index, builderForValue.build());
2671
+ }
2672
+ return this;
2673
+ }
2674
+ /**
2675
+ * <code>repeated .com.lansweeper.dp.outbound.v1.PublicCloudLink public_cloud_links = 13;</code>
2676
+ */
2677
+ public Builder addPublicCloudLinks(com.lansweeper.dp.outbound.v1.PublicCloudLink value) {
2678
+ if (publicCloudLinksBuilder_ == null) {
2679
+ if (value == null) {
2680
+ throw new NullPointerException();
2681
+ }
2682
+ ensurePublicCloudLinksIsMutable();
2683
+ publicCloudLinks_.add(value);
2684
+ onChanged();
2685
+ } else {
2686
+ publicCloudLinksBuilder_.addMessage(value);
2687
+ }
2688
+ return this;
2689
+ }
2690
+ /**
2691
+ * <code>repeated .com.lansweeper.dp.outbound.v1.PublicCloudLink public_cloud_links = 13;</code>
2692
+ */
2693
+ public Builder addPublicCloudLinks(
2694
+ int index, com.lansweeper.dp.outbound.v1.PublicCloudLink value) {
2695
+ if (publicCloudLinksBuilder_ == null) {
2696
+ if (value == null) {
2697
+ throw new NullPointerException();
2698
+ }
2699
+ ensurePublicCloudLinksIsMutable();
2700
+ publicCloudLinks_.add(index, value);
2701
+ onChanged();
2702
+ } else {
2703
+ publicCloudLinksBuilder_.addMessage(index, value);
2704
+ }
2705
+ return this;
2706
+ }
2707
+ /**
2708
+ * <code>repeated .com.lansweeper.dp.outbound.v1.PublicCloudLink public_cloud_links = 13;</code>
2709
+ */
2710
+ public Builder addPublicCloudLinks(
2711
+ com.lansweeper.dp.outbound.v1.PublicCloudLink.Builder builderForValue) {
2712
+ if (publicCloudLinksBuilder_ == null) {
2713
+ ensurePublicCloudLinksIsMutable();
2714
+ publicCloudLinks_.add(builderForValue.build());
2715
+ onChanged();
2716
+ } else {
2717
+ publicCloudLinksBuilder_.addMessage(builderForValue.build());
2718
+ }
2719
+ return this;
2720
+ }
2721
+ /**
2722
+ * <code>repeated .com.lansweeper.dp.outbound.v1.PublicCloudLink public_cloud_links = 13;</code>
2723
+ */
2724
+ public Builder addPublicCloudLinks(
2725
+ int index, com.lansweeper.dp.outbound.v1.PublicCloudLink.Builder builderForValue) {
2726
+ if (publicCloudLinksBuilder_ == null) {
2727
+ ensurePublicCloudLinksIsMutable();
2728
+ publicCloudLinks_.add(index, builderForValue.build());
2729
+ onChanged();
2730
+ } else {
2731
+ publicCloudLinksBuilder_.addMessage(index, builderForValue.build());
2732
+ }
2733
+ return this;
2734
+ }
2735
+ /**
2736
+ * <code>repeated .com.lansweeper.dp.outbound.v1.PublicCloudLink public_cloud_links = 13;</code>
2737
+ */
2738
+ public Builder addAllPublicCloudLinks(
2739
+ java.lang.Iterable<? extends com.lansweeper.dp.outbound.v1.PublicCloudLink> values) {
2740
+ if (publicCloudLinksBuilder_ == null) {
2741
+ ensurePublicCloudLinksIsMutable();
2742
+ com.google.protobuf.AbstractMessageLite.Builder.addAll(
2743
+ values, publicCloudLinks_);
2744
+ onChanged();
2745
+ } else {
2746
+ publicCloudLinksBuilder_.addAllMessages(values);
2747
+ }
2748
+ return this;
2749
+ }
2750
+ /**
2751
+ * <code>repeated .com.lansweeper.dp.outbound.v1.PublicCloudLink public_cloud_links = 13;</code>
2752
+ */
2753
+ public Builder clearPublicCloudLinks() {
2754
+ if (publicCloudLinksBuilder_ == null) {
2755
+ publicCloudLinks_ = java.util.Collections.emptyList();
2756
+ bitField0_ = (bitField0_ & ~0x00001000);
2757
+ onChanged();
2758
+ } else {
2759
+ publicCloudLinksBuilder_.clear();
2760
+ }
2761
+ return this;
2762
+ }
2763
+ /**
2764
+ * <code>repeated .com.lansweeper.dp.outbound.v1.PublicCloudLink public_cloud_links = 13;</code>
2765
+ */
2766
+ public Builder removePublicCloudLinks(int index) {
2767
+ if (publicCloudLinksBuilder_ == null) {
2768
+ ensurePublicCloudLinksIsMutable();
2769
+ publicCloudLinks_.remove(index);
2770
+ onChanged();
2771
+ } else {
2772
+ publicCloudLinksBuilder_.remove(index);
2773
+ }
2774
+ return this;
2775
+ }
2776
+ /**
2777
+ * <code>repeated .com.lansweeper.dp.outbound.v1.PublicCloudLink public_cloud_links = 13;</code>
2778
+ */
2779
+ public com.lansweeper.dp.outbound.v1.PublicCloudLink.Builder getPublicCloudLinksBuilder(
2780
+ int index) {
2781
+ return getPublicCloudLinksFieldBuilder().getBuilder(index);
2782
+ }
2783
+ /**
2784
+ * <code>repeated .com.lansweeper.dp.outbound.v1.PublicCloudLink public_cloud_links = 13;</code>
2785
+ */
2786
+ public com.lansweeper.dp.outbound.v1.PublicCloudLinkOrBuilder getPublicCloudLinksOrBuilder(
2787
+ int index) {
2788
+ if (publicCloudLinksBuilder_ == null) {
2789
+ return publicCloudLinks_.get(index); } else {
2790
+ return publicCloudLinksBuilder_.getMessageOrBuilder(index);
2791
+ }
2792
+ }
2793
+ /**
2794
+ * <code>repeated .com.lansweeper.dp.outbound.v1.PublicCloudLink public_cloud_links = 13;</code>
2795
+ */
2796
+ public java.util.List<? extends com.lansweeper.dp.outbound.v1.PublicCloudLinkOrBuilder>
2797
+ getPublicCloudLinksOrBuilderList() {
2798
+ if (publicCloudLinksBuilder_ != null) {
2799
+ return publicCloudLinksBuilder_.getMessageOrBuilderList();
2800
+ } else {
2801
+ return java.util.Collections.unmodifiableList(publicCloudLinks_);
2802
+ }
2803
+ }
2804
+ /**
2805
+ * <code>repeated .com.lansweeper.dp.outbound.v1.PublicCloudLink public_cloud_links = 13;</code>
2806
+ */
2807
+ public com.lansweeper.dp.outbound.v1.PublicCloudLink.Builder addPublicCloudLinksBuilder() {
2808
+ return getPublicCloudLinksFieldBuilder().addBuilder(
2809
+ com.lansweeper.dp.outbound.v1.PublicCloudLink.getDefaultInstance());
2810
+ }
2811
+ /**
2812
+ * <code>repeated .com.lansweeper.dp.outbound.v1.PublicCloudLink public_cloud_links = 13;</code>
2813
+ */
2814
+ public com.lansweeper.dp.outbound.v1.PublicCloudLink.Builder addPublicCloudLinksBuilder(
2815
+ int index) {
2816
+ return getPublicCloudLinksFieldBuilder().addBuilder(
2817
+ index, com.lansweeper.dp.outbound.v1.PublicCloudLink.getDefaultInstance());
2818
+ }
2819
+ /**
2820
+ * <code>repeated .com.lansweeper.dp.outbound.v1.PublicCloudLink public_cloud_links = 13;</code>
2821
+ */
2822
+ public java.util.List<com.lansweeper.dp.outbound.v1.PublicCloudLink.Builder>
2823
+ getPublicCloudLinksBuilderList() {
2824
+ return getPublicCloudLinksFieldBuilder().getBuilderList();
2825
+ }
2826
+ private com.google.protobuf.RepeatedFieldBuilderV3<
2827
+ com.lansweeper.dp.outbound.v1.PublicCloudLink, com.lansweeper.dp.outbound.v1.PublicCloudLink.Builder, com.lansweeper.dp.outbound.v1.PublicCloudLinkOrBuilder>
2828
+ getPublicCloudLinksFieldBuilder() {
2829
+ if (publicCloudLinksBuilder_ == null) {
2830
+ publicCloudLinksBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
2831
+ com.lansweeper.dp.outbound.v1.PublicCloudLink, com.lansweeper.dp.outbound.v1.PublicCloudLink.Builder, com.lansweeper.dp.outbound.v1.PublicCloudLinkOrBuilder>(
2832
+ publicCloudLinks_,
2833
+ ((bitField0_ & 0x00001000) != 0),
2834
+ getParentForChildren(),
2835
+ isClean());
2836
+ publicCloudLinks_ = null;
2837
+ }
2838
+ return publicCloudLinksBuilder_;
2839
+ }
2332
2840
  @java.lang.Override
2333
2841
  public final Builder setUnknownFields(
2334
2842
  final com.google.protobuf.UnknownFieldSet unknownFields) {
@@ -199,4 +199,45 @@ public interface CloudEntityOrBuilder extends
199
199
  */
200
200
  com.google.protobuf.ByteString
201
201
  getResourceGroupBytes();
202
+
203
+ /**
204
+ * <code>optional string cloud_asset_id = 12;</code>
205
+ * @return Whether the cloudAssetId field is set.
206
+ */
207
+ boolean hasCloudAssetId();
208
+ /**
209
+ * <code>optional string cloud_asset_id = 12;</code>
210
+ * @return The cloudAssetId.
211
+ */
212
+ java.lang.String getCloudAssetId();
213
+ /**
214
+ * <code>optional string cloud_asset_id = 12;</code>
215
+ * @return The bytes for cloudAssetId.
216
+ */
217
+ com.google.protobuf.ByteString
218
+ getCloudAssetIdBytes();
219
+
220
+ /**
221
+ * <code>repeated .com.lansweeper.dp.outbound.v1.PublicCloudLink public_cloud_links = 13;</code>
222
+ */
223
+ java.util.List<com.lansweeper.dp.outbound.v1.PublicCloudLink>
224
+ getPublicCloudLinksList();
225
+ /**
226
+ * <code>repeated .com.lansweeper.dp.outbound.v1.PublicCloudLink public_cloud_links = 13;</code>
227
+ */
228
+ com.lansweeper.dp.outbound.v1.PublicCloudLink getPublicCloudLinks(int index);
229
+ /**
230
+ * <code>repeated .com.lansweeper.dp.outbound.v1.PublicCloudLink public_cloud_links = 13;</code>
231
+ */
232
+ int getPublicCloudLinksCount();
233
+ /**
234
+ * <code>repeated .com.lansweeper.dp.outbound.v1.PublicCloudLink public_cloud_links = 13;</code>
235
+ */
236
+ java.util.List<? extends com.lansweeper.dp.outbound.v1.PublicCloudLinkOrBuilder>
237
+ getPublicCloudLinksOrBuilderList();
238
+ /**
239
+ * <code>repeated .com.lansweeper.dp.outbound.v1.PublicCloudLink public_cloud_links = 13;</code>
240
+ */
241
+ com.lansweeper.dp.outbound.v1.PublicCloudLinkOrBuilder getPublicCloudLinksOrBuilder(
242
+ int index);
202
243
  }