@lansweeper/data-platform-outbound-grpc 0.3.25 → 0.3.27
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 +46 -0
- package/gen-proto/outbound_pb.js +393 -2
- package/generated-go/outbound.pb.go +10799 -10662
- package/java.json +1 -1
- package/model/pom.xml +1 -1
- package/model/src/main/proto/outbound.proto +10 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/CloudEntity$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/CloudEntity$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/CloudEntity.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/CloudEntityOrBuilder.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/PublicCloudLink$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/PublicCloudLink$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/PublicCloudLink.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/PublicCloudLinkOrBuilder.class +0 -0
- package/model/target/classes/outbound.proto +10 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/CloudEntity.java +665 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/CloudEntityOrBuilder.java +58 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +3124 -3105
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/PublicCloudLink.java +950 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/PublicCloudLinkOrBuilder.java +58 -0
- package/model/target/maven-archiver/pom.properties +2 -2
- package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +4 -0
- package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +2 -0
- package/model/target/{outbound-model-0.3.24-sources.jar → outbound-model-0.3.26-sources.jar} +0 -0
- package/model/target/{outbound-model-0.3.24.jar → outbound-model-0.3.26.jar} +0 -0
- package/package.json +2 -2
- package/pom.xml +1 -1
- package/proto/outbound.proto +10 -0
- package/service/pom.xml +1 -1
- package/service/target/maven-archiver/pom.properties +2 -2
- package/service/target/{outbound-service-0.3.24-sources.jar → outbound-service-0.3.26-sources.jar} +0 -0
- package/service/target/{outbound-service-0.3.24.jar → outbound-service-0.3.26.jar} +0 -0
package/java.json
CHANGED
package/model/pom.xml
CHANGED
|
@@ -585,6 +585,16 @@ message CloudEntity {
|
|
|
585
585
|
optional string location = 8;
|
|
586
586
|
optional string tenant_id = 9;
|
|
587
587
|
optional string tenant_name = 10;
|
|
588
|
+
optional string resource_group = 11;
|
|
589
|
+
optional string cloud_asset_id = 12;
|
|
590
|
+
repeated PublicCloudLink public_cloud_links = 13;
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
message PublicCloudLink {
|
|
594
|
+
string to_public_cloud_asset_id = 1;
|
|
595
|
+
string link_type = 2;
|
|
596
|
+
string to_public_cloud_asset_type = 3;
|
|
597
|
+
string to_public_cloud_asset_name = 4;
|
|
588
598
|
}
|
|
589
599
|
|
|
590
600
|
/**
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -585,6 +585,16 @@ message CloudEntity {
|
|
|
585
585
|
optional string location = 8;
|
|
586
586
|
optional string tenant_id = 9;
|
|
587
587
|
optional string tenant_name = 10;
|
|
588
|
+
optional string resource_group = 11;
|
|
589
|
+
optional string cloud_asset_id = 12;
|
|
590
|
+
repeated PublicCloudLink public_cloud_links = 13;
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
message PublicCloudLink {
|
|
594
|
+
string to_public_cloud_asset_id = 1;
|
|
595
|
+
string link_type = 2;
|
|
596
|
+
string to_public_cloud_asset_type = 3;
|
|
597
|
+
string to_public_cloud_asset_name = 4;
|
|
588
598
|
}
|
|
589
599
|
|
|
590
600
|
/**
|