@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.
- package/CHANGELOG.md +8 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +81 -0
- package/gen-proto/outbound_pb.js +673 -0
- package/generated-go/outbound.pb.go +9695 -9464
- package/java.json +1 -1
- package/model/pom.xml +1 -1
- package/model/src/main/proto/outbound.proto +20 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Asset$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Asset$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Asset.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/AssetOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/HyperV$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/HyperV$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/HyperV.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/HyperVNetwork$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/HyperVNetwork$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/HyperVNetwork.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/HyperVNetworkOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/HyperVOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Outbound.class +0 -0
- package/model/target/classes/outbound.proto +20 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Asset.java +252 -60
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/AssetOrBuilder.java +15 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/HyperV.java +1833 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/HyperVNetwork.java +542 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/HyperVNetworkOrBuilder.java +22 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/HyperVOrBuilder.java +136 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +2847 -2812
- package/model/target/maven-archiver/pom.properties +2 -2
- package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +9 -1
- package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +5 -1
- package/model/target/{outbound-model-0.3.11-sources.jar → outbound-model-0.3.12-sources.jar} +0 -0
- package/model/target/{outbound-model-0.3.11.jar → outbound-model-0.3.12.jar} +0 -0
- package/package.json +2 -2
- package/pom.xml +1 -1
- package/proto/outbound.proto +20 -0
- package/service/pom.xml +1 -1
- package/service/target/maven-archiver/pom.properties +2 -2
- package/service/target/{outbound-service-0.3.11-sources.jar → outbound-service-0.3.12-sources.jar} +0 -0
- package/service/target/{outbound-service-0.3.11.jar → outbound-service-0.3.12.jar} +0 -0
package/java.json
CHANGED
package/model/pom.xml
CHANGED
|
@@ -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.
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -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.
|