@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.
Files changed (35) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/gen-proto/image.json +1 -1
  3. package/gen-proto/outbound_pb.d.ts +72 -0
  4. package/gen-proto/outbound_pb.js +601 -1
  5. package/generated-go/outbound.pb.go +11786 -11621
  6. package/java.json +1 -1
  7. package/model/pom.xml +1 -1
  8. package/model/src/main/proto/outbound.proto +15 -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/Outbound.class +0 -0
  14. package/model/target/classes/com/lansweeper/dp/outbound/v1/ScanSection$1.class +0 -0
  15. package/model/target/classes/com/lansweeper/dp/outbound/v1/ScanSection$Builder.class +0 -0
  16. package/model/target/classes/com/lansweeper/dp/outbound/v1/ScanSection.class +0 -0
  17. package/model/target/classes/com/lansweeper/dp/outbound/v1/ScanSectionOrBuilder.class +0 -0
  18. package/model/target/classes/outbound.proto +15 -0
  19. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Asset.java +766 -323
  20. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/AssetOrBuilder.java +44 -0
  21. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +3950 -3929
  22. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ScanSection.java +1814 -0
  23. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ScanSectionOrBuilder.java +194 -0
  24. package/model/target/maven-archiver/pom.properties +2 -2
  25. package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +4 -0
  26. package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +2 -0
  27. package/model/target/{outbound-model-0.8.2-sources.jar → outbound-model-0.8.3-sources.jar} +0 -0
  28. package/model/target/{outbound-model-0.8.2.jar → outbound-model-0.8.3.jar} +0 -0
  29. package/package.json +2 -2
  30. package/pom.xml +1 -1
  31. package/proto/outbound.proto +15 -0
  32. package/service/pom.xml +1 -1
  33. package/service/target/maven-archiver/pom.properties +2 -2
  34. package/service/target/{outbound-service-0.8.2-sources.jar → outbound-service-0.8.3-sources.jar} +0 -0
  35. package/service/target/{outbound-service-0.8.2.jar → outbound-service-0.8.3.jar} +0 -0
package/java.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.8.2",
2
+ "version": "0.8.3",
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.8.2</version>
9
+ <version>0.8.3</version>
10
10
  </parent>
11
11
 
12
12
  <artifactId>outbound-model</artifactId>
@@ -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
  */
@@ -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
  */