@lansweeper/diagrams-grpc 0.0.21 → 0.0.23

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,22 @@
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.23](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/diagrams-grpc@0.0.22...@lansweeper/diagrams-grpc@0.0.23) (2023-01-18)
7
+
8
+ **Note:** Version bump only for package @lansweeper/diagrams-grpc
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.0.22](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/diagrams-grpc@0.0.21...@lansweeper/diagrams-grpc@0.0.22) (2023-01-12)
15
+
16
+ **Note:** Version bump only for package @lansweeper/diagrams-grpc
17
+
18
+
19
+
20
+
21
+
6
22
  ## [0.0.21](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/diagrams-grpc@0.0.20...@lansweeper/diagrams-grpc@0.0.21) (2023-01-10)
7
23
 
8
24
  **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.20</PackageVersion>
11
- <Version>0.0.20</Version>
12
- <FileVersion>0.0.20</FileVersion>
10
+ <PackageVersion>0.0.22</PackageVersion>
11
+ <Version>0.0.22</Version>
12
+ <FileVersion>0.0.22</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.20": {
9
+ "Lansweeper.Diagrams.GRPC/0.0.22": {
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.20": {
94
+ "Lansweeper.Diagrams.GRPC/0.0.22": {
95
95
  "type": "project",
96
96
  "serviceable": false,
97
97
  "sha512": ""
@@ -17,6 +17,8 @@ export class DiagramRequest extends jspb.Message {
17
17
  clearAssetScopesRulesMap(): void;
18
18
  getTraceId(): string;
19
19
  setTraceId(value: string): DiagramRequest;
20
+ getIpLocationId(): string;
21
+ setIpLocationId(value: string): DiagramRequest;
20
22
 
21
23
  serializeBinary(): Uint8Array;
22
24
  toObject(includeInstance?: boolean): DiagramRequest.AsObject;
@@ -35,6 +37,7 @@ export namespace DiagramRequest {
35
37
 
36
38
  assetScopesRulesMap: Array<[string, string]>,
37
39
  traceId: string,
40
+ ipLocationId: string,
38
41
  }
39
42
  }
40
43
 
@@ -181,6 +184,8 @@ export class Relationship extends jspb.Message {
181
184
  setEndDate(value?: google_protobuf_timestamp_pb.Timestamp): Relationship;
182
185
  getComments(): string;
183
186
  setComments(value: string): Relationship;
187
+ getGenerationType(): string;
188
+ setGenerationType(value: string): Relationship;
184
189
 
185
190
  serializeBinary(): Uint8Array;
186
191
  toObject(includeInstance?: boolean): Relationship.AsObject;
@@ -204,6 +209,7 @@ export namespace Relationship {
204
209
  startDate?: google_protobuf_timestamp_pb.Timestamp.AsObject,
205
210
  endDate?: google_protobuf_timestamp_pb.Timestamp.AsObject,
206
211
  comments: string,
212
+ generationType: string,
207
213
  }
208
214
  }
209
215
 
@@ -295,7 +295,8 @@ proto.lansweeper.diagrams.v1.DiagramRequest.toObject = function(includeInstance,
295
295
  clientKey: jspb.Message.getFieldWithDefault(msg, 1, ""),
296
296
  installationKey: jspb.Message.getFieldWithDefault(msg, 2, ""),
297
297
  assetScopesRulesMap: (f = msg.getAssetScopesRulesMap()) ? f.toObject(includeInstance, undefined) : [],
298
- traceId: jspb.Message.getFieldWithDefault(msg, 4, "")
298
+ traceId: jspb.Message.getFieldWithDefault(msg, 4, ""),
299
+ ipLocationId: jspb.Message.getFieldWithDefault(msg, 5, "")
299
300
  };
300
301
 
301
302
  if (includeInstance) {
@@ -350,6 +351,10 @@ proto.lansweeper.diagrams.v1.DiagramRequest.deserializeBinaryFromReader = functi
350
351
  var value = /** @type {string} */ (reader.readString());
351
352
  msg.setTraceId(value);
352
353
  break;
354
+ case 5:
355
+ var value = /** @type {string} */ (reader.readString());
356
+ msg.setIpLocationId(value);
357
+ break;
353
358
  default:
354
359
  reader.skipField();
355
360
  break;
@@ -404,6 +409,13 @@ proto.lansweeper.diagrams.v1.DiagramRequest.serializeBinaryToWriter = function(m
404
409
  f
405
410
  );
406
411
  }
412
+ f = message.getIpLocationId();
413
+ if (f.length > 0) {
414
+ writer.writeString(
415
+ 5,
416
+ f
417
+ );
418
+ }
407
419
  };
408
420
 
409
421
 
@@ -483,6 +495,24 @@ proto.lansweeper.diagrams.v1.DiagramRequest.prototype.setTraceId = function(valu
483
495
  };
484
496
 
485
497
 
498
+ /**
499
+ * optional string ip_location_id = 5;
500
+ * @return {string}
501
+ */
502
+ proto.lansweeper.diagrams.v1.DiagramRequest.prototype.getIpLocationId = function() {
503
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
504
+ };
505
+
506
+
507
+ /**
508
+ * @param {string} value
509
+ * @return {!proto.lansweeper.diagrams.v1.DiagramRequest} returns this
510
+ */
511
+ proto.lansweeper.diagrams.v1.DiagramRequest.prototype.setIpLocationId = function(value) {
512
+ return jspb.Message.setProto3StringField(this, 5, value);
513
+ };
514
+
515
+
486
516
 
487
517
  /**
488
518
  * List of repeated fields within this message type.
@@ -1484,7 +1514,8 @@ proto.lansweeper.diagrams.v1.Relationship.toObject = function(includeInstance, m
1484
1514
  isManual: jspb.Message.getBooleanFieldWithDefault(msg, 7, false),
1485
1515
  startDate: (f = msg.getStartDate()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
1486
1516
  endDate: (f = msg.getEndDate()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
1487
- comments: jspb.Message.getFieldWithDefault(msg, 10, "")
1517
+ comments: jspb.Message.getFieldWithDefault(msg, 10, ""),
1518
+ generationType: jspb.Message.getFieldWithDefault(msg, 11, "")
1488
1519
  };
1489
1520
 
1490
1521
  if (includeInstance) {
@@ -1563,6 +1594,10 @@ proto.lansweeper.diagrams.v1.Relationship.deserializeBinaryFromReader = function
1563
1594
  var value = /** @type {string} */ (reader.readString());
1564
1595
  msg.setComments(value);
1565
1596
  break;
1597
+ case 11:
1598
+ var value = /** @type {string} */ (reader.readString());
1599
+ msg.setGenerationType(value);
1600
+ break;
1566
1601
  default:
1567
1602
  reader.skipField();
1568
1603
  break;
@@ -1664,6 +1699,13 @@ proto.lansweeper.diagrams.v1.Relationship.serializeBinaryToWriter = function(mes
1664
1699
  f
1665
1700
  );
1666
1701
  }
1702
+ f = message.getGenerationType();
1703
+ if (f.length > 0) {
1704
+ writer.writeString(
1705
+ 11,
1706
+ f
1707
+ );
1708
+ }
1667
1709
  };
1668
1710
 
1669
1711
 
@@ -1885,6 +1927,24 @@ proto.lansweeper.diagrams.v1.Relationship.prototype.setComments = function(value
1885
1927
  };
1886
1928
 
1887
1929
 
1930
+ /**
1931
+ * optional string generation_type = 11;
1932
+ * @return {string}
1933
+ */
1934
+ proto.lansweeper.diagrams.v1.Relationship.prototype.getGenerationType = function() {
1935
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 11, ""));
1936
+ };
1937
+
1938
+
1939
+ /**
1940
+ * @param {string} value
1941
+ * @return {!proto.lansweeper.diagrams.v1.Relationship} returns this
1942
+ */
1943
+ proto.lansweeper.diagrams.v1.Relationship.prototype.setGenerationType = function(value) {
1944
+ return jspb.Message.setProto3StringField(this, 11, value);
1945
+ };
1946
+
1947
+
1888
1948
 
1889
1949
 
1890
1950
 
