@lansweeper/data-platform-outbound-grpc 0.3.23 → 0.3.24

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 (38) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/gen-proto/image.json +1 -1
  3. package/gen-proto/outbound_pb.d.ts +18 -0
  4. package/gen-proto/outbound_pb.js +144 -0
  5. package/generated-go/outbound.pb.go +1194 -1159
  6. package/java.json +1 -1
  7. package/model/pom.xml +1 -1
  8. package/model/src/main/proto/outbound.proto +3 -0
  9. package/model/target/classes/com/lansweeper/dp/outbound/v1/Outbound.class +0 -0
  10. package/model/target/classes/com/lansweeper/dp/outbound/v1/VmwareDatastoreCluster$1.class +0 -0
  11. package/model/target/classes/com/lansweeper/dp/outbound/v1/VmwareDatastoreCluster$Builder$DatastoresConverter.class +0 -0
  12. package/model/target/classes/com/lansweeper/dp/outbound/v1/VmwareDatastoreCluster$Builder.class +0 -0
  13. package/model/target/classes/com/lansweeper/dp/outbound/v1/VmwareDatastoreCluster$DatastoresDefaultEntryHolder.class +0 -0
  14. package/model/target/classes/com/lansweeper/dp/outbound/v1/VmwareDatastoreCluster.class +0 -0
  15. package/model/target/classes/com/lansweeper/dp/outbound/v1/VmwareDatastoreClusterOrBuilder.class +0 -0
  16. package/model/target/classes/com/lansweeper/dp/outbound/v1/VmwareEsxiHypervisor$1.class +0 -0
  17. package/model/target/classes/com/lansweeper/dp/outbound/v1/VmwareEsxiHypervisor$Builder$EsxiHypervisorDatastoresConverter.class +0 -0
  18. package/model/target/classes/com/lansweeper/dp/outbound/v1/VmwareEsxiHypervisor$Builder.class +0 -0
  19. package/model/target/classes/com/lansweeper/dp/outbound/v1/VmwareEsxiHypervisor$EsxiGuestVmKeyDefaultEntryHolder.class +0 -0
  20. package/model/target/classes/com/lansweeper/dp/outbound/v1/VmwareEsxiHypervisor$EsxiHypervisorDatastoresDefaultEntryHolder.class +0 -0
  21. package/model/target/classes/com/lansweeper/dp/outbound/v1/VmwareEsxiHypervisor.class +0 -0
  22. package/model/target/classes/com/lansweeper/dp/outbound/v1/VmwareEsxiHypervisorOrBuilder.class +0 -0
  23. package/model/target/classes/outbound.proto +3 -0
  24. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +390 -387
  25. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/VmwareDatastoreCluster.java +264 -38
  26. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/VmwareDatastoreClusterOrBuilder.java +38 -0
  27. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/VmwareEsxiHypervisor.java +404 -211
  28. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/VmwareEsxiHypervisorOrBuilder.java +29 -0
  29. package/model/target/maven-archiver/pom.properties +2 -2
  30. package/model/target/{outbound-model-0.3.22-sources.jar → outbound-model-0.3.23-sources.jar} +0 -0
  31. package/model/target/{outbound-model-0.3.22.jar → outbound-model-0.3.23.jar} +0 -0
  32. package/package.json +2 -2
  33. package/pom.xml +1 -1
  34. package/proto/outbound.proto +3 -0
  35. package/service/pom.xml +1 -1
  36. package/service/target/maven-archiver/pom.properties +2 -2
  37. package/service/target/{outbound-service-0.3.22-sources.jar → outbound-service-0.3.23-sources.jar} +0 -0
  38. package/service/target/{outbound-service-0.3.22.jar → outbound-service-0.3.23.jar} +0 -0
package/java.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.3.22",
2
+ "version": "0.3.23",
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.22</version>
9
+ <version>0.3.23</version>
10
10
  </parent>
11
11
 
12
12
  <artifactId>outbound-model</artifactId>
@@ -3933,6 +3933,7 @@ Specific asset data related to Vmware ESXI Hypervisor
3933
3933
  message VmwareEsxiHypervisor {
3934
3934
  optional VmwareProductInfo product_info = 1; // Custom information about the Esxi Hypervisor
3935
3935
  optional string vcenter_asset_key = 2; // Reference to the vCenter asset, if this asset is an ESXI hypervisor
3936
+ optional string vmware_esxi_cluster_id = 26; // Cluster ID of the Esxi Hypervisor, uuid of EsxiCluster
3936
3937
  map<string, VmwareDatastore> esxi_hypervisor_datastores = 3; // Datastores of the Esxi Hypervisor
3937
3938
  map<string, bool> esxi_guest_vm_key = 4; // Key to identify the Esxi Guest VMs, if this asset is an Esxi Hypervisor
3938
3939
  optional uint64 up_time = 5; // Up time of the Esxi Hypervisor
@@ -4054,6 +4055,8 @@ message VmwareDatastoreCluster {
4054
4055
  string vcenter_asset_key = 2; // Reference to the vCenter asset, which this message is child of
4055
4056
  optional string internal_key = 3; // Internal key
4056
4057
  optional string name = 4; // Name of the datastore cluster
4058
+ optional int64 capacity = 9; // Capacity
4059
+ optional int64 free_space = 10; // Free space
4057
4060
  map<string, VmwareDatastore> datastores = 5; // Datastores, the key is the uuid
4058
4061
  optional DatastoreClusterStorageDrs storage_drs = 6; // Storage DRS
4059
4062
  repeated DatastoreClusterDrsPodConfigRule drs_pod_config_rule = 7; // DRS Pod Config Rule
@@ -3933,6 +3933,7 @@ Specific asset data related to Vmware ESXI Hypervisor
3933
3933
  message VmwareEsxiHypervisor {
3934
3934
  optional VmwareProductInfo product_info = 1; // Custom information about the Esxi Hypervisor
3935
3935
  optional string vcenter_asset_key = 2; // Reference to the vCenter asset, if this asset is an ESXI hypervisor
3936
+ optional string vmware_esxi_cluster_id = 26; // Cluster ID of the Esxi Hypervisor, uuid of EsxiCluster
3936
3937
  map<string, VmwareDatastore> esxi_hypervisor_datastores = 3; // Datastores of the Esxi Hypervisor
3937
3938
  map<string, bool> esxi_guest_vm_key = 4; // Key to identify the Esxi Guest VMs, if this asset is an Esxi Hypervisor
3938
3939
  optional uint64 up_time = 5; // Up time of the Esxi Hypervisor
@@ -4054,6 +4055,8 @@ message VmwareDatastoreCluster {
4054
4055
  string vcenter_asset_key = 2; // Reference to the vCenter asset, which this message is child of
4055
4056
  optional string internal_key = 3; // Internal key
4056
4057
  optional string name = 4; // Name of the datastore cluster
4058
+ optional int64 capacity = 9; // Capacity
4059
+ optional int64 free_space = 10; // Free space
4057
4060
  map<string, VmwareDatastore> datastores = 5; // Datastores, the key is the uuid
4058
4061
  optional DatastoreClusterStorageDrs storage_drs = 6; // Storage DRS
4059
4062
  repeated DatastoreClusterDrsPodConfigRule drs_pod_config_rule = 7; // DRS Pod Config Rule