@lansweeper/data-platform-outbound-grpc 0.3.6 → 0.3.8

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 (49) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/gen-proto/image.json +1 -1
  3. package/gen-proto/outbound_pb.d.ts +107 -0
  4. package/gen-proto/outbound_pb.js +896 -37
  5. package/generated-go/outbound.pb.go +10255 -9966
  6. package/java.json +1 -1
  7. package/model/pom.xml +1 -1
  8. package/model/src/main/proto/outbound.proto +27 -0
  9. package/model/target/classes/com/lansweeper/dp/outbound/v1/Outbound.class +0 -0
  10. package/model/target/classes/com/lansweeper/dp/outbound/v1/ScanCredential$1.class +0 -0
  11. package/model/target/classes/com/lansweeper/dp/outbound/v1/ScanCredential$Builder.class +0 -0
  12. package/model/target/classes/com/lansweeper/dp/outbound/v1/ScanCredential.class +0 -0
  13. package/model/target/classes/com/lansweeper/dp/outbound/v1/ScanCredentialOrBuilder.class +0 -0
  14. package/model/target/classes/com/lansweeper/dp/outbound/v1/Site$1.class +0 -0
  15. package/model/target/classes/com/lansweeper/dp/outbound/v1/Site$Builder$UnlinkedInstallationsConverter.class +0 -0
  16. package/model/target/classes/com/lansweeper/dp/outbound/v1/Site$Builder.class +0 -0
  17. package/model/target/classes/com/lansweeper/dp/outbound/v1/Site$UnlinkedInstallationsDefaultEntryHolder.class +0 -0
  18. package/model/target/classes/com/lansweeper/dp/outbound/v1/Site.class +0 -0
  19. package/model/target/classes/com/lansweeper/dp/outbound/v1/SiteOrBuilder.class +0 -0
  20. package/model/target/classes/com/lansweeper/dp/outbound/v1/SourceInfo$1.class +0 -0
  21. package/model/target/classes/com/lansweeper/dp/outbound/v1/SourceInfo$Builder.class +0 -0
  22. package/model/target/classes/com/lansweeper/dp/outbound/v1/SourceInfo.class +0 -0
  23. package/model/target/classes/com/lansweeper/dp/outbound/v1/SourceInfoOrBuilder.class +0 -0
  24. package/model/target/classes/com/lansweeper/dp/outbound/v1/UnlinkedInstallationMetadata$1.class +0 -0
  25. package/model/target/classes/com/lansweeper/dp/outbound/v1/UnlinkedInstallationMetadata$Builder.class +0 -0
  26. package/model/target/classes/com/lansweeper/dp/outbound/v1/UnlinkedInstallationMetadata.class +0 -0
  27. package/model/target/classes/com/lansweeper/dp/outbound/v1/UnlinkedInstallationMetadataOrBuilder.class +0 -0
  28. package/model/target/classes/outbound.proto +27 -0
  29. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +2968 -2913
  30. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ScanCredential.java +1114 -0
  31. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ScanCredentialOrBuilder.java +84 -0
  32. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Site.java +900 -0
  33. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/SiteOrBuilder.java +106 -0
  34. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/SourceInfo.java +447 -0
  35. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/SourceInfoOrBuilder.java +44 -0
  36. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/UnlinkedInstallationMetadata.java +794 -0
  37. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/UnlinkedInstallationMetadataOrBuilder.java +40 -0
  38. package/model/target/maven-archiver/pom.properties +2 -2
  39. package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +10 -0
  40. package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +4 -0
  41. package/model/target/{outbound-model-0.3.5-sources.jar → outbound-model-0.3.7-sources.jar} +0 -0
  42. package/model/target/{outbound-model-0.3.5.jar → outbound-model-0.3.7.jar} +0 -0
  43. package/package.json +2 -2
  44. package/pom.xml +1 -1
  45. package/proto/outbound.proto +27 -0
  46. package/service/pom.xml +1 -1
  47. package/service/target/maven-archiver/pom.properties +2 -2
  48. package/service/target/{outbound-service-0.3.5-sources.jar → outbound-service-0.3.7-sources.jar} +0 -0
  49. package/service/target/{outbound-service-0.3.5.jar → outbound-service-0.3.7.jar} +0 -0
