@lansweeper/data-platform-outbound-grpc 0.8.10 → 0.8.12

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 (33) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/gen-proto/image.json +1 -1
  3. package/gen-proto/outbound_pb.d.ts +11 -0
  4. package/gen-proto/outbound_pb.js +100 -3
  5. package/generated-go/outbound.pb.go +1331 -1308
  6. package/java.json +1 -1
  7. package/model/pom.xml +1 -1
  8. package/model/src/main/proto/outbound.proto +2 -0
  9. package/model/target/classes/com/lansweeper/dp/outbound/v1/CitrixGuest$1.class +0 -0
  10. package/model/target/classes/com/lansweeper/dp/outbound/v1/CitrixGuest$Builder.class +0 -0
  11. package/model/target/classes/com/lansweeper/dp/outbound/v1/CitrixGuest.class +0 -0
  12. package/model/target/classes/com/lansweeper/dp/outbound/v1/CitrixGuestOrBuilder.class +0 -0
  13. package/model/target/classes/com/lansweeper/dp/outbound/v1/CitrixHost$1.class +0 -0
  14. package/model/target/classes/com/lansweeper/dp/outbound/v1/CitrixHost$Builder.class +0 -0
  15. package/model/target/classes/com/lansweeper/dp/outbound/v1/CitrixHost.class +0 -0
  16. package/model/target/classes/com/lansweeper/dp/outbound/v1/CitrixHostOrBuilder.class +0 -0
  17. package/model/target/classes/com/lansweeper/dp/outbound/v1/Outbound.class +0 -0
  18. package/model/target/classes/outbound.proto +2 -0
  19. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/CitrixGuest.java +157 -0
  20. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/CitrixGuestOrBuilder.java +17 -0
  21. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/CitrixHost.java +189 -0
  22. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/CitrixHostOrBuilder.java +25 -0
  23. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +438 -436
  24. package/model/target/maven-archiver/pom.properties +2 -2
  25. package/model/target/{outbound-model-0.8.9-sources.jar → outbound-model-0.8.11-sources.jar} +0 -0
  26. package/model/target/{outbound-model-0.8.9.jar → outbound-model-0.8.11.jar} +0 -0
  27. package/package.json +2 -2
  28. package/pom.xml +1 -1
  29. package/proto/outbound.proto +2 -0
  30. package/service/pom.xml +1 -1
  31. package/service/target/maven-archiver/pom.properties +2 -2
  32. package/service/target/{outbound-service-0.8.9-sources.jar → outbound-service-0.8.11-sources.jar} +0 -0
  33. package/service/target/{outbound-service-0.8.9.jar → outbound-service-0.8.11.jar} +0 -0
package/java.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.8.9",
2
+ "version": "0.8.11",
3
3
  "package": "com.lansweeper.dp.outbound.v1",
4
4
  "name": "outbound",
5
5
  "service": true
package/model/pom.xml CHANGED
@@ -6,7 +6,7 @@
6
6
  <parent>
7
7
  <groupId>com.lansweeper.dp.outbound.v1</groupId>
8
8
  <artifactId>parent</artifactId>
9
- <version>0.8.9</version>
9
+ <version>0.8.11</version>
10
10
  </parent>
11
11
 
12
12
  <artifactId>outbound-model</artifactId>
@@ -4529,6 +4529,7 @@ message CitrixHost {
4529
4529
  repeated CitrixHostPhysicalCpu physical_cpus = 28;
4530
4530
  repeated CitrixHostCrashDump crash_dumps = 29;
4531
4531
  string citrix_pool_uuid = 30;
4532
+ repeated string guest_asset_refs = 31;
4532
4533
  }
4533
4534
 