@@ -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"}],"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":"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":"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":"category","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"category"},{"name":"name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"reverse_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"reverseName"},{"name":"icon_name","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"iconName"},{"name":"is_manual","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isManual"},{"name":"start_date","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"startDate"},{"name":"end_date","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"endDate"},{"name":"comments","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"comments"}]},{"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":"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":"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":"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":"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"}]}],"enumType":[{"name":"ErrorType","value":[{"name":"UNKNOWN","number":0},{"name":"GENERATION_ERROR","number":1},{"name":"NO_ASSET","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":{}}]}],"options":{"csharpNamespace":"Lansweeper.Diagrams.GRPC"},"sourceCodeInfo":{"location":[{"span":[0,0,112,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,12,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":[4,0],"span":[14,0,19,1]},{"path":[4,0,1],"span":[14,8,22]},{"path":[4,0,2,0],"span":[15,2,24]},{"path":[4,0,2,0,5],"span":[15,2,8]},{"path":[4,0,2,0,1],"span":[15,9,19]},{"path":[4,0,2,0,3],"span":[15,22,23]},{"path":[4,0,2,1],"span":[16,2,30]},{"path":[4,0,2,1,5],"span":[16,2,8]},{"path":[4,0,2,1,1],"span":[16,9,25]},{"path":[4,0,2,1,3],"span":[16,28,29]},{"path":[4,0,2,2],"span":[17,2,45]},{"path":[4,0,2,2,6],"span":[17,2,21]},{"path":[4,0,2,2,1],"span":[17,22,40]},{"path":[4,0,2,2,3],"span":[17,43,44]},{"path":[4,0,2,3],"span":[18,2,22]},{"path":[4,0,2,3,5],"span":[18,2,8]},{"path":[4,0,2,3,1],"span":[18,9,17]},{"path":[4,0,2,3,3],"span":[18,20,21]},{"path":[4,1],"span":[21,0,36,1]},{"path":[4,1,1],"span":[21,8,13]},{"path":[4,1,2,0],"span":[22,2,24]},{"path":[4,1,2,0,5],"span":[22,2,8]},{"path":[4,1,2,0,1],"span":[22,9,19]},{"path":[4,1,2,0,3],"span":[22,22,23]},{"path":[4,1,2,1],"span":[23,2,17]},{"path":[4,1,2,1,5],"span":[23,2,8]},{"path":[4,1,2,1,1],"span":[23,9,12]},{"path":[4,1,2,1,3],"span":[23,15,16]},{"path":[4,1,2,2],"span":[24,2,18]},{"path":[4,1,2,2,5],"span":[24,2,8]},{"path":[4,1,2,2,1],"span":[24,9,13]},{"path":[4,1,2,2,3],"span":[24,16,17]},{"path":[4,1,2,3],"span":[25,2,23]},{"path":[4,1,2,3,5],"span":[25,2,8]},{"path":[4,1,2,3,1],"span":[25,9,18]},{"path":[4,1,2,3,3],"span":[25,21,22]},{"path":[4,1,2,4],"span":[26,2,23]},{"path":[4,1,2,4,5],"span":[26,2,8]},{"path":[4,1,2,4,1],"span":[26,9,18]},{"path":[4,1,2,4,3],"span":[26,21,22]},{"path":[4,1,2,5],"span":[27,2,20]},{"path":[4,1,2,5,5],"span":[27,2,6]},{"path":[4,1,2,5,1],"span":[27,7,15]},{"path":[4,1,2,5,3],"span":[27,18,19]},{"path":[4,1,2,6],"span":[28,2,24]},{"path":[4,1,2,6,5],"span":[28,2,8]},{"path":[4,1,2,6,1],"span":[28,9,19]},{"path":[4,1,2,6,3],"span":[28,22,23]},{"path":[4,1,2,7],"span":[29,2,31]},{"path":[4,1,2,7,5],"span":[29,2,8]},{"path":[4,1,2,7,1],"span":[29,9,26]},{"path":[4,1,2,7,3],"span":[29,29,30]},{"path":[4,1,2,8],"span":[30,2,22]},{"path":[4,1,2,8,5],"span":[30,2,8]},{"path":[4,1,2,8,1],"span":[30,9,17]},{"path":[4,1,2,8,3],"span":[30,20,21]},{"path":[4,1,2,9],"span":[31,2,23]},{"path":[4,1,2,9,5],"span":[31,2,6]},{"path":[4,1,2,9,1],"span":[31,7,17]},{"path":[4,1,2,9,3],"span":[31,20,22]},{"path":[4,1,2,10],"span":[32,2,26]},{"path":[4,1,2,10,5],"span":[32,2,6]},{"path":[4,1,2,10,1],"span":[32,7,20]},{"path":[4,1,2,10,3],"span":[32,23,25]},{"path":[4,1,2,11],"span":[33,2,34]},{"path":[4,1,2,11,4],"span":[33,2,10]},{"path":[4,1,2,11,6],"span":[33,11,21]},{"path":[4,1,2,11,1],"span":[33,22,28]},{"path":[4,1,2,11,3],"span":[33,31,33]},{"path":[4,1,2,12],"span":[34,2,30]},{"path":[4,1,2,12,5],"span":[34,2,8]},{"path":[4,1,2,12,1],"span":[34,9,24]},{"path":[4,1,2,12,3],"span":[34,27,29]},{"path":[4,1,2,13],"span":[35,2,26]},{"path":[4,1,2,13,5],"span":[35,2,8]},{"path":[4,1,2,13,1],"span":[35,9,20]},{"path":[4,1,2,13,3],"span":[35,23,25]},{"path":[4,2],"span":[38,0,44,1]},{"path":[4,2,1],"span":[38,8,18]},{"path":[4,2,2,0],"span":[39,2,22]},{"path":[4,2,2,0,5],"span":[39,2,8]},{"path":[4,2,2,0,1],"span":[39,9,17]},{"path":[4,2,2,0,3],"span":[39,20,21]},{"path":[4,2,2,1],"span":[40,2,24]},{"path":[4,2,2,1,5],"span":[40,2,8]},{"path":[4,2,2,1,1],"span":[40,9,19]},{"path":[4,2,2,1,3],"span":[40,22,23]},{"path":[4,2,2,2],"span":[41,2,26]},{"path":[4,2,2,2,5],"span":[41,2,8]},{"path":[4,2,2,2,1],"span":[41,9,21]},{"path":[4,2,2,2,3],"span":[41,24,25]},{"path":[4,2,2,3],"span":[42,2,27]},{"path":[4,2,2,3,5],"span":[42,2,8]},{"path":[4,2,2,3,1],"span":[42,9,22]},{"path":[4,2,2,3,3],"span":[42,25,26]},{"path":[4,2,2,4],"span":[43,2,29]},{"path":[4,2,2,4,5],"span":[43,2,8]},{"path":[4,2,2,4,1],"span":[43,9,24]},{"path":[4,2,2,4,3],"span":[43,27,28]},{"path":[5,0],"span":[46,0,50,1]},{"path":[5,0,1],"span":[46,5,14]},{"path":[5,0,2,0],"span":[47,2,14]},{"path":[5,0,2,0,1],"span":[47,2,9]},{"path":[5,0,2,0,2],"span":[47,12,13]},{"path":[5,0,2,1],"span":[48,2,23]},{"path":[5,0,2,1,1],"span":[48,2,18]},{"path":[5,0,2,1,2],"span":[48,21,22]},{"path":[5,0,2,2],"span":[49,2,15]},{"path":[5,0,2,2,1],"span":[49,2,10]},{"path":[5,0,2,2,2],"span":[49,13,14]},{"path":[4,3],"span":[52,0,55,1]},{"path":[4,3,1],"span":[52,8,13]},{"path":[4,3,2,0],"span":[53,2,21]},{"path":[4,3,2,0,6],"span":[53,2,11]},{"path":[4,3,2,0,1],"span":[53,12,16]},{"path":[4,3,2,0,3],"span":[53,19,20]},{"path":[4,3,2,1],"span":[54,2,21]},{"path":[4,3,2,1,5],"span":[54,2,8]},{"path":[4,3,2,1,1],"span":[54,9,16]},{"path":[4,3,2,1,3],"span":[54,19,20]},{"path":[4,4],"span":[57,0,68,1]},{"path":[4,4,1],"span":[57,8,20]},{"path":[4,4,2,0],"span":[58,2,35]},{"path":[4,4,2,0,5],"span":[58,2,8]},{"path":[4,4,2,0,1],"span":[58,9,30]},{"path":[4,4,2,0,3],"span":[58,33,34]},{"path":[4,4,2,1],"span":[59,2,33]},{"path":[4,4,2,1,5],"span":[59,2,8]},{"path":[4,4,2,1,1],"span":[59,9,28]},{"path":[4,4,2,1,3],"span":[59,31,32]},{"path":[4,4,2,2],"span":[60,2,22]},{"path":[4,4,2,2,5],"span":[60,2,8]},{"path":[4,4,2,2,1],"span":[60,9,17]},{"path":[4,4,2,2,3],"span":[60,20,21]},{"path":[4,4,2,3],"span":[61,2,18]},{"path":[4,4,2,3,5],"span":[61,2,8]},{"path":[4,4,2,3,1],"span":[61,9,13]},{"path":[4,4,2,3,3],"span":[61,16,17]},{"path":[4,4,2,4],"span":[62,2,26]},{"path":[4,4,2,4,5],"span":[62,2,8]},{"path":[4,4,2,4,1],"span":[62,9,21]},{"path":[4,4,2,4,3],"span":[62,24,25]},{"path":[4,4,2,5],"span":[63,2,23]},{"path":[4,4,2,5,5],"span":[63,2,8]},{"path":[4,4,2,5,1],"span":[63,9,18]},{"path":[4,4,2,5,3],"span":[63,21,22]},{"path":[4,4,2,6],"span":[64,2,21]},{"path":[4,4,2,6,5],"span":[64,2,6]},{"path":[4,4,2,6,1],"span":[64,7,16]},{"path":[4,4,2,6,3],"span":[64,19,20]},{"path":[4,4,2,7],"span":[65,2,43]},{"path":[4,4,2,7,6],"span":[65,2,27]},{"path":[4,4,2,7,1],"span":[65,28,38]},{"path":[4,4,2,7,3],"span":[65,41,42]},{"path":[4,4,2,8],"span":[66,2,41]},{"path":[4,4,2,8,6],"span":[66,2,27]},{"path":[4,4,2,8,1],"span":[66,28,36]},{"path":[4,4,2,8,3],"span":[66,39,40]},{"path":[4,4,2,9],"span":[67,2,23]},{"path":[4,4,2,9,5],"span":[67,2,8]},{"path":[4,4,2,9,1],"span":[67,9,17]},{"path":[4,4,2,9,3],"span":[67,20,22]},{"path":[4,5],"span":[70,0,75,1]},{"path":[4,5,1],"span":[70,8,17]},{"path":[4,5,2,0],"span":[71,2,23]},{"path":[4,5,2,0,5],"span":[71,2,8]},{"path":[4,5,2,0,1],"span":[71,9,18]},{"path":[4,5,2,0,3],"span":[71,21,22]},{"path":[4,5,2,1],"span":[72,2,24]},{"path":[4,5,2,1,5],"span":[72,2,6]},{"path":[4,5,2,1,1],"span":[72,7,19]},{"path":[4,5,2,1,3],"span":[72,22,23]},{"path":[4,5,2,2],"span":[73,2,33]},{"path":[4,5,2,2,5],"span":[73,2,6]},{"path":[4,5,2,2,1],"span":[73,7,28]},{"path":[4,5,2,2,3],"span":[73,31,32]},{"path":[4,5,2,3],"span":[74,2,22]},{"path":[4,5,2,3,5],"span":[74,2,7]},{"path":[4,5,2,3,1],"span":[74,8,17]},{"path":[4,5,2,3,3],"span":[74,20,21]},{"path":[4,6],"span":[77,0,83,1]},{"path":[4,6,1],"span":[77,8,18]},{"path":[4,6,2,0],"span":[78,2,29]},{"path":[4,6,2,0,5],"span":[78,2,8]},{"path":[4,6,2,0,1],"span":[78,9,24]},{"path":[4,6,2,0,3],"span":[78,27,28]},{"path":[4,6,2,1],"span":[79,2,30]},{"path":[4,6,2,1,5],"span":[79,2,8]},{"path":[4,6,2,1,1],"span":[79,9,25]},{"path":[4,6,2,1,3],"span":[79,28,29]},{"path":[4,6,2,2],"span":[80,2,25]},{"path":[4,6,2,2,5],"span":[80,2,8]},{"path":[4,6,2,2,1],"span":[80,9,20]},{"path":[4,6,2,2,3],"span":[80,23,24]},{"path":[4,6,2,3],"span":[81,2,23]},{"path":[4,6,2,3,5],"span":[81,2,8]},{"path":[4,6,2,3,1],"span":[81,9,18]},{"path":[4,6,2,3,3],"span":[81,21,22]},{"path":[4,6,2,4],"span":[82,2,22]},{"path":[4,6,2,4,5],"span":[82,2,7]},{"path":[4,6,2,4,1],"span":[82,8,17]},{"path":[4,6,2,4,3],"span":[82,20,21]},{"path":[4,7],"span":[85,0,88,1]},{"path":[4,7,1],"span":[85,8,15]},{"path":[4,7,2,0],"span":[86,2,37]},{"path":[4,7,2,0,4],"span":[86,2,10]},{"path":[4,7,2,0,6],"span":[86,11,20]},{"path":[4,7,2,0,1],"span":[86,21,32]},{"path":[4,7,2,0,3],"span":[86,35,36]},{"path":[4,7,2,1],"span":[87,2,39]},{"path":[4,7,2,1,4],"span":[87,2,10]},{"path":[4,7,2,1,6],"span":[87,11,21]},{"path":[4,7,2,1,1],"span":[87,22,34]},{"path":[4,7,2,1,3],"span":[87,37,38]},{"path":[4,8],"span":[90,0,96,1]},{"path":[4,8,1],"span":[90,8,38]},{"path":[4,8,2,0],"span":[91,2,28]},{"path":[4,8,2,0,4],"span":[91,2,10]},{"path":[4,8,2,0,6],"span":[91,11,16]},{"path":[4,8,2,0,1],"span":[91,17,23]},{"path":[4,8,2,0,3],"span":[91,26,27]},{"path":[4,8,2,1],"span":[92,2,42]},{"path":[4,8,2,1,4],"span":[92,2,10]},{"path":[4,8,2,1,6],"span":[92,11,23]},{"path":[4,8,2,1,1],"span":[92,24,37]},{"path":[4,8,2,1,3],"span":[92,40,41]},{"path":[4,8,2,2],"span":[93,2,28]},{"path":[4,8,2,2,4],"span":[93,2,10]},{"path":[4,8,2,2,6],"span":[93,11,16]},{"path":[4,8,2,2,1],"span":[93,17,23]},{"path":[4,8,2,2,3],"span":[93,26,27]},{"path":[4,8,2,3],"span":[94,2,37]},{"path":[4,8,2,3,4],"span":[94,2,10]},{"path":[4,8,2,3,6],"span":[94,11,20]},{"path":[4,8,2,3,1],"span":[94,21,32]},{"path":[4,8,2,3,3],"span":[94,35,36]},{"path":[4,8,2,4],"span":[95,2,22]},{"path":[4,8,2,4,6],"span":[95,2,9]},{"path":[4,8,2,4,1],"span":[95,10,17]},{"path":[4,8,2,4,3],"span":[95,20,21]},{"path":[4,9],"span":[98,0,104,1]},{"path":[4,9,1],"span":[98,8,41]},{"path":[4,9,2,0],"span":[99,2,28]},{"path":[4,9,2,0,4],"span":[99,2,10]},{"path":[4,9,2,0,6],"span":[99,11,16]},{"path":[4,9,2,0,1],"span":[99,17,23]},{"path":[4,9,2,0,3],"span":[99,26,27]},{"path":[4,9,2,1],"span":[100,2,42]},{"path":[4,9,2,1,4],"span":[100,2,10]},{"path":[4,9,2,1,6],"span":[100,11,23]},{"path":[4,9,2,1,1],"span":[100,24,37]},{"path":[4,9,2,1,3],"span":[100,40,41]},{"path":[4,9,2,2],"span":[101,2,28]},{"path":[4,9,2,2,4],"span":[101,2,10]},{"path":[4,9,2,2,6],"span":[101,11,16]},{"path":[4,9,2,2,1],"span":[101,17,23]},{"path":[4,9,2,2,3],"span":[101,26,27]},{"path":[4,9,2,3],"span":[102,2,37]},{"path":[4,9,2,3,4],"span":[102,2,10]},{"path":[4,9,2,3,6],"span":[102,11,20]},{"path":[4,9,2,3,1],"span":[102,21,32]},{"path":[4,9,2,3,3],"span":[102,35,36]},{"path":[4,9,2,4],"span":[103,2,22]},{"path":[4,9,2,4,6],"span":[103,2,9]},{"path":[4,9,2,4,1],"span":[103,10,17]},{"path":[4,9,2,4,3],"span":[103,20,21]},{"path":[4,10],"span":[106,0,112,1]},{"path":[4,10,1],"span":[106,8,25]},{"path":[4,10,2,0],"span":[107,2,28]},{"path":[4,10,2,0,4],"span":[107,2,10]},{"path":[4,10,2,0,6],"span":[107,11,16]},{"path":[4,10,2,0,1],"span":[107,17,23]},{"path":[4,10,2,0,3],"span":[107,26,27]},{"path":[4,10,2,1],"span":[108,2,42]},{"path":[4,10,2,1,4],"span":[108,2,10]},{"path":[4,10,2,1,6],"span":[108,11,23]},{"path":[4,10,2,1,1],"span":[108,24,37]},{"path":[4,10,2,1,3],"span":[108,40,41]},{"path":[4,10,2,2],"span":[109,2,28]},{"path":[4,10,2,2,4],"span":[109,2,10]},{"path":[4,10,2,2,6],"span":[109,11,16]},{"path":[4,10,2,2,1],"span":[109,17,23]},{"path":[4,10,2,2,3],"span":[109,26,27]},{"path":[4,10,2,3],"span":[110,2,37]},{"path":[4,10,2,3,4],"span":[110,2,10]},{"path":[4,10,2,3,6],"span":[110,11,20]},{"path":[4,10,2,3,1],"span":[110,21,32]},{"path":[4,10,2,3,3],"span":[110,35,36]},{"path":[4,10,2,4],"span":[111,2,22]},{"path":[4,10,2,4,6],"span":[111,2,9]},{"path":[4,10,2,4,1],"span":[111,10,17]},{"path":[4,10,2,4,3],"span":[111,20,21]}]},"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":"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":"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":"category","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"category"},{"name":"name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"reverse_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"reverseName"},{"name":"icon_name","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"iconName"},{"name":"is_manual","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isManual"},{"name":"start_date","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"startDate"},{"name":"end_date","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"endDate"},{"name":"comments","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"comments"},{"name":"generation_type","number":11,"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":"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":"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":"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":"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"}]}],"enumType":[{"name":"ErrorType","value":[{"name":"UNKNOWN","number":0},{"name":"GENERATION_ERROR","number":1},{"name":"NO_ASSET","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":{}}]}],"options":{"csharpNamespace":"Lansweeper.Diagrams.GRPC"},"sourceCodeInfo":{"location":[{"span":[0,0,114,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,12,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":[4,0],"span":[14,0,20,1]},{"path":[4,0,1],"span":[14,8,22]},{"path":[4,0,2,0],"span":[15,2,24]},{"path":[4,0,2,0,5],"span":[15,2,8]},{"path":[4,0,2,0,1],"span":[15,9,19]},{"path":[4,0,2,0,3],"span":[15,22,23]},{"path":[4,0,2,1],"span":[16,2,30]},{"path":[4,0,2,1,5],"span":[16,2,8]},{"path":[4,0,2,1,1],"span":[16,9,25]},{"path":[4,0,2,1,3],"span":[16,28,29]},{"path":[4,0,2,2],"span":[17,2,45]},{"path":[4,0,2,2,6],"span":[17,2,21]},{"path":[4,0,2,2,1],"span":[17,22,40]},{"path":[4,0,2,2,3],"span":[17,43,44]},{"path":[4,0,2,3],"span":[18,2,22]},{"path":[4,0,2,3,5],"span":[18,2,8]},{"path":[4,0,2,3,1],"span":[18,9,17]},{"path":[4,0,2,3,3],"span":[18,20,21]},{"path":[4,0,2,4],"span":[19,2,28]},{"path":[4,0,2,4,5],"span":[19,2,8]},{"path":[4,0,2,4,1],"span":[19,9,23]},{"path":[4,0,2,4,3],"span":[19,26,27]},{"path":[4,1],"span":[22,0,37,1]},{"path":[4,1,1],"span":[22,8,13]},{"path":[4,1,2,0],"span":[23,2,24]},{"path":[4,1,2,0,5],"span":[23,2,8]},{"path":[4,1,2,0,1],"span":[23,9,19]},{"path":[4,1,2,0,3],"span":[23,22,23]},{"path":[4,1,2,1],"span":[24,2,17]},{"path":[4,1,2,1,5],"span":[24,2,8]},{"path":[4,1,2,1,1],"span":[24,9,12]},{"path":[4,1,2,1,3],"span":[24,15,16]},{"path":[4,1,2,2],"span":[25,2,18]},{"path":[4,1,2,2,5],"span":[25,2,8]},{"path":[4,1,2,2,1],"span":[25,9,13]},{"path":[4,1,2,2,3],"span":[25,16,17]},{"path":[4,1,2,3],"span":[26,2,23]},{"path":[4,1,2,3,5],"span":[26,2,8]},{"path":[4,1,2,3,1],"span":[26,9,18]},{"path":[4,1,2,3,3],"span":[26,21,22]},{"path":[4,1,2,4],"span":[27,2,23]},{"path":[4,1,2,4,5],"span":[27,2,8]},{"path":[4,1,2,4,1],"span":[27,9,18]},{"path":[4,1,2,4,3],"span":[27,21,22]},{"path":[4,1,2,5],"span":[28,2,20]},{"path":[4,1,2,5,5],"span":[28,2,6]},{"path":[4,1,2,5,1],"span":[28,7,15]},{"path":[4,1,2,5,3],"span":[28,18,19]},{"path":[4,1,2,6],"span":[29,2,24]},{"path":[4,1,2,6,5],"span":[29,2,8]},{"path":[4,1,2,6,1],"span":[29,9,19]},{"path":[4,1,2,6,3],"span":[29,22,23]},{"path":[4,1,2,7],"span":[30,2,31]},{"path":[4,1,2,7,5],"span":[30,2,8]},{"path":[4,1,2,7,1],"span":[30,9,26]},{"path":[4,1,2,7,3],"span":[30,29,30]},{"path":[4,1,2,8],"span":[31,2,22]},{"path":[4,1,2,8,5],"span":[31,2,8]},{"path":[4,1,2,8,1],"span":[31,9,17]},{"path":[4,1,2,8,3],"span":[31,20,21]},{"path":[4,1,2,9],"span":[32,2,23]},{"path":[4,1,2,9,5],"span":[32,2,6]},{"path":[4,1,2,9,1],"span":[32,7,17]},{"path":[4,1,2,9,3],"span":[32,20,22]},{"path":[4,1,2,10],"span":[33,2,26]},{"path":[4,1,2,10,5],"span":[33,2,6]},{"path":[4,1,2,10,1],"span":[33,7,20]},{"path":[4,1,2,10,3],"span":[33,23,25]},{"path":[4,1,2,11],"span":[34,2,34]},{"path":[4,1,2,11,4],"span":[34,2,10]},{"path":[4,1,2,11,6],"span":[34,11,21]},{"path":[4,1,2,11,1],"span":[34,22,28]},{"path":[4,1,2,11,3],"span":[34,31,33]},{"path":[4,1,2,12],"span":[35,2,30]},{"path":[4,1,2,12,5],"span":[35,2,8]},{"path":[4,1,2,12,1],"span":[35,9,24]},{"path":[4,1,2,12,3],"span":[35,27,29]},{"path":[4,1,2,13],"span":[36,2,26]},{"path":[4,1,2,13,5],"span":[36,2,8]},{"path":[4,1,2,13,1],"span":[36,9,20]},{"path":[4,1,2,13,3],"span":[36,23,25]},{"path":[4,2],"span":[39,0,45,1]},{"path":[4,2,1],"span":[39,8,18]},{"path":[4,2,2,0],"span":[40,2,22]},{"path":[4,2,2,0,5],"span":[40,2,8]},{"path":[4,2,2,0,1],"span":[40,9,17]},{"path":[4,2,2,0,3],"span":[40,20,21]},{"path":[4,2,2,1],"span":[41,2,24]},{"path":[4,2,2,1,5],"span":[41,2,8]},{"path":[4,2,2,1,1],"span":[41,9,19]},{"path":[4,2,2,1,3],"span":[41,22,23]},{"path":[4,2,2,2],"span":[42,2,26]},{"path":[4,2,2,2,5],"span":[42,2,8]},{"path":[4,2,2,2,1],"span":[42,9,21]},{"path":[4,2,2,2,3],"span":[42,24,25]},{"path":[4,2,2,3],"span":[43,2,27]},{"path":[4,2,2,3,5],"span":[43,2,8]},{"path":[4,2,2,3,1],"span":[43,9,22]},{"path":[4,2,2,3,3],"span":[43,25,26]},{"path":[4,2,2,4],"span":[44,2,29]},{"path":[4,2,2,4,5],"span":[44,2,8]},{"path":[4,2,2,4,1],"span":[44,9,24]},{"path":[4,2,2,4,3],"span":[44,27,28]},{"path":[5,0],"span":[47,0,51,1]},{"path":[5,0,1],"span":[47,5,14]},{"path":[5,0,2,0],"span":[48,2,14]},{"path":[5,0,2,0,1],"span":[48,2,9]},{"path":[5,0,2,0,2],"span":[48,12,13]},{"path":[5,0,2,1],"span":[49,2,23]},{"path":[5,0,2,1,1],"span":[49,2,18]},{"path":[5,0,2,1,2],"span":[49,21,22]},{"path":[5,0,2,2],"span":[50,2,15]},{"path":[5,0,2,2,1],"span":[50,2,10]},{"path":[5,0,2,2,2],"span":[50,13,14]},{"path":[4,3],"span":[53,0,56,1]},{"path":[4,3,1],"span":[53,8,13]},{"path":[4,3,2,0],"span":[54,2,21]},{"path":[4,3,2,0,6],"span":[54,2,11]},{"path":[4,3,2,0,1],"span":[54,12,16]},{"path":[4,3,2,0,3],"span":[54,19,20]},{"path":[4,3,2,1],"span":[55,2,21]},{"path":[4,3,2,1,5],"span":[55,2,8]},{"path":[4,3,2,1,1],"span":[55,9,16]},{"path":[4,3,2,1,3],"span":[55,19,20]},{"path":[4,4],"span":[58,0,70,1]},{"path":[4,4,1],"span":[58,8,20]},{"path":[4,4,2,0],"span":[59,2,35]},{"path":[4,4,2,0,5],"span":[59,2,8]},{"path":[4,4,2,0,1],"span":[59,9,30]},{"path":[4,4,2,0,3],"span":[59,33,34]},{"path":[4,4,2,1],"span":[60,2,33]},{"path":[4,4,2,1,5],"span":[60,2,8]},{"path":[4,4,2,1,1],"span":[60,9,28]},{"path":[4,4,2,1,3],"span":[60,31,32]},{"path":[4,4,2,2],"span":[61,2,22]},{"path":[4,4,2,2,5],"span":[61,2,8]},{"path":[4,4,2,2,1],"span":[61,9,17]},{"path":[4,4,2,2,3],"span":[61,20,21]},{"path":[4,4,2,3],"span":[62,2,18]},{"path":[4,4,2,3,5],"span":[62,2,8]},{"path":[4,4,2,3,1],"span":[62,9,13]},{"path":[4,4,2,3,3],"span":[62,16,17]},{"path":[4,4,2,4],"span":[63,2,26]},{"path":[4,4,2,4,5],"span":[63,2,8]},{"path":[4,4,2,4,1],"span":[63,9,21]},{"path":[4,4,2,4,3],"span":[63,24,25]},{"path":[4,4,2,5],"span":[64,2,23]},{"path":[4,4,2,5,5],"span":[64,2,8]},{"path":[4,4,2,5,1],"span":[64,9,18]},{"path":[4,4,2,5,3],"span":[64,21,22]},{"path":[4,4,2,6],"span":[65,2,21]},{"path":[4,4,2,6,5],"span":[65,2,6]},{"path":[4,4,2,6,1],"span":[65,7,16]},{"path":[4,4,2,6,3],"span":[65,19,20]},{"path":[4,4,2,7],"span":[66,2,43]},{"path":[4,4,2,7,6],"span":[66,2,27]},{"path":[4,4,2,7,1],"span":[66,28,38]},{"path":[4,4,2,7,3],"span":[66,41,42]},{"path":[4,4,2,8],"span":[67,2,41]},{"path":[4,4,2,8,6],"span":[67,2,27]},{"path":[4,4,2,8,1],"span":[67,28,36]},{"path":[4,4,2,8,3],"span":[67,39,40]},{"path":[4,4,2,9],"span":[68,2,23]},{"path":[4,4,2,9,5],"span":[68,2,8]},{"path":[4,4,2,9,1],"span":[68,9,17]},{"path":[4,4,2,9,3],"span":[68,20,22]},{"path":[4,4,2,10],"span":[69,2,30]},{"path":[4,4,2,10,5],"span":[69,2,8]},{"path":[4,4,2,10,1],"span":[69,9,24]},{"path":[4,4,2,10,3],"span":[69,27,29]},{"path":[4,5],"span":[72,0,77,1]},{"path":[4,5,1],"span":[72,8,17]},{"path":[4,5,2,0],"span":[73,2,23]},{"path":[4,5,2,0,5],"span":[73,2,8]},{"path":[4,5,2,0,1],"span":[73,9,18]},{"path":[4,5,2,0,3],"span":[73,21,22]},{"path":[4,5,2,1],"span":[74,2,24]},{"path":[4,5,2,1,5],"span":[74,2,6]},{"path":[4,5,2,1,1],"span":[74,7,19]},{"path":[4,5,2,1,3],"span":[74,22,23]},{"path":[4,5,2,2],"span":[75,2,33]},{"path":[4,5,2,2,5],"span":[75,2,6]},{"path":[4,5,2,2,1],"span":[75,7,28]},{"path":[4,5,2,2,3],"span":[75,31,32]},{"path":[4,5,2,3],"span":[76,2,22]},{"path":[4,5,2,3,5],"span":[76,2,7]},{"path":[4,5,2,3,1],"span":[76,8,17]},{"path":[4,5,2,3,3],"span":[76,20,21]},{"path":[4,6],"span":[79,0,85,1]},{"path":[4,6,1],"span":[79,8,18]},{"path":[4,6,2,0],"span":[80,2,29]},{"path":[4,6,2,0,5],"span":[80,2,8]},{"path":[4,6,2,0,1],"span":[80,9,24]},{"path":[4,6,2,0,3],"span":[80,27,28]},{"path":[4,6,2,1],"span":[81,2,30]},{"path":[4,6,2,1,5],"span":[81,2,8]},{"path":[4,6,2,1,1],"span":[81,9,25]},{"path":[4,6,2,1,3],"span":[81,28,29]},{"path":[4,6,2,2],"span":[82,2,25]},{"path":[4,6,2,2,5],"span":[82,2,8]},{"path":[4,6,2,2,1],"span":[82,9,20]},{"path":[4,6,2,2,3],"span":[82,23,24]},{"path":[4,6,2,3],"span":[83,2,23]},{"path":[4,6,2,3,5],"span":[83,2,8]},{"path":[4,6,2,3,1],"span":[83,9,18]},{"path":[4,6,2,3,3],"span":[83,21,22]},{"path":[4,6,2,4],"span":[84,2,22]},{"path":[4,6,2,4,5],"span":[84,2,7]},{"path":[4,6,2,4,1],"span":[84,8,17]},{"path":[4,6,2,4,3],"span":[84,20,21]},{"path":[4,7],"span":[87,0,90,1]},{"path":[4,7,1],"span":[87,8,15]},{"path":[4,7,2,0],"span":[88,2,37]},{"path":[4,7,2,0,4],"span":[88,2,10]},{"path":[4,7,2,0,6],"span":[88,11,20]},{"path":[4,7,2,0,1],"span":[88,21,32]},{"path":[4,7,2,0,3],"span":[88,35,36]},{"path":[4,7,2,1],"span":[89,2,39]},{"path":[4,7,2,1,4],"span":[89,2,10]},{"path":[4,7,2,1,6],"span":[89,11,21]},{"path":[4,7,2,1,1],"span":[89,22,34]},{"path":[4,7,2,1,3],"span":[89,37,38]},{"path":[4,8],"span":[92,0,98,1]},{"path":[4,8,1],"span":[92,8,38]},{"path":[4,8,2,0],"span":[93,2,28]},{"path":[4,8,2,0,4],"span":[93,2,10]},{"path":[4,8,2,0,6],"span":[93,11,16]},{"path":[4,8,2,0,1],"span":[93,17,23]},{"path":[4,8,2,0,3],"span":[93,26,27]},{"path":[4,8,2,1],"span":[94,2,42]},{"path":[4,8,2,1,4],"span":[94,2,10]},{"path":[4,8,2,1,6],"span":[94,11,23]},{"path":[4,8,2,1,1],"span":[94,24,37]},{"path":[4,8,2,1,3],"span":[94,40,41]},{"path":[4,8,2,2],"span":[95,2,28]},{"path":[4,8,2,2,4],"span":[95,2,10]},{"path":[4,8,2,2,6],"span":[95,11,16]},{"path":[4,8,2,2,1],"span":[95,17,23]},{"path":[4,8,2,2,3],"span":[95,26,27]},{"path":[4,8,2,3],"span":[96,2,37]},{"path":[4,8,2,3,4],"span":[96,2,10]},{"path":[4,8,2,3,6],"span":[96,11,20]},{"path":[4,8,2,3,1],"span":[96,21,32]},{"path":[4,8,2,3,3],"span":[96,35,36]},{"path":[4,8,2,4],"span":[97,2,22]},{"path":[4,8,2,4,6],"span":[97,2,9]},{"path":[4,8,2,4,1],"span":[97,10,17]},{"path":[4,8,2,4,3],"span":[97,20,21]},{"path":[4,9],"span":[100,0,106,1]},{"path":[4,9,1],"span":[100,8,41]},{"path":[4,9,2,0],"span":[101,2,28]},{"path":[4,9,2,0,4],"span":[101,2,10]},{"path":[4,9,2,0,6],"span":[101,11,16]},{"path":[4,9,2,0,1],"span":[101,17,23]},{"path":[4,9,2,0,3],"span":[101,26,27]},{"path":[4,9,2,1],"span":[102,2,42]},{"path":[4,9,2,1,4],"span":[102,2,10]},{"path":[4,9,2,1,6],"span":[102,11,23]},{"path":[4,9,2,1,1],"span":[102,24,37]},{"path":[4,9,2,1,3],"span":[102,40,41]},{"path":[4,9,2,2],"span":[103,2,28]},{"path":[4,9,2,2,4],"span":[103,2,10]},{"path":[4,9,2,2,6],"span":[103,11,16]},{"path":[4,9,2,2,1],"span":[103,17,23]},{"path":[4,9,2,2,3],"span":[103,26,27]},{"path":[4,9,2,3],"span":[104,2,37]},{"path":[4,9,2,3,4],"span":[104,2,10]},{"path":[4,9,2,3,6],"span":[104,11,20]},{"path":[4,9,2,3,1],"span":[104,21,32]},{"path":[4,9,2,3,3],"span":[104,35,36]},{"path":[4,9,2,4],"span":[105,2,22]},{"path":[4,9,2,4,6],"span":[105,2,9]},{"path":[4,9,2,4,1],"span":[105,10,17]},{"path":[4,9,2,4,3],"span":[105,20,21]},{"path":[4,10],"span":[108,0,114,1]},{"path":[4,10,1],"span":[108,8,25]},{"path":[4,10,2,0],"span":[109,2,28]},{"path":[4,10,2,0,4],"span":[109,2,10]},{"path":[4,10,2,0,6],"span":[109,11,16]},{"path":[4,10,2,0,1],"span":[109,17,23]},{"path":[4,10,2,0,3],"span":[109,26,27]},{"path":[4,10,2,1],"span":[110,2,42]},{"path":[4,10,2,1,4],"span":[110,2,10]},{"path":[4,10,2,1,6],"span":[110,11,23]},{"path":[4,10,2,1,1],"span":[110,24,37]},{"path":[4,10,2,1,3],"span":[110,40,41]},{"path":[4,10,2,2],"span":[111,2,28]},{"path":[4,10,2,2,4],"span":[111,2,10]},{"path":[4,10,2,2,6],"span":[111,11,16]},{"path":[4,10,2,2,1],"span":[111,17,23]},{"path":[4,10,2,2,3],"span":[111,26,27]},{"path":[4,10,2,3],"span":[112,2,37]},{"path":[4,10,2,3,4],"span":[112,2,10]},{"path":[4,10,2,3,6],"span":[112,11,20]},{"path":[4,10,2,3,1],"span":[112,21,32]},{"path":[4,10,2,3,3],"span":[112,35,36]},{"path":[4,10,2,4],"span":[113,2,22]},{"path":[4,10,2,4,6],"span":[113,2,9]},{"path":[4,10,2,4,1],"span":[113,10,17]},{"path":[4,10,2,4,3],"span":[113,20,21]}]},"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.20")]
18
- [assembly: System.Reflection.AssemblyInformationalVersionAttribute("0.0.20")]
17
+ [assembly: System.Reflection.AssemblyFileVersionAttribute("0.0.22")]
18
+ [assembly: System.Reflection.AssemblyInformationalVersionAttribute("0.0.22")]
19
19
  [assembly: System.Reflection.AssemblyProductAttribute("Lansweeper Diagrams")]
20
20
  [assembly: System.Reflection.AssemblyTitleAttribute("Lansweeper.Diagrams.GRPC")]
21
- [assembly: System.Reflection.AssemblyVersionAttribute("0.0.20.0")]
21
+ [assembly: System.Reflection.AssemblyVersionAttribute("0.0.22.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
- 86a36e9450850ea77f2232913448f7d092d75443
1
+ a4b3f274565a9de0b6db3bf689809473ef367b3f
@@ -1 +1 @@
1
- e9df37f1de11a30c86c3d7eaf1ebd585140c172b
1
+ 5b9c16776bd1a802844e423de5972c4a8bf215fa
@@ -25,76 +25,77 @@ namespace Lansweeper.Diagrams.GRPC {
25
25
  byte[] descriptorData = global::System.Convert.FromBase64String(
26
26
  string.Concat(
27
27
  "ChRwcm90by9kaWFncmFtcy5wcm90bxIWbGFuc3dlZXBlci5kaWFncmFtcy52",
28
- "MRofZ29vZ2xlL3Byb3RvYnVmL3RpbWVzdGFtcC5wcm90byLjAQoORGlhZ3Jh",
28
+ "MRofZ29vZ2xlL3Byb3RvYnVmL3RpbWVzdGFtcC5wcm90byL7AQoORGlhZ3Jh",
29
29
  "bVJlcXVlc3QSEgoKY2xpZW50X2tleRgBIAEoCRIYChBpbnN0YWxsYXRpb25f",
30
30
  "a2V5GAIgASgJElgKEmFzc2V0X3Njb3Blc19ydWxlcxgDIAMoCzI8LmxhbnN3",
31
31
  "ZWVwZXIuZGlhZ3JhbXMudjEuRGlhZ3JhbVJlcXVlc3QuQXNzZXRTY29wZXNS",
32
- "dWxlc0VudHJ5EhAKCHRyYWNlX2lkGAQgASgJGjcKFUFzc2V0U2NvcGVzUnVs",
33
- "ZXNFbnRyeRILCgNrZXkYASABKAkSDQoFdmFsdWUYAiABKAk6AjgBIrwCCgVB",
34
- "c3NldBISCgp1bmlxdWVfa2V5GAEgASgJEgsKA2tleRgCIAEoCRIMCgRuYW1l",
35
- "GAMgASgJEhEKCXR5cGVfbmFtZRgEIAEoCRIRCglncm91cF9rZXkYBSABKAkS",
36
- "EAoIaXNfZ3JvdXAYBiABKAgSEgoKaXBfYWRkcmVzcxgHIAEoCRIZChF2bV9y",
37
- "dW5uaW5nX3N0YXR1cxgIIAEoCRIQCghjYXRlZ29yeRgJIAEoCRISCgppc192",
38
- "aXJ0dWFsGAogASgIEhUKDWlzX3ZtX3J1bm5pbmcYCyABKAgSMgoGZXJyb3Jz",
39
- "GAwgAygLMiIubGFuc3dlZXBlci5kaWFncmFtcy52MS5Bc3NldEVycm9yEhcK",
40
- "D2lwX2xvY2F0aW9uX2tleRgNIAEoCRITCgttYWNfYWRkcmVzcxgOIAEoCSJ4",
41
- "CgpBc3NldEVycm9yEhAKCGVycm9yX2lkGAEgASgJEhIKCmVycm9yX3RleHQY",
42
- "AiABKAkSFAoMbGFzdF9jaGFuZ2VkGAMgASgJEhUKDWVycm9yX3R5cGVfaWQY",
43
- "BCABKAkSFwoPZXJyb3JfdHlwZV9uYW1lGAUgASgJIkkKBUVycm9yEi8KBHR5",
44
- "cGUYASABKA4yIS5sYW5zd2VlcGVyLmRpYWdyYW1zLnYxLkVycm9yVHlwZRIP",
45
- "CgdtZXNzYWdlGAIgASgJIpYCCgxSZWxhdGlvbnNoaXASHQoVZnJvbV9hc3Nl",
46
- "dF91bmlxdWVfa2V5GAEgASgJEhsKE3RvX2Fzc2V0X3VuaXF1ZV9rZXkYAiAB",
47
- "KAkSEAoIY2F0ZWdvcnkYAyABKAkSDAoEbmFtZRgEIAEoCRIUCgxyZXZlcnNl",
48
- "X25hbWUYBSABKAkSEQoJaWNvbl9uYW1lGAYgASgJEhEKCWlzX21hbnVhbBgH",
49
- "IAEoCBIuCgpzdGFydF9kYXRlGAggASgLMhouZ29vZ2xlLnByb3RvYnVmLlRp",
50
- "bWVzdGFtcBIsCghlbmRfZGF0ZRgJIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5U",
51
- "aW1lc3RhbXASEAoIY29tbWVudHMYCiABKAkiZgoJQXNzZXRUeXBlEhEKCXR5",
52
- "cGVfbmFtZRgBIAEoCRIUCgxpc19tYW5kYXRvcnkYAiABKAgSHQoVaXNfZW5h",
53
- "YmxlZF9ieV9kZWZhdWx0GAMgASgIEhEKCW5iX2Fzc2V0cxgEIAEoBSJ6CgpJ",
54
- "cExvY2F0aW9uEhcKD2lwX2xvY2F0aW9uX2tleRgBIAEoCRIYChBpcF9sb2Nh",
55
- "dGlvbl9uYW1lGAIgASgJEhMKC3JhbmdlX3N0YXJ0GAMgASgJEhEKCXJhbmdl",
56
- "X2VuZBgEIAEoCRIRCgluYl9hc3NldHMYBSABKAUiewoHRmlsdGVycxI2Cgth",
57
- "c3NldF90eXBlcxgBIAMoCzIhLmxhbnN3ZWVwZXIuZGlhZ3JhbXMudjEuQXNz",
58
- "ZXRUeXBlEjgKDGlwX2xvY2F0aW9ucxgCIAMoCzIiLmxhbnN3ZWVwZXIuZGlh",
59
- "Z3JhbXMudjEuSXBMb2NhdGlvbiKlAgoeTmV0d29ya1RvcG9sb2d5RGlhZ3Jh",
60
- "bVJlc3BvbnNlEi0KBmFzc2V0cxgBIAMoCzIdLmxhbnN3ZWVwZXIuZGlhZ3Jh",
61
- "bXMudjEuQXNzZXQSOwoNcmVsYXRpb25zaGlwcxgCIAMoCzIkLmxhbnN3ZWVw",
62
- "ZXIuZGlhZ3JhbXMudjEuUmVsYXRpb25zaGlwEi0KBmVycm9ycxgDIAMoCzId",
63
- "LmxhbnN3ZWVwZXIuZGlhZ3JhbXMudjEuRXJyb3ISNgoLYXNzZXRfdHlwZXMY",
64
- "BCADKAsyIS5sYW5zd2VlcGVyLmRpYWdyYW1zLnYxLkFzc2V0VHlwZRIwCgdm",
65
- "aWx0ZXJzGAUgASgLMh8ubGFuc3dlZXBlci5kaWFncmFtcy52MS5GaWx0ZXJz",
66
- "IqgCCiFWaXJ0dWFsRW52aXJvbm1lbnREaWFncmFtUmVzcG9uc2USLQoGYXNz",
67
- "ZXRzGAEgAygLMh0ubGFuc3dlZXBlci5kaWFncmFtcy52MS5Bc3NldBI7Cg1y",
68
- "ZWxhdGlvbnNoaXBzGAIgAygLMiQubGFuc3dlZXBlci5kaWFncmFtcy52MS5S",
69
- "ZWxhdGlvbnNoaXASLQoGZXJyb3JzGAMgAygLMh0ubGFuc3dlZXBlci5kaWFn",
70
- "cmFtcy52MS5FcnJvchI2Cgthc3NldF90eXBlcxgEIAMoCzIhLmxhbnN3ZWVw",
71
- "ZXIuZGlhZ3JhbXMudjEuQXNzZXRUeXBlEjAKB2ZpbHRlcnMYBSABKAsyHy5s",
72
- "YW5zd2VlcGVyLmRpYWdyYW1zLnYxLkZpbHRlcnMimAIKEU90RGlhZ3JhbVJl",
73
- "c3BvbnNlEi0KBmFzc2V0cxgBIAMoCzIdLmxhbnN3ZWVwZXIuZGlhZ3JhbXMu",
74
- "djEuQXNzZXQSOwoNcmVsYXRpb25zaGlwcxgCIAMoCzIkLmxhbnN3ZWVwZXIu",
75
- "ZGlhZ3JhbXMudjEuUmVsYXRpb25zaGlwEi0KBmVycm9ycxgDIAMoCzIdLmxh",
76
- "bnN3ZWVwZXIuZGlhZ3JhbXMudjEuRXJyb3ISNgoLYXNzZXRfdHlwZXMYBCAD",
77
- "KAsyIS5sYW5zd2VlcGVyLmRpYWdyYW1zLnYxLkFzc2V0VHlwZRIwCgdmaWx0",
78
- "ZXJzGAUgASgLMh8ubGFuc3dlZXBlci5kaWFncmFtcy52MS5GaWx0ZXJzKjwK",
79
- "CUVycm9yVHlwZRILCgdVTktOT1dOEAASFAoQR0VORVJBVElPTl9FUlJPUhAB",
80
- "EgwKCE5PX0FTU0VUEAIy+wIKD0RpYWdyYW1zU2VydmljZRJ9ChlHZXROZXR3",
81
- "b3JrVG9wb2xvZ3lEaWFncmFtEiYubGFuc3dlZXBlci5kaWFncmFtcy52MS5E",
82
- "aWFncmFtUmVxdWVzdBo2LmxhbnN3ZWVwZXIuZGlhZ3JhbXMudjEuTmV0d29y",
83
- "a1RvcG9sb2d5RGlhZ3JhbVJlc3BvbnNlIgASgwEKHEdldFZpcnR1YWxFbnZp",
84
- "cm9ubWVudERpYWdyYW0SJi5sYW5zd2VlcGVyLmRpYWdyYW1zLnYxLkRpYWdy",
85
- "YW1SZXF1ZXN0GjkubGFuc3dlZXBlci5kaWFncmFtcy52MS5WaXJ0dWFsRW52",
86
- "aXJvbm1lbnREaWFncmFtUmVzcG9uc2UiABJjCgxHZXRPdERpYWdyYW0SJi5s",
87
- "YW5zd2VlcGVyLmRpYWdyYW1zLnYxLkRpYWdyYW1SZXF1ZXN0GikubGFuc3dl",
88
- "ZXBlci5kaWFncmFtcy52MS5PdERpYWdyYW1SZXNwb25zZSIAQhuqAhhMYW5z",
89
- "d2VlcGVyLkRpYWdyYW1zLkdSUENiBnByb3RvMw=="));
32
+ "dWxlc0VudHJ5EhAKCHRyYWNlX2lkGAQgASgJEhYKDmlwX2xvY2F0aW9uX2lk",
33
+ "GAUgASgJGjcKFUFzc2V0U2NvcGVzUnVsZXNFbnRyeRILCgNrZXkYASABKAkS",
34
+ "DQoFdmFsdWUYAiABKAk6AjgBIrwCCgVBc3NldBISCgp1bmlxdWVfa2V5GAEg",
35
+ "ASgJEgsKA2tleRgCIAEoCRIMCgRuYW1lGAMgASgJEhEKCXR5cGVfbmFtZRgE",
36
+ "IAEoCRIRCglncm91cF9rZXkYBSABKAkSEAoIaXNfZ3JvdXAYBiABKAgSEgoK",
37
+ "aXBfYWRkcmVzcxgHIAEoCRIZChF2bV9ydW5uaW5nX3N0YXR1cxgIIAEoCRIQ",
38
+ "CghjYXRlZ29yeRgJIAEoCRISCgppc192aXJ0dWFsGAogASgIEhUKDWlzX3Zt",
39
+ "X3J1bm5pbmcYCyABKAgSMgoGZXJyb3JzGAwgAygLMiIubGFuc3dlZXBlci5k",
40
+ "aWFncmFtcy52MS5Bc3NldEVycm9yEhcKD2lwX2xvY2F0aW9uX2tleRgNIAEo",
41
+ "CRITCgttYWNfYWRkcmVzcxgOIAEoCSJ4CgpBc3NldEVycm9yEhAKCGVycm9y",
42
+ "X2lkGAEgASgJEhIKCmVycm9yX3RleHQYAiABKAkSFAoMbGFzdF9jaGFuZ2Vk",
43
+ "GAMgASgJEhUKDWVycm9yX3R5cGVfaWQYBCABKAkSFwoPZXJyb3JfdHlwZV9u",
44
+ "YW1lGAUgASgJIkkKBUVycm9yEi8KBHR5cGUYASABKA4yIS5sYW5zd2VlcGVy",
45
+ "LmRpYWdyYW1zLnYxLkVycm9yVHlwZRIPCgdtZXNzYWdlGAIgASgJIq8CCgxS",
46
+ "ZWxhdGlvbnNoaXASHQoVZnJvbV9hc3NldF91bmlxdWVfa2V5GAEgASgJEhsK",
47
+ "E3RvX2Fzc2V0X3VuaXF1ZV9rZXkYAiABKAkSEAoIY2F0ZWdvcnkYAyABKAkS",
48
+ "DAoEbmFtZRgEIAEoCRIUCgxyZXZlcnNlX25hbWUYBSABKAkSEQoJaWNvbl9u",
49
+ "YW1lGAYgASgJEhEKCWlzX21hbnVhbBgHIAEoCBIuCgpzdGFydF9kYXRlGAgg",
50
+ "ASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBIsCghlbmRfZGF0ZRgJ",
51
+ "IAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXASEAoIY29tbWVudHMY",
52
+ "CiABKAkSFwoPZ2VuZXJhdGlvbl90eXBlGAsgASgJImYKCUFzc2V0VHlwZRIR",
53
+ "Cgl0eXBlX25hbWUYASABKAkSFAoMaXNfbWFuZGF0b3J5GAIgASgIEh0KFWlz",
54
+ "X2VuYWJsZWRfYnlfZGVmYXVsdBgDIAEoCBIRCgluYl9hc3NldHMYBCABKAUi",
55
+ "egoKSXBMb2NhdGlvbhIXCg9pcF9sb2NhdGlvbl9rZXkYASABKAkSGAoQaXBf",
56
+ "bG9jYXRpb25fbmFtZRgCIAEoCRITCgtyYW5nZV9zdGFydBgDIAEoCRIRCgly",
57
+ "YW5nZV9lbmQYBCABKAkSEQoJbmJfYXNzZXRzGAUgASgFInsKB0ZpbHRlcnMS",
58
+ "NgoLYXNzZXRfdHlwZXMYASADKAsyIS5sYW5zd2VlcGVyLmRpYWdyYW1zLnYx",
59
+ "LkFzc2V0VHlwZRI4CgxpcF9sb2NhdGlvbnMYAiADKAsyIi5sYW5zd2VlcGVy",
60
+ "LmRpYWdyYW1zLnYxLklwTG9jYXRpb24ipQIKHk5ldHdvcmtUb3BvbG9neURp",
61
+ "YWdyYW1SZXNwb25zZRItCgZhc3NldHMYASADKAsyHS5sYW5zd2VlcGVyLmRp",
62
+ "YWdyYW1zLnYxLkFzc2V0EjsKDXJlbGF0aW9uc2hpcHMYAiADKAsyJC5sYW5z",
63
+ "d2VlcGVyLmRpYWdyYW1zLnYxLlJlbGF0aW9uc2hpcBItCgZlcnJvcnMYAyAD",
64
+ "KAsyHS5sYW5zd2VlcGVyLmRpYWdyYW1zLnYxLkVycm9yEjYKC2Fzc2V0X3R5",
65
+ "cGVzGAQgAygLMiEubGFuc3dlZXBlci5kaWFncmFtcy52MS5Bc3NldFR5cGUS",
66
+ "MAoHZmlsdGVycxgFIAEoCzIfLmxhbnN3ZWVwZXIuZGlhZ3JhbXMudjEuRmls",
67
+ "dGVycyKoAgohVmlydHVhbEVudmlyb25tZW50RGlhZ3JhbVJlc3BvbnNlEi0K",
68
+ "BmFzc2V0cxgBIAMoCzIdLmxhbnN3ZWVwZXIuZGlhZ3JhbXMudjEuQXNzZXQS",
69
+ "OwoNcmVsYXRpb25zaGlwcxgCIAMoCzIkLmxhbnN3ZWVwZXIuZGlhZ3JhbXMu",
70
+ "djEuUmVsYXRpb25zaGlwEi0KBmVycm9ycxgDIAMoCzIdLmxhbnN3ZWVwZXIu",
71
+ "ZGlhZ3JhbXMudjEuRXJyb3ISNgoLYXNzZXRfdHlwZXMYBCADKAsyIS5sYW5z",
72
+ "d2VlcGVyLmRpYWdyYW1zLnYxLkFzc2V0VHlwZRIwCgdmaWx0ZXJzGAUgASgL",
73
+ "Mh8ubGFuc3dlZXBlci5kaWFncmFtcy52MS5GaWx0ZXJzIpgCChFPdERpYWdy",
74
+ "YW1SZXNwb25zZRItCgZhc3NldHMYASADKAsyHS5sYW5zd2VlcGVyLmRpYWdy",
75
+ "YW1zLnYxLkFzc2V0EjsKDXJlbGF0aW9uc2hpcHMYAiADKAsyJC5sYW5zd2Vl",
76
+ "cGVyLmRpYWdyYW1zLnYxLlJlbGF0aW9uc2hpcBItCgZlcnJvcnMYAyADKAsy",
77
+ "HS5sYW5zd2VlcGVyLmRpYWdyYW1zLnYxLkVycm9yEjYKC2Fzc2V0X3R5cGVz",
78
+ "GAQgAygLMiEubGFuc3dlZXBlci5kaWFncmFtcy52MS5Bc3NldFR5cGUSMAoH",
79
+ "ZmlsdGVycxgFIAEoCzIfLmxhbnN3ZWVwZXIuZGlhZ3JhbXMudjEuRmlsdGVy",
80
+ "cyo8CglFcnJvclR5cGUSCwoHVU5LTk9XThAAEhQKEEdFTkVSQVRJT05fRVJS",
81
+ "T1IQARIMCghOT19BU1NFVBACMvsCCg9EaWFncmFtc1NlcnZpY2USfQoZR2V0",
82
+ "TmV0d29ya1RvcG9sb2d5RGlhZ3JhbRImLmxhbnN3ZWVwZXIuZGlhZ3JhbXMu",
83
+ "djEuRGlhZ3JhbVJlcXVlc3QaNi5sYW5zd2VlcGVyLmRpYWdyYW1zLnYxLk5l",
84
+ "dHdvcmtUb3BvbG9neURpYWdyYW1SZXNwb25zZSIAEoMBChxHZXRWaXJ0dWFs",
85
+ "RW52aXJvbm1lbnREaWFncmFtEiYubGFuc3dlZXBlci5kaWFncmFtcy52MS5E",
86
+ "aWFncmFtUmVxdWVzdBo5LmxhbnN3ZWVwZXIuZGlhZ3JhbXMudjEuVmlydHVh",
87
+ "bEVudmlyb25tZW50RGlhZ3JhbVJlc3BvbnNlIgASYwoMR2V0T3REaWFncmFt",
88
+ "EiYubGFuc3dlZXBlci5kaWFncmFtcy52MS5EaWFncmFtUmVxdWVzdBopLmxh",
89
+ "bnN3ZWVwZXIuZGlhZ3JhbXMudjEuT3REaWFncmFtUmVzcG9uc2UiAEIbqgIY",
90
+ "TGFuc3dlZXBlci5EaWFncmFtcy5HUlBDYgZwcm90bzM="));
90
91
  descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
91
92
  new pbr::FileDescriptor[] { global::Google.Protobuf.WellKnownTypes.TimestampReflection.Descriptor, },
92
93
  new pbr::GeneratedClrTypeInfo(new[] {typeof(global::Lansweeper.Diagrams.GRPC.ErrorType), }, null, new pbr::GeneratedClrTypeInfo[] {
93
- new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.Diagrams.GRPC.DiagramRequest), global::Lansweeper.Diagrams.GRPC.DiagramRequest.Parser, new[]{ "ClientKey", "InstallationKey", "AssetScopesRules", "TraceId" }, null, null, null, new pbr::GeneratedClrTypeInfo[] { null, }),
94
+ new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.Diagrams.GRPC.DiagramRequest), global::Lansweeper.Diagrams.GRPC.DiagramRequest.Parser, new[]{ "ClientKey", "InstallationKey", "AssetScopesRules", "TraceId", "IpLocationId" }, null, null, null, new pbr::GeneratedClrTypeInfo[] { null, }),
94
95
  new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.Diagrams.GRPC.Asset), global::Lansweeper.Diagrams.GRPC.Asset.Parser, new[]{ "UniqueKey", "Key", "Name", "TypeName", "GroupKey", "IsGroup", "IpAddress", "VmRunningStatus", "Category", "IsVirtual", "IsVmRunning", "Errors", "IpLocationKey", "MacAddress" }, null, null, null, null),
95
96
  new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.Diagrams.GRPC.AssetError), global::Lansweeper.Diagrams.GRPC.AssetError.Parser, new[]{ "ErrorId", "ErrorText", "LastChanged", "ErrorTypeId", "ErrorTypeName" }, null, null, null, null),
