@lansweeper/data-platform-outbound-grpc 0.1.14 → 0.1.15
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 +5 -0
- package/gen-proto/outbound_pb.js +57 -1
- package/generated-go/outbound.pb.go +957 -936
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +14 -1
package/java.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lansweeper/data-platform-outbound-grpc",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.15",
|
|
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": "3860ba0574868155be98ccbde9645d5a8dd1715f"
|
|
13
13
|
}
|
package/proto/outbound.proto
CHANGED
|
@@ -85,6 +85,7 @@ message EntityPath {
|
|
|
85
85
|
optional string entity_id = 5;
|
|
86
86
|
}
|
|
87
87
|
|
|
88
|
+
/* Main Entity object: variant */
|
|
88
89
|
message Entity {
|
|
89
90
|
oneof entity {
|
|
90
91
|
Asset asset = 1;
|
|
@@ -93,6 +94,7 @@ message Entity {
|
|
|
93
94
|
}
|
|
94
95
|
}
|
|
95
96
|
|
|
97
|
+
/* Asset object: IT/OT/CDR... CDK? */
|
|
96
98
|
message Asset {
|
|
97
99
|
|
|
98
100
|
EntityPath id = 1;
|
|
@@ -102,6 +104,18 @@ message Asset {
|
|
|
102
104
|
google.protobuf.Timestamp last_updated = 4;
|
|
103
105
|
google.protobuf.Timestamp last_enriched = 5;
|
|
104
106
|
|
|
107
|
+
/**
|
|
108
|
+
* Source tags in the format: brand/type/sub-type
|
|
109
|
+
* E.g.: LS/IT/CDR
|
|
110
|
+
* E.g.: LS/IT/Scan-WMI
|
|
111
|
+
* E.g.: LS/IT/Scan-MAC
|
|
112
|
+
* E.g.: LS/IT/Scan-Linux
|
|
113
|
+
* E.g.: LS/IT/OT (OT like this?)
|
|
114
|
+
* E.g.: LS/CDK (cloud discovery?)
|
|
115
|
+
* E.g.: LS/DataCore (reconciliation)
|
|
116
|
+
*/
|
|
117
|
+
repeated string source_tag = 12;
|
|
118
|
+
|
|
105
119
|
CoreFields core = 6;
|
|
106
120
|
|
|
107
121
|
optional HardwareInfo hw = 7;
|
|
@@ -122,7 +136,6 @@ message Asset {
|
|
|
122
136
|
}
|
|
123
137
|
|
|
124
138
|
|
|
125
|
-
|
|
126
139
|
/**
|
|
127
140
|
* Asset Type enables customers to manage the settings for a
|
|
128
141
|
* category of information in a centralized, reusable way.
|