4534
4535
  message CitrixHostCrashDump {
@@ -4664,6 +4665,7 @@ message CitrixGuest {
4664
4665
  repeated CitrixVirtualBlockDevice virtual_block_devices = 43;
4665
4666
  string citrix_host_uuid = 44;
4666
4667
  string citrix_pool_uuid = 45;
4668
+ optional string appliance_id = 46;
4667
4669
  }
4668
4670
 
4669
4671
  message CitrixGuestExtraInfo {
@@ -4529,6 +4529,7 @@ message CitrixHost {
4529
4529
  repeated CitrixHostPhysicalCpu physical_cpus = 28;
4530
4530
  repeated CitrixHostCrashDump crash_dumps = 29;
4531
4531
  string citrix_pool_uuid = 30;
4532
+ repeated string guest_asset_refs = 31;
4532
4533
  }
4533
4534
 
4534
4535
  message CitrixHostCrashDump {
@@ -4664,6 +4665,7 @@ message CitrixGuest {
4664
4665
  repeated CitrixVirtualBlockDevice virtual_block_devices = 43;
4665
4666
  string citrix_host_uuid = 44;
4666
4667
  string citrix_pool_uuid = 45;
4668
+ optional string appliance_id = 46;
4667
4669
  }
4668
4670
 
4669
4671
  message CitrixGuestExtraInfo {
@@ -42,6 +42,7 @@ private static final long serialVersionUID = 0L;
42
42
  virtualBlockDevices_ = java.util.Collections.emptyList();
43
43
  citrixHostUuid_ = "";
44
44
  citrixPoolUuid_ = "";
45
+ applianceId_ = "";
45
46
  }
46
47
 
47
48
  @java.lang.Override
@@ -1608,6 +1609,53 @@ private static final long serialVersionUID = 0L;
1608
1609
  }
1609
1610
  }
1610
1611
 
1612
+ public static final int APPLIANCE_ID_FIELD_NUMBER = 46;
1613
+ @SuppressWarnings("serial")
1614
+ private volatile java.lang.Object applianceId_ = "";
1615
+ /**
1616
+ * <code>optional string appliance_id = 46;</code>
1617
+ * @return Whether the applianceId field is set.
1618
+ */
1619
+ @java.lang.Override
1620
+ public boolean hasApplianceId() {
1621
+ return ((bitField1_ & 0x00000100) != 0);
1622
+ }
1623
+ /**
1624
+ * <code>optional string appliance_id = 46;</code>
1625
+ * @return The applianceId.
1626
+ */
1627
+ @java.lang.Override
1628
+ public java.lang.String getApplianceId() {
1629
+ java.lang.Object ref = applianceId_;
1630
+ if (ref instanceof java.lang.String) {
1631
+ return (java.lang.String) ref;
1632
+ } else {
1633
+ com.google.protobuf.ByteString bs =
1634
+ (com.google.protobuf.ByteString) ref;
1635
+ java.lang.String s = bs.toStringUtf8();
1636
+ applianceId_ = s;
1637
+ return s;
1638
+ }
1639
+ }
1640
+ /**
1641
+ * <code>optional string appliance_id = 46;</code>
1642
+ * @return The bytes for applianceId.
1643
+ */
1644
+ @java.lang.Override
1645
+ public com.google.protobuf.ByteString
1646
+ getApplianceIdBytes() {
1647
+ java.lang.Object ref = applianceId_;
1648
+ if (ref instanceof java.lang.String) {
1649
+ com.google.protobuf.ByteString b =
1650
+ com.google.protobuf.ByteString.copyFromUtf8(
1651
+ (java.lang.String) ref);
1652
+ applianceId_ = b;
1653
+ return b;
1654
+ } else {
1655
+ return (com.google.protobuf.ByteString) ref;
1656
+ }
1657
+ }
1658
+
1611
1659
  private byte memoizedIsInitialized = -1;
1612
1660
  @java.lang.Override
1613
1661
  public final boolean isInitialized() {
@@ -1757,6 +1805,9 @@ private static final long serialVersionUID = 0L;
1757
1805
  if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(citrixPoolUuid_)) {
1758
1806
  com.google.protobuf.GeneratedMessageV3.writeString(output, 45, citrixPoolUuid_);
1759
1807
  }
1808
+ if (((bitField1_ & 0x00000100) != 0)) {
1809
+ com.google.protobuf.GeneratedMessageV3.writeString(output, 46, applianceId_);
1810
+ }
1760
1811
  getUnknownFields().writeTo(output);
1761
1812
  }
