@lansweeper/data-platform-outbound-grpc 0.3.26 → 0.3.28
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 +394 -3
- package/generated-go/outbound.pb.go +10782 -10643
- 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/com/lansweeper/dp/outbound/v1/VmwareEsxiGuestVm$1.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/VmwareEsxiGuestVm$Builder$EsxiGuestSnapshotsConverter.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/VmwareEsxiGuestVm$Builder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/VmwareEsxiGuestVm$EsxiGuestSnapshotsDefaultEntryHolder.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/VmwareEsxiGuestVm.class +0 -0
- package/model/target/classes/com/lansweeper/dp/outbound/v1/VmwareEsxiGuestVmOrBuilder.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 +508 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/CloudEntityOrBuilder.java +41 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/Outbound.java +3129 -3109
- 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/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/VmwareEsxiGuestVm.java +193 -0
- package/model/target/generated-sources/protobuf/java/com/lansweeper/dp/outbound/v1/VmwareEsxiGuestVmOrBuilder.java +29 -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.25-sources.jar → outbound-model-0.3.27-sources.jar} +0 -0
- package/model/target/{outbound-model-0.3.25.jar → outbound-model-0.3.27.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.25-sources.jar → outbound-service-0.3.27-sources.jar} +0 -0
- package/service/target/{outbound-service-0.3.25.jar → outbound-service-0.3.27.jar} +0 -0
package/java.json
CHANGED
package/model/pom.xml
CHANGED
|
@@ -586,6 +586,15 @@ message CloudEntity {
|
|
|
586
586
|
optional string tenant_id = 9;
|
|
587
587
|
optional string tenant_name = 10;
|
|
588
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;
|
|
589
598
|
}
|
|
590
599
|
|
|
591
600
|
/**
|
|
@@ -3975,6 +3984,7 @@ message VmwareEsxiGuestVm {
|
|
|
3975
3984
|
optional string domain_name = 18; // Domain name of the Esxi Guest VM
|
|
3976
3985
|
optional string config_name = 19; // Config name of the Esxi Guest VM
|
|
3977
3986
|
optional double memory_size_mb = 21; // Memory size in MB of the Esxi Guest VM
|
|
3987
|
+
optional string vcenter_instance_reference = 22; // Reference to the VCenter instance, if this Vm contains a vCenter instance
|
|
3978
3988
|
}
|
|
3979
3989
|
|
|
3980
3990
|
/*
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -586,6 +586,15 @@ message CloudEntity {
|
|
|
586
586
|
optional string tenant_id = 9;
|
|
587
587
|
optional string tenant_name = 10;
|
|
588
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;
|
|
589
598
|
}
|
|
590
599
|
|
|
591
600
|
/**
|
|
@@ -3975,6 +3984,7 @@ message VmwareEsxiGuestVm {
|
|
|
3975
3984
|
optional string domain_name = 18; // Domain name of the Esxi Guest VM
|
|
3976
3985
|
optional string config_name = 19; // Config name of the Esxi Guest VM
|
|
3977
3986
|
optional double memory_size_mb = 21; // Memory size in MB of the Esxi Guest VM
|
|
3987
|
+
optional string vcenter_instance_reference = 22; // Reference to the VCenter instance, if this Vm contains a vCenter instance
|
|
3978
3988
|
}
|
|
3979
3989
|
|
|
3980
3990
|
/*
|