@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.
Files changed (43) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/gen-proto/image.json +1 -1
  3. package/gen-proto/outbound_pb.d.ts +46 -0
  4. package/gen-proto/outbound_pb.js +394 -3
  5. package/generated-go/outbound.pb.go +10782 -10643
  6. package/java.json +1 -1
  7. package/model/pom.xml +1 -1
  8. package/model/src/main/proto/outbound.proto +10 -0
  9. package/model/target/classes/com/lansweeper/dp/outbound/v1/CloudEntity$1.class +0 -0
  10. package/model/target/classes/com/lansweeper/dp/outbound/v1/CloudEntity$Builder.class +0 -0
  11. package/model/target/classes/com/lansweeper/dp/outbound/v1/CloudEntity.class +0 -0
  12. package/model/target/classes/com/lansweeper/dp/outbound/v1/CloudEntityOrBuilder.class +0 -0
  13. package/model/target/classes/com/lansweeper/dp/outbound/v1/Outbound.class +0 -0
  14. package/model/target/classes/com/lansweeper/dp/outbound/v1/PublicCloudLink$1.class +0 -0
  15. package/model/target/classes/com/lansweeper/dp/outbound/v1/PublicCloudLink$Builder.class +0 -0
  16. package/model/target/classes/com/lansweeper/dp/outbound/v1/PublicCloudLink.class +0 -0
  17. package/model/target/classes/com/lansweeper/dp/outbound/v1/PublicCloudLinkOrBuilder.class +0 -0
  18. package/model/target/classes/com/lansweeper/dp/outbound/v1/VmwareEsxiGuestVm$1.class +0 -0
  19. package/model/target/classes/com/lansweeper/dp/outbound/v1/VmwareEsxiGuestVm$Builder$EsxiGuestSnapshotsConverter.class +0 -0
  20. package/model/target/classes/com/lansweeper/dp/outbound/v1/VmwareEsxiGuestVm$Builder.class +0 -0
  21. package/model/target/classes/com/lansweeper/dp/outbound/v1/VmwareEsxiGuestVm$EsxiGuestSnapshotsDefaultEntryHolder.class +0 -0
  22. package/model/target/classes/com/lansweeper/dp/outbound/v1/VmwareEsxiGuestVm.class +0 -0
  23. package/model/target/classes/com/lansweeper/dp/outbound/v1/VmwareEsxiGuestVmOrBuilder.class +0 -0
  24. package/model/target/classes/outbound.proto +10 -0
  25. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/CloudEntity.java +508 -0
  26. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/CloudEntityOrBuilder.java +41 -0
  27. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +3129 -3109
  28. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/PublicCloudLink.java +950 -0
  29. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/PublicCloudLinkOrBuilder.java +58 -0
  30. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/VmwareEsxiGuestVm.java +193 -0
  31. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/VmwareEsxiGuestVmOrBuilder.java +29 -0
  32. package/model/target/maven-archiver/pom.properties +2 -2
  33. package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +4 -0
  34. package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +2 -0
  35. package/model/target/{outbound-model-0.3.25-sources.jar → outbound-model-0.3.27-sources.jar} +0 -0
  36. package/model/target/{outbound-model-0.3.25.jar → outbound-model-0.3.27.jar} +0 -0
  37. package/package.json +2 -2
  38. package/pom.xml +1 -1
  39. package/proto/outbound.proto +10 -0
  40. package/service/pom.xml +1 -1
  41. package/service/target/maven-archiver/pom.properties +2 -2
  42. package/service/target/{outbound-service-0.3.25-sources.jar → outbound-service-0.3.27-sources.jar} +0 -0
  43. package/service/target/{outbound-service-0.3.25.jar → outbound-service-0.3.27.jar} +0 -0
package/java.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.3.25",
2
+ "version": "0.3.27",
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.3.25</version>
9
+ <version>0.3.27</version>
10
10
  </parent>
11
11
 
12
12
  <artifactId>outbound-model</artifactId>
@@ -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
  /*
@@ -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
  /*