@lansweeper/data-platform-outbound-grpc 0.8.3 → 0.8.4
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 +4 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +72 -0
- package/gen-proto/outbound_pb.js +601 -1
- package/generated-go/outbound.pb.go +11786 -11621
- package/java.json +1 -1
- package/model/pom.xml +1 -1
- package/model/src/main/proto/outbound.proto +15 -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/Outbound.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ScanSection$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ScanSection$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ScanSection.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ScanSectionOrBuilder.class +0 -0
- package/model/target/classes/outbound.proto +15 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Asset.java +766 -323
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/AssetOrBuilder.java +44 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +3950 -3929
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ScanSection.java +1814 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ScanSectionOrBuilder.java +194 -0
- package/model/target/maven-archiver/pom.properties +2 -2
- package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +4 -0
- package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +2 -0
- package/model/target/{outbound-model-0.8.2-sources.jar → outbound-model-0.8.3-sources.jar} +0 -0
- package/model/target/{outbound-model-0.8.2.jar → outbound-model-0.8.3.jar} +0 -0
- package/package.json +2 -2
- package/pom.xml +1 -1
- package/proto/outbound.proto +15 -0
- package/service/pom.xml +1 -1
- package/service/target/maven-archiver/pom.properties +2 -2
- package/service/target/{outbound-service-0.8.2-sources.jar → outbound-service-0.8.3-sources.jar} +0 -0
- package/service/target/{outbound-service-0.8.2.jar → outbound-service-0.8.3.jar} +0 -0
package/java.json
CHANGED
package/model/pom.xml
CHANGED
|
@@ -283,6 +283,7 @@ message Asset {
|
|
|
283
283
|
*/
|
|
284
284
|
optional string unique_key = 23;
|
|
285
285
|
|
|
286
|
+
repeated ScanSection scan_section = 306; // sections of the scan, e.g. Windows:BasicInfo, Linux:BasicInfo, etc.
|
|
286
287
|
repeated ScanError scan_error = 33;
|
|
287
288
|
|
|
288
289
|
optional IpInfo internet_ip = 32; // Internet IP and related geo-location info, when available
|
|
@@ -886,6 +887,20 @@ message ScanError {
|
|
|
886
887
|
optional int64 duration = 5;
|
|
887
888
|
}
|
|
888
889
|
|
|
890
|
+
/**
|
|
891
|
+
* Scan section.
|
|
892
|
+
*/
|
|
893
|
+
message ScanSection {
|
|
894
|
+
int32 key = 1;
|
|
895
|
+
optional string name = 2; // e.g.: Windows:BasicInfo
|
|
896
|
+
optional string source = 3; // e.g.: Wmi.Registry.WinApi
|
|
897
|
+
optional google.protobuf.Timestamp scan_time = 4;
|
|
898
|
+
optional int64 duration = 5;
|
|
899
|
+
repeated string errors = 6;
|
|
900
|
+
optional bool success = 7;
|
|
901
|
+
optional string hash = 8; //algorithm + value
|
|
902
|
+
optional string timezone = 9; //IANA Id
|
|
903
|
+
}
|
|
889
904
|
/**
|
|
890
905
|
* Scan credentials.
|
|
891
906
|
*/
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -283,6 +283,7 @@ message Asset {
|
|
|
283
283
|
*/
|
|
284
284
|
optional string unique_key = 23;
|
|
285
285
|
|
|
286
|
+
repeated ScanSection scan_section = 306; // sections of the scan, e.g. Windows:BasicInfo, Linux:BasicInfo, etc.
|
|
286
287
|
repeated ScanError scan_error = 33;
|
|
287
288
|
|
|
288
289
|
optional IpInfo internet_ip = 32; // Internet IP and related geo-location info, when available
|
|
@@ -886,6 +887,20 @@ message ScanError {
|
|
|
886
887
|
optional int64 duration = 5;
|
|
887
888
|
}
|
|
888
889
|
|
|
890
|
+
/**
|
|
891
|
+
* Scan section.
|
|
892
|
+
*/
|
|
893
|
+
message ScanSection {
|
|
894
|
+
int32 key = 1;
|
|
895
|
+
optional string name = 2; // e.g.: Windows:BasicInfo
|
|
896
|
+
optional string source = 3; // e.g.: Wmi.Registry.WinApi
|
|
897
|
+
optional google.protobuf.Timestamp scan_time = 4;
|
|
898
|
+
optional int64 duration = 5;
|
|
899
|
+
repeated string errors = 6;
|
|
900
|
+
optional bool success = 7;
|
|
901
|
+
optional string hash = 8; //algorithm + value
|
|
902
|
+
optional string timezone = 9; //IANA Id
|
|
903
|
+
}
|
|
889
904
|
/**
|
|
890
905
|
* Scan credentials.
|
|
891
906
|
*/
|