@lansweeper/data-platform-outbound-grpc 0.8.10 → 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.
Files changed (27) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/gen-proto/image.json +1 -1
  3. package/gen-proto/outbound_pb.d.ts +6 -0
  4. package/gen-proto/outbound_pb.js +49 -1
  5. package/generated-go/outbound.pb.go +958 -946
  6. package/java.json +1 -1
  7. package/model/pom.xml +1 -1
  8. package/model/src/main/proto/outbound.proto +1 -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/Outbound.class +0 -0
  14. package/model/target/classes/outbound.proto +1 -0
  15. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/CitrixGuest.java +157 -0
  16. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/CitrixGuestOrBuilder.java +17 -0
  17. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +320 -319
  18. package/model/target/maven-archiver/pom.properties +2 -2
  19. package/model/target/{outbound-model-0.8.9-sources.jar → outbound-model-0.8.10-sources.jar} +0 -0
  20. package/model/target/{outbound-model-0.8.9.jar → outbound-model-0.8.10.jar} +0 -0
  21. package/package.json +2 -2
  22. package/pom.xml +1 -1
  23. package/proto/outbound.proto +1 -0
  24. package/service/pom.xml +1 -1
  25. package/service/target/maven-archiver/pom.properties +2 -2
  26. package/service/target/{outbound-service-0.8.9-sources.jar → outbound-service-0.8.10-sources.jar} +0 -0
  27. package/service/target/{outbound-service-0.8.9.jar → outbound-service-0.8.10.jar} +0 -0
@@ -20614,6 +20614,11 @@ export class CitrixGuest extends jspb.Message {
20614
20614
  getCitrixPoolUuid(): string;
20615
20615
  setCitrixPoolUuid(value: string): CitrixGuest;
20616
20616
 
20617
+ hasApplianceId(): boolean;
20618
+ clearApplianceId(): void;
20619
+ getApplianceId(): string | undefined;
20620
+ setApplianceId(value: string): CitrixGuest;
20621
+
20617
20622
  serializeBinary(): Uint8Array;
20618
20623
  toObject(includeInstance?: boolean): CitrixGuest.AsObject;
20619
20624
  static toObject(includeInstance: boolean, msg: CitrixGuest): CitrixGuest.AsObject;
@@ -20671,6 +20676,7 @@ export namespace CitrixGuest {
20671
20676
  virtualBlockDevicesList: Array<CitrixVirtualBlockDevice.AsObject>,
20672
20677
  citrixHostUuid: string,
20673
20678
  citrixPoolUuid: string,
20679
+ applianceId?: string,
20674
20680
  }
20675
20681
  }
20676
20682
 
@@ -164252,7 +164252,8 @@ proto.com.lansweeper.dp.outbound.v1.CitrixGuest.toObject = function(includeInsta
164252
164252
  virtualBlockDevicesList: jspb.Message.toObjectList(msg.getVirtualBlockDevicesList(),
164253
164253
  proto.com.lansweeper.dp.outbound.v1.CitrixVirtualBlockDevice.toObject, includeInstance),
164254
164254
  citrixHostUuid: jspb.Message.getFieldWithDefault(msg, 44, ""),
164255
- citrixPoolUuid: jspb.Message.getFieldWithDefault(msg, 45, "")
164255
+ citrixPoolUuid: jspb.Message.getFieldWithDefault(msg, 45, ""),
164256
+ applianceId: jspb.Message.getFieldWithDefault(msg, 46, "")
164256
164257
  };
164257
164258
 
164258
164259
  if (includeInstance) {
@@ -164475,6 +164476,10 @@ proto.com.lansweeper.dp.outbound.v1.CitrixGuest.deserializeBinaryFromReader = fu
164475
164476
  var value = /** @type {string} */ (reader.readString());
164476
164477
  msg.setCitrixPoolUuid(value);
164477
164478
  break;
164479
+ case 46:
164480
+ var value = /** @type {string} */ (reader.readString());
164481
+ msg.setApplianceId(value);
164482
+ break;
164478
164483
  default:
164479
164484
  reader.skipField();
164480
164485
  break;
@@ -164825,6 +164830,13 @@ proto.com.lansweeper.dp.outbound.v1.CitrixGuest.serializeBinaryToWriter = functi
164825
164830
  f
164826
164831
  );
164827
164832
  }
164833
+ f = /** @type {string} */ (jspb.Message.getField(message, 46));
164834
+ if (f != null) {
164835
+ writer.writeString(
164836
+ 46,
164837
+ f
164838
+ );
164839
+ }
164828
164840
  };
164829
164841
 
164830
164842
 
@@ -166421,6 +166433,42 @@ proto.com.lansweeper.dp.outbound.v1.CitrixGuest.prototype.setCitrixPoolUuid = fu
166421
166433
  };
166422
166434
 
166423
166435
 
166436
+ /**
166437
+ * optional string appliance_id = 46;
166438
+ * @return {string}
166439
+ */
166440
+ proto.com.lansweeper.dp.outbound.v1.CitrixGuest.prototype.getApplianceId = function() {
166441
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 46, ""));
166442
+ };
166443
+
166444
+
166445
+ /**
166446
+ * @param {string} value
166447
+ * @return {!proto.com.lansweeper.dp.outbound.v1.CitrixGuest} returns this
166448
+ */
166449
+ proto.com.lansweeper.dp.outbound.v1.CitrixGuest.prototype.setApplianceId = function(value) {
166450
+ return jspb.Message.setField(this, 46, value);
166451
+ };
166452
+
166453
+
166454
+ /**
166455
+ * Clears the field making it undefined.
166456
+ * @return {!proto.com.lansweeper.dp.outbound.v1.CitrixGuest} returns this
166457
+ */
166458
+ proto.com.lansweeper.dp.outbound.v1.CitrixGuest.prototype.clearApplianceId = function() {
166459
+ return jspb.Message.setField(this, 46, undefined);
166460
+ };
166461
+
166462
+
166463
+ /**
166464
+ * Returns whether this field is set.
166465
+ * @return {boolean}
166466
+ */
166467
+ proto.com.lansweeper.dp.outbound.v1.CitrixGuest.prototype.hasApplianceId = function() {
166468
+ return jspb.Message.getField(this, 46) != null;
166469
+ };
166470
+
166471
+
166424
166472
 
166425
166473
 
166426
166474