96
97
  new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.Diagrams.GRPC.Error), global::Lansweeper.Diagrams.GRPC.Error.Parser, new[]{ "Type", "Message" }, null, null, null, null),
97
- new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.Diagrams.GRPC.Relationship), global::Lansweeper.Diagrams.GRPC.Relationship.Parser, new[]{ "FromAssetUniqueKey", "ToAssetUniqueKey", "Category", "Name", "ReverseName", "IconName", "IsManual", "StartDate", "EndDate", "Comments" }, null, null, null, null),
98
+ new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.Diagrams.GRPC.Relationship), global::Lansweeper.Diagrams.GRPC.Relationship.Parser, new[]{ "FromAssetUniqueKey", "ToAssetUniqueKey", "Category", "Name", "ReverseName", "IconName", "IsManual", "StartDate", "EndDate", "Comments", "GenerationType" }, null, null, null, null),
98
99
  new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.Diagrams.GRPC.AssetType), global::Lansweeper.Diagrams.GRPC.AssetType.Parser, new[]{ "TypeName", "IsMandatory", "IsEnabledByDefault", "NbAssets" }, null, null, null, null),
99
100
  new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.Diagrams.GRPC.IpLocation), global::Lansweeper.Diagrams.GRPC.IpLocation.Parser, new[]{ "IpLocationKey", "IpLocationName", "RangeStart", "RangeEnd", "NbAssets" }, null, null, null, null),