1762
1813
 
@@ -1924,6 +1975,9 @@ private static final long serialVersionUID = 0L;
1924
1975
  if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(citrixPoolUuid_)) {
1925
1976
  size += com.google.protobuf.GeneratedMessageV3.computeStringSize(45, citrixPoolUuid_);
1926
1977
  }
1978
+ if (((bitField1_ & 0x00000100) != 0)) {
1979
+ size += com.google.protobuf.GeneratedMessageV3.computeStringSize(46, applianceId_);
1980
+ }
1927
1981
  size += getUnknownFields().getSerializedSize();
1928
1982
  memoizedSize = size;
1929
1983
  return size;
@@ -2150,6 +2204,11 @@ private static final long serialVersionUID = 0L;
2150
2204
  .equals(other.getCitrixHostUuid())) return false;
2151
2205
  if (!getCitrixPoolUuid()
2152
2206
  .equals(other.getCitrixPoolUuid())) return false;
2207
+ if (hasApplianceId() != other.hasApplianceId()) return false;
2208
+ if (hasApplianceId()) {
2209
+ if (!getApplianceId()
2210
+ .equals(other.getApplianceId())) return false;
2211
+ }
2153
2212
  if (!getUnknownFields().equals(other.getUnknownFields())) return false;
2154
2213
  return true;
2155
2214
  }
@@ -2354,6 +2413,10 @@ private static final long serialVersionUID = 0L;
2354
2413
  hash = (53 * hash) + getCitrixHostUuid().hashCode();
2355
2414
  hash = (37 * hash) + CITRIX_POOL_UUID_FIELD_NUMBER;
2356
2415
  hash = (53 * hash) + getCitrixPoolUuid().hashCode();
2416
+ if (hasApplianceId()) {
2417
+ hash = (37 * hash) + APPLIANCE_ID_FIELD_NUMBER;
2418
+ hash = (53 * hash) + getApplianceId().hashCode();
2419
+ }
2357
2420
  hash = (29 * hash) + getUnknownFields().hashCode();
2358
2421
  memoizedHashCode = hash;
2359
2422
  return hash;
@@ -2572,6 +2635,7 @@ private static final long serialVersionUID = 0L;
2572
2635
  bitField1_ = (bitField1_ & ~0x00000400);
2573
2636
  citrixHostUuid_ = "";
2574
2637
  citrixPoolUuid_ = "";
2638
+ applianceId_ = "";
2575
2639
  return this;
2576
2640
  }
2577
2641
 
@@ -2816,6 +2880,10 @@ private static final long serialVersionUID = 0L;
2816
2880
  if (((from_bitField1_ & 0x00001000) != 0)) {
2817
2881
  result.citrixPoolUuid_ = citrixPoolUuid_;
2818
2882
  }
2883
+ if (((from_bitField1_ & 0x00002000) != 0)) {
2884
+ result.applianceId_ = applianceId_;
2885
+ to_bitField1_ |= 0x00000100;
2886
+ }
2819
2887
  result.bitField1_ |= to_bitField1_;
2820
2888
  }
2821
2889
 
@@ -3111,6 +3179,11 @@ private static final long serialVersionUID = 0L;
3111
3179
  bitField1_ |= 0x00001000;
3112
3180
  onChanged();
3113
3181
  }
3182
+ if (other.hasApplianceId()) {
3183
+ applianceId_ = other.applianceId_;
3184
+ bitField1_ |= 0x00002000;
3185
+ onChanged();
3186
+ }
3114
3187
  this.mergeUnknownFields(other.getUnknownFields());
