@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.
Files changed (41) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/gen-proto/image.json +1 -1
  3. package/gen-proto/outbound_pb.d.ts +77 -0
  4. package/gen-proto/outbound_pb.js +606 -1
  5. package/generated-go/outbound.pb.go +7337 -7166
  6. package/java.json +1 -1
  7. package/model/pom.xml +1 -1
  8. package/model/src/main/proto/outbound.proto +17 -2
  9. package/model/target/classes/com/lansweeper/dp/outbound/v1/NetworkInterface$1.class +0 -0
  10. package/model/target/classes/com/lansweeper/dp/outbound/v1/NetworkInterface$Builder.class +0 -0
  11. package/model/target/classes/com/lansweeper/dp/outbound/v1/NetworkInterface.class +0 -0
  12. package/model/target/classes/com/lansweeper/dp/outbound/v1/NetworkInterfaceOrBuilder.class +0 -0
  13. package/model/target/classes/com/lansweeper/dp/outbound/v1/NetworkProtocols$1.class +0 -0
  14. package/model/target/classes/com/lansweeper/dp/outbound/v1/NetworkProtocols$Builder.class +0 -0
  15. package/model/target/classes/com/lansweeper/dp/outbound/v1/NetworkProtocols.class +0 -0
  16. package/model/target/classes/com/lansweeper/dp/outbound/v1/NetworkProtocolsOrBuilder.class +0 -0
  17. package/model/target/classes/com/lansweeper/dp/outbound/v1/Outbound.class +0 -0
  18. package/model/target/classes/com/lansweeper/dp/outbound/v1/SnmpInfo$1.class +0 -0
  19. package/model/target/classes/com/lansweeper/dp/outbound/v1/SnmpInfo$Builder.class +0 -0
  20. package/model/target/classes/com/lansweeper/dp/outbound/v1/SnmpInfo.class +0 -0
  21. package/model/target/classes/com/lansweeper/dp/outbound/v1/SnmpInfoOrBuilder.class +0 -0
  22. package/model/target/classes/outbound.proto +17 -2
  23. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/NetworkInterface.java +634 -119
  24. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/NetworkInterfaceOrBuilder.java +66 -2
  25. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/NetworkProtocols.java +243 -2
  26. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/NetworkProtocolsOrBuilder.java +27 -0
  27. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +2139 -2118
  28. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/SnmpInfo.java +1194 -0
  29. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/SnmpInfoOrBuilder.java +95 -0
  30. package/model/target/maven-archiver/pom.properties +2 -2
  31. package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +5 -1
  32. package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +2 -0
  33. package/model/target/{outbound-model-0.3.8-sources.jar → outbound-model-0.3.10-sources.jar} +0 -0
  34. package/model/target/{outbound-model-0.3.8.jar → outbound-model-0.3.10.jar} +0 -0
  35. package/package.json +2 -2
  36. package/pom.xml +1 -1
  37. package/proto/outbound.proto +17 -2
  38. package/service/pom.xml +1 -1
  39. package/service/target/maven-archiver/pom.properties +2 -2
  40. package/service/target/{outbound-service-0.3.8-sources.jar → outbound-service-0.3.10-sources.jar} +0 -0
  41. package/service/target/{outbound-service-0.3.8.jar → outbound-service-0.3.10.jar} +0 -0
package/java.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.3.8",
2
+ "version": "0.3.10",
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.8</version>
9
+ <version>0.3.10</version>
10
10
  </parent>
11
11
 
12
12
  <artifactId>outbound-model</artifactId>
@@ -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 only
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
- // later here we can have all fingerprints merged
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
  */
@@ -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 only
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
- // later here we can have all fingerprints merged
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
  */