100
101
  new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.Diagrams.GRPC.Filters), global::Lansweeper.Diagrams.GRPC.Filters.Parser, new[]{ "AssetTypes", "IpLocations" }, null, null, null, null),
@@ -154,6 +155,7 @@ namespace Lansweeper.Diagrams.GRPC {
154
155
  installationKey_ = other.installationKey_;
155
156
  assetScopesRules_ = other.assetScopesRules_.Clone();
156
157
  traceId_ = other.traceId_;
158
+ ipLocationId_ = other.ipLocationId_;
157
159
  _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
158
160
  }
159
161
 
@@ -210,6 +212,18 @@ namespace Lansweeper.Diagrams.GRPC {
210
212
  }
211
213
  }
212
214
 
215
+ /// <summary>Field number for the "ip_location_id" field.</summary>
216
+ public const int IpLocationIdFieldNumber = 5;
217
+ private string ipLocationId_ = "";
218
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
219
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
220
+ public string IpLocationId {
221
+ get { return ipLocationId_; }
222
+ set {
223
+ ipLocationId_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
224
+ }
225
+ }
226
+
213
227
  [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
214
228
  [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
215
229
  public override bool Equals(object other) {
@@ -229,6 +243,7 @@ namespace Lansweeper.Diagrams.GRPC {
229
243
  if (InstallationKey != other.InstallationKey) return false;
230
244
  if (!AssetScopesRules.Equals(other.AssetScopesRules)) return false;
231
245
  if (TraceId != other.TraceId) return false;
246
+ if (IpLocationId != other.IpLocationId) return false;
232
247
  return Equals(_unknownFields, other._unknownFields);
233
248
  }
234
249
 
@@ -240,6 +255,7 @@ namespace Lansweeper.Diagrams.GRPC {
240
255
  if (InstallationKey.Length != 0) hash ^= InstallationKey.GetHashCode();
241
256
  hash ^= AssetScopesRules.GetHashCode();
242
257
  if (TraceId.Length != 0) hash ^= TraceId.GetHashCode();
258
+ if (IpLocationId.Length != 0) hash ^= IpLocationId.GetHashCode();
243
259
  if (_unknownFields != null) {
244
260
  hash ^= _unknownFields.GetHashCode();
245
261
  }
@@ -271,6 +287,10 @@ namespace Lansweeper.Diagrams.GRPC {
271
287
  output.WriteRawTag(34);
272
288
  output.WriteString(TraceId);
273
289
  }
290
+ if (IpLocationId.Length != 0) {
291
+ output.WriteRawTag(42);
292
+ output.WriteString(IpLocationId);
293
+ }
274
294
  if (_unknownFields != null) {
275
295
  _unknownFields.WriteTo(output);
276
296
  }
@@ -294,6 +314,10 @@ namespace Lansweeper.Diagrams.GRPC {
294
314
  output.WriteRawTag(34);
295
315
  output.WriteString(TraceId);
296
316
  }
317
+ if (IpLocationId.Length != 0) {
318
+ output.WriteRawTag(42);
319
+ output.WriteString(IpLocationId);
320
+ }
297
321
  if (_unknownFields != null) {
298
322
  _unknownFields.WriteTo(ref output);
299
323
  }
@@ -314,6 +338,9 @@ namespace Lansweeper.Diagrams.GRPC {
314
338
  if (TraceId.Length != 0) {
315
339
  size += 1 + pb::CodedOutputStream.ComputeStringSize(TraceId);
316
340
  }
341
+ if (IpLocationId.Length != 0) {
342
+ size += 1 + pb::CodedOutputStream.ComputeStringSize(IpLocationId);
343
+ }
317
344
  if (_unknownFields != null) {
318
345
  size += _unknownFields.CalculateSize();
319
346
  }
@@ -336,6 +363,9 @@ namespace Lansweeper.Diagrams.GRPC {
336
363
  if (other.TraceId.Length != 0) {
337
364
  TraceId = other.TraceId;
338
365
  }
366
+ if (other.IpLocationId.Length != 0) {
367
+ IpLocationId = other.IpLocationId;
368
+ }
339
369
  _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
340
370
  }
341
371
 
@@ -367,6 +397,10 @@ namespace Lansweeper.Diagrams.GRPC {
367
397
  TraceId = input.ReadString();
368
398
  break;
369
399
  }
400
+ case 42: {
401
+ IpLocationId = input.ReadString();
402
+ break;
403
+ }
370
404
  }
371
405
  }
372
406
  #endif
@@ -398,6 +432,10 @@ namespace Lansweeper.Diagrams.GRPC {
398
432
  TraceId = input.ReadString();
399
433
  break;
400
434
  }
435
+ case 42: {
436
+ IpLocationId = input.ReadString();
437
+ break;
438
+ }
401
439
  }
402
440
  }
403
441
  }