3115
3188
  onChanged();
3116
3189
  return this;
@@ -3392,6 +3465,11 @@ private static final long serialVersionUID = 0L;
3392
3465
  bitField1_ |= 0x00001000;
3393
3466
  break;
3394
3467
  } // case 362
3468
+ case 370: {
3469
+ applianceId_ = input.readStringRequireUtf8();
3470
+ bitField1_ |= 0x00002000;
3471
+ break;
3472
+ } // case 370
3395
3473
  default: {
3396
3474
  if (!super.parseUnknownField(input, extensionRegistry, tag)) {
3397
3475
  done = true; // was an endgroup tag
@@ -6896,6 +6974,85 @@ private static final long serialVersionUID = 0L;
6896
6974
  onChanged();
6897
6975
  return this;
6898
6976
  }
6977
+
6978
+ private java.lang.Object applianceId_ = "";
6979
+ /**
6980
+ * <code>optional string appliance_id = 46;</code>
6981
+ * @return Whether the applianceId field is set.
6982
+ */
6983
+ public boolean hasApplianceId() {
6984
+ return ((bitField1_ & 0x00002000) != 0);
6985
+ }
6986
+ /**
6987
+ * <code>optional string appliance_id = 46;</code>
6988
+ * @return The applianceId.
6989
+ */
6990
+ public java.lang.String getApplianceId() {
6991
+ java.lang.Object ref = applianceId_;
6992
+ if (!(ref instanceof java.lang.String)) {
6993
+ com.google.protobuf.ByteString bs =
6994
+ (com.google.protobuf.ByteString) ref;
6995
+ java.lang.String s = bs.toStringUtf8();
6996
+ applianceId_ = s;
6997
+ return s;
6998
+ } else {
6999
+ return (java.lang.String) ref;
7000
+ }
7001
+ }
7002
+ /**
7003
+ * <code>optional string appliance_id = 46;</code>
7004
+ * @return The bytes for applianceId.
7005
+ */
7006
+ public com.google.protobuf.ByteString
7007
+ getApplianceIdBytes() {
7008
+ java.lang.Object ref = applianceId_;
7009
+ if (ref instanceof String) {
7010
+ com.google.protobuf.ByteString b =
7011
+ com.google.protobuf.ByteString.copyFromUtf8(
7012
+ (java.lang.String) ref);
7013
+ applianceId_ = b;
7014
+ return b;
7015
+ } else {
7016
+ return (com.google.protobuf.ByteString) ref;
7017
+ }
7018
+ }
7019
+ /**
7020
+ * <code>optional string appliance_id = 46;</code>
7021
+ * @param value The applianceId to set.
7022
+ * @return This builder for chaining.
7023
+ */
7024
+ public Builder setApplianceId(
7025
+ java.lang.String value) {
7026
+ if (value == null) { throw new NullPointerException(); }
7027
+ applianceId_ = value;
7028
+ bitField1_ |= 0x00002000;
7029
+ onChanged();
7030
+ return this;
7031
+ }
7032
+ /**
7033
+ * <code>optional string appliance_id = 46;</code>
7034
+ * @return This builder for chaining.
7035
+ */
7036
+ public Builder clearApplianceId() {
7037
+ applianceId_ = getDefaultInstance().getApplianceId();
7038
+ bitField1_ = (bitField1_ & ~0x00002000);
7039
+ onChanged();
7040
+ return this;
7041
+ }
7042
+ /**
7043
+ * <code>optional string appliance_id = 46;</code>
7044
+ * @param value The bytes for applianceId to set.
7045
+ * @return This builder for chaining.
7046
+ */
7047
+ public Builder setApplianceIdBytes(
7048
+ com.google.protobuf.ByteString value) {
7049
+ if (value == null) { throw new NullPointerException(); }
7050
+ checkByteStringIsUtf8(value);
7051
+ applianceId_ = value;
7052
+ bitField1_ |= 0x00002000;
7053
+ onChanged();
7054
+ return this;
7055
+ }
6899
7056
  @java.lang.Override
6900
7057
  public final Builder setUnknownFields(
6901
7058
  final com.google.protobuf.UnknownFieldSet unknownFields) {
@@ -675,4 +675,21 @@ public interface CitrixGuestOrBuilder extends
675
675
  */
676
676
  com.google.protobuf.ByteString
677
677
  getCitrixPoolUuidBytes();
678
+
679
+ /**
680
+ * <code>optional string appliance_id = 46;</code>
681
+ * @return Whether the applianceId field is set.
682
+ */
683
+ boolean hasApplianceId();
684
+ /**
685
+ * <code>optional string appliance_id = 46;</code>
686
+ * @return The applianceId.
687
+ */
688
+ java.lang.String getApplianceId();
689
+ /**
690
+ * <code>optional string appliance_id = 46;</code>
691
+ * @return The bytes for applianceId.
692
+ */
693
+ com.google.protobuf.ByteString
694
+ getApplianceIdBytes();
678
695
  }
@@ -40,6 +40,8 @@ private static final long serialVersionUID = 0L;
40
40
  physicalCpus_ = java.util.Collections.emptyList();
41
41
  crashDumps_ = java.util.Collections.emptyList();
42
42
  citrixPoolUuid_ = "";
43
+ guestAssetRefs_ =
44
+ com.google.protobuf.LazyStringArrayList.emptyList();
43
45
  }
