@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.
Files changed (35) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/gen-proto/image.json +1 -1
  3. package/gen-proto/outbound_pb.d.ts +46 -0
  4. package/gen-proto/outbound_pb.js +393 -2
  5. package/generated-go/outbound.pb.go +10799 -10662
  6. package/java.json +1 -1
  7. package/model/pom.xml +1 -1
  8. package/model/src/main/proto/outbound.proto +10 -0
  9. package/model/target/classes/com/lansweeper/dp/outbound/v1/CloudEntity$1.class +0 -0
  10. package/model/target/classes/com/lansweeper/dp/outbound/v1/CloudEntity$Builder.class +0 -0
  11. package/model/target/classes/com/lansweeper/dp/outbound/v1/CloudEntity.class +0 -0
  12. package/model/target/classes/com/lansweeper/dp/outbound/v1/CloudEntityOrBuilder.class +0 -0
  13. package/model/target/classes/com/lansweeper/dp/outbound/v1/Outbound.class +0 -0
  14. package/model/target/classes/com/lansweeper/dp/outbound/v1/PublicCloudLink$1.class +0 -0
  15. package/model/target/classes/com/lansweeper/dp/outbound/v1/PublicCloudLink$Builder.class +0 -0
  16. package/model/target/classes/com/lansweeper/dp/outbound/v1/PublicCloudLink.class +0 -0
  17. package/model/target/classes/com/lansweeper/dp/outbound/v1/PublicCloudLinkOrBuilder.class +0 -0
  18. package/model/target/classes/outbound.proto +10 -0
  19. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/CloudEntity.java +665 -0
  20. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/CloudEntityOrBuilder.java +58 -0
  21. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +3124 -3105
  22. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/PublicCloudLink.java +950 -0
  23. package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/PublicCloudLinkOrBuilder.java +58 -0
  24. package/model/target/maven-archiver/pom.properties +2 -2
  25. package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +4 -0
  26. package/model/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +2 -0
  27. package/model/target/{outbound-model-0.3.24-sources.jar → outbound-model-0.3.26-sources.jar} +0 -0
  28. package/model/target/{outbound-model-0.3.24.jar → outbound-model-0.3.26.jar} +0 -0
  29. package/package.json +2 -2
  30. package/pom.xml +1 -1
  31. package/proto/outbound.proto +10 -0
  32. package/service/pom.xml +1 -1
  33. package/service/target/maven-archiver/pom.properties +2 -2
  34. package/service/target/{outbound-service-0.3.24-sources.jar → outbound-service-0.3.26-sources.jar} +0 -0
  35. package/service/target/{outbound-service-0.3.24.jar → outbound-service-0.3.26.jar} +0 -0
package/java.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.3.24",
2
+ "version": "0.3.26",
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.24</version>
9
+ <version>0.3.26</version>
10
10
  </parent>
11
11
 
12
12
  <artifactId>outbound-model</artifactId>
@@ -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
  /**
@@ -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
  /**