@@ -1671,6 +1709,7 @@ namespace Lansweeper.Diagrams.GRPC {
1671
1709
  startDate_ = other.startDate_ != null ? other.startDate_.Clone() : null;
1672
1710
  endDate_ = other.endDate_ != null ? other.endDate_.Clone() : null;
1673
1711
  comments_ = other.comments_;
1712
+ generationType_ = other.generationType_;
1674
1713
  _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
1675
1714
  }
1676
1715
 
@@ -1800,6 +1839,18 @@ namespace Lansweeper.Diagrams.GRPC {
1800
1839
  }
1801
1840
  }
1802
1841
 
1842
+ /// <summary>Field number for the "generation_type" field.</summary>
1843
+ public const int GenerationTypeFieldNumber = 11;
1844
+ private string generationType_ = "";
1845
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
1846
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
1847
+ public string GenerationType {
1848
+ get { return generationType_; }
1849
+ set {
1850
+ generationType_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
1851
+ }
1852
+ }
1853
+
1803
1854
  [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
1804
1855
  [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
1805
1856
  public override bool Equals(object other) {
@@ -1825,6 +1876,7 @@ namespace Lansweeper.Diagrams.GRPC {
1825
1876
  if (!object.Equals(StartDate, other.StartDate)) return false;
1826
1877
  if (!object.Equals(EndDate, other.EndDate)) return false;
1827
1878
  if (Comments != other.Comments) return false;
1879
+ if (GenerationType != other.GenerationType) return false;
1828
1880
  return Equals(_unknownFields, other._unknownFields);
1829
1881
  }
1830
1882
 
@@ -1842,6 +1894,7 @@ namespace Lansweeper.Diagrams.GRPC {
1842
1894
  if (startDate_ != null) hash ^= StartDate.GetHashCode();
1843
1895
  if (endDate_ != null) hash ^= EndDate.GetHashCode();
1844
1896
  if (Comments.Length != 0) hash ^= Comments.GetHashCode();
1897
+ if (GenerationType.Length != 0) hash ^= GenerationType.GetHashCode();
1845
1898
  if (_unknownFields != null) {
1846
1899
  hash ^= _unknownFields.GetHashCode();
1847
1900
  }
@@ -1900,6 +1953,10 @@ namespace Lansweeper.Diagrams.GRPC {
1900
1953
  output.WriteRawTag(82);
1901
1954
  output.WriteString(Comments);
1902
1955
  }
1956
+ if (GenerationType.Length != 0) {
1957
+ output.WriteRawTag(90);
1958
+ output.WriteString(GenerationType);
1959
+ }
1903
1960
  if (_unknownFields != null) {
1904
1961
  _unknownFields.WriteTo(output);
1905
1962
  }
@@ -1950,6 +2007,10 @@ namespace Lansweeper.Diagrams.GRPC {
1950
2007
  output.WriteRawTag(82);
1951
2008
  output.WriteString(Comments);
1952
2009
  }
2010
+ if (GenerationType.Length != 0) {
2011
+ output.WriteRawTag(90);
2012
+ output.WriteString(GenerationType);
2013
+ }
1953
2014
  if (_unknownFields != null) {
1954
2015
  _unknownFields.WriteTo(ref output);
1955
2016
  }
@@ -1990,6 +2051,9 @@ namespace Lansweeper.Diagrams.GRPC {
1990
2051
  if (Comments.Length != 0) {
1991
2052
  size += 1 + pb::CodedOutputStream.ComputeStringSize(Comments);
1992
2053
  }
2054
+ if (GenerationType.Length != 0) {
2055
+ size += 1 + pb::CodedOutputStream.ComputeStringSize(GenerationType);
2056
+ }
1993
2057
  if (_unknownFields != null) {
1994
2058
  size += _unknownFields.CalculateSize();
1995
2059
  }
@@ -2038,6 +2102,9 @@ namespace Lansweeper.Diagrams.GRPC {
2038
2102
  if (other.Comments.Length != 0) {
2039
2103
  Comments = other.Comments;
2040
2104
  }
2105
+ if (other.GenerationType.Length != 0) {
2106
+ GenerationType = other.GenerationType;
2107
+ }
2041
2108
  _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
2042
2109
  }
2043
2110
 
@@ -2099,6 +2166,10 @@ namespace Lansweeper.Diagrams.GRPC {
2099
2166
  Comments = input.ReadString();
2100
2167
  break;
2101
2168
  }
2169
+ case 90: {
2170
+ GenerationType = input.ReadString();
2171
+ break;
2172
+ }
2102
2173
  }
2103
2174
  }
2104
2175
  #endif
@@ -2160,6 +2231,10 @@ namespace Lansweeper.Diagrams.GRPC {
2160
2231
  Comments = input.ReadString();
2161
2232
  break;
2162
2233
  }
2234
+ case 90: {
2235
+ GenerationType = input.ReadString();
2236
+ break;
2237
+ }
2163
2238
  }
2164
2239
  }
2165
2240
  }
