@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.
- package/CHANGELOG.md +19 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +107 -0
- package/gen-proto/outbound_pb.js +896 -37
- package/generated-go/outbound.pb.go +10255 -9966
- package/java.json +1 -1
- package/model/pom.xml +1 -1
- package/model/src/main/proto/outbound.proto +27 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Outbound.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ScanCredential$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ScanCredential$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ScanCredential.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/ScanCredentialOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Site$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Site$Builder$UnlinkedInstallationsConverter.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Site$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Site$UnlinkedInstallationsDefaultEntryHolder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/Site.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/SiteOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/SourceInfo$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/SourceInfo$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/SourceInfo.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/SourceInfoOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/UnlinkedInstallationMetadata$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/UnlinkedInstallationMetadata$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/UnlinkedInstallationMetadata.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/UnlinkedInstallationMetadataOrBuilder.class +0 -0
- package/model/target/classes/outbound.proto +27 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +2968 -2913
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ScanCredential.java +1114 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/ScanCredentialOrBuilder.java +84 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Site.java +900 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/SiteOrBuilder.java +106 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/SourceInfo.java +447 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/SourceInfoOrBuilder.java +44 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/UnlinkedInstallationMetadata.java +794 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/UnlinkedInstallationMetadataOrBuilder.java +40 -0
- package/model/target/maven-archiver/pom.properties +2 -2
- package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +10 -0
- package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +4 -0
- package/model/target/{outbound-model-0.3.5-sources.jar → outbound-model-0.3.7-sources.jar} +0 -0
- package/model/target/{outbound-model-0.3.5.jar → outbound-model-0.3.7.jar} +0 -0
- package/package.json +2 -2
- package/pom.xml +1 -1
- package/proto/outbound.proto +27 -0
- package/service/pom.xml +1 -1
- package/service/target/maven-archiver/pom.properties +2 -2
- package/service/target/{outbound-service-0.3.5-sources.jar → outbound-service-0.3.7-sources.jar} +0 -0
- package/service/target/{outbound-service-0.3.5.jar → outbound-service-0.3.7.jar} +0 -0
package/java.json
CHANGED
package/model/pom.xml
CHANGED
|
@@ -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
|
*/
|
|
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
|
package/model/target/classes/com/lansweeper/dp/outbound/v1/UnlinkedInstallationMetadata$1.class
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -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
|
*/
|