package/java.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.3.5",
2
+ "version": "0.3.7",
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.5</version>
9
+ <version>0.3.7</version>
10
10
  </parent>
11
11
 
12
12
  <artifactId>outbound-model</artifactId>
@@ -81,6 +81,19 @@ message Site {
81
81
  optional bool needs_reconcile = 7;
82
82
  optional bool raw_checkpoint_enabled = 8;
83
83
  optional int64 reconciliation_refresh_frequency = 9;
84
+ optional int32 user_size = 10;
85
+ optional int32 group_size = 11;
86
+ optional google.protobuf.Timestamp deletion_request = 12;
87
+ optional google.protobuf.Timestamp deletion_time = 13;
88
+ map<string, UnlinkedInstallationMetadata> unlinked_installations = 14; // Unlinked installations, where the key is the installation id and the value is the metadata
89
+ }
90
+
91
+ /**
92
+ Describes metadata relative to unlinked installations
93
+ */
94
+ message UnlinkedInstallationMetadata {
95
+ optional google.protobuf.Timestamp deletion_request = 12;
96
+ optional google.protobuf.Timestamp deletion_time = 13;
84
97
  }
85
98
 
86
99
  message EntityFilter {
@@ -626,6 +639,8 @@ message SourceInfo {
626
639
  optional string entity_id = 7; // entity/asset id in data-core
627
640
  google.protobuf.Timestamp last_synced = 6;
628
641
  // later here we could also have a summary of errors, if needed to keep history
642
+
643
+ repeated ScanCredential credentials = 9; // credentials used for the scan
629
644
  }
630
645
 
631
646
  /**
@@ -639,6 +654,18 @@ message ScanError {
639
654
  optional int64 duration = 5;
640
655
  }
641
656
 
657
+ /**
658
+ * Scan credentials.
659
+ */
660
+ message ScanCredential {
661
+ optional string vault_type = 1;
662
+ optional string vault_name = 2;
663
+ optional string name = 3;
664
+ bool is_success = 4;
665
+ optional string cloud_id = 5;
666
+ }
667
+
668
+
642
669
  /**
643
670
  * Core Fields for all Assets.
644
671
  */
@@ -81,6 +81,19 @@ message Site {
81
81
  optional bool needs_reconcile = 7;
82
82
  optional bool raw_checkpoint_enabled = 8;
83
83
  optional int64 reconciliation_refresh_frequency = 9;
84
+ optional int32 user_size = 10;
85
+ optional int32 group_size = 11;
86
+ optional google.protobuf.Timestamp deletion_request = 12;
87
+ optional google.protobuf.Timestamp deletion_time = 13;
88
+ map<string, UnlinkedInstallationMetadata> unlinked_installations = 14; // Unlinked installations, where the key is the installation id and the value is the metadata
89
+ }
90
+
91
+ /**
92
+ Describes metadata relative to unlinked installations
93
+ */
94
+ message UnlinkedInstallationMetadata {
95
+ optional google.protobuf.Timestamp deletion_request = 12;
96
+ optional google.protobuf.Timestamp deletion_time = 13;
84
97
  }
85
98
 
86
99
  message EntityFilter {
@@ -626,6 +639,8 @@ message SourceInfo {
626
639
  optional string entity_id = 7; // entity/asset id in data-core
627
640
  google.protobuf.Timestamp last_synced = 6;
628
641
  // later here we could also have a summary of errors, if needed to keep history
642
+
643
+ repeated ScanCredential credentials = 9; // credentials used for the scan
629
644
  }
630
645
 
631
646
  /**
@@ -639,6 +654,18 @@ message ScanError {
639
654
  optional int64 duration = 5;
640
655
  }
641
656
 
657
+ /**
658
+ * Scan credentials.
659
+ */
660
+ message ScanCredential {
661
+ optional string vault_type = 1;
662
+ optional string vault_name = 2;
663
+ optional string name = 3;
664
+ bool is_success = 4;
665
+ optional string cloud_id = 5;
666
+ }
667
+
668
+
642
669
  /**
643
670
  * Core Fields for all Assets.
644
671
  */