@@ -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.20",
8
+ "version": "0.0.22",
9
9
  "restore": {
10
10
  "projectUniqueName": "/home/circleci/project/packages/diagrams/grpc/Lansweeper.Diagrams.GRPC.csproj",
11
11
  "projectName": "Lansweeper.Diagrams.GRPC",
@@ -73,22 +73,12 @@
73
73
  ],
74
74
  "assetTargetFallback": true,
75
75
  "warn": true,
76
- "downloadDependencies": [
77
- {
78
- "name": "Microsoft.AspNetCore.App.Ref",
79
- "version": "[6.0.12, 6.0.12]"
80
- },
81
- {
82
- "name": "Microsoft.NETCore.App.Ref",
83
- "version": "[6.0.12, 6.0.12]"
84
- }
85
- ],
86
76
  "frameworkReferences": {
87
77
  "Microsoft.NETCore.App": {
88
78
  "privateAssets": "all"
89
79
  }
90
80
  },
91
- "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/6.0.404/RuntimeIdentifierGraph.json"
81
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/6.0.405/RuntimeIdentifierGraph.json"
92
82
  }
93
83
  }
94
84
  }
@@ -305,7 +305,7 @@
305
305
  "/home/circleci/.nuget/packages/": {}
306
306
  },
307
307
  "project": {
308
- "version": "0.0.20",
308
+ "version": "0.0.22",
309
309
  "restore": {
310
310
  "projectUniqueName": "/home/circleci/project/packages/diagrams/grpc/Lansweeper.Diagrams.GRPC.csproj",
311
311
  "projectName": "Lansweeper.Diagrams.GRPC",
@@ -373,22 +373,12 @@
373
373
  ],
374
374
  "assetTargetFallback": true,
375
375
  "warn": true,
376
- "downloadDependencies": [
377
- {
378
- "name": "Microsoft.AspNetCore.App.Ref",
379
- "version": "[6.0.12, 6.0.12]"
380
- },
381
- {
382
- "name": "Microsoft.NETCore.App.Ref",
383
- "version": "[6.0.12, 6.0.12]"
384
- }
385
- ],
386
376
  "frameworkReferences": {
387
377
  "Microsoft.NETCore.App": {
388
378
  "privateAssets": "all"
389
379
  }
390
380
  },
391
- "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/6.0.404/RuntimeIdentifierGraph.json"
381
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/6.0.405/RuntimeIdentifierGraph.json"
392
382
  }
