@lansweeper/data-platform-outbound-grpc 0.3.9 → 0.3.11
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 +16 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +77 -0
- package/gen-proto/outbound_pb.js +606 -1
- package/generated-go/outbound.pb.go +7337 -7166
- package/java.json +1 -1
- package/model/pom.xml +1 -1
- package/model/src/main/proto/outbound.proto +17 -2
- package/model/target/classes/com/lansweeper/dp/outbound/v1/NetworkInterface$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/NetworkInterface$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/NetworkInterface.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/NetworkInterfaceOrBuilder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/NetworkProtocols$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/NetworkProtocols$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/NetworkProtocols.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/NetworkProtocolsOrBuilder.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/SnmpInfo$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/SnmpInfo$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/SnmpInfo.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/SnmpInfoOrBuilder.class +0 -0
- package/model/target/classes/outbound.proto +17 -2
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/NetworkInterface.java +634 -119
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/NetworkInterfaceOrBuilder.java +66 -2
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/NetworkProtocols.java +243 -2
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/NetworkProtocolsOrBuilder.java +27 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +2139 -2118
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/SnmpInfo.java +1194 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/SnmpInfoOrBuilder.java +95 -0
- package/model/target/maven-archiver/pom.properties +2 -2
- package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +5 -1
- package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +2 -0
- package/model/target/{outbound-model-0.3.8-sources.jar → outbound-model-0.3.10-sources.jar} +0 -0
- package/model/target/{outbound-model-0.3.8.jar → outbound-model-0.3.10.jar} +0 -0
- package/package.json +2 -2
- package/pom.xml +1 -1
- package/proto/outbound.proto +17 -2
- package/service/pom.xml +1 -1
- package/service/target/maven-archiver/pom.properties +2 -2
- package/service/target/{outbound-service-0.3.8-sources.jar → outbound-service-0.3.10-sources.jar} +0 -0
- package/service/target/{outbound-service-0.3.8.jar → outbound-service-0.3.10.jar} +0 -0
package/java.json
CHANGED
package/model/pom.xml
CHANGED
|
@@ -1150,12 +1150,18 @@ message NetworkInterface {
|
|
|
1150
1150
|
optional string service_name = 14;
|
|
1151
1151
|
optional string database_path = 15;
|
|
1152
1152
|
|
|
1153
|
+
//WindowsNetworkAdapter
|
|
1154
|
+
optional int32 model_version = 28;
|
|
1155
|
+
optional string net_connection_id = 29;
|
|
1156
|
+
optional string manufacturer = 30;
|
|
1157
|
+
optional bool net_enabled = 31;
|
|
1158
|
+
|
|
1153
1159
|
// SNMP specifics:
|
|
1154
1160
|
optional int32 snmp_index = 27; // SNMP only: marking if it's a SNMP enumerated interface
|
|
1155
1161
|
optional string description = 16; // SNMP only
|
|
1156
1162
|
optional string alias = 17; // SNMP only
|
|
1157
1163
|
optional int64 mtu = 18; // SNMP only
|
|
1158
|
-
optional int64 speed = 19; // SNMP
|
|
1164
|
+
optional int64 speed = 19; // SNMP and WindowsNetworkAdapter
|
|
1159
1165
|
optional int64 high_speed = 20; // SNMP only
|
|
1160
1166
|
optional MappedValue admin_status = 21; // SNMP only
|
|
1161
1167
|
optional MappedValue oper_status = 22; // SNMP only
|
|
@@ -1180,10 +1186,19 @@ message NetIpAddress {
|
|
|
1180
1186
|
message NetworkProtocols {
|
|
1181
1187
|
repeated string protocol = 1; // summary list of protocols and data points available
|
|
1182
1188
|
|
|
1183
|
-
|
|
1189
|
+
// later here we can have all fingerprints merged
|
|
1190
|
+
optional SnmpInfo snmp = 2;
|
|
1191
|
+
}
|
|
1184
1192
|
|
|
1193
|
+
message SnmpInfo {
|
|
1194
|
+
optional string oid = 1;
|
|
1195
|
+
optional string name = 2;
|
|
1196
|
+
optional string description = 3;
|
|
1197
|
+
optional string contact = 4;
|
|
1198
|
+
optional string location = 5;
|
|
1185
1199
|
}
|
|
1186
1200
|
|
|
1201
|
+
|
|
1187
1202
|
/**
|
|
1188
1203
|
* Full port scan.
|
|
1189
1204
|
*/
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1150,12 +1150,18 @@ message NetworkInterface {
|
|
|
1150
1150
|
optional string service_name = 14;
|
|
1151
1151
|
optional string database_path = 15;
|
|
1152
1152
|
|
|
1153
|
+
//WindowsNetworkAdapter
|
|
1154
|
+
optional int32 model_version = 28;
|
|
1155
|
+
optional string net_connection_id = 29;
|
|
1156
|
+
optional string manufacturer = 30;
|
|
1157
|
+
optional bool net_enabled = 31;
|
|
1158
|
+
|
|
1153
1159
|
// SNMP specifics:
|
|
1154
1160
|
optional int32 snmp_index = 27; // SNMP only: marking if it's a SNMP enumerated interface
|
|
1155
1161
|
optional string description = 16; // SNMP only
|
|
1156
1162
|
optional string alias = 17; // SNMP only
|
|
1157
1163
|
optional int64 mtu = 18; // SNMP only
|
|
1158
|
-
optional int64 speed = 19; // SNMP
|
|
1164
|
+
optional int64 speed = 19; // SNMP and WindowsNetworkAdapter
|
|
1159
1165
|
optional int64 high_speed = 20; // SNMP only
|
|
1160
1166
|
optional MappedValue admin_status = 21; // SNMP only
|
|
1161
1167
|
optional MappedValue oper_status = 22; // SNMP only
|
|
@@ -1180,10 +1186,19 @@ message NetIpAddress {
|
|
|
1180
1186
|
message NetworkProtocols {
|
|
1181
1187
|
repeated string protocol = 1; // summary list of protocols and data points available
|
|
1182
1188
|
|
|
1183
|
-
|
|
1189
|
+
// later here we can have all fingerprints merged
|
|
1190
|
+
optional SnmpInfo snmp = 2;
|
|
1191
|
+
}
|
|
1184
1192
|
|
|
1193
|
+
message SnmpInfo {
|
|
1194
|
+
optional string oid = 1;
|
|
1195
|
+
optional string name = 2;
|
|
1196
|
+
optional string description = 3;
|
|
1197
|
+
optional string contact = 4;
|
|
1198
|
+
optional string location = 5;
|
|
1185
1199
|
}
|
|
1186
1200
|
|
|
1201
|
+
|
|
1187
1202
|
/**
|
|
1188
1203
|
* Full port scan.
|
|
1189
1204
|
*/
|