@lansweeper/data-platform-outbound-grpc 0.7.0 → 0.8.0
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 +14 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +33 -0
- package/gen-proto/outbound_pb.js +240 -1
- package/generated-go/outbound.pb.go +13232 -13122
- package/java.json +1 -1
- package/model/pom.xml +1 -1
- package/model/src/main/proto/outbound.proto +6 -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/HyperVHost$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/HyperVHost$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/HyperVHost$HyperVGuestKeysDefaultEntryHolder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/HyperVHost.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/HyperVHostOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Outbound.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/SccmServer$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/SccmServer$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/SccmServer$SccmChildSitesDefaultEntryHolder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/SccmServer.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/SccmServerOrBuilder.class +0 -0
- package/model/target/classes/outbound.proto +6 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Asset.java +376 -140
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/AssetOrBuilder.java +27 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/HyperVHost.java +725 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/HyperVHostOrBuilder.java +62 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +3942 -3899
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/SccmServer.java +319 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/SccmServerOrBuilder.java +52 -0
- package/model/target/maven-archiver/pom.properties +2 -2
- package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +6 -0
- package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +2 -0
- package/model/target/{outbound-model-0.6.1-sources.jar → outbound-model-0.7.0-sources.jar} +0 -0
- package/model/target/{outbound-model-0.6.1.jar → outbound-model-0.7.0.jar} +0 -0
- package/package.json +2 -2
- package/pom.xml +1 -1
- package/proto/outbound.proto +6 -0
- package/service/pom.xml +1 -1
- package/service/target/maven-archiver/pom.properties +2 -2
- package/service/target/{outbound-service-0.6.1-sources.jar → outbound-service-0.7.0-sources.jar} +0 -0
- package/service/target/{outbound-service-0.6.1.jar → outbound-service-0.7.0.jar} +0 -0
package/java.json
CHANGED
package/model/pom.xml
CHANGED
|
@@ -313,6 +313,7 @@ message Asset {
|
|
|
313
313
|
|
|
314
314
|
optional ActiveDirectoryComputer ad_computer = 88;
|
|
315
315
|
optional HyperV hyper_v_computer = 89;
|
|
316
|
+
optional HyperVHost hyper_v_host = 98; // HyperV Host info, if asset is a HyperV Guest
|
|
316
317
|
|
|
317
318
|
optional ActiveDirectoryPrinter ad_printer = 96;
|
|
318
319
|
optional Printer printer = 84;
|
|
@@ -506,6 +507,7 @@ message SccmServer {
|
|
|
506
507
|
optional string domain = 3;
|
|
507
508
|
string server_id = 4; // reference to site useful for SccmSite Entity in Syncer
|
|
508
509
|
repeated SccmSite sccm_site = 5; // filled by SCCM Server for all sites - LECAdapter will create the opportunity Entity type [SccmSite and SccmServer]
|
|
510
|
+
map<string, bool> sccm_child_sites = 6; // map of child sites, where key is the entity_id of the child SCCM asset
|
|
509
511
|
}
|
|
510
512
|
|
|
511
513
|
message SccmSite {
|
|
@@ -522,6 +524,10 @@ message SccmClient {
|
|
|
522
524
|
optional string client_version = 2;
|
|
523
525
|
}
|
|
524
526
|
|
|
527
|
+
message HyperVHost {
|
|
528
|
+
map<string, bool> hyper_v_guest_keys = 1; // map of hyper-v guest keys, where key is the entity_id of the guest asset
|
|
529
|
+
}
|
|
530
|
+
|
|
525
531
|
/*
|
|
526
532
|
* HyperV Host/Guest only Windows
|
|
527
533
|
* WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/hyperv_v2/msvm-computersystem
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -313,6 +313,7 @@ message Asset {
|
|
|
313
313
|
|
|
314
314
|
optional ActiveDirectoryComputer ad_computer = 88;
|
|
315
315
|
optional HyperV hyper_v_computer = 89;
|
|
316
|
+
optional HyperVHost hyper_v_host = 98; // HyperV Host info, if asset is a HyperV Guest
|
|
316
317
|
|
|
317
318
|
optional ActiveDirectoryPrinter ad_printer = 96;
|
|
318
319
|
optional Printer printer = 84;
|
|
@@ -506,6 +507,7 @@ message SccmServer {
|
|
|
506
507
|
optional string domain = 3;
|
|
507
508
|
string server_id = 4; // reference to site useful for SccmSite Entity in Syncer
|
|
508
509
|
repeated SccmSite sccm_site = 5; // filled by SCCM Server for all sites - LECAdapter will create the opportunity Entity type [SccmSite and SccmServer]
|
|
510
|
+
map<string, bool> sccm_child_sites = 6; // map of child sites, where key is the entity_id of the child SCCM asset
|
|
509
511
|
}
|
|
510
512
|
|
|
511
513
|
message SccmSite {
|
|
@@ -522,6 +524,10 @@ message SccmClient {
|
|
|
522
524
|
optional string client_version = 2;
|
|
523
525
|
}
|
|
524
526
|
|
|
527
|
+
message HyperVHost {
|
|
528
|
+
map<string, bool> hyper_v_guest_keys = 1; // map of hyper-v guest keys, where key is the entity_id of the guest asset
|
|
529
|
+
}
|
|
530
|
+
|
|
525
531
|
/*
|
|
526
532
|
* HyperV Host/Guest only Windows
|
|
527
533
|
* WMI mappings at: https://learn.microsoft.com/en-us/windows/win32/hyperv_v2/msvm-computersystem
|