393
383
  }
394
384
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": 2,
3
- "dgSpecHash": "f+XLhFysfQZ1H3fnVyr2M45Glb1ezCEwTHz0r+LLec9G4uHoorSOkwyk6Dflvd5mscM11Ac/aY2giG6hFd/EOA==",
3
+ "dgSpecHash": "kJmuPlEmbpTb64AIwfvf1OdSFgOb6n9r9KiueO7GxPEo4fbPiiDdO2hPZfdzFTcEUBsyaHHf1ulsv/XKam6rfw==",
4
4
  "success": true,
5
5
  "projectFilePath": "/home/circleci/project/packages/diagrams/grpc/Lansweeper.Diagrams.GRPC.csproj",
6
6
  "expectedPackageFiles": [
@@ -10,9 +10,7 @@
10
10
  "/home/circleci/.nuget/packages/grpc.core.api/2.46.1/grpc.core.api.2.46.1.nupkg.sha512",
11
11
  "/home/circleci/.nuget/packages/grpc.tools/2.46.1/grpc.tools.2.46.1.nupkg.sha512",
12
12
  "/home/circleci/.nuget/packages/system.memory/4.5.3/system.memory.4.5.3.nupkg.sha512",
13
- "/home/circleci/.nuget/packages/system.runtime.compilerservices.unsafe/4.5.2/system.runtime.compilerservices.unsafe.4.5.2.nupkg.sha512",
14
- "/home/circleci/.nuget/packages/microsoft.netcore.app.ref/6.0.12/microsoft.netcore.app.ref.6.0.12.nupkg.sha512",
15
- "/home/circleci/.nuget/packages/microsoft.aspnetcore.app.ref/6.0.12/microsoft.aspnetcore.app.ref.6.0.12.nupkg.sha512"
13
+ "/home/circleci/.nuget/packages/system.runtime.compilerservices.unsafe/4.5.2/system.runtime.compilerservices.unsafe.4.5.2.nupkg.sha512"
16
14
  ],
17
15
  "logs": []
18
16
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lansweeper/diagrams-grpc",
3
- "version": "0.0.21",
3
+ "version": "0.0.23",
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": "22da7645f87ee45e02dba10f54033d40a09c1ab4"
15
+ "gitHead": "afa022544cc41c250f529be6301997204c02d48a"
16
16
  }
@@ -17,6 +17,7 @@ message DiagramRequest {
17
17
  string installation_key = 2;
18
18
  map<string, string> asset_scopes_rules = 3;
19
19
  string trace_id = 4;
20
+ string ip_location_id = 5;
20
21
  }
21
22
 
22
23
  message Asset {
@@ -66,6 +67,7 @@ message Relationship {
66
67
  google.protobuf.Timestamp start_date = 8;
67
68
  google.protobuf.Timestamp end_date = 9;
68
69
  string comments = 10;
70
+ string generation_type = 11;
69
71
  }
70
72
 
71
73
  message AssetType {