@lansweeper/data-platform-outbound-grpc 0.8.11 → 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.
- package/CHANGELOG.md +4 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +5 -0
- package/gen-proto/outbound_pb.js +51 -2
- package/generated-go/outbound.pb.go +1328 -1317
- package/java.json +1 -1
- package/model/pom.xml +1 -1
- package/model/src/main/proto/outbound.proto +1 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/CitrixHost$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/CitrixHost$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/CitrixHost.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/CitrixHostOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Outbound.class +0 -0
- package/model/target/classes/outbound.proto +1 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/CitrixHost.java +189 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/CitrixHostOrBuilder.java +25 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +438 -437
- package/model/target/maven-archiver/pom.properties +2 -2
- package/model/target/{outbound-model-0.8.10-sources.jar → outbound-model-0.8.11-sources.jar} +0 -0
- package/model/target/{outbound-model-0.8.10.jar → outbound-model-0.8.11.jar} +0 -0
- package/package.json +2 -2
- package/pom.xml +1 -1
- package/proto/outbound.proto +1 -0
- package/service/pom.xml +1 -1
- package/service/target/maven-archiver/pom.properties +2 -2
- package/service/target/{outbound-service-0.8.10-sources.jar → outbound-service-0.8.11-sources.jar} +0 -0
- package/service/target/{outbound-service-0.8.10.jar → outbound-service-0.8.11.jar} +0 -0
|
@@ -19840,6 +19840,10 @@ export class CitrixHost extends jspb.Message {
|
|
|
19840
19840
|
addCrashDumps(value?: CitrixHostCrashDump, index?: number): CitrixHostCrashDump;
|
|
19841
19841
|
getCitrixPoolUuid(): string;
|
|
19842
19842
|
setCitrixPoolUuid(value: string): CitrixHost;
|
|
19843
|
+
clearGuestAssetRefsList(): void;
|
|
19844
|
+
getGuestAssetRefsList(): Array<string>;
|
|
19845
|
+
setGuestAssetRefsList(value: Array<string>): CitrixHost;
|
|
19846
|
+
addGuestAssetRefs(value: string, index?: number): string;
|
|
19843
19847
|
|
|
19844
19848
|
serializeBinary(): Uint8Array;
|
|
19845
19849
|
toObject(includeInstance?: boolean): CitrixHost.AsObject;
|
|
@@ -19883,6 +19887,7 @@ export namespace CitrixHost {
|
|
|
19883
19887
|
physicalCpusList: Array<CitrixHostPhysicalCpu.AsObject>,
|
|
19884
19888
|
crashDumpsList: Array<CitrixHostCrashDump.AsObject>,
|
|
19885
19889
|
citrixPoolUuid: string,
|
|
19890
|
+
guestAssetRefsList: Array<string>,
|
|
19886
19891
|
}
|
|
19887
19892
|
}
|
|
19888
19893
|
|
package/gen-proto/outbound_pb.js
CHANGED
|
@@ -158749,7 +158749,7 @@ proto.com.lansweeper.dp.outbound.v1.CitrixPoolPatch.prototype.hasApplied = funct
|
|
|
158749
158749
|
* @private {!Array<number>}
|
|
158750
158750
|
* @const
|
|
158751
158751
|
*/
|
|
158752
|
-
proto.com.lansweeper.dp.outbound.v1.CitrixHost.repeatedFields_ = [23,24,25,26,27,28,29];
|
|
158752
|
+
proto.com.lansweeper.dp.outbound.v1.CitrixHost.repeatedFields_ = [23,24,25,26,27,28,29,31];
|
|
158753
158753
|
|
|
158754
158754
|
|
|
158755
158755
|
|
|
@@ -158818,7 +158818,8 @@ proto.com.lansweeper.dp.outbound.v1.CitrixHost.toObject = function(includeInstan
|
|
|
158818
158818
|
proto.com.lansweeper.dp.outbound.v1.CitrixHostPhysicalCpu.toObject, includeInstance),
|
|
158819
158819
|
crashDumpsList: jspb.Message.toObjectList(msg.getCrashDumpsList(),
|
|
158820
158820
|
proto.com.lansweeper.dp.outbound.v1.CitrixHostCrashDump.toObject, includeInstance),
|
|
158821
|
-
citrixPoolUuid: jspb.Message.getFieldWithDefault(msg, 30, "")
|
|
158821
|
+
citrixPoolUuid: jspb.Message.getFieldWithDefault(msg, 30, ""),
|
|
158822
|
+
guestAssetRefsList: (f = jspb.Message.getRepeatedField(msg, 31)) == null ? undefined : f
|
|
158822
158823
|
};
|
|
158823
158824
|
|
|
158824
158825
|
if (includeInstance) {
|
|
@@ -158983,6 +158984,10 @@ proto.com.lansweeper.dp.outbound.v1.CitrixHost.deserializeBinaryFromReader = fun
|
|
|
158983
158984
|
var value = /** @type {string} */ (reader.readString());
|
|
158984
158985
|
msg.setCitrixPoolUuid(value);
|
|
158985
158986
|
break;
|
|
158987
|
+
case 31:
|
|
158988
|
+
var value = /** @type {string} */ (reader.readString());
|
|
158989
|
+
msg.addGuestAssetRefs(value);
|
|
158990
|
+
break;
|
|
158986
158991
|
default:
|
|
158987
158992
|
reader.skipField();
|
|
158988
158993
|
break;
|
|
@@ -159230,6 +159235,13 @@ proto.com.lansweeper.dp.outbound.v1.CitrixHost.serializeBinaryToWriter = functio
|
|
|
159230
159235
|
f
|
|
159231
159236
|
);
|
|
159232
159237
|
}
|
|
159238
|
+
f = message.getGuestAssetRefsList();
|
|
159239
|
+
if (f.length > 0) {
|
|
159240
|
+
writer.writeRepeatedString(
|
|
159241
|
+
31,
|
|
159242
|
+
f
|
|
159243
|
+
);
|
|
159244
|
+
}
|
|
159233
159245
|
};
|
|
159234
159246
|
|
|
159235
159247
|
|
|
@@ -160310,6 +160322,43 @@ proto.com.lansweeper.dp.outbound.v1.CitrixHost.prototype.setCitrixPoolUuid = fun
|
|
|
160310
160322
|
};
|
|
160311
160323
|
|
|
160312
160324
|
|
|
160325
|
+
/**
|
|
160326
|
+
* repeated string guest_asset_refs = 31;
|
|
160327
|
+
* @return {!Array<string>}
|
|
160328
|
+
*/
|
|
160329
|
+
proto.com.lansweeper.dp.outbound.v1.CitrixHost.prototype.getGuestAssetRefsList = function() {
|
|
160330
|
+
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 31));
|
|
160331
|
+
};
|
|
160332
|
+
|
|
160333
|
+
|
|
160334
|
+
/**
|
|
160335
|
+
* @param {!Array<string>} value
|
|
160336
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CitrixHost} returns this
|
|
160337
|
+
*/
|
|
160338
|
+
proto.com.lansweeper.dp.outbound.v1.CitrixHost.prototype.setGuestAssetRefsList = function(value) {
|
|
160339
|
+
return jspb.Message.setField(this, 31, value || []);
|
|
160340
|
+
};
|
|
160341
|
+
|
|
160342
|
+
|
|
160343
|
+
/**
|
|
160344
|
+
* @param {string} value
|
|
160345
|
+
* @param {number=} opt_index
|
|
160346
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CitrixHost} returns this
|
|
160347
|
+
*/
|
|
160348
|
+
proto.com.lansweeper.dp.outbound.v1.CitrixHost.prototype.addGuestAssetRefs = function(value, opt_index) {
|
|
160349
|
+
return jspb.Message.addToRepeatedField(this, 31, value, opt_index);
|
|
160350
|
+
};
|
|
160351
|
+
|
|
160352
|
+
|
|
160353
|
+
/**
|
|
160354
|
+
* Clears the list making it empty but non-null.
|
|
160355
|
+
* @return {!proto.com.lansweeper.dp.outbound.v1.CitrixHost} returns this
|
|
160356
|
+
*/
|
|
160357
|
+
proto.com.lansweeper.dp.outbound.v1.CitrixHost.prototype.clearGuestAssetRefsList = function() {
|
|
160358
|
+
return this.setGuestAssetRefsList([]);
|
|
160359
|
+
};
|
|
160360
|
+
|
|
160361
|
+
|
|
160313
160362
|
|
|
160314
160363
|
|
|
160315
160364
|
|