44
46
 
45
47
  @java.lang.Override
@@ -1234,6 +1236,43 @@ private static final long serialVersionUID = 0L;
1234
1236
  }
1235
1237
  }
1236
1238
 
1239
+ public static final int GUEST_ASSET_REFS_FIELD_NUMBER = 31;
1240
+ @SuppressWarnings("serial")
1241
+ private com.google.protobuf.LazyStringArrayList guestAssetRefs_ =
1242
+ com.google.protobuf.LazyStringArrayList.emptyList();
1243
+ /**
1244
+ * <code>repeated string guest_asset_refs = 31;</code>
1245
+ * @return A list containing the guestAssetRefs.
1246
+ */
1247
+ public com.google.protobuf.ProtocolStringList
1248
+ getGuestAssetRefsList() {
1249
+ return guestAssetRefs_;
1250
+ }
1251
+ /**
1252
+ * <code>repeated string guest_asset_refs = 31;</code>
1253
+ * @return The count of guestAssetRefs.
1254
+ */
1255
+ public int getGuestAssetRefsCount() {
1256
+ return guestAssetRefs_.size();
1257
+ }
1258
+ /**
1259
+ * <code>repeated string guest_asset_refs = 31;</code>
1260
+ * @param index The index of the element to return.
1261
+ * @return The guestAssetRefs at the given index.
1262
+ */
1263
+ public java.lang.String getGuestAssetRefs(int index) {
1264
+ return guestAssetRefs_.get(index);
1265
+ }
1266
+ /**
1267
+ * <code>repeated string guest_asset_refs = 31;</code>
1268
+ * @param index The index of the value to return.
1269
+ * @return The bytes of the guestAssetRefs at the given index.
1270
+ */
1271
+ public com.google.protobuf.ByteString
1272
+ getGuestAssetRefsBytes(int index) {
1273
+ return guestAssetRefs_.getByteString(index);
1274
+ }
1275
+
1237
1276
  private byte memoizedIsInitialized = -1;
1238
1277
  @java.lang.Override
1239
1278
  public final boolean isInitialized() {
@@ -1338,6 +1377,9 @@ private static final long serialVersionUID = 0L;
1338
1377
  if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(citrixPoolUuid_)) {
1339
1378
  com.google.protobuf.GeneratedMessageV3.writeString(output, 30, citrixPoolUuid_);
1340
1379
  }
