@lansweeper/data-platform-outbound-grpc 0.3.0 → 0.3.2
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 +18 -0
- package/gen-proto/outbound_pb.js +145 -1
- package/generated-go/outbound.pb.go +7171 -7137
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +3 -0
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.3.
|
|
3
|
+
"version": "0.3.2",
|
|
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": "6bc99e60bb646b731af008d66d8c297ae9603b95"
|
|
13
13
|
}
|
package/proto/outbound.proto
CHANGED
|
@@ -527,6 +527,8 @@ message CloudEntity {
|
|
|
527
527
|
string category = 6;
|
|
528
528
|
repeated Tag cdk_tags = 7; // Displayable tags from CDK scanner
|
|
529
529
|
optional string location = 8;
|
|
530
|
+
optional string tenant_id = 9;
|
|
531
|
+
optional string tenant_name = 10;
|
|
530
532
|
}
|
|
531
533
|
|
|
532
534
|
/**
|
|
@@ -619,6 +621,7 @@ message SourceInfo {
|
|
|
619
621
|
string source_type = 2; // source type like e.g. IT
|
|
620
622
|
optional string source_agent = 3; // source agent name and version
|
|
621
623
|
optional string source_name = 4; // source name
|
|
624
|
+
optional string source_tag = 8; // source tag
|
|
622
625
|
string raw_id = 5; // entity/asset raw id for source
|
|
623
626
|
optional string entity_id = 7; // entity/asset id in data-core
|
|
624
627
|
google.protobuf.Timestamp last_synced = 6;
|