@lansweeper/data-platform-outbound-grpc 0.3.10 → 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 +8 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_pb.d.ts +24 -0
- package/gen-proto/outbound_pb.js +192 -0
- package/generated-go/outbound.pb.go +6122 -6073
- package/java.json +1 -1
- package/model/pom.xml +1 -1
- package/model/src/main/proto/outbound.proto +7 -1
- 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/Outbound.class +0 -0
- package/model/target/classes/outbound.proto +7 -1
- 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/Outbound.java +1980 -1976
- package/model/target/maven-archiver/pom.properties +2 -2
- package/model/target/{outbound-model-0.3.9-sources.jar → outbound-model-0.3.10-sources.jar} +0 -0
- package/model/target/{outbound-model-0.3.9.jar → outbound-model-0.3.10.jar} +0 -0
- package/package.json +2 -2
- package/pom.xml +1 -1
- package/proto/outbound.proto +7 -1
- package/service/pom.xml +1 -1
- package/service/target/maven-archiver/pom.properties +2 -2
- package/service/target/{outbound-service-0.3.9-sources.jar → outbound-service-0.3.10-sources.jar} +0 -0
- package/service/target/{outbound-service-0.3.9.jar → outbound-service-0.3.10.jar} +0 -0
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lansweeper/data-platform-outbound-grpc",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.11",
|
|
4
4
|
"description": "Data Platform Outbound gRPC",
|
|
5
5
|
"main": "gen-proto/index.js",
|
|
6
6
|
"types": "gen-proto/index.d.ts",
|
|
@@ -9,5 +9,5 @@
|
|
|
9
9
|
"@grpc/grpc-js": "^1.5.1",
|
|
10
10
|
"google-protobuf": "^3.17.0"
|
|
11
11
|
},
|
|
12
|
-
"gitHead": "
|
|
12
|
+
"gitHead": "5af85609f4720cb26c6705d1e8cef15c337fcc1c"
|
|
13
13
|
}
|
package/pom.xml
CHANGED
package/proto/outbound.proto
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
|
package/service/pom.xml
CHANGED
package/service/target/{outbound-service-0.3.9-sources.jar → outbound-service-0.3.10-sources.jar}
RENAMED
|
index cdf02a2..be8f5ed 100644
|
|
|
Binary file
|
|
index 7a5099c..47bdd8c 100644
|
|
|
Binary file
|