@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.
- package/CHANGELOG.md +16 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +46 -0
- package/gen-proto/outbound_pb.js +394 -3
- package/generated-go/outbound.pb.go +10782 -10643
- package/java.json +1 -1
- package/model/pom.xml +1 -1
- package/model/src/main/proto/outbound.proto +10 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/CloudEntity$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/CloudEntity$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/CloudEntity.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/CloudEntityOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Outbound.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/PublicCloudLink$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/PublicCloudLink$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/PublicCloudLink.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/PublicCloudLinkOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/VmwareEsxiGuestVm$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/VmwareEsxiGuestVm$Builder$EsxiGuestSnapshotsConverter.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/VmwareEsxiGuestVm$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/VmwareEsxiGuestVm$EsxiGuestSnapshotsDefaultEntryHolder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/VmwareEsxiGuestVm.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/VmwareEsxiGuestVmOrBuilder.class +0 -0
- package/model/target/classes/outbound.proto +10 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/CloudEntity.java +508 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/CloudEntityOrBuilder.java +41 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +3129 -3109
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/PublicCloudLink.java +950 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/PublicCloudLinkOrBuilder.java +58 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/VmwareEsxiGuestVm.java +193 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/VmwareEsxiGuestVmOrBuilder.java +29 -0
- 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.3.25-sources.jar → outbound-model-0.3.27-sources.jar} +0 -0
- package/model/target/{outbound-model-0.3.25.jar → outbound-model-0.3.27.jar} +0 -0
- package/package.json +2 -2
- package/pom.xml +1 -1
- package/proto/outbound.proto +10 -0
- package/service/pom.xml +1 -1
- package/service/target/maven-archiver/pom.properties +2 -2
- package/service/target/{outbound-service-0.3.25-sources.jar → outbound-service-0.3.27-sources.jar} +0 -0
- package/service/target/{outbound-service-0.3.25.jar → outbound-service-0.3.27.jar} +0 -0
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
2
|
+
// source: outbound.proto
|
|
3
|
+
|
|
4
|
+
// Protobuf Java Version: 3.25.1
|
|
5
|
+
package com.lansweeper.dp.outbound.v1;
|
|
6
|
+
|
|
7
|
+
public interface PublicCloudLinkOrBuilder extends
|
|
8
|
+
// @@protoc_insertion_point(interface_extends:com.lansweeper.dp.outbound.v1.PublicCloudLink)
|
|
9
|
+
com.google.protobuf.MessageOrBuilder {
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* <code>string to_public_cloud_asset_id = 1;</code>
|
|
13
|
+
* @return The toPublicCloudAssetId.
|
|
14
|
+
*/
|
|
15
|
+
java.lang.String getToPublicCloudAssetId();
|
|
16
|
+
/**
|
|
17
|
+
* <code>string to_public_cloud_asset_id = 1;</code>
|
|
18
|
+
* @return The bytes for toPublicCloudAssetId.
|
|
19
|
+
*/
|
|
20
|
+
com.google.protobuf.ByteString
|
|
21
|
+
getToPublicCloudAssetIdBytes();
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* <code>string link_type = 2;</code>
|
|
25
|
+
* @return The linkType.
|
|
26
|
+
*/
|
|
27
|
+
java.lang.String getLinkType();
|
|
28
|
+
/**
|
|
29
|
+
* <code>string link_type = 2;</code>
|
|
30
|
+
* @return The bytes for linkType.
|
|
31
|
+
*/
|
|
32
|
+
com.google.protobuf.ByteString
|
|
33
|
+
getLinkTypeBytes();
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* <code>string to_public_cloud_asset_type = 3;</code>
|
|
37
|
+
* @return The toPublicCloudAssetType.
|
|
38
|
+
*/
|
|
39
|
+
java.lang.String getToPublicCloudAssetType();
|
|
40
|
+
/**
|
|
41
|
+
* <code>string to_public_cloud_asset_type = 3;</code>
|
|
42
|
+
* @return The bytes for toPublicCloudAssetType.
|
|
43
|
+
*/
|
|
44
|
+
com.google.protobuf.ByteString
|
|
45
|
+
getToPublicCloudAssetTypeBytes();
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* <code>string to_public_cloud_asset_name = 4;</code>
|
|
49
|
+
* @return The toPublicCloudAssetName.
|
|
50
|
+
*/
|
|
51
|
+
java.lang.String getToPublicCloudAssetName();
|
|
52
|
+
/**
|
|
53
|
+
* <code>string to_public_cloud_asset_name = 4;</code>
|
|
54
|
+
* @return The bytes for toPublicCloudAssetName.
|
|
55
|
+
*/
|
|
56
|
+
com.google.protobuf.ByteString
|
|
57
|
+
getToPublicCloudAssetNameBytes();
|
|
58
|
+
}
|
|
@@ -36,6 +36,7 @@ private static final long serialVersionUID = 0L;
|
|
|
36
36
|
toolsVersionStatus_ = "";
|
|
37
37
|
domainName_ = "";
|
|
38
38
|
configName_ = "";
|
|
39
|
+
vcenterInstanceReference_ = "";
|
|
39
40
|
}
|
|
40
41
|
|
|
41
42
|
@java.lang.Override
|
|
@@ -1141,6 +1142,65 @@ com.lansweeper.dp.outbound.v1.VmwareSnapshot defaultValue) {
|
|
|
1141
1142
|
return memorySizeMb_;
|
|
1142
1143
|
}
|
|
1143
1144
|
|
|
1145
|
+
public static final int VCENTER_INSTANCE_REFERENCE_FIELD_NUMBER = 22;
|
|
1146
|
+
@SuppressWarnings("serial")
|
|
1147
|
+
private volatile java.lang.Object vcenterInstanceReference_ = "";
|
|
1148
|
+
/**
|
|
1149
|
+
* <pre>
|
|
1150
|
+
* Reference to the VCenter instance, if this Vm contains a vCenter instance
|
|
1151
|
+
* </pre>
|
|
1152
|
+
*
|
|
1153
|
+
* <code>optional string vcenter_instance_reference = 22;</code>
|
|
1154
|
+
* @return Whether the vcenterInstanceReference field is set.
|
|
1155
|
+
*/
|
|
1156
|
+
@java.lang.Override
|
|
1157
|
+
public boolean hasVcenterInstanceReference() {
|
|
1158
|
+
return ((bitField0_ & 0x00040000) != 0);
|
|
1159
|
+
}
|
|
1160
|
+
/**
|
|
1161
|
+
* <pre>
|
|
1162
|
+
* Reference to the VCenter instance, if this Vm contains a vCenter instance
|
|
1163
|
+
* </pre>
|
|
1164
|
+
*
|
|
1165
|
+
* <code>optional string vcenter_instance_reference = 22;</code>
|
|
1166
|
+
* @return The vcenterInstanceReference.
|
|
1167
|
+
*/
|
|
1168
|
+
@java.lang.Override
|
|
1169
|
+
public java.lang.String getVcenterInstanceReference() {
|
|
1170
|
+
java.lang.Object ref = vcenterInstanceReference_;
|
|
1171
|
+
if (ref instanceof java.lang.String) {
|
|
1172
|
+
return (java.lang.String) ref;
|
|
1173
|
+
} else {
|
|
1174
|
+
com.google.protobuf.ByteString bs =
|
|
1175
|
+
(com.google.protobuf.ByteString) ref;
|
|
1176
|
+
java.lang.String s = bs.toStringUtf8();
|
|
1177
|
+
vcenterInstanceReference_ = s;
|
|
1178
|
+
return s;
|
|
1179
|
+
}
|
|
1180
|
+
}
|
|
1181
|
+
/**
|
|
1182
|
+
* <pre>
|
|
1183
|
+
* Reference to the VCenter instance, if this Vm contains a vCenter instance
|
|
1184
|
+
* </pre>
|
|
1185
|
+
*
|
|
1186
|
+
* <code>optional string vcenter_instance_reference = 22;</code>
|
|
1187
|
+
* @return The bytes for vcenterInstanceReference.
|
|
1188
|
+
*/
|
|
1189
|
+
@java.lang.Override
|
|
1190
|
+
public com.google.protobuf.ByteString
|
|
1191
|
+
getVcenterInstanceReferenceBytes() {
|
|
1192
|
+
java.lang.Object ref = vcenterInstanceReference_;
|
|
1193
|
+
if (ref instanceof java.lang.String) {
|
|
1194
|
+
com.google.protobuf.ByteString b =
|
|
1195
|
+
com.google.protobuf.ByteString.copyFromUtf8(
|
|
1196
|
+
(java.lang.String) ref);
|
|
1197
|
+
vcenterInstanceReference_ = b;
|
|
1198
|
+
return b;
|
|
1199
|
+
} else {
|
|
1200
|
+
return (com.google.protobuf.ByteString) ref;
|
|
1201
|
+
}
|
|
1202
|
+
}
|
|
1203
|
+
|
|
1144
1204
|
private byte memoizedIsInitialized = -1;
|
|
1145
1205
|
@java.lang.Override
|
|
1146
1206
|
public final boolean isInitialized() {
|
|
@@ -1221,6 +1281,9 @@ com.lansweeper.dp.outbound.v1.VmwareSnapshot defaultValue) {
|
|
|
1221
1281
|
if (((bitField0_ & 0x00020000) != 0)) {
|
|
1222
1282
|
output.writeDouble(21, memorySizeMb_);
|
|
1223
1283
|
}
|
|
1284
|
+
if (((bitField0_ & 0x00040000) != 0)) {
|
|
1285
|
+
com.google.protobuf.GeneratedMessageV3.writeString(output, 22, vcenterInstanceReference_);
|
|
1286
|
+
}
|
|
1224
1287
|
getUnknownFields().writeTo(output);
|
|
1225
1288
|
}
|
|
1226
1289
|
|
|
@@ -1306,6 +1369,9 @@ com.lansweeper.dp.outbound.v1.VmwareSnapshot defaultValue) {
|
|
|
1306
1369
|
size += com.google.protobuf.CodedOutputStream
|
|
1307
1370
|
.computeDoubleSize(21, memorySizeMb_);
|
|
1308
1371
|
}
|
|
1372
|
+
if (((bitField0_ & 0x00040000) != 0)) {
|
|
1373
|
+
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(22, vcenterInstanceReference_);
|
|
1374
|
+
}
|
|
1309
1375
|
size += getUnknownFields().getSerializedSize();
|
|
1310
1376
|
memoizedSize = size;
|
|
1311
1377
|
return size;
|
|
@@ -1418,6 +1484,11 @@ com.lansweeper.dp.outbound.v1.VmwareSnapshot defaultValue) {
|
|
|
1418
1484
|
!= java.lang.Double.doubleToLongBits(
|
|
1419
1485
|
other.getMemorySizeMb())) return false;
|
|
1420
1486
|
}
|
|
1487
|
+
if (hasVcenterInstanceReference() != other.hasVcenterInstanceReference()) return false;
|
|
1488
|
+
if (hasVcenterInstanceReference()) {
|
|
1489
|
+
if (!getVcenterInstanceReference()
|
|
1490
|
+
.equals(other.getVcenterInstanceReference())) return false;
|
|
1491
|
+
}
|
|
1421
1492
|
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
|
|
1422
1493
|
return true;
|
|
1423
1494
|
}
|
|
@@ -1511,6 +1582,10 @@ com.lansweeper.dp.outbound.v1.VmwareSnapshot defaultValue) {
|
|
|
1511
1582
|
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
|
|
1512
1583
|
java.lang.Double.doubleToLongBits(getMemorySizeMb()));
|
|
1513
1584
|
}
|
|
1585
|
+
if (hasVcenterInstanceReference()) {
|
|
1586
|
+
hash = (37 * hash) + VCENTER_INSTANCE_REFERENCE_FIELD_NUMBER;
|
|
1587
|
+
hash = (53 * hash) + getVcenterInstanceReference().hashCode();
|
|
1588
|
+
}
|
|
1514
1589
|
hash = (29 * hash) + getUnknownFields().hashCode();
|
|
1515
1590
|
memoizedHashCode = hash;
|
|
1516
1591
|
return hash;
|
|
@@ -1700,6 +1775,7 @@ com.lansweeper.dp.outbound.v1.VmwareSnapshot defaultValue) {
|
|
|
1700
1775
|
domainName_ = "";
|
|
1701
1776
|
configName_ = "";
|
|
1702
1777
|
memorySizeMb_ = 0D;
|
|
1778
|
+
vcenterInstanceReference_ = "";
|
|
1703
1779
|
return this;
|
|
1704
1780
|
}
|
|
1705
1781
|
|
|
@@ -1817,6 +1893,10 @@ com.lansweeper.dp.outbound.v1.VmwareSnapshot defaultValue) {
|
|
|
1817
1893
|
result.memorySizeMb_ = memorySizeMb_;
|
|
1818
1894
|
to_bitField0_ |= 0x00020000;
|
|
1819
1895
|
}
|
|
1896
|
+
if (((from_bitField0_ & 0x00200000) != 0)) {
|
|
1897
|
+
result.vcenterInstanceReference_ = vcenterInstanceReference_;
|
|
1898
|
+
to_bitField0_ |= 0x00040000;
|
|
1899
|
+
}
|
|
1820
1900
|
result.bitField0_ |= to_bitField0_;
|
|
1821
1901
|
}
|
|
1822
1902
|
|
|
@@ -1955,6 +2035,11 @@ com.lansweeper.dp.outbound.v1.VmwareSnapshot defaultValue) {
|
|
|
1955
2035
|
if (other.hasMemorySizeMb()) {
|
|
1956
2036
|
setMemorySizeMb(other.getMemorySizeMb());
|
|
1957
2037
|
}
|
|
2038
|
+
if (other.hasVcenterInstanceReference()) {
|
|
2039
|
+
vcenterInstanceReference_ = other.vcenterInstanceReference_;
|
|
2040
|
+
bitField0_ |= 0x00200000;
|
|
2041
|
+
onChanged();
|
|
2042
|
+
}
|
|
1958
2043
|
this.mergeUnknownFields(other.getUnknownFields());
|
|
1959
2044
|
onChanged();
|
|
1960
2045
|
return this;
|
|
@@ -2092,6 +2177,11 @@ com.lansweeper.dp.outbound.v1.VmwareSnapshot defaultValue) {
|
|
|
2092
2177
|
bitField0_ |= 0x00100000;
|
|
2093
2178
|
break;
|
|
2094
2179
|
} // case 169
|
|
2180
|
+
case 178: {
|
|
2181
|
+
vcenterInstanceReference_ = input.readStringRequireUtf8();
|
|
2182
|
+
bitField0_ |= 0x00200000;
|
|
2183
|
+
break;
|
|
2184
|
+
} // case 178
|
|
2095
2185
|
default: {
|
|
2096
2186
|
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
|
|
2097
2187
|
done = true; // was an endgroup tag
|
|
@@ -4152,6 +4242,109 @@ com.lansweeper.dp.outbound.v1.VmwareSnapshot defaultValue) {
|
|
|
4152
4242
|
onChanged();
|
|
4153
4243
|
return this;
|
|
4154
4244
|
}
|
|
4245
|
+
|
|
4246
|
+
private java.lang.Object vcenterInstanceReference_ = "";
|
|
4247
|
+
/**
|
|
4248
|
+
* <pre>
|
|
4249
|
+
* Reference to the VCenter instance, if this Vm contains a vCenter instance
|
|
4250
|
+
* </pre>
|
|
4251
|
+
*
|
|
4252
|
+
* <code>optional string vcenter_instance_reference = 22;</code>
|
|
4253
|
+
* @return Whether the vcenterInstanceReference field is set.
|
|
4254
|
+
*/
|
|
4255
|
+
public boolean hasVcenterInstanceReference() {
|
|
4256
|
+
return ((bitField0_ & 0x00200000) != 0);
|
|
4257
|
+
}
|
|
4258
|
+
/**
|
|
4259
|
+
* <pre>
|
|
4260
|
+
* Reference to the VCenter instance, if this Vm contains a vCenter instance
|
|
4261
|
+
* </pre>
|
|
4262
|
+
*
|
|
4263
|
+
* <code>optional string vcenter_instance_reference = 22;</code>
|
|
4264
|
+
* @return The vcenterInstanceReference.
|
|
4265
|
+
*/
|
|
4266
|
+
public java.lang.String getVcenterInstanceReference() {
|
|
4267
|
+
java.lang.Object ref = vcenterInstanceReference_;
|
|
4268
|
+
if (!(ref instanceof java.lang.String)) {
|
|
4269
|
+
com.google.protobuf.ByteString bs =
|
|
4270
|
+
(com.google.protobuf.ByteString) ref;
|
|
4271
|
+
java.lang.String s = bs.toStringUtf8();
|
|
4272
|
+
vcenterInstanceReference_ = s;
|
|
4273
|
+
return s;
|
|
4274
|
+
} else {
|
|
4275
|
+
return (java.lang.String) ref;
|
|
4276
|
+
}
|
|
4277
|
+
}
|
|
4278
|
+
/**
|
|
4279
|
+
* <pre>
|
|
4280
|
+
* Reference to the VCenter instance, if this Vm contains a vCenter instance
|
|
4281
|
+
* </pre>
|
|
4282
|
+
*
|
|
4283
|
+
* <code>optional string vcenter_instance_reference = 22;</code>
|
|
4284
|
+
* @return The bytes for vcenterInstanceReference.
|
|
4285
|
+
*/
|
|
4286
|
+
public com.google.protobuf.ByteString
|
|
4287
|
+
getVcenterInstanceReferenceBytes() {
|
|
4288
|
+
java.lang.Object ref = vcenterInstanceReference_;
|
|
4289
|
+
if (ref instanceof String) {
|
|
4290
|
+
com.google.protobuf.ByteString b =
|
|
4291
|
+
com.google.protobuf.ByteString.copyFromUtf8(
|
|
4292
|
+
(java.lang.String) ref);
|
|
4293
|
+
vcenterInstanceReference_ = b;
|
|
4294
|
+
return b;
|
|
4295
|
+
} else {
|
|
4296
|
+
return (com.google.protobuf.ByteString) ref;
|
|
4297
|
+
}
|
|
4298
|
+
}
|
|
4299
|
+
/**
|
|
4300
|
+
* <pre>
|
|
4301
|
+
* Reference to the VCenter instance, if this Vm contains a vCenter instance
|
|
4302
|
+
* </pre>
|
|
4303
|
+
*
|
|
4304
|
+
* <code>optional string vcenter_instance_reference = 22;</code>
|
|
4305
|
+
* @param value The vcenterInstanceReference to set.
|
|
4306
|
+
* @return This builder for chaining.
|
|
4307
|
+
*/
|
|
4308
|
+
public Builder setVcenterInstanceReference(
|
|
4309
|
+
java.lang.String value) {
|
|
4310
|
+
if (value == null) { throw new NullPointerException(); }
|
|
4311
|
+
vcenterInstanceReference_ = value;
|
|
4312
|
+
bitField0_ |= 0x00200000;
|
|
4313
|
+
onChanged();
|
|
4314
|
+
return this;
|
|
4315
|
+
}
|
|
4316
|
+
/**
|
|
4317
|
+
* <pre>
|
|
4318
|
+
* Reference to the VCenter instance, if this Vm contains a vCenter instance
|
|
4319
|
+
* </pre>
|
|
4320
|
+
*
|
|
4321
|
+
* <code>optional string vcenter_instance_reference = 22;</code>
|
|
4322
|
+
* @return This builder for chaining.
|
|
4323
|
+
*/
|
|
4324
|
+
public Builder clearVcenterInstanceReference() {
|
|
4325
|
+
vcenterInstanceReference_ = getDefaultInstance().getVcenterInstanceReference();
|
|
4326
|
+
bitField0_ = (bitField0_ & ~0x00200000);
|
|
4327
|
+
onChanged();
|
|
4328
|
+
return this;
|
|
4329
|
+
}
|
|
4330
|
+
/**
|
|
4331
|
+
* <pre>
|
|
4332
|
+
* Reference to the VCenter instance, if this Vm contains a vCenter instance
|
|
4333
|
+
* </pre>
|
|
4334
|
+
*
|
|
4335
|
+
* <code>optional string vcenter_instance_reference = 22;</code>
|
|
4336
|
+
* @param value The bytes for vcenterInstanceReference to set.
|
|
4337
|
+
* @return This builder for chaining.
|
|
4338
|
+
*/
|
|
4339
|
+
public Builder setVcenterInstanceReferenceBytes(
|
|
4340
|
+
com.google.protobuf.ByteString value) {
|
|
4341
|
+
if (value == null) { throw new NullPointerException(); }
|
|
4342
|
+
checkByteStringIsUtf8(value);
|
|
4343
|
+
vcenterInstanceReference_ = value;
|
|
4344
|
+
bitField0_ |= 0x00200000;
|
|
4345
|
+
onChanged();
|
|
4346
|
+
return this;
|
|
4347
|
+
}
|
|
4155
4348
|
@java.lang.Override
|
|
4156
4349
|
public final Builder setUnknownFields(
|
|
4157
4350
|
final com.google.protobuf.UnknownFieldSet unknownFields) {
|
|
@@ -571,4 +571,33 @@ com.lansweeper.dp.outbound.v1.VmwareSnapshot defaultValue);
|
|
|
571
571
|
* @return The memorySizeMb.
|
|
572
572
|
*/
|
|
573
573
|
double getMemorySizeMb();
|
|
574
|
+
|
|
575
|
+
/**
|
|
576
|
+
* <pre>
|
|
577
|
+
* Reference to the VCenter instance, if this Vm contains a vCenter instance
|
|
578
|
+
* </pre>
|
|
579
|
+
*
|
|
580
|
+
* <code>optional string vcenter_instance_reference = 22;</code>
|
|
581
|
+
* @return Whether the vcenterInstanceReference field is set.
|
|
582
|
+
*/
|
|
583
|
+
boolean hasVcenterInstanceReference();
|
|
584
|
+
/**
|
|
585
|
+
* <pre>
|
|
586
|
+
* Reference to the VCenter instance, if this Vm contains a vCenter instance
|
|
587
|
+
* </pre>
|
|
588
|
+
*
|
|
589
|
+
* <code>optional string vcenter_instance_reference = 22;</code>
|
|
590
|
+
* @return The vcenterInstanceReference.
|
|
591
|
+
*/
|
|
592
|
+
java.lang.String getVcenterInstanceReference();
|
|
593
|
+
/**
|
|
594
|
+
* <pre>
|
|
595
|
+
* Reference to the VCenter instance, if this Vm contains a vCenter instance
|
|
596
|
+
* </pre>
|
|
597
|
+
*
|
|
598
|
+
* <code>optional string vcenter_instance_reference = 22;</code>
|
|
599
|
+
* @return The bytes for vcenterInstanceReference.
|
|
600
|
+
*/
|
|
601
|
+
com.google.protobuf.ByteString
|
|
602
|
+
getVcenterInstanceReferenceBytes();
|
|
574
603
|
}
|
package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
CHANGED
|
@@ -35,6 +35,7 @@ com/lansweeper/dp/outbound/v1/SqlServerServiceOrBuilder.class
|
|
|
35
35
|
com/lansweeper/dp/outbound/v1/ComputerSystemProduct$Builder.class
|
|
36
36
|
com/lansweeper/dp/outbound/v1/ComputerMacWifiController.class
|
|
37
37
|
com/lansweeper/dp/outbound/v1/OperatingSystemChangeEvent$1.class
|
|
38
|
+
com/lansweeper/dp/outbound/v1/PublicCloudLink$1.class
|
|
38
39
|
com/lansweeper/dp/outbound/v1/ActiveDirectoryDomain$1.class
|
|
39
40
|
com/lansweeper/dp/outbound/v1/MotherboardDevice$1.class
|
|
40
41
|
com/lansweeper/dp/outbound/v1/ComputerLinuxBasicInfo$Builder.class
|
|
@@ -257,6 +258,7 @@ com/lansweeper/dp/outbound/v1/RawSoftware$1.class
|
|
|
257
258
|
com/lansweeper/dp/outbound/v1/ComputerConnectedUsbDeviceInfoOrBuilder.class
|
|
258
259
|
com/lansweeper/dp/outbound/v1/WindowsPageFileUsageOrBuilder.class
|
|
259
260
|
com/lansweeper/dp/outbound/v1/OperatingSystemService$Builder.class
|
|
261
|
+
com/lansweeper/dp/outbound/v1/PublicCloudLink$Builder.class
|
|
260
262
|
com/lansweeper/dp/outbound/v1/BiosOrBuilder.class
|
|
261
263
|
com/lansweeper/dp/outbound/v1/ComputerMacFirewire$1.class
|
|
262
264
|
com/lansweeper/dp/outbound/v1/WindowsSqlServer$Builder.class
|
|
@@ -561,6 +563,7 @@ com/lansweeper/dp/outbound/v1/SpecHardwareInfo$Builder.class
|
|
|
561
563
|
com/lansweeper/dp/outbound/v1/SiteKeyOrBuilder.class
|
|
562
564
|
com/lansweeper/dp/outbound/v1/SharedPermissionOrBuilder.class
|
|
563
565
|
com/lansweeper/dp/outbound/v1/WindowsPageFileSetting$1.class
|
|
566
|
+
com/lansweeper/dp/outbound/v1/PublicCloudLinkOrBuilder.class
|
|
564
567
|
com/lansweeper/dp/outbound/v1/CorrelationInfoOrBuilder.class
|
|
565
568
|
com/lansweeper/dp/outbound/v1/WindowsHyperVChangeEvent$1.class
|
|
566
569
|
com/lansweeper/dp/outbound/v1/SourceInfo$1.class
|
|
@@ -982,6 +985,7 @@ com/lansweeper/dp/outbound/v1/SqlServerClusterNode$1.class
|
|
|
982
985
|
com/lansweeper/dp/outbound/v1/IpLocationConfig$Builder.class
|
|
983
986
|
com/lansweeper/dp/outbound/v1/SccmServer.class
|
|
984
987
|
com/lansweeper/dp/outbound/v1/ComputerMacCamera$1.class
|
|
988
|
+
com/lansweeper/dp/outbound/v1/PublicCloudLink.class
|
|
985
989
|
com/lansweeper/dp/outbound/v1/ComputerMacInstallHistory$1.class
|
|
986
990
|
com/lansweeper/dp/outbound/v1/CorrelationInfo$Builder.class
|
|
987
991
|
com/lansweeper/dp/outbound/v1/DriverOrBuilder.class
|
package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
CHANGED
|
@@ -168,6 +168,7 @@
|
|
|
168
168
|
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ParallelPortOrBuilder.java
|
|
169
169
|
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/OperatingSystemRecovery.java
|
|
170
170
|
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/DriverOrBuilder.java
|
|
171
|
+
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/PublicCloudLink.java
|
|
171
172
|
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Office365GroupOrBuilder.java
|
|
172
173
|
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ComputerMacCameraOrBuilder.java
|
|
173
174
|
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/SoftwareInventoryOrBuilder.java
|
|
@@ -390,6 +391,7 @@
|
|
|
390
391
|
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/NetworkInterfaces.java
|
|
391
392
|
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/UnlinkedInstallationMetadata.java
|
|
392
393
|
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ComputerLinuxMemoryModule.java
|
|
394
|
+
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/PublicCloudLinkOrBuilder.java
|
|
393
395
|
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ComputerSystemProductOrBuilder.java
|
|
394
396
|
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ComputerWindowsSerial.java
|
|
395
397
|
/home/circleci/project/packages/data.platform/outbound/grpc/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/WindowsPnpSignedDriverOrBuilder.java
|
package/model/target/{outbound-model-0.3.25-sources.jar → outbound-model-0.3.27-sources.jar}
RENAMED
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lansweeper/data-platform-outbound-grpc",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.28",
|
|
4
4
|
"description": "Data Platform Outbound gRPC",
|
|
5
5
|
"main": "gen-proto/index.js",
|
|
6
6
|
"types": "gen-proto/index.d.ts",
|
|
@@ -9,5 +9,5 @@
|
|
|
9
9
|
"@grpc/grpc-js": "^1.5.1",
|
|
10
10
|
"google-protobuf": "^3.17.0"
|
|
11
11
|
},
|
|
12
|
-
"gitHead": "
|
|
12
|
+
"gitHead": "1c9a6a391e7e9d1b34f800da493acaa209fd6e1c"
|
|
13
13
|
}
|
package/pom.xml
CHANGED
package/proto/outbound.proto
CHANGED
|
@@ -586,6 +586,15 @@ message CloudEntity {
|
|
|
586
586
|
optional string tenant_id = 9;
|
|
587
587
|
optional string tenant_name = 10;
|
|
588
588
|
optional string resource_group = 11;
|
|
589
|
+
optional string cloud_asset_id = 12;
|
|
590
|
+
repeated PublicCloudLink public_cloud_links = 13;
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
message PublicCloudLink {
|
|
594
|
+
string to_public_cloud_asset_id = 1;
|
|
595
|
+
string link_type = 2;
|
|
596
|
+
string to_public_cloud_asset_type = 3;
|
|
597
|
+
string to_public_cloud_asset_name = 4;
|
|
589
598
|
}
|
|
590
599
|
|
|
591
600
|
/**
|
|
@@ -3975,6 +3984,7 @@ message VmwareEsxiGuestVm {
|
|
|
3975
3984
|
optional string domain_name = 18; // Domain name of the Esxi Guest VM
|
|
3976
3985
|
optional string config_name = 19; // Config name of the Esxi Guest VM
|
|
3977
3986
|
optional double memory_size_mb = 21; // Memory size in MB of the Esxi Guest VM
|
|
3987
|
+
optional string vcenter_instance_reference = 22; // Reference to the VCenter instance, if this Vm contains a vCenter instance
|
|
3978
3988
|
}
|
|
3979
3989
|
|
|
3980
3990
|
/*
|
package/service/pom.xml
CHANGED
package/service/target/{outbound-service-0.3.25-sources.jar → outbound-service-0.3.27-sources.jar}
RENAMED
|
index f409f01..cbcc4ac 100644
|
|
|
Binary file
|
|
index 8550323..29269b5 100644
|
|
|
Binary file
|