1380
+ for (int i = 0; i < guestAssetRefs_.size(); i++) {
1381
+ com.google.protobuf.GeneratedMessageV3.writeString(output, 31, guestAssetRefs_.getRaw(i));
1382
+ }
1341
1383
  getUnknownFields().writeTo(output);
1342
1384
  }
1343
1385
 
@@ -1451,6 +1493,14 @@ private static final long serialVersionUID = 0L;
1451
1493
  if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(citrixPoolUuid_)) {
1452
1494
  size += com.google.protobuf.GeneratedMessageV3.computeStringSize(30, citrixPoolUuid_);
1453
1495
  }
1496
+ {
1497
+ int dataSize = 0;
1498
+ for (int i = 0; i < guestAssetRefs_.size(); i++) {
1499
+ dataSize += computeStringSizeNoTag(guestAssetRefs_.getRaw(i));
1500
+ }
1501
+ size += dataSize;
1502
+ size += 2 * getGuestAssetRefsList().size();
1503
+ }
1454
1504
  size += getUnknownFields().getSerializedSize();
1455
1505
  memoizedSize = size;
1456
1506
  return size;
@@ -1592,6 +1642,8 @@ private static final long serialVersionUID = 0L;
1592
1642
  .equals(other.getCrashDumpsList())) return false;
1593
1643
  if (!getCitrixPoolUuid()
1594
1644
  .equals(other.getCitrixPoolUuid())) return false;
1645
+ if (!getGuestAssetRefsList()
1646
+ .equals(other.getGuestAssetRefsList())) return false;
1595
1647
  if (!getUnknownFields().equals(other.getUnknownFields())) return false;
1596
1648
  return true;
1597
1649
  }
@@ -1727,6 +1779,10 @@ private static final long serialVersionUID = 0L;
1727
1779
  }
1728
1780
  hash = (37 * hash) + CITRIX_POOL_UUID_FIELD_NUMBER;
1729
1781
  hash = (53 * hash) + getCitrixPoolUuid().hashCode();
1782
+ if (getGuestAssetRefsCount() > 0) {
1783
+ hash = (37 * hash) + GUEST_ASSET_REFS_FIELD_NUMBER;
1784
+ hash = (53 * hash) + getGuestAssetRefsList().hashCode();
1785
+ }
1730
1786
  hash = (29 * hash) + getUnknownFields().hashCode();
1731
1787
  memoizedHashCode = hash;
1732
1788
  return hash;
@@ -1947,6 +2003,8 @@ private static final long serialVersionUID = 0L;
1947
2003
  }
1948
2004
  bitField0_ = (bitField0_ & ~0x10000000);
1949
2005
  citrixPoolUuid_ = "";
2006
+ guestAssetRefs_ =
2007
+ com.google.protobuf.LazyStringArrayList.emptyList();
1950
2008
  return this;
1951
2009
  }
1952
2010
 
@@ -2141,6 +2199,10 @@ private static final long serialVersionUID = 0L;
2141
2199
  if (((from_bitField0_ & 0x20000000) != 0)) {
2142
2200
  result.citrixPoolUuid_ = citrixPoolUuid_;
2143
2201
  }
2202
+ if (((from_bitField0_ & 0x40000000) != 0)) {
2203
+ guestAssetRefs_.makeImmutable();
2204
+ result.guestAssetRefs_ = guestAssetRefs_;
2205
+ }
2144
2206
  result.bitField0_ |= to_bitField0_;
2145
2207
  }
2146
2208
 
@@ -2471,6 +2533,16 @@ private static final long serialVersionUID = 0L;
2471
2533
  bitField0_ |= 0x20000000;
2472
2534
  onChanged();
2473
2535
  }
