@lansweeper/diagrams-grpc 0.0.29 → 0.0.30

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 CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.0.30](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/diagrams-grpc@0.0.29...@lansweeper/diagrams-grpc@0.0.30) (2023-01-30)
7
+
8
+ **Note:** Version bump only for package @lansweeper/diagrams-grpc
9
+
10
+
11
+
12
+
13
+
6
14
  ## [0.0.29](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/diagrams-grpc@0.0.28...@lansweeper/diagrams-grpc@0.0.29) (2023-01-27)
7
15
 
8
16
  **Note:** Version bump only for package @lansweeper/diagrams-grpc
@@ -7,9 +7,9 @@
7
7
  <Company>Lansweeper</Company>
8
8
  <Product>Lansweeper Diagrams</Product>
9
9
  <Copyright>Lansweeper</Copyright>
10
- <PackageVersion>0.0.28</PackageVersion>
11
- <Version>0.0.28</Version>
12
- <FileVersion>0.0.28</FileVersion>
10
+ <PackageVersion>0.0.29</PackageVersion>
11
+ <Version>0.0.29</Version>
12
+ <FileVersion>0.0.29</FileVersion>
13
13
  <RepositoryUrl>https://github.com/Lansweeper/lansweeperapis</RepositoryUrl>
14
14
  </PropertyGroup>
15
15
  <ItemGroup>
@@ -6,7 +6,7 @@
6
6
  "compilationOptions": {},
