@lansweeper/data-platform-outbound-grpc 0.3.12 → 0.3.13

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 (41) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/gen-proto/image.json +1 -1
  3. package/gen-proto/outbound_pb.d.ts +81 -0
  4. package/gen-proto/outbound_pb.js +673 -0
  5. package/generated-go/outbound.pb.go +9695 -9464
  6. package/java.json +1 -1
  7. package/model/pom.xml +1 -1
  8. package/model/src/main/proto/outbound.proto +20 -0
  9. package/model/target/classes/com/lansweeper/dp/outbound/v1/Asset$1.class +0 -0
  10. package/model/target/classes/com/lansweeper/dp/outbound/v1/Asset$Builder.class +0 -0
  11. package/model/target/classes/com/lansweeper/dp/outbound/v1/Asset.class +0 -0
  12. package/model/target/classes/com/lansweeper/dp/outbound/v1/AssetOrBuilder.class +0 -0
  13. package/model/target/classes/com/lansweeper/dp/outbound/v1/HyperV$1.class +0 -0
  14. package/model/target/classes/com/lansweeper/dp/outbound/v1/HyperV$Builder.class +0 -0
  15. package/model/target/classes/com/lansweeper/dp/outbound/v1/HyperV.class +0 -0
  16. package/model/target/classes/com/lansweeper/dp/outbound/v1/HyperVNetwork$1.class +0 -0
  17. package/model/target/classes/com/lansweeper/dp/outbound/v1/HyperVNetwork$Builder.class +0 -0
  18. package/model/target/classes/com/lansweeper/dp/outbound/v1/HyperVNetwork.class +0 -0
  19. package/model/target/classes/com/lansweeper/dp/outbound/v1/HyperVNetworkOrBuilder.class +0 -0
  20. package/model/target/classes/com/lansweeper/dp/outbound/v1/HyperVOrBuilder.class +0 -0
  21. package/model/target/classes/com/lansweeper/dp/outbound/v1/Outbound.class +0 -0
  22. package/model/target/classes/outbound.proto +20 -0
  23. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Asset.java +252 -60
  24. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/AssetOrBuilder.java +15 -0
  25. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/HyperV.java +1833 -0
  26. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/HyperVNetwork.java +542 -0
  27. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/HyperVNetworkOrBuilder.java +22 -0
  28. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/HyperVOrBuilder.java +136 -0
  29. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +2847 -2812
  30. package/model/target/maven-archiver/pom.properties +2 -2
  31. package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +9 -1
  32. package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +5 -1
  33. package/model/target/{outbound-model-0.3.11-sources.jar → outbound-model-0.3.12-sources.jar} +0 -0
  34. package/model/target/{outbound-model-0.3.11.jar → outbound-model-0.3.12.jar} +0 -0
  35. package/package.json +2 -2
  36. package/pom.xml +1 -1
  37. package/proto/outbound.proto +20 -0
  38. package/service/pom.xml +1 -1
  39. package/service/target/maven-archiver/pom.properties +2 -2
  40. package/service/target/{outbound-service-0.3.11-sources.jar → outbound-service-0.3.12-sources.jar} +0 -0
  41. package/service/target/{outbound-service-0.3.11.jar → outbound-service-0.3.12.jar} +0 -0
package/java.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.3.11",
2
+ "version": "0.3.12",
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.11</version>
9
+ <version>0.3.12</version>
10
10
  </parent>
11
11
 
12
12
  <artifactId>outbound-model</artifactId>
@@ -263,6 +263,7 @@ message Asset {
263
263
  optional ServerGroup server_group = 87;
264
264
 
265
265
  optional ActiveDirectoryComputer ad_computer = 88;
266
+ optional HyperV hyper_v_computer = 89;
266
267
 
267
268
  optional Printer printer = 84;
268
269
  optional Ups ups = 85;
@@ -436,6 +437,25 @@ message SccmClient {
436
437
  optional string client_version = 2;
437
438
  }
438
439
 
440
+ /*
441
+ * HyperV Host/Guest only Windows
442
+ * WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/hyperv_v2/msvm-computersystem
443
+ */
444
+ message HyperV {
445
+ EntityPath host = 1;
446
+ string instance_id = 2;
447
+ string element_name = 3;
448
+ optional MappedValue enabled_state = 4;
449
+ optional string health_state = 5;
450
+ string name = 6; // GUID
451
+ optional int64 virtual_quantity = 7;
452
+ repeated HyperVNetwork hyper_v_network = 8;
453
+ }
454
+
455
+ message HyperVNetwork {
456
+ string mac_address = 1;
457
+ }
458
+
439
459
  /**
440
460
  * A key/value tag, also known as a key-value pair or simply a tag: a key and a corresponding value.
441
461
  * It is used to associate metadata or additional information with an entity or data element.
@@ -263,6 +263,7 @@ message Asset {
263
263
  optional ServerGroup server_group = 87;
264
264
 
265
265
  optional ActiveDirectoryComputer ad_computer = 88;
266
+ optional HyperV hyper_v_computer = 89;
266
267
 
267
268
  optional Printer printer = 84;
268
269
  optional Ups ups = 85;
@@ -436,6 +437,25 @@ message SccmClient {
436
437
  optional string client_version = 2;
437
438
  }
438
439
 
440
+ /*
441
+ * HyperV Host/Guest only Windows
442
+ * WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/hyperv_v2/msvm-computersystem
443
+ */
444
+ message HyperV {
445
+ EntityPath host = 1;
446
+ string instance_id = 2;
447
+ string element_name = 3;
448
+ optional MappedValue enabled_state = 4;
449
+ optional string health_state = 5;
450
+ string name = 6; // GUID
451
+ optional int64 virtual_quantity = 7;
452
+ repeated HyperVNetwork hyper_v_network = 8;
453
+ }
454
+
455
+ message HyperVNetwork {
456
+ string mac_address = 1;
457
+ }
458
+
439
459
  /**
440
460
  * A key/value tag, also known as a key-value pair or simply a tag: a key and a corresponding value.
441
461
  * It is used to associate metadata or additional information with an entity or data element.