2536
+ if (!other.guestAssetRefs_.isEmpty()) {
2537
+ if (guestAssetRefs_.isEmpty()) {
2538
+ guestAssetRefs_ = other.guestAssetRefs_;
2539
+ bitField0_ |= 0x40000000;
2540
+ } else {
2541
+ ensureGuestAssetRefsIsMutable();
2542
+ guestAssetRefs_.addAll(other.guestAssetRefs_);
2543
+ }
2544
+ onChanged();
2545
+ }
2474
2546
  this.mergeUnknownFields(other.getUnknownFields());
2475
2547
  onChanged();
2476
2548
  return this;
@@ -2705,6 +2777,12 @@ private static final long serialVersionUID = 0L;
2705
2777
  bitField0_ |= 0x20000000;
2706
2778
  break;
2707
2779
  } // case 242
2780
+ case 250: {
2781
+ java.lang.String s = input.readStringRequireUtf8();
2782
+ ensureGuestAssetRefsIsMutable();
2783
+ guestAssetRefs_.add(s);
2784
+ break;
2785
+ } // case 250
2708
2786
  default: {
2709
2787
  if (!super.parseUnknownField(input, extensionRegistry, tag)) {
2710
2788
  done = true; // was an endgroup tag
@@ -6019,6 +6097,117 @@ private static final long serialVersionUID = 0L;
6019
6097
  onChanged();
6020
6098
  return this;
6021
6099
  }
6100
+
6101
+ private com.google.protobuf.LazyStringArrayList guestAssetRefs_ =
6102
+ com.google.protobuf.LazyStringArrayList.emptyList();
6103
+ private void ensureGuestAssetRefsIsMutable() {
6104
+ if (!guestAssetRefs_.isModifiable()) {
6105
+ guestAssetRefs_ = new com.google.protobuf.LazyStringArrayList(guestAssetRefs_);
6106
+ }
6107
+ bitField0_ |= 0x40000000;
6108
+ }
6109
+ /**
6110
+ * <code>repeated string guest_asset_refs = 31;</code>
6111
+ * @return A list containing the guestAssetRefs.
6112
+ */
6113
+ public com.google.protobuf.ProtocolStringList
6114
+ getGuestAssetRefsList() {
6115
+ guestAssetRefs_.makeImmutable();
6116
+ return guestAssetRefs_;
6117
+ }
6118
+ /**
6119
+ * <code>repeated string guest_asset_refs = 31;</code>
6120
+ * @return The count of guestAssetRefs.
6121
+ */
6122
+ public int getGuestAssetRefsCount() {
6123
+ return guestAssetRefs_.size();
6124
+ }
6125
+ /**
6126
+ * <code>repeated string guest_asset_refs = 31;</code>
6127
+ * @param index The index of the element to return.
6128
+ * @return The guestAssetRefs at the given index.
6129
+ */
6130
+ public java.lang.String getGuestAssetRefs(int index) {
6131
+ return guestAssetRefs_.get(index);
6132
+ }
6133
+ /**
6134
+ * <code>repeated string guest_asset_refs = 31;</code>
6135
+ * @param index The index of the value to return.
6136
+ * @return The bytes of the guestAssetRefs at the given index.
6137
+ */
6138
+ public com.google.protobuf.ByteString
6139
+ getGuestAssetRefsBytes(int index) {
6140
+ return guestAssetRefs_.getByteString(index);
6141
+ }
6142
+ /**
6143
+ * <code>repeated string guest_asset_refs = 31;</code>
6144
+ * @param index The index to set the value at.
6145
+ * @param value The guestAssetRefs to set.
6146
+ * @return This builder for chaining.
6147
+ */
6148
+ public Builder setGuestAssetRefs(
6149
+ int index, java.lang.String value) {
6150
+ if (value == null) { throw new NullPointerException(); }
6151
+ ensureGuestAssetRefsIsMutable();
6152
+ guestAssetRefs_.set(index, value);
6153
+ bitField0_ |= 0x40000000;
6154
+ onChanged();
6155
+ return this;
6156
+ }
6157
+ /**
6158
+ * <code>repeated string guest_asset_refs = 31;</code>
6159
+ * @param value The guestAssetRefs to add.
6160
+ * @return This builder for chaining.
6161
+ */
6162
+ public Builder addGuestAssetRefs(
6163
+ java.lang.String value) {
6164
+ if (value == null) { throw new NullPointerException(); }
6165
+ ensureGuestAssetRefsIsMutable();
6166
+ guestAssetRefs_.add(value);
6167
+ bitField0_ |= 0x40000000;
6168
+ onChanged();
6169
+ return this;
6170
+ }
6171
+ /**
6172
+ * <code>repeated string guest_asset_refs = 31;</code>
6173
+ * @param values The guestAssetRefs to add.
6174
+ * @return This builder for chaining.
6175
+ */
6176
+ public Builder addAllGuestAssetRefs(
6177
+ java.lang.Iterable<java.lang.String> values) {
6178
+ ensureGuestAssetRefsIsMutable();
6179
+ com.google.protobuf.AbstractMessageLite.Builder.addAll(
6180
+ values, guestAssetRefs_);
6181
+ bitField0_ |= 0x40000000;
6182
+ onChanged();
6183
+ return this;
6184
+ }
6185
+ /**
6186
+ * <code>repeated string guest_asset_refs = 31;</code>
6187
+ * @return This builder for chaining.
6188
+ */
6189
+ public Builder clearGuestAssetRefs() {
6190
+ guestAssetRefs_ =
6191
+ com.google.protobuf.LazyStringArrayList.emptyList();
6192
+ bitField0_ = (bitField0_ & ~0x40000000);;
6193
+ onChanged();
6194
+ return this;
6195
+ }
6196
+ /**
6197
+ * <code>repeated string guest_asset_refs = 31;</code>
6198
+ * @param value The bytes of the guestAssetRefs to add.
6199
+ * @return This builder for chaining.
6200
+ */
6201
+ public Builder addGuestAssetRefsBytes(
6202
+ com.google.protobuf.ByteString value) {
6203
+ if (value == null) { throw new NullPointerException(); }
6204
+ checkByteStringIsUtf8(value);
6205
+ ensureGuestAssetRefsIsMutable();
6206
+ guestAssetRefs_.add(value);
6207
+ bitField0_ |= 0x40000000;
6208
+ onChanged();
6209
+ return this;
6210
+ }
6022
6211
  @java.lang.Override
6023
6212
  public final Builder setUnknownFields(
6024
6213
  final com.google.protobuf.UnknownFieldSet unknownFields) {
@@ -523,4 +523,29 @@ public interface CitrixHostOrBuilder extends
523
523
  */
524
524
  com.google.protobuf.ByteString
525
525
  getCitrixPoolUuidBytes();
526
+
527
+ /**
528
+ * <code>repeated string guest_asset_refs = 31;</code>
529
+ * @return A list containing the guestAssetRefs.
530
+ */
531
+ java.util.List<java.lang.String>
532
+ getGuestAssetRefsList();
533
+ /**
534
+ * <code>repeated string guest_asset_refs = 31;</code>
535
+ * @return The count of guestAssetRefs.
536
+ */
537
+ int getGuestAssetRefsCount();
538
+ /**
539
+ * <code>repeated string guest_asset_refs = 31;</code>
540
+ * @param index The index of the element to return.
541
+ * @return The guestAssetRefs at the given index.
542
+ */
543
+ java.lang.String getGuestAssetRefs(int index);
544
+ /**
545
+ * <code>repeated string guest_asset_refs = 31;</code>
546
+ * @param index The index of the value to return.
547
+ * @return The bytes of the guestAssetRefs at the given index.
548
+ */
549
+ com.google.protobuf.ByteString
550
+ getGuestAssetRefsBytes(int index);
526
551
  }