7
7
  "targets": {
8
8
  ".NETCoreApp,Version=v6.0": {
9
- "Lansweeper.Diagrams.GRPC/0.0.28": {
9
+ "Lansweeper.Diagrams.GRPC/0.0.29": {
10
10
  "dependencies": {
11
11
  "Google.Protobuf": "3.15.0",
12
12
  "Grpc": "2.46.1",
@@ -91,7 +91,7 @@
91
91
  }
92
92
  },
93
93
  "libraries": {
94
- "Lansweeper.Diagrams.GRPC/0.0.28": {
94
+ "Lansweeper.Diagrams.GRPC/0.0.29": {
95
95
  "type": "project",
96
96
  "serviceable": false,
97
97
  "sha512": ""
@@ -275,6 +275,8 @@ export class IpLocation extends jspb.Message {
275
275
  setNbAssets(value: number): IpLocation;
276
276
  getIpLocationId(): string;
277
277
  setIpLocationId(value: string): IpLocation;
278
+ getInstallKey(): string;
279
+ setInstallKey(value: string): IpLocation;
278
280
 
279
281
  serializeBinary(): Uint8Array;
280
282
  toObject(includeInstance?: boolean): IpLocation.AsObject;
@@ -294,6 +296,7 @@ export namespace IpLocation {
294
296
  rangeEnd: string,
295
297
  nbAssets: number,
296
298
  ipLocationId: string,
299
+ installKey: string,
297
300
  }
298
301
  }
299
302
 
@@ -2377,7 +2377,8 @@ proto.lansweeper.diagrams.v1.IpLocation.toObject = function(includeInstance, msg
2377
2377
  rangeStart: jspb.Message.getFieldWithDefault(msg, 3, ""),
2378
2378
  rangeEnd: jspb.Message.getFieldWithDefault(msg, 4, ""),
2379
2379
  nbAssets: jspb.Message.getFieldWithDefault(msg, 5, 0),
2380
- ipLocationId: jspb.Message.getFieldWithDefault(msg, 6, "")
2380
+ ipLocationId: jspb.Message.getFieldWithDefault(msg, 6, ""),
2381
+ installKey: jspb.Message.getFieldWithDefault(msg, 7, "")
2381
2382
  };
2382
2383
 
2383
2384
  if (includeInstance) {
@@ -2438,6 +2439,10 @@ proto.lansweeper.diagrams.v1.IpLocation.deserializeBinaryFromReader = function(m
2438
2439
  var value = /** @type {string} */ (reader.readString());
2439
2440
  msg.setIpLocationId(value);
2440
2441
  break;
2442
+ case 7:
2443
+ var value = /** @type {string} */ (reader.readString());
2444
+ msg.setInstallKey(value);
2445
+ break;
2441
2446
  default:
2442
2447
  reader.skipField();
2443
2448
  break;
@@ -2509,6 +2514,13 @@ proto.lansweeper.diagrams.v1.IpLocation.serializeBinaryToWriter = function(messa
2509
2514
  f
2510
2515
  );
2511
2516
  }
2517
+ f = message.getInstallKey();
2518
+ if (f.length > 0) {
2519
+ writer.writeString(
2520
+ 7,
2521
+ f
2522
+ );
2523
+ }
2512
2524
  };
2513
2525
 
2514
2526
 
@@ -2620,6 +2632,24 @@ proto.lansweeper.diagrams.v1.IpLocation.prototype.setIpLocationId = function(val
2620
2632
  };
2621
2633
 
2622
2634
 
2635
+ /**
2636
+ * optional string install_key = 7;
2637
+ * @return {string}
2638
+ */
2639
+ proto.lansweeper.diagrams.v1.IpLocation.prototype.getInstallKey = function() {
2640
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
2641
+ };
2642
+
2643
+
2644
+ /**
2645
+ * @param {string} value
2646
+ * @return {!proto.lansweeper.diagrams.v1.IpLocation} returns this
2647
+ */
2648
+ proto.lansweeper.diagrams.v1.IpLocation.prototype.setInstallKey = function(value) {
2649
+ return jspb.Message.setProto3StringField(this, 7, value);
2650
+ };
2651
+
2652
+
2623
2653
 
2624
2654
  /**
2625
2655
  * List of repeated fields within this message type.
@@ -1 +1 @@
1
- {"file":[{"name":"google/protobuf/timestamp.proto","package":"google.protobuf","messageType":[{"name":"Timestamp","field":[{"name":"seconds","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"seconds"},{"name":"nanos","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"nanos"}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"TimestampProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/timestamppb","ccEnableArenas":true,"objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"sourceCodeInfo":{"location":[{"span":[30,0,146,1]},{"path":[12],"span":[30,0,18],"leadingDetachedComments":[" Protocol Buffers - Google's data interchange format\n Copyright 2008 Google Inc. All rights reserved.\n https://developers.google.com/protocol-buffers/\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"]},{"path":[2],"span":[32,0,24]},{"path":[8],"span":[34,0,59]},{"path":[8,37],"span":[34,0,59]},{"path":[8],"span":[35,0,31]},{"path":[8,31],"span":[35,0,31]},{"path":[8],"span":[36,0,73]},{"path":[8,11],"span":[36,0,73]},{"path":[8],"span":[37,0,44]},{"path":[8,1],"span":[37,0,44]},{"path":[8],"span":[38,0,47]},{"path":[8,8],"span":[38,0,47]},{"path":[8],"span":[39,0,34]},{"path":[8,10],"span":[39,0,34]},{"path":[8],"span":[40,0,33]},{"path":[8,36],"span":[40,0,33]},{"path":[4,0],"span":[135,0,146,1],"leadingComments":" A Timestamp represents a point in time independent of any time zone or local\n calendar, encoded as a count of seconds and fractions of seconds at\n nanosecond resolution. The count is relative to an epoch at UTC midnight on\n January 1, 1970, in the proleptic Gregorian calendar which extends the\n Gregorian calendar backwards to year one.\n\n All minutes are 60 seconds long. Leap seconds are \"smeared\" so that no leap\n second table is needed for interpretation, using a [24-hour linear\n smear](https://developers.google.com/time/smear).\n\n The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By\n restricting to that range, we ensure that we can convert to and from [RFC\n 3339](https://www.ietf.org/rfc/rfc3339.txt) date strings.\n\n # Examples\n\n Example 1: Compute Timestamp from POSIX `time()`.\n\n Timestamp timestamp;\n timestamp.set_seconds(time(NULL));\n timestamp.set_nanos(0);\n\n Example 2: Compute Timestamp from POSIX `gettimeofday()`.\n\n struct timeval tv;\n gettimeofday(&tv, NULL);\n\n Timestamp timestamp;\n timestamp.set_seconds(tv.tv_sec);\n timestamp.set_nanos(tv.tv_usec * 1000);\n\n Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`.\n\n FILETIME ft;\n GetSystemTimeAsFileTime(&ft);\n UINT64 ticks = (((UINT64)ft.dwHighDateTime) << 32) | ft.dwLowDateTime;\n\n // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z\n // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.\n Timestamp timestamp;\n timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL));\n timestamp.set_nanos((INT32) ((ticks % 10000000) * 100));\n\n Example 4: Compute Timestamp from Java `System.currentTimeMillis()`.\n\n long millis = System.currentTimeMillis();\n\n Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)\n .setNanos((int) ((millis % 1000) * 1000000)).build();\n\n\n Example 5: Compute Timestamp from Java `Instant.now()`.\n\n Instant now = Instant.now();\n\n Timestamp timestamp =\n Timestamp.newBuilder().setSeconds(now.getEpochSecond())\n .setNanos(now.getNano()).build();\n\n\n Example 6: Compute Timestamp from current time in Python.\n\n timestamp = Timestamp()\n timestamp.GetCurrentTime()\n\n # JSON Mapping\n\n In JSON format, the Timestamp type is encoded as a string in the\n [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the\n format is \"{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z\"\n where {year} is always expressed using four digits while {month}, {day},\n {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional\n seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution),\n are optional. The \"Z\" suffix indicates the timezone (\"UTC\"); the timezone\n is required. A proto3 JSON serializer should always use UTC (as indicated by\n \"Z\") when printing the Timestamp type and a proto3 JSON parser should be\n able to accept both UTC and other timezones (as indicated by an offset).\n\n For example, \"2017-01-15T01:30:15.01Z\" encodes 15.01 seconds past\n 01:30 UTC on January 15, 2017.\n\n In JavaScript, one can convert a Date object to this format using the\n standard\n [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString)\n method. In Python, a standard `datetime.datetime` object can be converted\n to this format using\n [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with\n the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use\n the Joda Time's [`ISODateTimeFormat.dateTime()`](\n http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D\n ) to obtain a formatter capable of generating timestamps in this format.\n\n\n"},{"path":[4,0,1],"span":[135,8,17]},{"path":[4,0,2,0],"span":[139,2,20],"leadingComments":" Represents seconds of UTC time since Unix epoch\n 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to\n 9999-12-31T23:59:59Z inclusive.\n"},{"path":[4,0,2,0,5],"span":[139,2,7]},{"path":[4,0,2,0,1],"span":[139,8,15]},{"path":[4,0,2,0,3],"span":[139,18,19]},{"path":[4,0,2,1],"span":[145,2,18],"leadingComments":" Non-negative fractions of a second at nanosecond resolution. Negative\n second values with fractions must still have non-negative nanos values\n that count forward in time. Must be from 0 to 999,999,999\n inclusive.\n"},{"path":[4,0,2,1,5],"span":[145,2,7]},{"path":[4,0,2,1,1],"span":[145,8,13]},{"path":[4,0,2,1,3],"span":[145,16,17]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"proto/diagrams.proto","package":"lansweeper.diagrams.v1","dependency":["google/protobuf/timestamp.proto"],"messageType":[{"name":"DiagramRequest","field":[{"name":"client_key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientKey"},{"name":"installation_key","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"installationKey"},{"name":"asset_scopes_rules","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.DiagramRequest.AssetScopesRulesEntry","jsonName":"assetScopesRules"},{"name":"trace_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"traceId"},{"name":"ip_location_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"ipLocationId"}],"nestedType":[{"name":"AssetScopesRulesEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"value"}],"options":{"mapEntry":true}}]},{"name":"IpLocationsRequest","field":[{"name":"client_key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientKey"},{"name":"trace_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"traceId"}]},{"name":"Asset","field":[{"name":"unique_key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"uniqueKey"},{"name":"key","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"type_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"typeName"},{"name":"group_key","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"groupKey"},{"name":"is_group","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isGroup"},{"name":"ip_address","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"ipAddress"},{"name":"vm_running_status","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"vmRunningStatus"},{"name":"category","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"category"},{"name":"is_virtual","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isVirtual"},{"name":"is_vm_running","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isVmRunning"},{"name":"errors","number":12,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.AssetError","jsonName":"errors"},{"name":"ip_location_key","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"ipLocationKey"},{"name":"mac_address","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"macAddress"},{"name":"state","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"state"}]},{"name":"AssetError","field":[{"name":"error_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"errorId"},{"name":"error_text","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"errorText"},{"name":"last_changed","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"lastChanged"},{"name":"error_type_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"errorTypeId"},{"name":"error_type_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"errorTypeName"}]},{"name":"Error","field":[{"name":"type","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.diagrams.v1.ErrorType","jsonName":"type"},{"name":"message","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"message"}]},{"name":"Relationship","field":[{"name":"from_asset_unique_key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"fromAssetUniqueKey"},{"name":"to_asset_unique_key","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"toAssetUniqueKey"},{"name":"name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"reverse_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"reverseName"},{"name":"icon_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"iconName"},{"name":"start_date","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"startDate"},{"name":"end_date","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"endDate"},{"name":"comments","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"comments"},{"name":"generation_type","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"generationType"}]},{"name":"AssetType","field":[{"name":"type_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"typeName"},{"name":"is_mandatory","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isMandatory"},{"name":"is_enabled_by_default","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isEnabledByDefault"},{"name":"nb_assets","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"nbAssets"}]},{"name":"IpLocation","field":[{"name":"ip_location_key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"ipLocationKey"},{"name":"ip_location_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"ipLocationName"},{"name":"range_start","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"rangeStart"},{"name":"range_end","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"rangeEnd"},{"name":"nb_assets","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"nbAssets"},{"name":"ip_location_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"ipLocationId"}]},{"name":"Filters","field":[{"name":"asset_types","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.AssetType","jsonName":"assetTypes"},{"name":"ip_locations","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.IpLocation","jsonName":"ipLocations"},{"name":"asset_states","number":3,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"assetStates"}]},{"name":"NetworkTopologyDiagramResponse","field":[{"name":"assets","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Asset","jsonName":"assets"},{"name":"relationships","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Relationship","jsonName":"relationships"},{"name":"errors","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Error","jsonName":"errors"},{"name":"asset_types","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.AssetType","jsonName":"assetTypes"},{"name":"filters","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Filters","jsonName":"filters"},{"name":"ip_location_name","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"ipLocationName"}]},{"name":"VirtualEnvironmentDiagramResponse","field":[{"name":"assets","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Asset","jsonName":"assets"},{"name":"relationships","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Relationship","jsonName":"relationships"},{"name":"errors","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Error","jsonName":"errors"},{"name":"asset_types","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.AssetType","jsonName":"assetTypes"},{"name":"filters","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Filters","jsonName":"filters"},{"name":"ip_location_name","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"ipLocationName"}]},{"name":"OtDiagramResponse","field":[{"name":"assets","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Asset","jsonName":"assets"},{"name":"relationships","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Relationship","jsonName":"relationships"},{"name":"errors","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Error","jsonName":"errors"},{"name":"asset_types","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.AssetType","jsonName":"assetTypes"},{"name":"filters","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Filters","jsonName":"filters"}]},{"name":"IpLocationsResponse","field":[{"name":"ip_locations","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.IpLocation","jsonName":"ipLocations"}]}],"enumType":[{"name":"ErrorType","value":[{"name":"UNKNOWN","number":0},{"name":"GENERATION_ERROR","number":1},{"name":"NO_ASSET","number":2},{"name":"ASSET_COUNT_THRESHOLD","number":3}]},{"name":"DiagramCategory","value":[{"name":"NETWORK_TOPOLOGY","number":0},{"name":"VIRTUAL_ENVIRONMENT","number":1},{"name":"OT","number":2}]}],"service":[{"name":"DiagramsService","method":[{"name":"GetNetworkTopologyDiagram","inputType":".lansweeper.diagrams.v1.DiagramRequest","outputType":".lansweeper.diagrams.v1.NetworkTopologyDiagramResponse","options":{}},{"name":"GetVirtualEnvironmentDiagram","inputType":".lansweeper.diagrams.v1.DiagramRequest","outputType":".lansweeper.diagrams.v1.VirtualEnvironmentDiagramResponse","options":{}},{"name":"GetOtDiagram","inputType":".lansweeper.diagrams.v1.DiagramRequest","outputType":".lansweeper.diagrams.v1.OtDiagramResponse","options":{}},{"name":"GetIpLocations","inputType":".lansweeper.diagrams.v1.IpLocationsRequest","outputType":".lansweeper.diagrams.v1.IpLocationsResponse","options":{}}]}],"options":{"csharpNamespace":"Lansweeper.Diagrams.GRPC"},"sourceCodeInfo":{"location":[{"span":[0,0,134,1]},{"path":[12],"span":[0,0,18]},{"path":[2],"span":[2,0,31]},{"path":[3,0],"span":[4,0,41]},{"path":[8],"span":[6,0,53]},{"path":[8,37],"span":[6,0,53]},{"path":[6,0],"span":[8,0,13,1]},{"path":[6,0,1],"span":[8,8,23]},{"path":[6,0,2,0],"span":[9,2,91]},{"path":[6,0,2,0,1],"span":[9,6,31]},{"path":[6,0,2,0,2],"span":[9,32,46]},{"path":[6,0,2,0,3],"span":[9,57,87]},{"path":[6,0,2,1],"span":[10,2,97]},{"path":[6,0,2,1,1],"span":[10,6,34]},{"path":[6,0,2,1,2],"span":[10,35,49]},{"path":[6,0,2,1,3],"span":[10,60,93]},{"path":[6,0,2,2],"span":[11,2,65]},{"path":[6,0,2,2,1],"span":[11,6,18]},{"path":[6,0,2,2,2],"span":[11,19,33]},{"path":[6,0,2,2,3],"span":[11,44,61]},{"path":[6,0,2,3],"span":[12,2,73]},{"path":[6,0,2,3,1],"span":[12,6,20]},{"path":[6,0,2,3,2],"span":[12,21,39]},{"path":[6,0,2,3,3],"span":[12,50,69]},{"path":[4,0],"span":[15,0,21,1]},{"path":[4,0,1],"span":[15,8,22]},{"path":[4,0,2,0],"span":[16,2,24]},{"path":[4,0,2,0,5],"span":[16,2,8]},{"path":[4,0,2,0,1],"span":[16,9,19]},{"path":[4,0,2,0,3],"span":[16,22,23]},{"path":[4,0,2,1],"span":[17,2,30]},{"path":[4,0,2,1,5],"span":[17,2,8]},{"path":[4,0,2,1,1],"span":[17,9,25]},{"path":[4,0,2,1,3],"span":[17,28,29]},{"path":[4,0,2,2],"span":[18,2,45]},{"path":[4,0,2,2,6],"span":[18,2,21]},{"path":[4,0,2,2,1],"span":[18,22,40]},{"path":[4,0,2,2,3],"span":[18,43,44]},{"path":[4,0,2,3],"span":[19,2,22]},{"path":[4,0,2,3,5],"span":[19,2,8]},{"path":[4,0,2,3,1],"span":[19,9,17]},{"path":[4,0,2,3,3],"span":[19,20,21]},{"path":[4,0,2,4],"span":[20,2,28]},{"path":[4,0,2,4,5],"span":[20,2,8]},{"path":[4,0,2,4,1],"span":[20,9,23]},{"path":[4,0,2,4,3],"span":[20,26,27]},{"path":[4,1],"span":[23,0,26,1]},{"path":[4,1,1],"span":[23,8,26]},{"path":[4,1,2,0],"span":[24,2,24]},{"path":[4,1,2,0,5],"span":[24,2,8]},{"path":[4,1,2,0,1],"span":[24,9,19]},{"path":[4,1,2,0,3],"span":[24,22,23]},{"path":[4,1,2,1],"span":[25,2,22]},{"path":[4,1,2,1,5],"span":[25,2,8]},{"path":[4,1,2,1,1],"span":[25,9,17]},{"path":[4,1,2,1,3],"span":[25,20,21]},{"path":[4,2],"span":[28,0,44,1]},{"path":[4,2,1],"span":[28,8,13]},{"path":[4,2,2,0],"span":[29,2,24]},{"path":[4,2,2,0,5],"span":[29,2,8]},{"path":[4,2,2,0,1],"span":[29,9,19]},{"path":[4,2,2,0,3],"span":[29,22,23]},{"path":[4,2,2,1],"span":[30,2,17]},{"path":[4,2,2,1,5],"span":[30,2,8]},{"path":[4,2,2,1,1],"span":[30,9,12]},{"path":[4,2,2,1,3],"span":[30,15,16]},{"path":[4,2,2,2],"span":[31,2,18]},{"path":[4,2,2,2,5],"span":[31,2,8]},{"path":[4,2,2,2,1],"span":[31,9,13]},{"path":[4,2,2,2,3],"span":[31,16,17]},{"path":[4,2,2,3],"span":[32,2,23]},{"path":[4,2,2,3,5],"span":[32,2,8]},{"path":[4,2,2,3,1],"span":[32,9,18]},{"path":[4,2,2,3,3],"span":[32,21,22]},{"path":[4,2,2,4],"span":[33,2,23]},{"path":[4,2,2,4,5],"span":[33,2,8]},{"path":[4,2,2,4,1],"span":[33,9,18]},{"path":[4,2,2,4,3],"span":[33,21,22]},{"path":[4,2,2,5],"span":[34,2,20]},{"path":[4,2,2,5,5],"span":[34,2,6]},{"path":[4,2,2,5,1],"span":[34,7,15]},{"path":[4,2,2,5,3],"span":[34,18,19]},{"path":[4,2,2,6],"span":[35,2,24]},{"path":[4,2,2,6,5],"span":[35,2,8]},{"path":[4,2,2,6,1],"span":[35,9,19]},{"path":[4,2,2,6,3],"span":[35,22,23]},{"path":[4,2,2,7],"span":[36,2,31]},{"path":[4,2,2,7,5],"span":[36,2,8]},{"path":[4,2,2,7,1],"span":[36,9,26]},{"path":[4,2,2,7,3],"span":[36,29,30]},{"path":[4,2,2,8],"span":[37,2,22]},{"path":[4,2,2,8,5],"span":[37,2,8]},{"path":[4,2,2,8,1],"span":[37,9,17]},{"path":[4,2,2,8,3],"span":[37,20,21]},{"path":[4,2,2,9],"span":[38,2,23]},{"path":[4,2,2,9,5],"span":[38,2,6]},{"path":[4,2,2,9,1],"span":[38,7,17]},{"path":[4,2,2,9,3],"span":[38,20,22]},{"path":[4,2,2,10],"span":[39,2,26]},{"path":[4,2,2,10,5],"span":[39,2,6]},{"path":[4,2,2,10,1],"span":[39,7,20]},{"path":[4,2,2,10,3],"span":[39,23,25]},{"path":[4,2,2,11],"span":[40,2,34]},{"path":[4,2,2,11,4],"span":[40,2,10]},{"path":[4,2,2,11,6],"span":[40,11,21]},{"path":[4,2,2,11,1],"span":[40,22,28]},{"path":[4,2,2,11,3],"span":[40,31,33]},{"path":[4,2,2,12],"span":[41,2,30]},{"path":[4,2,2,12,5],"span":[41,2,8]},{"path":[4,2,2,12,1],"span":[41,9,24]},{"path":[4,2,2,12,3],"span":[41,27,29]},{"path":[4,2,2,13],"span":[42,2,26]},{"path":[4,2,2,13,5],"span":[42,2,8]},{"path":[4,2,2,13,1],"span":[42,9,20]},{"path":[4,2,2,13,3],"span":[42,23,25]},{"path":[4,2,2,14],"span":[43,2,20]},{"path":[4,2,2,14,5],"span":[43,2,8]},{"path":[4,2,2,14,1],"span":[43,9,14]},{"path":[4,2,2,14,3],"span":[43,17,19]},{"path":[4,3],"span":[46,0,52,1]},{"path":[4,3,1],"span":[46,8,18]},{"path":[4,3,2,0],"span":[47,2,22]},{"path":[4,3,2,0,5],"span":[47,2,8]},{"path":[4,3,2,0,1],"span":[47,9,17]},{"path":[4,3,2,0,3],"span":[47,20,21]},{"path":[4,3,2,1],"span":[48,2,24]},{"path":[4,3,2,1,5],"span":[48,2,8]},{"path":[4,3,2,1,1],"span":[48,9,19]},{"path":[4,3,2,1,3],"span":[48,22,23]},{"path":[4,3,2,2],"span":[49,2,26]},{"path":[4,3,2,2,5],"span":[49,2,8]},{"path":[4,3,2,2,1],"span":[49,9,21]},{"path":[4,3,2,2,3],"span":[49,24,25]},{"path":[4,3,2,3],"span":[50,2,27]},{"path":[4,3,2,3,5],"span":[50,2,8]},{"path":[4,3,2,3,1],"span":[50,9,22]},{"path":[4,3,2,3,3],"span":[50,25,26]},{"path":[4,3,2,4],"span":[51,2,29]},{"path":[4,3,2,4,5],"span":[51,2,8]},{"path":[4,3,2,4,1],"span":[51,9,24]},{"path":[4,3,2,4,3],"span":[51,27,28]},{"path":[5,0],"span":[54,0,59,1]},{"path":[5,0,1],"span":[54,5,14]},{"path":[5,0,2,0],"span":[55,2,14]},{"path":[5,0,2,0,1],"span":[55,2,9]},{"path":[5,0,2,0,2],"span":[55,12,13]},{"path":[5,0,2,1],"span":[56,2,23]},{"path":[5,0,2,1,1],"span":[56,2,18]},{"path":[5,0,2,1,2],"span":[56,21,22]},{"path":[5,0,2,2],"span":[57,2,15]},{"path":[5,0,2,2,1],"span":[57,2,10]},{"path":[5,0,2,2,2],"span":[57,13,14]},{"path":[5,0,2,3],"span":[58,2,28]},{"path":[5,0,2,3,1],"span":[58,2,23]},{"path":[5,0,2,3,2],"span":[58,26,27]},{"path":[5,1],"span":[61,0,65,1]},{"path":[5,1,1],"span":[61,5,20]},{"path":[5,1,2,0],"span":[62,2,23]},{"path":[5,1,2,0,1],"span":[62,2,18]},{"path":[5,1,2,0,2],"span":[62,21,22]},{"path":[5,1,2,1],"span":[63,2,26]},{"path":[5,1,2,1,1],"span":[63,2,21]},{"path":[5,1,2,1,2],"span":[63,24,25]},{"path":[5,1,2,2],"span":[64,2,9]},{"path":[5,1,2,2,1],"span":[64,2,4]},{"path":[5,1,2,2,2],"span":[64,7,8]},{"path":[4,4],"span":[67,0,70,1]},{"path":[4,4,1],"span":[67,8,13]},{"path":[4,4,2,0],"span":[68,2,21]},{"path":[4,4,2,0,6],"span":[68,2,11]},{"path":[4,4,2,0,1],"span":[68,12,16]},{"path":[4,4,2,0,3],"span":[68,19,20]},{"path":[4,4,2,1],"span":[69,2,21]},{"path":[4,4,2,1,5],"span":[69,2,8]},{"path":[4,4,2,1,1],"span":[69,9,16]},{"path":[4,4,2,1,3],"span":[69,19,20]},{"path":[4,5],"span":[72,0,82,1]},{"path":[4,5,1],"span":[72,8,20]},{"path":[4,5,2,0],"span":[73,2,35]},{"path":[4,5,2,0,5],"span":[73,2,8]},{"path":[4,5,2,0,1],"span":[73,9,30]},{"path":[4,5,2,0,3],"span":[73,33,34]},{"path":[4,5,2,1],"span":[74,2,33]},{"path":[4,5,2,1,5],"span":[74,2,8]},{"path":[4,5,2,1,1],"span":[74,9,28]},{"path":[4,5,2,1,3],"span":[74,31,32]},{"path":[4,5,2,2],"span":[75,2,18]},{"path":[4,5,2,2,5],"span":[75,2,8]},{"path":[4,5,2,2,1],"span":[75,9,13]},{"path":[4,5,2,2,3],"span":[75,16,17]},{"path":[4,5,2,3],"span":[76,2,26]},{"path":[4,5,2,3,5],"span":[76,2,8]},{"path":[4,5,2,3,1],"span":[76,9,21]},{"path":[4,5,2,3,3],"span":[76,24,25]},{"path":[4,5,2,4],"span":[77,2,23]},{"path":[4,5,2,4,5],"span":[77,2,8]},{"path":[4,5,2,4,1],"span":[77,9,18]},{"path":[4,5,2,4,3],"span":[77,21,22]},{"path":[4,5,2,5],"span":[78,2,43]},{"path":[4,5,2,5,6],"span":[78,2,27]},{"path":[4,5,2,5,1],"span":[78,28,38]},{"path":[4,5,2,5,3],"span":[78,41,42]},{"path":[4,5,2,6],"span":[79,2,41]},{"path":[4,5,2,6,6],"span":[79,2,27]},{"path":[4,5,2,6,1],"span":[79,28,36]},{"path":[4,5,2,6,3],"span":[79,39,40]},{"path":[4,5,2,7],"span":[80,2,22]},{"path":[4,5,2,7,5],"span":[80,2,8]},{"path":[4,5,2,7,1],"span":[80,9,17]},{"path":[4,5,2,7,3],"span":[80,20,21]},{"path":[4,5,2,8],"span":[81,2,29]},{"path":[4,5,2,8,5],"span":[81,2,8]},{"path":[4,5,2,8,1],"span":[81,9,24]},{"path":[4,5,2,8,3],"span":[81,27,28]},{"path":[4,6],"span":[84,0,89,1]},{"path":[4,6,1],"span":[84,8,17]},{"path":[4,6,2,0],"span":[85,2,23]},{"path":[4,6,2,0,5],"span":[85,2,8]},{"path":[4,6,2,0,1],"span":[85,9,18]},{"path":[4,6,2,0,3],"span":[85,21,22]},{"path":[4,6,2,1],"span":[86,2,24]},{"path":[4,6,2,1,5],"span":[86,2,6]},{"path":[4,6,2,1,1],"span":[86,7,19]},{"path":[4,6,2,1,3],"span":[86,22,23]},{"path":[4,6,2,2],"span":[87,2,33]},{"path":[4,6,2,2,5],"span":[87,2,6]},{"path":[4,6,2,2,1],"span":[87,7,28]},{"path":[4,6,2,2,3],"span":[87,31,32]},{"path":[4,6,2,3],"span":[88,2,22]},{"path":[4,6,2,3,5],"span":[88,2,7]},{"path":[4,6,2,3,1],"span":[88,8,17]},{"path":[4,6,2,3,3],"span":[88,20,21]},{"path":[4,7],"span":[91,0,98,1]},{"path":[4,7,1],"span":[91,8,18]},{"path":[4,7,2,0],"span":[92,2,29]},{"path":[4,7,2,0,5],"span":[92,2,8]},{"path":[4,7,2,0,1],"span":[92,9,24]},{"path":[4,7,2,0,3],"span":[92,27,28]},{"path":[4,7,2,1],"span":[93,2,30]},{"path":[4,7,2,1,5],"span":[93,2,8]},{"path":[4,7,2,1,1],"span":[93,9,25]},{"path":[4,7,2,1,3],"span":[93,28,29]},{"path":[4,7,2,2],"span":[94,2,25]},{"path":[4,7,2,2,5],"span":[94,2,8]},{"path":[4,7,2,2,1],"span":[94,9,20]},{"path":[4,7,2,2,3],"span":[94,23,24]},{"path":[4,7,2,3],"span":[95,2,23]},{"path":[4,7,2,3,5],"span":[95,2,8]},{"path":[4,7,2,3,1],"span":[95,9,18]},{"path":[4,7,2,3,3],"span":[95,21,22]},{"path":[4,7,2,4],"span":[96,2,22]},{"path":[4,7,2,4,5],"span":[96,2,7]},{"path":[4,7,2,4,1],"span":[96,8,17]},{"path":[4,7,2,4,3],"span":[96,20,21]},{"path":[4,7,2,5],"span":[97,2,28]},{"path":[4,7,2,5,5],"span":[97,2,8]},{"path":[4,7,2,5,1],"span":[97,9,23]},{"path":[4,7,2,5,3],"span":[97,26,27]},{"path":[4,8],"span":[100,0,104,1]},{"path":[4,8,1],"span":[100,8,15]},{"path":[4,8,2,0],"span":[101,2,37]},{"path":[4,8,2,0,4],"span":[101,2,10]},{"path":[4,8,2,0,6],"span":[101,11,20]},{"path":[4,8,2,0,1],"span":[101,21,32]},{"path":[4,8,2,0,3],"span":[101,35,36]},{"path":[4,8,2,1],"span":[102,2,39]},{"path":[4,8,2,1,4],"span":[102,2,10]},{"path":[4,8,2,1,6],"span":[102,11,21]},{"path":[4,8,2,1,1],"span":[102,22,34]},{"path":[4,8,2,1,3],"span":[102,37,38]},{"path":[4,8,2,2],"span":[103,2,35]},{"path":[4,8,2,2,4],"span":[103,2,10]},{"path":[4,8,2,2,5],"span":[103,11,17]},{"path":[4,8,2,2,1],"span":[103,18,30]},{"path":[4,8,2,2,3],"span":[103,33,34]},{"path":[4,9],"span":[106,0,113,1]},{"path":[4,9,1],"span":[106,8,38]},{"path":[4,9,2,0],"span":[107,2,28]},{"path":[4,9,2,0,4],"span":[107,2,10]},{"path":[4,9,2,0,6],"span":[107,11,16]},{"path":[4,9,2,0,1],"span":[107,17,23]},{"path":[4,9,2,0,3],"span":[107,26,27]},{"path":[4,9,2,1],"span":[108,2,42]},{"path":[4,9,2,1,4],"span":[108,2,10]},{"path":[4,9,2,1,6],"span":[108,11,23]},{"path":[4,9,2,1,1],"span":[108,24,37]},{"path":[4,9,2,1,3],"span":[108,40,41]},{"path":[4,9,2,2],"span":[109,2,28]},{"path":[4,9,2,2,4],"span":[109,2,10]},{"path":[4,9,2,2,6],"span":[109,11,16]},{"path":[4,9,2,2,1],"span":[109,17,23]},{"path":[4,9,2,2,3],"span":[109,26,27]},{"path":[4,9,2,3],"span":[110,2,37]},{"path":[4,9,2,3,4],"span":[110,2,10]},{"path":[4,9,2,3,6],"span":[110,11,20]},{"path":[4,9,2,3,1],"span":[110,21,32]},{"path":[4,9,2,3,3],"span":[110,35,36]},{"path":[4,9,2,4],"span":[111,2,22]},{"path":[4,9,2,4,6],"span":[111,2,9]},{"path":[4,9,2,4,1],"span":[111,10,17]},{"path":[4,9,2,4,3],"span":[111,20,21]},{"path":[4,9,2,5],"span":[112,2,30]},{"path":[4,9,2,5,5],"span":[112,2,8]},{"path":[4,9,2,5,1],"span":[112,9,25]},{"path":[4,9,2,5,3],"span":[112,28,29]},{"path":[4,10],"span":[115,0,122,1]},{"path":[4,10,1],"span":[115,8,41]},{"path":[4,10,2,0],"span":[116,2,28]},{"path":[4,10,2,0,4],"span":[116,2,10]},{"path":[4,10,2,0,6],"span":[116,11,16]},{"path":[4,10,2,0,1],"span":[116,17,23]},{"path":[4,10,2,0,3],"span":[116,26,27]},{"path":[4,10,2,1],"span":[117,2,42]},{"path":[4,10,2,1,4],"span":[117,2,10]},{"path":[4,10,2,1,6],"span":[117,11,23]},{"path":[4,10,2,1,1],"span":[117,24,37]},{"path":[4,10,2,1,3],"span":[117,40,41]},{"path":[4,10,2,2],"span":[118,2,28]},{"path":[4,10,2,2,4],"span":[118,2,10]},{"path":[4,10,2,2,6],"span":[118,11,16]},{"path":[4,10,2,2,1],"span":[118,17,23]},{"path":[4,10,2,2,3],"span":[118,26,27]},{"path":[4,10,2,3],"span":[119,2,37]},{"path":[4,10,2,3,4],"span":[119,2,10]},{"path":[4,10,2,3,6],"span":[119,11,20]},{"path":[4,10,2,3,1],"span":[119,21,32]},{"path":[4,10,2,3,3],"span":[119,35,36]},{"path":[4,10,2,4],"span":[120,2,22]},{"path":[4,10,2,4,6],"span":[120,2,9]},{"path":[4,10,2,4,1],"span":[120,10,17]},{"path":[4,10,2,4,3],"span":[120,20,21]},{"path":[4,10,2,5],"span":[121,2,30]},{"path":[4,10,2,5,5],"span":[121,2,8]},{"path":[4,10,2,5,1],"span":[121,9,25]},{"path":[4,10,2,5,3],"span":[121,28,29]},{"path":[4,11],"span":[124,0,130,1]},{"path":[4,11,1],"span":[124,8,25]},{"path":[4,11,2,0],"span":[125,2,28]},{"path":[4,11,2,0,4],"span":[125,2,10]},{"path":[4,11,2,0,6],"span":[125,11,16]},{"path":[4,11,2,0,1],"span":[125,17,23]},{"path":[4,11,2,0,3],"span":[125,26,27]},{"path":[4,11,2,1],"span":[126,2,42]},{"path":[4,11,2,1,4],"span":[126,2,10]},{"path":[4,11,2,1,6],"span":[126,11,23]},{"path":[4,11,2,1,1],"span":[126,24,37]},{"path":[4,11,2,1,3],"span":[126,40,41]},{"path":[4,11,2,2],"span":[127,2,28]},{"path":[4,11,2,2,4],"span":[127,2,10]},{"path":[4,11,2,2,6],"span":[127,11,16]},{"path":[4,11,2,2,1],"span":[127,17,23]},{"path":[4,11,2,2,3],"span":[127,26,27]},{"path":[4,11,2,3],"span":[128,2,37]},{"path":[4,11,2,3,4],"span":[128,2,10]},{"path":[4,11,2,3,6],"span":[128,11,20]},{"path":[4,11,2,3,1],"span":[128,21,32]},{"path":[4,11,2,3,3],"span":[128,35,36]},{"path":[4,11,2,4],"span":[129,2,22]},{"path":[4,11,2,4,6],"span":[129,2,9]},{"path":[4,11,2,4,1],"span":[129,10,17]},{"path":[4,11,2,4,3],"span":[129,20,21]},{"path":[4,12],"span":[132,0,134,1]},{"path":[4,12,1],"span":[132,8,27]},{"path":[4,12,2,0],"span":[133,2,39]},{"path":[4,12,2,0,4],"span":[133,2,10]},{"path":[4,12,2,0,6],"span":[133,11,21]},{"path":[4,12,2,0,1],"span":[133,22,34]},{"path":[4,12,2,0,3],"span":[133,37,38]}]},"syntax":"proto3","bufExtension":{"isImport":false,"isSyntaxUnspecified":false}}]}
1
+ {"file":[{"name":"google/protobuf/timestamp.proto","package":"google.protobuf","messageType":[{"name":"Timestamp","field":[{"name":"seconds","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"seconds"},{"name":"nanos","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"nanos"}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"TimestampProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/timestamppb","ccEnableArenas":true,"objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"sourceCodeInfo":{"location":[{"span":[30,0,146,1]},{"path":[12],"span":[30,0,18],"leadingDetachedComments":[" Protocol Buffers - Google's data interchange format\n Copyright 2008 Google Inc. All rights reserved.\n https://developers.google.com/protocol-buffers/\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"]},{"path":[2],"span":[32,0,24]},{"path":[8],"span":[34,0,59]},{"path":[8,37],"span":[34,0,59]},{"path":[8],"span":[35,0,31]},{"path":[8,31],"span":[35,0,31]},{"path":[8],"span":[36,0,73]},{"path":[8,11],"span":[36,0,73]},{"path":[8],"span":[37,0,44]},{"path":[8,1],"span":[37,0,44]},{"path":[8],"span":[38,0,47]},{"path":[8,8],"span":[38,0,47]},{"path":[8],"span":[39,0,34]},{"path":[8,10],"span":[39,0,34]},{"path":[8],"span":[40,0,33]},{"path":[8,36],"span":[40,0,33]},{"path":[4,0],"span":[135,0,146,1],"leadingComments":" A Timestamp represents a point in time independent of any time zone or local\n calendar, encoded as a count of seconds and fractions of seconds at\n nanosecond resolution. The count is relative to an epoch at UTC midnight on\n January 1, 1970, in the proleptic Gregorian calendar which extends the\n Gregorian calendar backwards to year one.\n\n All minutes are 60 seconds long. Leap seconds are \"smeared\" so that no leap\n second table is needed for interpretation, using a [24-hour linear\n smear](https://developers.google.com/time/smear).\n\n The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By\n restricting to that range, we ensure that we can convert to and from [RFC\n 3339](https://www.ietf.org/rfc/rfc3339.txt) date strings.\n\n # Examples\n\n Example 1: Compute Timestamp from POSIX `time()`.\n\n Timestamp timestamp;\n timestamp.set_seconds(time(NULL));\n timestamp.set_nanos(0);\n\n Example 2: Compute Timestamp from POSIX `gettimeofday()`.\n\n struct timeval tv;\n gettimeofday(&tv, NULL);\n\n Timestamp timestamp;\n timestamp.set_seconds(tv.tv_sec);\n timestamp.set_nanos(tv.tv_usec * 1000);\n\n Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`.\n\n FILETIME ft;\n GetSystemTimeAsFileTime(&ft);\n UINT64 ticks = (((UINT64)ft.dwHighDateTime) << 32) | ft.dwLowDateTime;\n\n // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z\n // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.\n Timestamp timestamp;\n timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL));\n timestamp.set_nanos((INT32) ((ticks % 10000000) * 100));\n\n Example 4: Compute Timestamp from Java `System.currentTimeMillis()`.\n\n long millis = System.currentTimeMillis();\n\n Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)\n .setNanos((int) ((millis % 1000) * 1000000)).build();\n\n\n Example 5: Compute Timestamp from Java `Instant.now()`.\n\n Instant now = Instant.now();\n\n Timestamp timestamp =\n Timestamp.newBuilder().setSeconds(now.getEpochSecond())\n .setNanos(now.getNano()).build();\n\n\n Example 6: Compute Timestamp from current time in Python.\n\n timestamp = Timestamp()\n timestamp.GetCurrentTime()\n\n # JSON Mapping\n\n In JSON format, the Timestamp type is encoded as a string in the\n [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the\n format is \"{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z\"\n where {year} is always expressed using four digits while {month}, {day},\n {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional\n seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution),\n are optional. The \"Z\" suffix indicates the timezone (\"UTC\"); the timezone\n is required. A proto3 JSON serializer should always use UTC (as indicated by\n \"Z\") when printing the Timestamp type and a proto3 JSON parser should be\n able to accept both UTC and other timezones (as indicated by an offset).\n\n For example, \"2017-01-15T01:30:15.01Z\" encodes 15.01 seconds past\n 01:30 UTC on January 15, 2017.\n\n In JavaScript, one can convert a Date object to this format using the\n standard\n [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString)\n method. In Python, a standard `datetime.datetime` object can be converted\n to this format using\n [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with\n the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use\n the Joda Time's [`ISODateTimeFormat.dateTime()`](\n http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D\n ) to obtain a formatter capable of generating timestamps in this format.\n\n\n"},{"path":[4,0,1],"span":[135,8,17]},{"path":[4,0,2,0],"span":[139,2,20],"leadingComments":" Represents seconds of UTC time since Unix epoch\n 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to\n 9999-12-31T23:59:59Z inclusive.\n"},{"path":[4,0,2,0,5],"span":[139,2,7]},{"path":[4,0,2,0,1],"span":[139,8,15]},{"path":[4,0,2,0,3],"span":[139,18,19]},{"path":[4,0,2,1],"span":[145,2,18],"leadingComments":" Non-negative fractions of a second at nanosecond resolution. Negative\n second values with fractions must still have non-negative nanos values\n that count forward in time. Must be from 0 to 999,999,999\n inclusive.\n"},{"path":[4,0,2,1,5],"span":[145,2,7]},{"path":[4,0,2,1,1],"span":[145,8,13]},{"path":[4,0,2,1,3],"span":[145,16,17]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"proto/diagrams.proto","package":"lansweeper.diagrams.v1","dependency":["google/protobuf/timestamp.proto"],"messageType":[{"name":"DiagramRequest","field":[{"name":"client_key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientKey"},{"name":"installation_key","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"installationKey"},{"name":"asset_scopes_rules","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.DiagramRequest.AssetScopesRulesEntry","jsonName":"assetScopesRules"},{"name":"trace_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"traceId"},{"name":"ip_location_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"ipLocationId"}],"nestedType":[{"name":"AssetScopesRulesEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"value"}],"options":{"mapEntry":true}}]},{"name":"IpLocationsRequest","field":[{"name":"client_key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientKey"},{"name":"trace_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"traceId"}]},{"name":"Asset","field":[{"name":"unique_key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"uniqueKey"},{"name":"key","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"type_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"typeName"},{"name":"group_key","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"groupKey"},{"name":"is_group","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isGroup"},{"name":"ip_address","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"ipAddress"},{"name":"vm_running_status","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"vmRunningStatus"},{"name":"category","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"category"},{"name":"is_virtual","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isVirtual"},{"name":"is_vm_running","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isVmRunning"},{"name":"errors","number":12,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.AssetError","jsonName":"errors"},{"name":"ip_location_key","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"ipLocationKey"},{"name":"mac_address","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"macAddress"},{"name":"state","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"state"}]},{"name":"AssetError","field":[{"name":"error_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"errorId"},{"name":"error_text","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"errorText"},{"name":"last_changed","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"lastChanged"},{"name":"error_type_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"errorTypeId"},{"name":"error_type_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"errorTypeName"}]},{"name":"Error","field":[{"name":"type","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.diagrams.v1.ErrorType","jsonName":"type"},{"name":"message","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"message"}]},{"name":"Relationship","field":[{"name":"from_asset_unique_key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"fromAssetUniqueKey"},{"name":"to_asset_unique_key","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"toAssetUniqueKey"},{"name":"name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"reverse_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"reverseName"},{"name":"icon_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"iconName"},{"name":"start_date","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"startDate"},{"name":"end_date","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"endDate"},{"name":"comments","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"comments"},{"name":"generation_type","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"generationType"}]},{"name":"AssetType","field":[{"name":"type_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"typeName"},{"name":"is_mandatory","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isMandatory"},{"name":"is_enabled_by_default","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isEnabledByDefault"},{"name":"nb_assets","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"nbAssets"}]},{"name":"IpLocation","field":[{"name":"ip_location_key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"ipLocationKey"},{"name":"ip_location_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"ipLocationName"},{"name":"range_start","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"rangeStart"},{"name":"range_end","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"rangeEnd"},{"name":"nb_assets","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"nbAssets"},{"name":"ip_location_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"ipLocationId"},{"name":"install_key","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"installKey"}]},{"name":"Filters","field":[{"name":"asset_types","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.AssetType","jsonName":"assetTypes"},{"name":"ip_locations","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.IpLocation","jsonName":"ipLocations"},{"name":"asset_states","number":3,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"assetStates"}]},{"name":"NetworkTopologyDiagramResponse","field":[{"name":"assets","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Asset","jsonName":"assets"},{"name":"relationships","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Relationship","jsonName":"relationships"},{"name":"errors","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Error","jsonName":"errors"},{"name":"asset_types","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.AssetType","jsonName":"assetTypes"},{"name":"filters","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Filters","jsonName":"filters"},{"name":"ip_location_name","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"ipLocationName"}]},{"name":"VirtualEnvironmentDiagramResponse","field":[{"name":"assets","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Asset","jsonName":"assets"},{"name":"relationships","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Relationship","jsonName":"relationships"},{"name":"errors","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Error","jsonName":"errors"},{"name":"asset_types","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.AssetType","jsonName":"assetTypes"},{"name":"filters","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Filters","jsonName":"filters"},{"name":"ip_location_name","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"ipLocationName"}]},{"name":"OtDiagramResponse","field":[{"name":"assets","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Asset","jsonName":"assets"},{"name":"relationships","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Relationship","jsonName":"relationships"},{"name":"errors","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Error","jsonName":"errors"},{"name":"asset_types","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.AssetType","jsonName":"assetTypes"},{"name":"filters","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Filters","jsonName":"filters"}]},{"name":"IpLocationsResponse","field":[{"name":"ip_locations","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.IpLocation","jsonName":"ipLocations"}]}],"enumType":[{"name":"ErrorType","value":[{"name":"UNKNOWN","number":0},{"name":"GENERATION_ERROR","number":1},{"name":"NO_ASSET","number":2},{"name":"ASSET_COUNT_THRESHOLD","number":3}]},{"name":"DiagramCategory","value":[{"name":"NETWORK_TOPOLOGY","number":0},{"name":"VIRTUAL_ENVIRONMENT","number":1},{"name":"OT","number":2}]}],"service":[{"name":"DiagramsService","method":[{"name":"GetNetworkTopologyDiagram","inputType":".lansweeper.diagrams.v1.DiagramRequest","outputType":".lansweeper.diagrams.v1.NetworkTopologyDiagramResponse","options":{}},{"name":"GetVirtualEnvironmentDiagram","inputType":".lansweeper.diagrams.v1.DiagramRequest","outputType":".lansweeper.diagrams.v1.VirtualEnvironmentDiagramResponse","options":{}},{"name":"GetOtDiagram","inputType":".lansweeper.diagrams.v1.DiagramRequest","outputType":".lansweeper.diagrams.v1.OtDiagramResponse","options":{}},{"name":"GetIpLocations","inputType":".lansweeper.diagrams.v1.IpLocationsRequest","outputType":".lansweeper.diagrams.v1.IpLocationsResponse","options":{}}]}],"options":{"csharpNamespace":"Lansweeper.Diagrams.GRPC"},"sourceCodeInfo":{"location":[{"span":[0,0,135,1]},{"path":[12],"span":[0,0,18]},{"path":[2],"span":[2,0,31]},{"path":[3,0],"span":[4,0,41]},{"path":[8],"span":[6,0,53]},{"path":[8,37],"span":[6,0,53]},{"path":[6,0],"span":[8,0,13,1]},{"path":[6,0,1],"span":[8,8,23]},{"path":[6,0,2,0],"span":[9,2,91]},{"path":[6,0,2,0,1],"span":[9,6,31]},{"path":[6,0,2,0,2],"span":[9,32,46]},{"path":[6,0,2,0,3],"span":[9,57,87]},{"path":[6,0,2,1],"span":[10,2,97]},{"path":[6,0,2,1,1],"span":[10,6,34]},{"path":[6,0,2,1,2],"span":[10,35,49]},{"path":[6,0,2,1,3],"span":[10,60,93]},{"path":[6,0,2,2],"span":[11,2,65]},{"path":[6,0,2,2,1],"span":[11,6,18]},{"path":[6,0,2,2,2],"span":[11,19,33]},{"path":[6,0,2,2,3],"span":[11,44,61]},{"path":[6,0,2,3],"span":[12,2,73]},{"path":[6,0,2,3,1],"span":[12,6,20]},{"path":[6,0,2,3,2],"span":[12,21,39]},{"path":[6,0,2,3,3],"span":[12,50,69]},{"path":[4,0],"span":[15,0,21,1]},{"path":[4,0,1],"span":[15,8,22]},{"path":[4,0,2,0],"span":[16,2,24]},{"path":[4,0,2,0,5],"span":[16,2,8]},{"path":[4,0,2,0,1],"span":[16,9,19]},{"path":[4,0,2,0,3],"span":[16,22,23]},{"path":[4,0,2,1],"span":[17,2,30]},{"path":[4,0,2,1,5],"span":[17,2,8]},{"path":[4,0,2,1,1],"span":[17,9,25]},{"path":[4,0,2,1,3],"span":[17,28,29]},{"path":[4,0,2,2],"span":[18,2,45]},{"path":[4,0,2,2,6],"span":[18,2,21]},{"path":[4,0,2,2,1],"span":[18,22,40]},{"path":[4,0,2,2,3],"span":[18,43,44]},{"path":[4,0,2,3],"span":[19,2,22]},{"path":[4,0,2,3,5],"span":[19,2,8]},{"path":[4,0,2,3,1],"span":[19,9,17]},{"path":[4,0,2,3,3],"span":[19,20,21]},{"path":[4,0,2,4],"span":[20,2,28]},{"path":[4,0,2,4,5],"span":[20,2,8]},{"path":[4,0,2,4,1],"span":[20,9,23]},{"path":[4,0,2,4,3],"span":[20,26,27]},{"path":[4,1],"span":[23,0,26,1]},{"path":[4,1,1],"span":[23,8,26]},{"path":[4,1,2,0],"span":[24,2,24]},{"path":[4,1,2,0,5],"span":[24,2,8]},{"path":[4,1,2,0,1],"span":[24,9,19]},{"path":[4,1,2,0,3],"span":[24,22,23]},{"path":[4,1,2,1],"span":[25,2,22]},{"path":[4,1,2,1,5],"span":[25,2,8]},{"path":[4,1,2,1,1],"span":[25,9,17]},{"path":[4,1,2,1,3],"span":[25,20,21]},{"path":[4,2],"span":[28,0,44,1]},{"path":[4,2,1],"span":[28,8,13]},{"path":[4,2,2,0],"span":[29,2,24]},{"path":[4,2,2,0,5],"span":[29,2,8]},{"path":[4,2,2,0,1],"span":[29,9,19]},{"path":[4,2,2,0,3],"span":[29,22,23]},{"path":[4,2,2,1],"span":[30,2,17]},{"path":[4,2,2,1,5],"span":[30,2,8]},{"path":[4,2,2,1,1],"span":[30,9,12]},{"path":[4,2,2,1,3],"span":[30,15,16]},{"path":[4,2,2,2],"span":[31,2,18]},{"path":[4,2,2,2,5],"span":[31,2,8]},{"path":[4,2,2,2,1],"span":[31,9,13]},{"path":[4,2,2,2,3],"span":[31,16,17]},{"path":[4,2,2,3],"span":[32,2,23]},{"path":[4,2,2,3,5],"span":[32,2,8]},{"path":[4,2,2,3,1],"span":[32,9,18]},{"path":[4,2,2,3,3],"span":[32,21,22]},{"path":[4,2,2,4],"span":[33,2,23]},{"path":[4,2,2,4,5],"span":[33,2,8]},{"path":[4,2,2,4,1],"span":[33,9,18]},{"path":[4,2,2,4,3],"span":[33,21,22]},{"path":[4,2,2,5],"span":[34,2,20]},{"path":[4,2,2,5,5],"span":[34,2,6]},{"path":[4,2,2,5,1],"span":[34,7,15]},{"path":[4,2,2,5,3],"span":[34,18,19]},{"path":[4,2,2,6],"span":[35,2,24]},{"path":[4,2,2,6,5],"span":[35,2,8]},{"path":[4,2,2,6,1],"span":[35,9,19]},{"path":[4,2,2,6,3],"span":[35,22,23]},{"path":[4,2,2,7],"span":[36,2,31]},{"path":[4,2,2,7,5],"span":[36,2,8]},{"path":[4,2,2,7,1],"span":[36,9,26]},{"path":[4,2,2,7,3],"span":[36,29,30]},{"path":[4,2,2,8],"span":[37,2,22]},{"path":[4,2,2,8,5],"span":[37,2,8]},{"path":[4,2,2,8,1],"span":[37,9,17]},{"path":[4,2,2,8,3],"span":[37,20,21]},{"path":[4,2,2,9],"span":[38,2,23]},{"path":[4,2,2,9,5],"span":[38,2,6]},{"path":[4,2,2,9,1],"span":[38,7,17]},{"path":[4,2,2,9,3],"span":[38,20,22]},{"path":[4,2,2,10],"span":[39,2,26]},{"path":[4,2,2,10,5],"span":[39,2,6]},{"path":[4,2,2,10,1],"span":[39,7,20]},{"path":[4,2,2,10,3],"span":[39,23,25]},{"path":[4,2,2,11],"span":[40,2,34]},{"path":[4,2,2,11,4],"span":[40,2,10]},{"path":[4,2,2,11,6],"span":[40,11,21]},{"path":[4,2,2,11,1],"span":[40,22,28]},{"path":[4,2,2,11,3],"span":[40,31,33]},{"path":[4,2,2,12],"span":[41,2,30]},{"path":[4,2,2,12,5],"span":[41,2,8]},{"path":[4,2,2,12,1],"span":[41,9,24]},{"path":[4,2,2,12,3],"span":[41,27,29]},{"path":[4,2,2,13],"span":[42,2,26]},{"path":[4,2,2,13,5],"span":[42,2,8]},{"path":[4,2,2,13,1],"span":[42,9,20]},{"path":[4,2,2,13,3],"span":[42,23,25]},{"path":[4,2,2,14],"span":[43,2,20]},{"path":[4,2,2,14,5],"span":[43,2,8]},{"path":[4,2,2,14,1],"span":[43,9,14]},{"path":[4,2,2,14,3],"span":[43,17,19]},{"path":[4,3],"span":[46,0,52,1]},{"path":[4,3,1],"span":[46,8,18]},{"path":[4,3,2,0],"span":[47,2,22]},{"path":[4,3,2,0,5],"span":[47,2,8]},{"path":[4,3,2,0,1],"span":[47,9,17]},{"path":[4,3,2,0,3],"span":[47,20,21]},{"path":[4,3,2,1],"span":[48,2,24]},{"path":[4,3,2,1,5],"span":[48,2,8]},{"path":[4,3,2,1,1],"span":[48,9,19]},{"path":[4,3,2,1,3],"span":[48,22,23]},{"path":[4,3,2,2],"span":[49,2,26]},{"path":[4,3,2,2,5],"span":[49,2,8]},{"path":[4,3,2,2,1],"span":[49,9,21]},{"path":[4,3,2,2,3],"span":[49,24,25]},{"path":[4,3,2,3],"span":[50,2,27]},{"path":[4,3,2,3,5],"span":[50,2,8]},{"path":[4,3,2,3,1],"span":[50,9,22]},{"path":[4,3,2,3,3],"span":[50,25,26]},{"path":[4,3,2,4],"span":[51,2,29]},{"path":[4,3,2,4,5],"span":[51,2,8]},{"path":[4,3,2,4,1],"span":[51,9,24]},{"path":[4,3,2,4,3],"span":[51,27,28]},{"path":[5,0],"span":[54,0,59,1]},{"path":[5,0,1],"span":[54,5,14]},{"path":[5,0,2,0],"span":[55,2,14]},{"path":[5,0,2,0,1],"span":[55,2,9]},{"path":[5,0,2,0,2],"span":[55,12,13]},{"path":[5,0,2,1],"span":[56,2,23]},{"path":[5,0,2,1,1],"span":[56,2,18]},{"path":[5,0,2,1,2],"span":[56,21,22]},{"path":[5,0,2,2],"span":[57,2,15]},{"path":[5,0,2,2,1],"span":[57,2,10]},{"path":[5,0,2,2,2],"span":[57,13,14]},{"path":[5,0,2,3],"span":[58,2,28]},{"path":[5,0,2,3,1],"span":[58,2,23]},{"path":[5,0,2,3,2],"span":[58,26,27]},{"path":[5,1],"span":[61,0,65,1]},{"path":[5,1,1],"span":[61,5,20]},{"path":[5,1,2,0],"span":[62,2,23]},{"path":[5,1,2,0,1],"span":[62,2,18]},{"path":[5,1,2,0,2],"span":[62,21,22]},{"path":[5,1,2,1],"span":[63,2,26]},{"path":[5,1,2,1,1],"span":[63,2,21]},{"path":[5,1,2,1,2],"span":[63,24,25]},{"path":[5,1,2,2],"span":[64,2,9]},{"path":[5,1,2,2,1],"span":[64,2,4]},{"path":[5,1,2,2,2],"span":[64,7,8]},{"path":[4,4],"span":[67,0,70,1]},{"path":[4,4,1],"span":[67,8,13]},{"path":[4,4,2,0],"span":[68,2,21]},{"path":[4,4,2,0,6],"span":[68,2,11]},{"path":[4,4,2,0,1],"span":[68,12,16]},{"path":[4,4,2,0,3],"span":[68,19,20]},{"path":[4,4,2,1],"span":[69,2,21]},{"path":[4,4,2,1,5],"span":[69,2,8]},{"path":[4,4,2,1,1],"span":[69,9,16]},{"path":[4,4,2,1,3],"span":[69,19,20]},{"path":[4,5],"span":[72,0,82,1]},{"path":[4,5,1],"span":[72,8,20]},{"path":[4,5,2,0],"span":[73,2,35]},{"path":[4,5,2,0,5],"span":[73,2,8]},{"path":[4,5,2,0,1],"span":[73,9,30]},{"path":[4,5,2,0,3],"span":[73,33,34]},{"path":[4,5,2,1],"span":[74,2,33]},{"path":[4,5,2,1,5],"span":[74,2,8]},{"path":[4,5,2,1,1],"span":[74,9,28]},{"path":[4,5,2,1,3],"span":[74,31,32]},{"path":[4,5,2,2],"span":[75,2,18]},{"path":[4,5,2,2,5],"span":[75,2,8]},{"path":[4,5,2,2,1],"span":[75,9,13]},{"path":[4,5,2,2,3],"span":[75,16,17]},{"path":[4,5,2,3],"span":[76,2,26]},{"path":[4,5,2,3,5],"span":[76,2,8]},{"path":[4,5,2,3,1],"span":[76,9,21]},{"path":[4,5,2,3,3],"span":[76,24,25]},{"path":[4,5,2,4],"span":[77,2,23]},{"path":[4,5,2,4,5],"span":[77,2,8]},{"path":[4,5,2,4,1],"span":[77,9,18]},{"path":[4,5,2,4,3],"span":[77,21,22]},{"path":[4,5,2,5],"span":[78,2,43]},{"path":[4,5,2,5,6],"span":[78,2,27]},{"path":[4,5,2,5,1],"span":[78,28,38]},{"path":[4,5,2,5,3],"span":[78,41,42]},{"path":[4,5,2,6],"span":[79,2,41]},{"path":[4,5,2,6,6],"span":[79,2,27]},{"path":[4,5,2,6,1],"span":[79,28,36]},{"path":[4,5,2,6,3],"span":[79,39,40]},{"path":[4,5,2,7],"span":[80,2,22]},{"path":[4,5,2,7,5],"span":[80,2,8]},{"path":[4,5,2,7,1],"span":[80,9,17]},{"path":[4,5,2,7,3],"span":[80,20,21]},{"path":[4,5,2,8],"span":[81,2,29]},{"path":[4,5,2,8,5],"span":[81,2,8]},{"path":[4,5,2,8,1],"span":[81,9,24]},{"path":[4,5,2,8,3],"span":[81,27,28]},{"path":[4,6],"span":[84,0,89,1]},{"path":[4,6,1],"span":[84,8,17]},{"path":[4,6,2,0],"span":[85,2,23]},{"path":[4,6,2,0,5],"span":[85,2,8]},{"path":[4,6,2,0,1],"span":[85,9,18]},{"path":[4,6,2,0,3],"span":[85,21,22]},{"path":[4,6,2,1],"span":[86,2,24]},{"path":[4,6,2,1,5],"span":[86,2,6]},{"path":[4,6,2,1,1],"span":[86,7,19]},{"path":[4,6,2,1,3],"span":[86,22,23]},{"path":[4,6,2,2],"span":[87,2,33]},{"path":[4,6,2,2,5],"span":[87,2,6]},{"path":[4,6,2,2,1],"span":[87,7,28]},{"path":[4,6,2,2,3],"span":[87,31,32]},{"path":[4,6,2,3],"span":[88,2,22]},{"path":[4,6,2,3,5],"span":[88,2,7]},{"path":[4,6,2,3,1],"span":[88,8,17]},{"path":[4,6,2,3,3],"span":[88,20,21]},{"path":[4,7],"span":[91,0,99,1]},{"path":[4,7,1],"span":[91,8,18]},{"path":[4,7,2,0],"span":[92,2,29]},{"path":[4,7,2,0,5],"span":[92,2,8]},{"path":[4,7,2,0,1],"span":[92,9,24]},{"path":[4,7,2,0,3],"span":[92,27,28]},{"path":[4,7,2,1],"span":[93,2,30]},{"path":[4,7,2,1,5],"span":[93,2,8]},{"path":[4,7,2,1,1],"span":[93,9,25]},{"path":[4,7,2,1,3],"span":[93,28,29]},{"path":[4,7,2,2],"span":[94,2,25]},{"path":[4,7,2,2,5],"span":[94,2,8]},{"path":[4,7,2,2,1],"span":[94,9,20]},{"path":[4,7,2,2,3],"span":[94,23,24]},{"path":[4,7,2,3],"span":[95,2,23]},{"path":[4,7,2,3,5],"span":[95,2,8]},{"path":[4,7,2,3,1],"span":[95,9,18]},{"path":[4,7,2,3,3],"span":[95,21,22]},{"path":[4,7,2,4],"span":[96,2,22]},{"path":[4,7,2,4,5],"span":[96,2,7]},{"path":[4,7,2,4,1],"span":[96,8,17]},{"path":[4,7,2,4,3],"span":[96,20,21]},{"path":[4,7,2,5],"span":[97,2,28]},{"path":[4,7,2,5,5],"span":[97,2,8]},{"path":[4,7,2,5,1],"span":[97,9,23]},{"path":[4,7,2,5,3],"span":[97,26,27]},{"path":[4,7,2,6],"span":[98,2,25]},{"path":[4,7,2,6,5],"span":[98,2,8]},{"path":[4,7,2,6,1],"span":[98,9,20]},{"path":[4,7,2,6,3],"span":[98,23,24]},{"path":[4,8],"span":[101,0,105,1]},{"path":[4,8,1],"span":[101,8,15]},{"path":[4,8,2,0],"span":[102,2,37]},{"path":[4,8,2,0,4],"span":[102,2,10]},{"path":[4,8,2,0,6],"span":[102,11,20]},{"path":[4,8,2,0,1],"span":[102,21,32]},{"path":[4,8,2,0,3],"span":[102,35,36]},{"path":[4,8,2,1],"span":[103,2,39]},{"path":[4,8,2,1,4],"span":[103,2,10]},{"path":[4,8,2,1,6],"span":[103,11,21]},{"path":[4,8,2,1,1],"span":[103,22,34]},{"path":[4,8,2,1,3],"span":[103,37,38]},{"path":[4,8,2,2],"span":[104,2,35]},{"path":[4,8,2,2,4],"span":[104,2,10]},{"path":[4,8,2,2,5],"span":[104,11,17]},{"path":[4,8,2,2,1],"span":[104,18,30]},{"path":[4,8,2,2,3],"span":[104,33,34]},{"path":[4,9],"span":[107,0,114,1]},{"path":[4,9,1],"span":[107,8,38]},{"path":[4,9,2,0],"span":[108,2,28]},{"path":[4,9,2,0,4],"span":[108,2,10]},{"path":[4,9,2,0,6],"span":[108,11,16]},{"path":[4,9,2,0,1],"span":[108,17,23]},{"path":[4,9,2,0,3],"span":[108,26,27]},{"path":[4,9,2,1],"span":[109,2,42]},{"path":[4,9,2,1,4],"span":[109,2,10]},{"path":[4,9,2,1,6],"span":[109,11,23]},{"path":[4,9,2,1,1],"span":[109,24,37]},{"path":[4,9,2,1,3],"span":[109,40,41]},{"path":[4,9,2,2],"span":[110,2,28]},{"path":[4,9,2,2,4],"span":[110,2,10]},{"path":[4,9,2,2,6],"span":[110,11,16]},{"path":[4,9,2,2,1],"span":[110,17,23]},{"path":[4,9,2,2,3],"span":[110,26,27]},{"path":[4,9,2,3],"span":[111,2,37]},{"path":[4,9,2,3,4],"span":[111,2,10]},{"path":[4,9,2,3,6],"span":[111,11,20]},{"path":[4,9,2,3,1],"span":[111,21,32]},{"path":[4,9,2,3,3],"span":[111,35,36]},{"path":[4,9,2,4],"span":[112,2,22]},{"path":[4,9,2,4,6],"span":[112,2,9]},{"path":[4,9,2,4,1],"span":[112,10,17]},{"path":[4,9,2,4,3],"span":[112,20,21]},{"path":[4,9,2,5],"span":[113,2,30]},{"path":[4,9,2,5,5],"span":[113,2,8]},{"path":[4,9,2,5,1],"span":[113,9,25]},{"path":[4,9,2,5,3],"span":[113,28,29]},{"path":[4,10],"span":[116,0,123,1]},{"path":[4,10,1],"span":[116,8,41]},{"path":[4,10,2,0],"span":[117,2,28]},{"path":[4,10,2,0,4],"span":[117,2,10]},{"path":[4,10,2,0,6],"span":[117,11,16]},{"path":[4,10,2,0,1],"span":[117,17,23]},{"path":[4,10,2,0,3],"span":[117,26,27]},{"path":[4,10,2,1],"span":[118,2,42]},{"path":[4,10,2,1,4],"span":[118,2,10]},{"path":[4,10,2,1,6],"span":[118,11,23]},{"path":[4,10,2,1,1],"span":[118,24,37]},{"path":[4,10,2,1,3],"span":[118,40,41]},{"path":[4,10,2,2],"span":[119,2,28]},{"path":[4,10,2,2,4],"span":[119,2,10]},{"path":[4,10,2,2,6],"span":[119,11,16]},{"path":[4,10,2,2,1],"span":[119,17,23]},{"path":[4,10,2,2,3],"span":[119,26,27]},{"path":[4,10,2,3],"span":[120,2,37]},{"path":[4,10,2,3,4],"span":[120,2,10]},{"path":[4,10,2,3,6],"span":[120,11,20]},{"path":[4,10,2,3,1],"span":[120,21,32]},{"path":[4,10,2,3,3],"span":[120,35,36]},{"path":[4,10,2,4],"span":[121,2,22]},{"path":[4,10,2,4,6],"span":[121,2,9]},{"path":[4,10,2,4,1],"span":[121,10,17]},{"path":[4,10,2,4,3],"span":[121,20,21]},{"path":[4,10,2,5],"span":[122,2,30]},{"path":[4,10,2,5,5],"span":[122,2,8]},{"path":[4,10,2,5,1],"span":[122,9,25]},{"path":[4,10,2,5,3],"span":[122,28,29]},{"path":[4,11],"span":[125,0,131,1]},{"path":[4,11,1],"span":[125,8,25]},{"path":[4,11,2,0],"span":[126,2,28]},{"path":[4,11,2,0,4],"span":[126,2,10]},{"path":[4,11,2,0,6],"span":[126,11,16]},{"path":[4,11,2,0,1],"span":[126,17,23]},{"path":[4,11,2,0,3],"span":[126,26,27]},{"path":[4,11,2,1],"span":[127,2,42]},{"path":[4,11,2,1,4],"span":[127,2,10]},{"path":[4,11,2,1,6],"span":[127,11,23]},{"path":[4,11,2,1,1],"span":[127,24,37]},{"path":[4,11,2,1,3],"span":[127,40,41]},{"path":[4,11,2,2],"span":[128,2,28]},{"path":[4,11,2,2,4],"span":[128,2,10]},{"path":[4,11,2,2,6],"span":[128,11,16]},{"path":[4,11,2,2,1],"span":[128,17,23]},{"path":[4,11,2,2,3],"span":[128,26,27]},{"path":[4,11,2,3],"span":[129,2,37]},{"path":[4,11,2,3,4],"span":[129,2,10]},{"path":[4,11,2,3,6],"span":[129,11,20]},{"path":[4,11,2,3,1],"span":[129,21,32]},{"path":[4,11,2,3,3],"span":[129,35,36]},{"path":[4,11,2,4],"span":[130,2,22]},{"path":[4,11,2,4,6],"span":[130,2,9]},{"path":[4,11,2,4,1],"span":[130,10,17]},{"path":[4,11,2,4,3],"span":[130,20,21]},{"path":[4,12],"span":[133,0,135,1]},{"path":[4,12,1],"span":[133,8,27]},{"path":[4,12,2,0],"span":[134,2,39]},{"path":[4,12,2,0,4],"span":[134,2,10]},{"path":[4,12,2,0,6],"span":[134,11,21]},{"path":[4,12,2,0,1],"span":[134,22,34]},{"path":[4,12,2,0,3],"span":[134,37,38]}]},"syntax":"proto3","bufExtension":{"isImport":false,"isSyntaxUnspecified":false}}]}
@@ -14,11 +14,11 @@ using System.Reflection;
14
14
  [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
15
15
  [assembly: System.Reflection.AssemblyCopyrightAttribute("Lansweeper")]
16
16
  [assembly: System.Reflection.AssemblyDescriptionAttribute("More Info : http://www.lansweeper.com")]
17
- [assembly: System.Reflection.AssemblyFileVersionAttribute("0.0.28")]
18
- [assembly: System.Reflection.AssemblyInformationalVersionAttribute("0.0.28")]
17
+ [assembly: System.Reflection.AssemblyFileVersionAttribute("0.0.29")]
18
+ [assembly: System.Reflection.AssemblyInformationalVersionAttribute("0.0.29")]
19
19
  [assembly: System.Reflection.AssemblyProductAttribute("Lansweeper Diagrams")]
20
20
  [assembly: System.Reflection.AssemblyTitleAttribute("Lansweeper.Diagrams.GRPC")]
21
- [assembly: System.Reflection.AssemblyVersionAttribute("0.0.28.0")]
21
+ [assembly: System.Reflection.AssemblyVersionAttribute("0.0.29.0")]
22
22
  [assembly: System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "https://github.com/Lansweeper/lansweeperapis")]
23
23
 
24
24
  // Generated by the MSBuild WriteCodeFragment class.
@@ -1 +1 @@
1
- 56bc670beb57f6021ca097dd09ff4445cddc303f
1
+ 0d4842de5b5594e25fe22f1d572c8ef887381e2d
@@ -52,52 +52,52 @@ namespace Lansweeper.Diagrams.GRPC {
52
52
  "Z29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBIQCghjb21tZW50cxgIIAEoCRIX",
53
53
  "Cg9nZW5lcmF0aW9uX3R5cGUYCSABKAkiZgoJQXNzZXRUeXBlEhEKCXR5cGVf",
54
54
  "bmFtZRgBIAEoCRIUCgxpc19tYW5kYXRvcnkYAiABKAgSHQoVaXNfZW5hYmxl",
55
- "ZF9ieV9kZWZhdWx0GAMgASgIEhEKCW5iX2Fzc2V0cxgEIAEoBSKSAQoKSXBM",
55
+ "ZF9ieV9kZWZhdWx0GAMgASgIEhEKCW5iX2Fzc2V0cxgEIAEoBSKnAQoKSXBM",
56
56
  "b2NhdGlvbhIXCg9pcF9sb2NhdGlvbl9rZXkYASABKAkSGAoQaXBfbG9jYXRp",
57
57
  "b25fbmFtZRgCIAEoCRITCgtyYW5nZV9zdGFydBgDIAEoCRIRCglyYW5nZV9l",
58
58
  "bmQYBCABKAkSEQoJbmJfYXNzZXRzGAUgASgFEhYKDmlwX2xvY2F0aW9uX2lk",
59
- "GAYgASgJIpEBCgdGaWx0ZXJzEjYKC2Fzc2V0X3R5cGVzGAEgAygLMiEubGFu",
60
- "c3dlZXBlci5kaWFncmFtcy52MS5Bc3NldFR5cGUSOAoMaXBfbG9jYXRpb25z",
61
- "GAIgAygLMiIubGFuc3dlZXBlci5kaWFncmFtcy52MS5JcExvY2F0aW9uEhQK",
62
- "DGFzc2V0X3N0YXRlcxgDIAMoCSK/AgoeTmV0d29ya1RvcG9sb2d5RGlhZ3Jh",
63
- "bVJlc3BvbnNlEi0KBmFzc2V0cxgBIAMoCzIdLmxhbnN3ZWVwZXIuZGlhZ3Jh",
64
- "bXMudjEuQXNzZXQSOwoNcmVsYXRpb25zaGlwcxgCIAMoCzIkLmxhbnN3ZWVw",
65
- "ZXIuZGlhZ3JhbXMudjEuUmVsYXRpb25zaGlwEi0KBmVycm9ycxgDIAMoCzId",
66
- "LmxhbnN3ZWVwZXIuZGlhZ3JhbXMudjEuRXJyb3ISNgoLYXNzZXRfdHlwZXMY",
67
- "BCADKAsyIS5sYW5zd2VlcGVyLmRpYWdyYW1zLnYxLkFzc2V0VHlwZRIwCgdm",
68
- "aWx0ZXJzGAUgASgLMh8ubGFuc3dlZXBlci5kaWFncmFtcy52MS5GaWx0ZXJz",
69
- "EhgKEGlwX2xvY2F0aW9uX25hbWUYBiABKAkiwgIKIVZpcnR1YWxFbnZpcm9u",
70
- "bWVudERpYWdyYW1SZXNwb25zZRItCgZhc3NldHMYASADKAsyHS5sYW5zd2Vl",
71
- "cGVyLmRpYWdyYW1zLnYxLkFzc2V0EjsKDXJlbGF0aW9uc2hpcHMYAiADKAsy",
72
- "JC5sYW5zd2VlcGVyLmRpYWdyYW1zLnYxLlJlbGF0aW9uc2hpcBItCgZlcnJv",
73
- "cnMYAyADKAsyHS5sYW5zd2VlcGVyLmRpYWdyYW1zLnYxLkVycm9yEjYKC2Fz",
74
- "c2V0X3R5cGVzGAQgAygLMiEubGFuc3dlZXBlci5kaWFncmFtcy52MS5Bc3Nl",
75
- "dFR5cGUSMAoHZmlsdGVycxgFIAEoCzIfLmxhbnN3ZWVwZXIuZGlhZ3JhbXMu",
76
- "djEuRmlsdGVycxIYChBpcF9sb2NhdGlvbl9uYW1lGAYgASgJIpgCChFPdERp",
77
- "YWdyYW1SZXNwb25zZRItCgZhc3NldHMYASADKAsyHS5sYW5zd2VlcGVyLmRp",
78
- "YWdyYW1zLnYxLkFzc2V0EjsKDXJlbGF0aW9uc2hpcHMYAiADKAsyJC5sYW5z",
79
- "d2VlcGVyLmRpYWdyYW1zLnYxLlJlbGF0aW9uc2hpcBItCgZlcnJvcnMYAyAD",
80
- "KAsyHS5sYW5zd2VlcGVyLmRpYWdyYW1zLnYxLkVycm9yEjYKC2Fzc2V0X3R5",
81
- "cGVzGAQgAygLMiEubGFuc3dlZXBlci5kaWFncmFtcy52MS5Bc3NldFR5cGUS",
82
- "MAoHZmlsdGVycxgFIAEoCzIfLmxhbnN3ZWVwZXIuZGlhZ3JhbXMudjEuRmls",
83
- "dGVycyJPChNJcExvY2F0aW9uc1Jlc3BvbnNlEjgKDGlwX2xvY2F0aW9ucxgB",
84
- "IAMoCzIiLmxhbnN3ZWVwZXIuZGlhZ3JhbXMudjEuSXBMb2NhdGlvbipXCglF",
85
- "cnJvclR5cGUSCwoHVU5LTk9XThAAEhQKEEdFTkVSQVRJT05fRVJST1IQARIM",
86
- "CghOT19BU1NFVBACEhkKFUFTU0VUX0NPVU5UX1RIUkVTSE9MRBADKkgKD0Rp",
87
- "YWdyYW1DYXRlZ29yeRIUChBORVRXT1JLX1RPUE9MT0dZEAASFwoTVklSVFVB",
88
- "TF9FTlZJUk9OTUVOVBABEgYKAk9UEAIy6AMKD0RpYWdyYW1zU2VydmljZRJ9",
89
- "ChlHZXROZXR3b3JrVG9wb2xvZ3lEaWFncmFtEiYubGFuc3dlZXBlci5kaWFn",
90
- "cmFtcy52MS5EaWFncmFtUmVxdWVzdBo2LmxhbnN3ZWVwZXIuZGlhZ3JhbXMu",
91
- "djEuTmV0d29ya1RvcG9sb2d5RGlhZ3JhbVJlc3BvbnNlIgASgwEKHEdldFZp",
92
- "cnR1YWxFbnZpcm9ubWVudERpYWdyYW0SJi5sYW5zd2VlcGVyLmRpYWdyYW1z",
93
- "LnYxLkRpYWdyYW1SZXF1ZXN0GjkubGFuc3dlZXBlci5kaWFncmFtcy52MS5W",
94
- "aXJ0dWFsRW52aXJvbm1lbnREaWFncmFtUmVzcG9uc2UiABJjCgxHZXRPdERp",
95
- "YWdyYW0SJi5sYW5zd2VlcGVyLmRpYWdyYW1zLnYxLkRpYWdyYW1SZXF1ZXN0",
96
- "GikubGFuc3dlZXBlci5kaWFncmFtcy52MS5PdERpYWdyYW1SZXNwb25zZSIA",
97
- "EmsKDkdldElwTG9jYXRpb25zEioubGFuc3dlZXBlci5kaWFncmFtcy52MS5J",
98
- "cExvY2F0aW9uc1JlcXVlc3QaKy5sYW5zd2VlcGVyLmRpYWdyYW1zLnYxLklw",
99
- "TG9jYXRpb25zUmVzcG9uc2UiAEIbqgIYTGFuc3dlZXBlci5EaWFncmFtcy5H",
100
- "UlBDYgZwcm90bzM="));
59
+ "GAYgASgJEhMKC2luc3RhbGxfa2V5GAcgASgJIpEBCgdGaWx0ZXJzEjYKC2Fz",
60
+ "c2V0X3R5cGVzGAEgAygLMiEubGFuc3dlZXBlci5kaWFncmFtcy52MS5Bc3Nl",
61
+ "dFR5cGUSOAoMaXBfbG9jYXRpb25zGAIgAygLMiIubGFuc3dlZXBlci5kaWFn",
62
+ "cmFtcy52MS5JcExvY2F0aW9uEhQKDGFzc2V0X3N0YXRlcxgDIAMoCSK/Agoe",
63
+ "TmV0d29ya1RvcG9sb2d5RGlhZ3JhbVJlc3BvbnNlEi0KBmFzc2V0cxgBIAMo",
64
+ "CzIdLmxhbnN3ZWVwZXIuZGlhZ3JhbXMudjEuQXNzZXQSOwoNcmVsYXRpb25z",
65
+ "aGlwcxgCIAMoCzIkLmxhbnN3ZWVwZXIuZGlhZ3JhbXMudjEuUmVsYXRpb25z",
66
+ "aGlwEi0KBmVycm9ycxgDIAMoCzIdLmxhbnN3ZWVwZXIuZGlhZ3JhbXMudjEu",
67
+ "RXJyb3ISNgoLYXNzZXRfdHlwZXMYBCADKAsyIS5sYW5zd2VlcGVyLmRpYWdy",
68
+ "YW1zLnYxLkFzc2V0VHlwZRIwCgdmaWx0ZXJzGAUgASgLMh8ubGFuc3dlZXBl",
69
+ "ci5kaWFncmFtcy52MS5GaWx0ZXJzEhgKEGlwX2xvY2F0aW9uX25hbWUYBiAB",
70
+ "KAkiwgIKIVZpcnR1YWxFbnZpcm9ubWVudERpYWdyYW1SZXNwb25zZRItCgZh",
71
+ "c3NldHMYASADKAsyHS5sYW5zd2VlcGVyLmRpYWdyYW1zLnYxLkFzc2V0EjsK",
72
+ "DXJlbGF0aW9uc2hpcHMYAiADKAsyJC5sYW5zd2VlcGVyLmRpYWdyYW1zLnYx",
73
+ "LlJlbGF0aW9uc2hpcBItCgZlcnJvcnMYAyADKAsyHS5sYW5zd2VlcGVyLmRp",
74
+ "YWdyYW1zLnYxLkVycm9yEjYKC2Fzc2V0X3R5cGVzGAQgAygLMiEubGFuc3dl",
75
+ "ZXBlci5kaWFncmFtcy52MS5Bc3NldFR5cGUSMAoHZmlsdGVycxgFIAEoCzIf",
76
+ "LmxhbnN3ZWVwZXIuZGlhZ3JhbXMudjEuRmlsdGVycxIYChBpcF9sb2NhdGlv",
77
+ "bl9uYW1lGAYgASgJIpgCChFPdERpYWdyYW1SZXNwb25zZRItCgZhc3NldHMY",
78
+ "ASADKAsyHS5sYW5zd2VlcGVyLmRpYWdyYW1zLnYxLkFzc2V0EjsKDXJlbGF0",
79
+ "aW9uc2hpcHMYAiADKAsyJC5sYW5zd2VlcGVyLmRpYWdyYW1zLnYxLlJlbGF0",
80
+ "aW9uc2hpcBItCgZlcnJvcnMYAyADKAsyHS5sYW5zd2VlcGVyLmRpYWdyYW1z",
81
+ "LnYxLkVycm9yEjYKC2Fzc2V0X3R5cGVzGAQgAygLMiEubGFuc3dlZXBlci5k",
82
+ "aWFncmFtcy52MS5Bc3NldFR5cGUSMAoHZmlsdGVycxgFIAEoCzIfLmxhbnN3",
83
+ "ZWVwZXIuZGlhZ3JhbXMudjEuRmlsdGVycyJPChNJcExvY2F0aW9uc1Jlc3Bv",
84
+ "bnNlEjgKDGlwX2xvY2F0aW9ucxgBIAMoCzIiLmxhbnN3ZWVwZXIuZGlhZ3Jh",
85
+ "bXMudjEuSXBMb2NhdGlvbipXCglFcnJvclR5cGUSCwoHVU5LTk9XThAAEhQK",
86
+ "EEdFTkVSQVRJT05fRVJST1IQARIMCghOT19BU1NFVBACEhkKFUFTU0VUX0NP",
87
+ "VU5UX1RIUkVTSE9MRBADKkgKD0RpYWdyYW1DYXRlZ29yeRIUChBORVRXT1JL",
88
+ "X1RPUE9MT0dZEAASFwoTVklSVFVBTF9FTlZJUk9OTUVOVBABEgYKAk9UEAIy",
89
+ "6AMKD0RpYWdyYW1zU2VydmljZRJ9ChlHZXROZXR3b3JrVG9wb2xvZ3lEaWFn",
90
+ "cmFtEiYubGFuc3dlZXBlci5kaWFncmFtcy52MS5EaWFncmFtUmVxdWVzdBo2",
91
+ "LmxhbnN3ZWVwZXIuZGlhZ3JhbXMudjEuTmV0d29ya1RvcG9sb2d5RGlhZ3Jh",
92
+ "bVJlc3BvbnNlIgASgwEKHEdldFZpcnR1YWxFbnZpcm9ubWVudERpYWdyYW0S",
93
+ "Ji5sYW5zd2VlcGVyLmRpYWdyYW1zLnYxLkRpYWdyYW1SZXF1ZXN0GjkubGFu",
94
+ "c3dlZXBlci5kaWFncmFtcy52MS5WaXJ0dWFsRW52aXJvbm1lbnREaWFncmFt",
95
+ "UmVzcG9uc2UiABJjCgxHZXRPdERpYWdyYW0SJi5sYW5zd2VlcGVyLmRpYWdy",
96
+ "YW1zLnYxLkRpYWdyYW1SZXF1ZXN0GikubGFuc3dlZXBlci5kaWFncmFtcy52",
97
+ "MS5PdERpYWdyYW1SZXNwb25zZSIAEmsKDkdldElwTG9jYXRpb25zEioubGFu",
98
+ "c3dlZXBlci5kaWFncmFtcy52MS5JcExvY2F0aW9uc1JlcXVlc3QaKy5sYW5z",
99
+ "d2VlcGVyLmRpYWdyYW1zLnYxLklwTG9jYXRpb25zUmVzcG9uc2UiAEIbqgIY",
100
+ "TGFuc3dlZXBlci5EaWFncmFtcy5HUlBDYgZwcm90bzM="));
101
101
  descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
102
102
  new pbr::FileDescriptor[] { global::Google.Protobuf.WellKnownTypes.TimestampReflection.Descriptor, },
103
103
  new pbr::GeneratedClrTypeInfo(new[] {typeof(global::Lansweeper.Diagrams.GRPC.ErrorType), typeof(global::Lansweeper.Diagrams.GRPC.DiagramCategory), }, null, new pbr::GeneratedClrTypeInfo[] {
@@ -108,7 +108,7 @@ namespace Lansweeper.Diagrams.GRPC {
108
108
  new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.Diagrams.GRPC.Error), global::Lansweeper.Diagrams.GRPC.Error.Parser, new[]{ "Type", "Message" }, null, null, null, null),
109
109
  new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.Diagrams.GRPC.Relationship), global::Lansweeper.Diagrams.GRPC.Relationship.Parser, new[]{ "FromAssetUniqueKey", "ToAssetUniqueKey", "Name", "ReverseName", "IconName", "StartDate", "EndDate", "Comments", "GenerationType" }, null, null, null, null),
110
110
  new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.Diagrams.GRPC.AssetType), global::Lansweeper.Diagrams.GRPC.AssetType.Parser, new[]{ "TypeName", "IsMandatory", "IsEnabledByDefault", "NbAssets" }, null, null, null, null),
111
- new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.Diagrams.GRPC.IpLocation), global::Lansweeper.Diagrams.GRPC.IpLocation.Parser, new[]{ "IpLocationKey", "IpLocationName", "RangeStart", "RangeEnd", "NbAssets", "IpLocationId" }, null, null, null, null),
111
+ new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.Diagrams.GRPC.IpLocation), global::Lansweeper.Diagrams.GRPC.IpLocation.Parser, new[]{ "IpLocationKey", "IpLocationName", "RangeStart", "RangeEnd", "NbAssets", "IpLocationId", "InstallKey" }, null, null, null, null),
112
112
  new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.Diagrams.GRPC.Filters), global::Lansweeper.Diagrams.GRPC.Filters.Parser, new[]{ "AssetTypes", "IpLocations", "AssetStates" }, null, null, null, null),
113
113
  new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.Diagrams.GRPC.NetworkTopologyDiagramResponse), global::Lansweeper.Diagrams.GRPC.NetworkTopologyDiagramResponse.Parser, new[]{ "Assets", "Relationships", "Errors", "AssetTypes", "Filters", "IpLocationName" }, null, null, null, null),
114
114
  new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.Diagrams.GRPC.VirtualEnvironmentDiagramResponse), global::Lansweeper.Diagrams.GRPC.VirtualEnvironmentDiagramResponse.Parser, new[]{ "Assets", "Relationships", "Errors", "AssetTypes", "Filters", "IpLocationName" }, null, null, null, null),
@@ -2790,6 +2790,7 @@ namespace Lansweeper.Diagrams.GRPC {
2790
2790
  rangeEnd_ = other.rangeEnd_;
2791
2791
  nbAssets_ = other.nbAssets_;
2792
2792
  ipLocationId_ = other.ipLocationId_;
2793
+ installKey_ = other.installKey_;
2793
2794
  _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
2794
2795
  }
2795
2796
 
@@ -2871,6 +2872,18 @@ namespace Lansweeper.Diagrams.GRPC {
2871
2872
  }
2872
2873
  }
2873
2874
 
2875
+ /// <summary>Field number for the "install_key" field.</summary>
2876
+ public const int InstallKeyFieldNumber = 7;
2877
+ private string installKey_ = "";
2878
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
2879
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
2880
+ public string InstallKey {
2881
+ get { return installKey_; }
2882
+ set {
2883
+ installKey_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
2884
+ }
2885
+ }
2886
+
2874
2887
  [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
2875
2888
  [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
2876
2889
  public override bool Equals(object other) {
@@ -2892,6 +2905,7 @@ namespace Lansweeper.Diagrams.GRPC {
2892
2905
  if (RangeEnd != other.RangeEnd) return false;
2893
2906
  if (NbAssets != other.NbAssets) return false;
2894
2907
  if (IpLocationId != other.IpLocationId) return false;
2908
+ if (InstallKey != other.InstallKey) return false;
2895
2909
  return Equals(_unknownFields, other._unknownFields);
2896
2910
  }
2897
2911
 
@@ -2905,6 +2919,7 @@ namespace Lansweeper.Diagrams.GRPC {
2905
2919
  if (RangeEnd.Length != 0) hash ^= RangeEnd.GetHashCode();
2906
2920
  if (NbAssets != 0) hash ^= NbAssets.GetHashCode();
2907
2921
  if (IpLocationId.Length != 0) hash ^= IpLocationId.GetHashCode();
2922
+ if (InstallKey.Length != 0) hash ^= InstallKey.GetHashCode();
2908
2923
  if (_unknownFields != null) {
2909
2924
  hash ^= _unknownFields.GetHashCode();
2910
2925
  }
@@ -2947,6 +2962,10 @@ namespace Lansweeper.Diagrams.GRPC {
2947
2962
  output.WriteRawTag(50);
2948
2963
  output.WriteString(IpLocationId);
2949
2964
  }
2965
+ if (InstallKey.Length != 0) {
2966
+ output.WriteRawTag(58);
2967
+ output.WriteString(InstallKey);
2968
+ }
2950
2969
  if (_unknownFields != null) {
2951
2970
  _unknownFields.WriteTo(output);
2952
2971
  }
@@ -2981,6 +3000,10 @@ namespace Lansweeper.Diagrams.GRPC {
2981
3000
  output.WriteRawTag(50);
2982
3001
  output.WriteString(IpLocationId);
2983
3002
  }
3003
+ if (InstallKey.Length != 0) {
3004
+ output.WriteRawTag(58);
3005
+ output.WriteString(InstallKey);
3006
+ }
2984
3007
  if (_unknownFields != null) {
2985
3008
  _unknownFields.WriteTo(ref output);
2986
3009
  }
@@ -3009,6 +3032,9 @@ namespace Lansweeper.Diagrams.GRPC {
3009
3032
  if (IpLocationId.Length != 0) {
3010
3033
  size += 1 + pb::CodedOutputStream.ComputeStringSize(IpLocationId);
3011
3034
  }
3035
+ if (InstallKey.Length != 0) {
3036
+ size += 1 + pb::CodedOutputStream.ComputeStringSize(InstallKey);
3037
+ }
3012
3038
  if (_unknownFields != null) {
3013
3039
  size += _unknownFields.CalculateSize();
3014
3040
  }
@@ -3039,6 +3065,9 @@ namespace Lansweeper.Diagrams.GRPC {
3039
3065
  if (other.IpLocationId.Length != 0) {
3040
3066
  IpLocationId = other.IpLocationId;
3041
3067
  }
3068
+ if (other.InstallKey.Length != 0) {
3069
+ InstallKey = other.InstallKey;
3070
+ }
3042
3071
  _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
3043
3072
  }
3044
3073
 
@@ -3078,6 +3107,10 @@ namespace Lansweeper.Diagrams.GRPC {
3078
3107
  IpLocationId = input.ReadString();
3079
3108
  break;
3080
3109
  }
3110
+ case 58: {
3111
+ InstallKey = input.ReadString();
3112
+ break;
3113
+ }
3081
3114
  }
3082
3115
  }
3083
3116
  #endif
@@ -3117,6 +3150,10 @@ namespace Lansweeper.Diagrams.GRPC {
3117
3150
  IpLocationId = input.ReadString();
3118
3151
  break;
3119
3152
  }
3153
+ case 58: {
3154
+ InstallKey = input.ReadString();
3155
+ break;
3156
+ }
3120
3157
  }
3121
3158
  }
3122
3159
  }
@@ -5,7 +5,7 @@
5
5
  },
6
6
  "projects": {
7
7
  "/home/circleci/project/packages/diagrams/grpc/Lansweeper.Diagrams.GRPC.csproj": {
8
- "version": "0.0.28",
8
+ "version": "0.0.29",
9
9
  "restore": {
10
10
  "projectUniqueName": "/home/circleci/project/packages/diagrams/grpc/Lansweeper.Diagrams.GRPC.csproj",
11
11
  "projectName": "Lansweeper.Diagrams.GRPC",
@@ -305,7 +305,7 @@
305
305
  "/home/circleci/.nuget/packages/": {}
306
306
  },
307
307
  "project": {
308
- "version": "0.0.28",
308
+ "version": "0.0.29",
309
309
  "restore": {
310
310
  "projectUniqueName": "/home/circleci/project/packages/diagrams/grpc/Lansweeper.Diagrams.GRPC.csproj",
311
311
  "projectName": "Lansweeper.Diagrams.GRPC",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": 2,
3
- "dgSpecHash": "CPLWl9/lC/7GT86h7jXPnhjEp/ROAeL+dOU/UfflwLa5vMZtdnFF3frge9hNzLWvi6jdR1LKxLQ15R0PLiGWZg==",
3
+ "dgSpecHash": "VvlLvB169eTG0Kih0jAm2RDQ5KR1mL8GfoxgqRuKepl/L+EiL3GOYr41rfmnKLMLgtpCqd8W/1mtF6hJm/2cQA==",
4
4
  "success": true,
5
5
  "projectFilePath": "/home/circleci/project/packages/diagrams/grpc/Lansweeper.Diagrams.GRPC.csproj",
6
6
  "expectedPackageFiles": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lansweeper/diagrams-grpc",
3
- "version": "0.0.29",
3
+ "version": "0.0.30",
4
4
  "description": "Diagrams gRPC",
5
5
  "main": "gen-proto/index.js",
6
6
  "types": "gen-proto/index.d.ts",
@@ -12,5 +12,5 @@
12
12
  "devDependencies": {
13
13
  "@types/google-protobuf": "^3.15.5"
14
14
  },
15
- "gitHead": "6dfbca9cb2c39f5727272d577cd2089b19a8af97"
15
+ "gitHead": "9861f5b513c40238f975f91a0a11e9ba61791798"
16
16
  }
@@ -96,6 +96,7 @@ message IpLocation {
96
96
  string range_end = 4;
97
97
  int32 nb_assets = 5;
98
98
  string ip_location_id = 6;
99
+ string install_key = 7;
99
100
  }
100
101
 
101
102
  message Filters {