@lansweeper/discovery-sensor-proto 2.69.0 → 2.70.0

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lansweeper/discovery-sensor-proto",
3
3
  "description": "Discovery Sensor proto",
4
- "version": "2.69.0",
4
+ "version": "2.70.0",
5
5
  "main": "gen-proto/index.js",
6
6
  "types": "gen-proto/index.d.ts",
7
7
  "license": "MIT",
@@ -16,5 +16,5 @@
16
16
  "devDependencies": {
17
17
  "@types/google-protobuf": "^3.15.5"
18
18
  },
19
- "gitHead": "63eb034d5ead0611d51c212eef92e8607226f30b"
19
+ "gitHead": "aef15398345d4f1a27c7585401f7f7357217e2fc"
20
20
  }
@@ -61,6 +61,7 @@ message Esxi {
61
61
  google.protobuf.StringValue mac_address = 44;
62
62
  google.protobuf.StringValue full_host_name = 45;
63
63
  google.protobuf.StringValue esxi_cluster_guid = 46;
64
+ google.protobuf.StringValue datacenter_guid = 47;
64
65
  }
65
66
 
66
67
  message VirtualMachine {
@@ -13,8 +13,9 @@ import "discovery_sections_esxi.proto";
13
13
 
14
14
  /* VCenter API scanning root object */
15
15
  message VCenter {
16
- com.lansweeper.discovery.sensor.vmware.v1.VmwareProductInfo product_info = 1;
16
+ com.lansweeper.discovery.sensor.vmware.v1.VmwareProductInfo product_info = 1;
17
17
  repeated DataCenter datacenters = 2;
18
+ string vcenter_guid = 3;
18
19
  }
19
20
 
20
21
  message DatastoreClusterDrsPodConfigRule {
@@ -83,4 +84,6 @@ message VCenter {
83
84
  repeated DatastoreCluster datastore_clusters = 4;
84
85
  repeated com.lansweeper.discovery.sensor.esxi.v1.Esxi hosts = 5;
85
86
  repeated EsxiCluster host_clusters = 6;
87
+ string datacenter_guid = 7;
88
+ string vcenter_guid = 8;
86
89
  }