@lansweeper/data-platform-outbound-grpc 0.8.9 → 0.8.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +40 -0
- package/gen-proto/outbound_pb.js +322 -3
- package/generated-go/outbound.pb.go +2034 -1933
- package/java.json +1 -1
- package/model/pom.xml +1 -1
- package/model/src/main/proto/outbound.proto +7 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/CitrixGuest$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/CitrixGuest$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/CitrixGuest.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/CitrixGuestOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/CitrixPool$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/CitrixPool$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/CitrixPool.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/CitrixPoolOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/CitrixUser$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/CitrixUser$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/CitrixUser.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/CitrixUserOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Outbound.class +0 -0
- package/model/target/classes/outbound.proto +7 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/CitrixGuest.java +157 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/CitrixGuestOrBuilder.java +17 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/CitrixPool.java +350 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/CitrixPoolOrBuilder.java +24 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/CitrixUser.java +723 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/CitrixUserOrBuilder.java +44 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +538 -522
- package/model/target/maven-archiver/pom.properties +2 -2
- package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +4 -0
- package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +2 -0
- package/model/target/{outbound-model-0.8.8-sources.jar → outbound-model-0.8.10-sources.jar} +0 -0
- package/model/target/{outbound-model-0.8.8.jar → outbound-model-0.8.10.jar} +0 -0
- package/package.json +2 -2
- package/pom.xml +1 -1
- package/proto/outbound.proto +7 -0
- package/service/pom.xml +1 -1
- package/service/target/maven-archiver/pom.properties +2 -2
- package/service/target/{outbound-service-0.8.8-sources.jar → outbound-service-0.8.10-sources.jar} +0 -0
- package/service/target/{outbound-service-0.8.8.jar → outbound-service-0.8.10.jar} +0 -0
package/java.json
CHANGED
package/model/pom.xml
CHANGED
|
@@ -4465,6 +4465,12 @@ message CitrixPool {
|
|
|
4465
4465
|
repeated string template_name = 23;
|
|
4466
4466
|
repeated CitrixPhysicalInterface physical_interfaces = 24;
|
|
4467
4467
|
repeated CitrixVirtualInterface virtual_interfaces = 25;
|
|
4468
|
+
repeated CitrixUser citrix_user = 26;
|
|
4469
|
+
}
|
|
4470
|
+
|
|
4471
|
+
message CitrixUser {
|
|
4472
|
+
optional string name = 1;
|
|
4473
|
+
optional string short_name = 2;
|
|
4468
4474
|
}
|
|
4469
4475
|
|
|
4470
4476
|
message CitrixAppliance {
|
|
@@ -4658,6 +4664,7 @@ message CitrixGuest {
|
|
|
4658
4664
|
repeated CitrixVirtualBlockDevice virtual_block_devices = 43;
|
|
4659
4665
|
string citrix_host_uuid = 44;
|
|
4660
4666
|
string citrix_pool_uuid = 45;
|
|
4667
|
+
optional string appliance_id = 46;
|
|
4661
4668
|
}
|
|
4662
4669
|
|
|
4663
4670
|
message CitrixGuestExtraInfo {
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -4465,6 +4465,12 @@ message CitrixPool {
|
|
|
4465
4465
|
repeated string template_name = 23;
|
|
4466
4466
|
repeated CitrixPhysicalInterface physical_interfaces = 24;
|
|
4467
4467
|
repeated CitrixVirtualInterface virtual_interfaces = 25;
|
|
4468
|
+
repeated CitrixUser citrix_user = 26;
|
|
4469
|
+
}
|
|
4470
|
+
|
|
4471
|
+
message CitrixUser {
|
|
4472
|
+
optional string name = 1;
|
|
4473
|
+
optional string short_name = 2;
|
|
4468
4474
|
}
|
|
4469
4475
|
|
|
4470
4476
|
message CitrixAppliance {
|
|
@@ -4658,6 +4664,7 @@ message CitrixGuest {
|
|
|
4658
4664
|
repeated CitrixVirtualBlockDevice virtual_block_devices = 43;
|
|
4659
4665
|
string citrix_host_uuid = 44;
|
|
4660
4666
|
string citrix_pool_uuid = 45;
|
|
4667
|
+
optional string appliance_id = 46;
|
|
4661
4668
|
}
|
|
4662
4669
|
|
|
4663
4670
|
message CitrixGuestExtraInfo {
|
package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/CitrixGuest.java
CHANGED
|
@@ -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
|
}
|