@lansweeper/diagrams-grpc 0.0.33 → 0.0.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/Lansweeper.Diagrams.GRPC.csproj +3 -3
- package/bin/Debug/net6.0/Lansweeper.Diagrams.GRPC.deps.json +2 -2
- package/bin/Debug/net6.0/Lansweeper.Diagrams.GRPC.dll +0 -0
- package/bin/Debug/net6.0/Lansweeper.Diagrams.GRPC.pdb +0 -0
- package/gen-proto/diagrams_pb.d.ts +9 -0
- package/gen-proto/diagrams_pb.js +92 -2
- package/gen-proto/image.json +1 -1
- package/obj/Debug/net6.0/Lansweeper.Diagrams.GRPC.AssemblyInfo.cs +3 -3
- package/obj/Debug/net6.0/Lansweeper.Diagrams.GRPC.AssemblyInfoInputs.cache +1 -1
- package/obj/Debug/net6.0/Lansweeper.Diagrams.GRPC.csproj.AssemblyReference.cache +0 -0
- package/obj/Debug/net6.0/Lansweeper.Diagrams.GRPC.csproj.CoreCompileInputs.cache +1 -1
- package/obj/Debug/net6.0/Lansweeper.Diagrams.GRPC.dll +0 -0
- package/obj/Debug/net6.0/Lansweeper.Diagrams.GRPC.pdb +0 -0
- package/obj/Debug/net6.0/proto/Diagrams.cs +182 -69
- package/obj/Debug/net6.0/ref/Lansweeper.Diagrams.GRPC.dll +0 -0
- package/obj/Debug/net6.0/refint/Lansweeper.Diagrams.GRPC.dll +0 -0
- package/obj/Lansweeper.Diagrams.GRPC.csproj.nuget.dgspec.json +2 -2
- package/obj/Lansweeper.Diagrams.GRPC.csproj.nuget.g.props +1 -1
- package/obj/project.assets.json +2 -2
- package/obj/project.nuget.cache +1 -1
- package/package.json +2 -2
- package/proto/diagrams.proto +3 -0
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.35](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/diagrams-grpc@0.0.34...@lansweeper/diagrams-grpc@0.0.35) (2023-02-27)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @lansweeper/diagrams-grpc
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [0.0.34](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/diagrams-grpc@0.0.33...@lansweeper/diagrams-grpc@0.0.34) (2023-02-15)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @lansweeper/diagrams-grpc
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
## [0.0.33](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/diagrams-grpc@0.0.32...@lansweeper/diagrams-grpc@0.0.33) (2023-02-08)
|
|
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.
|
|
11
|
-
<Version>0.0.
|
|
12
|
-
<FileVersion>0.0.
|
|
10
|
+
<PackageVersion>0.0.34</PackageVersion>
|
|
11
|
+
<Version>0.0.34</Version>
|
|
12
|
+
<FileVersion>0.0.34</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.
|
|
9
|
+
"Lansweeper.Diagrams.GRPC/0.0.34": {
|
|
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.
|
|
94
|
+
"Lansweeper.Diagrams.GRPC/0.0.34": {
|
|
95
95
|
"type": "project",
|
|
96
96
|
"serviceable": false,
|
|
97
97
|
"sha512": ""
|
|
Binary file
|
|
Binary file
|
|
@@ -97,6 +97,8 @@ export class Asset extends jspb.Message {
|
|
|
97
97
|
setMacAddress(value: string): Asset;
|
|
98
98
|
getState(): string;
|
|
99
99
|
setState(value: string): Asset;
|
|
100
|
+
getHasUnscannedConnectedDevices(): boolean;
|
|
101
|
+
setHasUnscannedConnectedDevices(value: boolean): Asset;
|
|
100
102
|
|
|
101
103
|
serializeBinary(): Uint8Array;
|
|
102
104
|
toObject(includeInstance?: boolean): Asset.AsObject;
|
|
@@ -125,6 +127,7 @@ export namespace Asset {
|
|
|
125
127
|
ipLocationKey: string,
|
|
126
128
|
macAddress: string,
|
|
127
129
|
state: string,
|
|
130
|
+
hasUnscannedConnectedDevices: boolean,
|
|
128
131
|
}
|
|
129
132
|
}
|
|
130
133
|
|
|
@@ -210,6 +213,10 @@ export class Relationship extends jspb.Message {
|
|
|
210
213
|
setGenerationType(value: string): Relationship;
|
|
211
214
|
getInterfaceType(): string;
|
|
212
215
|
setInterfaceType(value: string): Relationship;
|
|
216
|
+
getSnmpInterfaceDescription(): string;
|
|
217
|
+
setSnmpInterfaceDescription(value: string): Relationship;
|
|
218
|
+
getSnmpInterfaceSpeed(): string;
|
|
219
|
+
setSnmpInterfaceSpeed(value: string): Relationship;
|
|
213
220
|
|
|
214
221
|
serializeBinary(): Uint8Array;
|
|
215
222
|
toObject(includeInstance?: boolean): Relationship.AsObject;
|
|
@@ -233,6 +240,8 @@ export namespace Relationship {
|
|
|
233
240
|
comments: string,
|
|
234
241
|
generationType: string,
|
|
235
242
|
interfaceType: string,
|
|
243
|
+
snmpInterfaceDescription: string,
|
|
244
|
+
snmpInterfaceSpeed: string,
|
|
236
245
|
}
|
|
237
246
|
}
|
|
238
247
|
|
package/gen-proto/diagrams_pb.js
CHANGED
|
@@ -795,7 +795,8 @@ proto.lansweeper.diagrams.v1.Asset.toObject = function(includeInstance, msg) {
|
|
|
795
795
|
proto.lansweeper.diagrams.v1.AssetError.toObject, includeInstance),
|
|
796
796
|
ipLocationKey: jspb.Message.getFieldWithDefault(msg, 13, ""),
|
|
797
797
|
macAddress: jspb.Message.getFieldWithDefault(msg, 14, ""),
|
|
798
|
-
state: jspb.Message.getFieldWithDefault(msg, 15, "")
|
|
798
|
+
state: jspb.Message.getFieldWithDefault(msg, 15, ""),
|
|
799
|
+
hasUnscannedConnectedDevices: jspb.Message.getBooleanFieldWithDefault(msg, 16, false)
|
|
799
800
|
};
|
|
800
801
|
|
|
801
802
|
if (includeInstance) {
|
|
@@ -893,6 +894,10 @@ proto.lansweeper.diagrams.v1.Asset.deserializeBinaryFromReader = function(msg, r
|
|
|
893
894
|
var value = /** @type {string} */ (reader.readString());
|
|
894
895
|
msg.setState(value);
|
|
895
896
|
break;
|
|
897
|
+
case 16:
|
|
898
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
899
|
+
msg.setHasUnscannedConnectedDevices(value);
|
|
900
|
+
break;
|
|
896
901
|
default:
|
|
897
902
|
reader.skipField();
|
|
898
903
|
break;
|
|
@@ -1028,6 +1033,13 @@ proto.lansweeper.diagrams.v1.Asset.serializeBinaryToWriter = function(message, w
|
|
|
1028
1033
|
f
|
|
1029
1034
|
);
|
|
1030
1035
|
}
|
|
1036
|
+
f = message.getHasUnscannedConnectedDevices();
|
|
1037
|
+
if (f) {
|
|
1038
|
+
writer.writeBool(
|
|
1039
|
+
16,
|
|
1040
|
+
f
|
|
1041
|
+
);
|
|
1042
|
+
}
|
|
1031
1043
|
};
|
|
1032
1044
|
|
|
1033
1045
|
|
|
@@ -1321,6 +1333,24 @@ proto.lansweeper.diagrams.v1.Asset.prototype.setState = function(value) {
|
|
|
1321
1333
|
};
|
|
1322
1334
|
|
|
1323
1335
|
|
|
1336
|
+
/**
|
|
1337
|
+
* optional bool has_unscanned_connected_devices = 16;
|
|
1338
|
+
* @return {boolean}
|
|
1339
|
+
*/
|
|
1340
|
+
proto.lansweeper.diagrams.v1.Asset.prototype.getHasUnscannedConnectedDevices = function() {
|
|
1341
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 16, false));
|
|
1342
|
+
};
|
|
1343
|
+
|
|
1344
|
+
|
|
1345
|
+
/**
|
|
1346
|
+
* @param {boolean} value
|
|
1347
|
+
* @return {!proto.lansweeper.diagrams.v1.Asset} returns this
|
|
1348
|
+
*/
|
|
1349
|
+
proto.lansweeper.diagrams.v1.Asset.prototype.setHasUnscannedConnectedDevices = function(value) {
|
|
1350
|
+
return jspb.Message.setProto3BooleanField(this, 16, value);
|
|
1351
|
+
};
|
|
1352
|
+
|
|
1353
|
+
|
|
1324
1354
|
|
|
1325
1355
|
|
|
1326
1356
|
|
|
@@ -1772,7 +1802,9 @@ proto.lansweeper.diagrams.v1.Relationship.toObject = function(includeInstance, m
|
|
|
1772
1802
|
endDate: (f = msg.getEndDate()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
1773
1803
|
comments: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
1774
1804
|
generationType: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
|
1775
|
-
interfaceType: jspb.Message.getFieldWithDefault(msg, 10, "")
|
|
1805
|
+
interfaceType: jspb.Message.getFieldWithDefault(msg, 10, ""),
|
|
1806
|
+
snmpInterfaceDescription: jspb.Message.getFieldWithDefault(msg, 11, ""),
|
|
1807
|
+
snmpInterfaceSpeed: jspb.Message.getFieldWithDefault(msg, 12, "")
|
|
1776
1808
|
};
|
|
1777
1809
|
|
|
1778
1810
|
if (includeInstance) {
|
|
@@ -1851,6 +1883,14 @@ proto.lansweeper.diagrams.v1.Relationship.deserializeBinaryFromReader = function
|
|
|
1851
1883
|
var value = /** @type {string} */ (reader.readString());
|
|
1852
1884
|
msg.setInterfaceType(value);
|
|
1853
1885
|
break;
|
|
1886
|
+
case 11:
|
|
1887
|
+
var value = /** @type {string} */ (reader.readString());
|
|
1888
|
+
msg.setSnmpInterfaceDescription(value);
|
|
1889
|
+
break;
|
|
1890
|
+
case 12:
|
|
1891
|
+
var value = /** @type {string} */ (reader.readString());
|
|
1892
|
+
msg.setSnmpInterfaceSpeed(value);
|
|
1893
|
+
break;
|
|
1854
1894
|
default:
|
|
1855
1895
|
reader.skipField();
|
|
1856
1896
|
break;
|
|
@@ -1952,6 +1992,20 @@ proto.lansweeper.diagrams.v1.Relationship.serializeBinaryToWriter = function(mes
|
|
|
1952
1992
|
f
|
|
1953
1993
|
);
|
|
1954
1994
|
}
|
|
1995
|
+
f = message.getSnmpInterfaceDescription();
|
|
1996
|
+
if (f.length > 0) {
|
|
1997
|
+
writer.writeString(
|
|
1998
|
+
11,
|
|
1999
|
+
f
|
|
2000
|
+
);
|
|
2001
|
+
}
|
|
2002
|
+
f = message.getSnmpInterfaceSpeed();
|
|
2003
|
+
if (f.length > 0) {
|
|
2004
|
+
writer.writeString(
|
|
2005
|
+
12,
|
|
2006
|
+
f
|
|
2007
|
+
);
|
|
2008
|
+
}
|
|
1955
2009
|
};
|
|
1956
2010
|
|
|
1957
2011
|
|
|
@@ -2173,6 +2227,42 @@ proto.lansweeper.diagrams.v1.Relationship.prototype.setInterfaceType = function(
|
|
|
2173
2227
|
};
|
|
2174
2228
|
|
|
2175
2229
|
|
|
2230
|
+
/**
|
|
2231
|
+
* optional string snmp_interface_description = 11;
|
|
2232
|
+
* @return {string}
|
|
2233
|
+
*/
|
|
2234
|
+
proto.lansweeper.diagrams.v1.Relationship.prototype.getSnmpInterfaceDescription = function() {
|
|
2235
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 11, ""));
|
|
2236
|
+
};
|
|
2237
|
+
|
|
2238
|
+
|
|
2239
|
+
/**
|
|
2240
|
+
* @param {string} value
|
|
2241
|
+
* @return {!proto.lansweeper.diagrams.v1.Relationship} returns this
|
|
2242
|
+
*/
|
|
2243
|
+
proto.lansweeper.diagrams.v1.Relationship.prototype.setSnmpInterfaceDescription = function(value) {
|
|
2244
|
+
return jspb.Message.setProto3StringField(this, 11, value);
|
|
2245
|
+
};
|
|
2246
|
+
|
|
2247
|
+
|
|
2248
|
+
/**
|
|
2249
|
+
* optional string snmp_interface_speed = 12;
|
|
2250
|
+
* @return {string}
|
|
2251
|
+
*/
|
|
2252
|
+
proto.lansweeper.diagrams.v1.Relationship.prototype.getSnmpInterfaceSpeed = function() {
|
|
2253
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 12, ""));
|
|
2254
|
+
};
|
|
2255
|
+
|
|
2256
|
+
|
|
2257
|
+
/**
|
|
2258
|
+
* @param {string} value
|
|
2259
|
+
* @return {!proto.lansweeper.diagrams.v1.Relationship} returns this
|
|
2260
|
+
*/
|
|
2261
|
+
proto.lansweeper.diagrams.v1.Relationship.prototype.setSnmpInterfaceSpeed = function(value) {
|
|
2262
|
+
return jspb.Message.setProto3StringField(this, 12, value);
|
|
2263
|
+
};
|
|
2264
|
+
|
|
2265
|
+
|
|
2176
2266
|
|
|
2177
2267
|
|
|
2178
2268
|
|
package/gen-proto/image.json
CHANGED
|
@@ -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":"interface_type","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"interfaceType"}]},{"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":"AssetState","field":[{"name":"state_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"stateName"},{"name":"nb_assets","number":2,"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":"asset_states","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.AssetState","jsonName":"assetStates"},{"name":"default_filter_behaviour","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Filters.DefaultFilterBehaviourEntry","jsonName":"defaultFilterBehaviour"}],"nestedType":[{"name":"DefaultFilterBehaviourEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.diagrams.v1.FilterBehaviour","jsonName":"value"}],"options":{"mapEntry":true}}]},{"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}]},{"name":"FilterBehaviour","value":[{"name":"REDUCED","number":0},{"name":"HIDDEN","number":1}]}],"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,147,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,83,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,5,2,9],"span":[82,2,29]},{"path":[4,5,2,9,5],"span":[82,2,8]},{"path":[4,5,2,9,1],"span":[82,9,23]},{"path":[4,5,2,9,3],"span":[82,26,28]},{"path":[4,6],"span":[85,0,90,1]},{"path":[4,6,1],"span":[85,8,17]},{"path":[4,6,2,0],"span":[86,2,23]},{"path":[4,6,2,0,5],"span":[86,2,8]},{"path":[4,6,2,0,1],"span":[86,9,18]},{"path":[4,6,2,0,3],"span":[86,21,22]},{"path":[4,6,2,1],"span":[87,2,24]},{"path":[4,6,2,1,5],"span":[87,2,6]},{"path":[4,6,2,1,1],"span":[87,7,19]},{"path":[4,6,2,1,3],"span":[87,22,23]},{"path":[4,6,2,2],"span":[88,2,33]},{"path":[4,6,2,2,5],"span":[88,2,6]},{"path":[4,6,2,2,1],"span":[88,7,28]},{"path":[4,6,2,2,3],"span":[88,31,32]},{"path":[4,6,2,3],"span":[89,2,22]},{"path":[4,6,2,3,5],"span":[89,2,7]},{"path":[4,6,2,3,1],"span":[89,8,17]},{"path":[4,6,2,3,3],"span":[89,20,21]},{"path":[4,7],"span":[92,0,100,1]},{"path":[4,7,1],"span":[92,8,18]},{"path":[4,7,2,0],"span":[93,2,29]},{"path":[4,7,2,0,5],"span":[93,2,8]},{"path":[4,7,2,0,1],"span":[93,9,24]},{"path":[4,7,2,0,3],"span":[93,27,28]},{"path":[4,7,2,1],"span":[94,2,30]},{"path":[4,7,2,1,5],"span":[94,2,8]},{"path":[4,7,2,1,1],"span":[94,9,25]},{"path":[4,7,2,1,3],"span":[94,28,29]},{"path":[4,7,2,2],"span":[95,2,25]},{"path":[4,7,2,2,5],"span":[95,2,8]},{"path":[4,7,2,2,1],"span":[95,9,20]},{"path":[4,7,2,2,3],"span":[95,23,24]},{"path":[4,7,2,3],"span":[96,2,23]},{"path":[4,7,2,3,5],"span":[96,2,8]},{"path":[4,7,2,3,1],"span":[96,9,18]},{"path":[4,7,2,3,3],"span":[96,21,22]},{"path":[4,7,2,4],"span":[97,2,22]},{"path":[4,7,2,4,5],"span":[97,2,7]},{"path":[4,7,2,4,1],"span":[97,8,17]},{"path":[4,7,2,4,3],"span":[97,20,21]},{"path":[4,7,2,5],"span":[98,2,28]},{"path":[4,7,2,5,5],"span":[98,2,8]},{"path":[4,7,2,5,1],"span":[98,9,23]},{"path":[4,7,2,5,3],"span":[98,26,27]},{"path":[4,7,2,6],"span":[99,2,25]},{"path":[4,7,2,6,5],"span":[99,2,8]},{"path":[4,7,2,6,1],"span":[99,9,20]},{"path":[4,7,2,6,3],"span":[99,23,24]},{"path":[4,8],"span":[102,0,105,1]},{"path":[4,8,1],"span":[102,8,18]},{"path":[4,8,2,0],"span":[103,2,24]},{"path":[4,8,2,0,5],"span":[103,2,8]},{"path":[4,8,2,0,1],"span":[103,9,19]},{"path":[4,8,2,0,3],"span":[103,22,23]},{"path":[4,8,2,1],"span":[104,2,22]},{"path":[4,8,2,1,5],"span":[104,2,7]},{"path":[4,8,2,1,1],"span":[104,8,17]},{"path":[4,8,2,1,3],"span":[104,20,21]},{"path":[5,2],"span":[107,0,110,1]},{"path":[5,2,1],"span":[107,5,20]},{"path":[5,2,2,0],"span":[108,2,14]},{"path":[5,2,2,0,1],"span":[108,2,9]},{"path":[5,2,2,0,2],"span":[108,12,13]},{"path":[5,2,2,1],"span":[109,2,13]},{"path":[5,2,2,1,1],"span":[109,2,8]},{"path":[5,2,2,1,2],"span":[109,11,12]},{"path":[4,9],"span":[112,0,117,1]},{"path":[4,9,1],"span":[112,8,15]},{"path":[4,9,2,0],"span":[113,2,37]},{"path":[4,9,2,0,4],"span":[113,2,10]},{"path":[4,9,2,0,6],"span":[113,11,20]},{"path":[4,9,2,0,1],"span":[113,21,32]},{"path":[4,9,2,0,3],"span":[113,35,36]},{"path":[4,9,2,1],"span":[114,2,39]},{"path":[4,9,2,1,4],"span":[114,2,10]},{"path":[4,9,2,1,6],"span":[114,11,21]},{"path":[4,9,2,1,1],"span":[114,22,34]},{"path":[4,9,2,1,3],"span":[114,37,38]},{"path":[4,9,2,2],"span":[115,2,39]},{"path":[4,9,2,2,4],"span":[115,2,10]},{"path":[4,9,2,2,6],"span":[115,11,21]},{"path":[4,9,2,2,1],"span":[115,22,34]},{"path":[4,9,2,2,3],"span":[115,37,38]},{"path":[4,9,2,3],"span":[116,2,60]},{"path":[4,9,2,3,6],"span":[116,2,30]},{"path":[4,9,2,3,1],"span":[116,31,55]},{"path":[4,9,2,3,3],"span":[116,58,59]},{"path":[4,10],"span":[119,0,126,1]},{"path":[4,10,1],"span":[119,8,38]},{"path":[4,10,2,0],"span":[120,2,28]},{"path":[4,10,2,0,4],"span":[120,2,10]},{"path":[4,10,2,0,6],"span":[120,11,16]},{"path":[4,10,2,0,1],"span":[120,17,23]},{"path":[4,10,2,0,3],"span":[120,26,27]},{"path":[4,10,2,1],"span":[121,2,42]},{"path":[4,10,2,1,4],"span":[121,2,10]},{"path":[4,10,2,1,6],"span":[121,11,23]},{"path":[4,10,2,1,1],"span":[121,24,37]},{"path":[4,10,2,1,3],"span":[121,40,41]},{"path":[4,10,2,2],"span":[122,2,28]},{"path":[4,10,2,2,4],"span":[122,2,10]},{"path":[4,10,2,2,6],"span":[122,11,16]},{"path":[4,10,2,2,1],"span":[122,17,23]},{"path":[4,10,2,2,3],"span":[122,26,27]},{"path":[4,10,2,3],"span":[123,2,37]},{"path":[4,10,2,3,4],"span":[123,2,10]},{"path":[4,10,2,3,6],"span":[123,11,20]},{"path":[4,10,2,3,1],"span":[123,21,32]},{"path":[4,10,2,3,3],"span":[123,35,36]},{"path":[4,10,2,4],"span":[124,2,22]},{"path":[4,10,2,4,6],"span":[124,2,9]},{"path":[4,10,2,4,1],"span":[124,10,17]},{"path":[4,10,2,4,3],"span":[124,20,21]},{"path":[4,10,2,5],"span":[125,2,30]},{"path":[4,10,2,5,5],"span":[125,2,8]},{"path":[4,10,2,5,1],"span":[125,9,25]},{"path":[4,10,2,5,3],"span":[125,28,29]},{"path":[4,11],"span":[128,0,135,1]},{"path":[4,11,1],"span":[128,8,41]},{"path":[4,11,2,0],"span":[129,2,28]},{"path":[4,11,2,0,4],"span":[129,2,10]},{"path":[4,11,2,0,6],"span":[129,11,16]},{"path":[4,11,2,0,1],"span":[129,17,23]},{"path":[4,11,2,0,3],"span":[129,26,27]},{"path":[4,11,2,1],"span":[130,2,42]},{"path":[4,11,2,1,4],"span":[130,2,10]},{"path":[4,11,2,1,6],"span":[130,11,23]},{"path":[4,11,2,1,1],"span":[130,24,37]},{"path":[4,11,2,1,3],"span":[130,40,41]},{"path":[4,11,2,2],"span":[131,2,28]},{"path":[4,11,2,2,4],"span":[131,2,10]},{"path":[4,11,2,2,6],"span":[131,11,16]},{"path":[4,11,2,2,1],"span":[131,17,23]},{"path":[4,11,2,2,3],"span":[131,26,27]},{"path":[4,11,2,3],"span":[132,2,37]},{"path":[4,11,2,3,4],"span":[132,2,10]},{"path":[4,11,2,3,6],"span":[132,11,20]},{"path":[4,11,2,3,1],"span":[132,21,32]},{"path":[4,11,2,3,3],"span":[132,35,36]},{"path":[4,11,2,4],"span":[133,2,22]},{"path":[4,11,2,4,6],"span":[133,2,9]},{"path":[4,11,2,4,1],"span":[133,10,17]},{"path":[4,11,2,4,3],"span":[133,20,21]},{"path":[4,11,2,5],"span":[134,2,30]},{"path":[4,11,2,5,5],"span":[134,2,8]},{"path":[4,11,2,5,1],"span":[134,9,25]},{"path":[4,11,2,5,3],"span":[134,28,29]},{"path":[4,12],"span":[137,0,143,1]},{"path":[4,12,1],"span":[137,8,25]},{"path":[4,12,2,0],"span":[138,2,28]},{"path":[4,12,2,0,4],"span":[138,2,10]},{"path":[4,12,2,0,6],"span":[138,11,16]},{"path":[4,12,2,0,1],"span":[138,17,23]},{"path":[4,12,2,0,3],"span":[138,26,27]},{"path":[4,12,2,1],"span":[139,2,42]},{"path":[4,12,2,1,4],"span":[139,2,10]},{"path":[4,12,2,1,6],"span":[139,11,23]},{"path":[4,12,2,1,1],"span":[139,24,37]},{"path":[4,12,2,1,3],"span":[139,40,41]},{"path":[4,12,2,2],"span":[140,2,28]},{"path":[4,12,2,2,4],"span":[140,2,10]},{"path":[4,12,2,2,6],"span":[140,11,16]},{"path":[4,12,2,2,1],"span":[140,17,23]},{"path":[4,12,2,2,3],"span":[140,26,27]},{"path":[4,12,2,3],"span":[141,2,37]},{"path":[4,12,2,3,4],"span":[141,2,10]},{"path":[4,12,2,3,6],"span":[141,11,20]},{"path":[4,12,2,3,1],"span":[141,21,32]},{"path":[4,12,2,3,3],"span":[141,35,36]},{"path":[4,12,2,4],"span":[142,2,22]},{"path":[4,12,2,4,6],"span":[142,2,9]},{"path":[4,12,2,4,1],"span":[142,10,17]},{"path":[4,12,2,4,3],"span":[142,20,21]},{"path":[4,13],"span":[145,0,147,1]},{"path":[4,13,1],"span":[145,8,27]},{"path":[4,13,2,0],"span":[146,2,39]},{"path":[4,13,2,0,4],"span":[146,2,10]},{"path":[4,13,2,0,6],"span":[146,11,21]},{"path":[4,13,2,0,1],"span":[146,22,34]},{"path":[4,13,2,0,3],"span":[146,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":"has_unscanned_connected_devices","number":16,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"hasUnscannedConnectedDevices"}]},{"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":"interface_type","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"interfaceType"},{"name":"snmp_interface_description","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"snmpInterfaceDescription"},{"name":"snmp_interface_speed","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"snmpInterfaceSpeed"}]},{"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":"AssetState","field":[{"name":"state_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"stateName"},{"name":"nb_assets","number":2,"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":"asset_states","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.AssetState","jsonName":"assetStates"},{"name":"default_filter_behaviour","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Filters.DefaultFilterBehaviourEntry","jsonName":"defaultFilterBehaviour"}],"nestedType":[{"name":"DefaultFilterBehaviourEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.diagrams.v1.FilterBehaviour","jsonName":"value"}],"options":{"mapEntry":true}}]},{"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}]},{"name":"FilterBehaviour","value":[{"name":"REDUCED","number":0},{"name":"HIDDEN","number":1}]}],"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,150,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,45,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,2,2,15],"span":[44,2,44]},{"path":[4,2,2,15,5],"span":[44,2,6]},{"path":[4,2,2,15,1],"span":[44,7,38]},{"path":[4,2,2,15,3],"span":[44,41,43]},{"path":[4,3],"span":[47,0,53,1]},{"path":[4,3,1],"span":[47,8,18]},{"path":[4,3,2,0],"span":[48,2,22]},{"path":[4,3,2,0,5],"span":[48,2,8]},{"path":[4,3,2,0,1],"span":[48,9,17]},{"path":[4,3,2,0,3],"span":[48,20,21]},{"path":[4,3,2,1],"span":[49,2,24]},{"path":[4,3,2,1,5],"span":[49,2,8]},{"path":[4,3,2,1,1],"span":[49,9,19]},{"path":[4,3,2,1,3],"span":[49,22,23]},{"path":[4,3,2,2],"span":[50,2,26]},{"path":[4,3,2,2,5],"span":[50,2,8]},{"path":[4,3,2,2,1],"span":[50,9,21]},{"path":[4,3,2,2,3],"span":[50,24,25]},{"path":[4,3,2,3],"span":[51,2,27]},{"path":[4,3,2,3,5],"span":[51,2,8]},{"path":[4,3,2,3,1],"span":[51,9,22]},{"path":[4,3,2,3,3],"span":[51,25,26]},{"path":[4,3,2,4],"span":[52,2,29]},{"path":[4,3,2,4,5],"span":[52,2,8]},{"path":[4,3,2,4,1],"span":[52,9,24]},{"path":[4,3,2,4,3],"span":[52,27,28]},{"path":[5,0],"span":[55,0,60,1]},{"path":[5,0,1],"span":[55,5,14]},{"path":[5,0,2,0],"span":[56,2,14]},{"path":[5,0,2,0,1],"span":[56,2,9]},{"path":[5,0,2,0,2],"span":[56,12,13]},{"path":[5,0,2,1],"span":[57,2,23]},{"path":[5,0,2,1,1],"span":[57,2,18]},{"path":[5,0,2,1,2],"span":[57,21,22]},{"path":[5,0,2,2],"span":[58,2,15]},{"path":[5,0,2,2,1],"span":[58,2,10]},{"path":[5,0,2,2,2],"span":[58,13,14]},{"path":[5,0,2,3],"span":[59,2,28]},{"path":[5,0,2,3,1],"span":[59,2,23]},{"path":[5,0,2,3,2],"span":[59,26,27]},{"path":[5,1],"span":[62,0,66,1]},{"path":[5,1,1],"span":[62,5,20]},{"path":[5,1,2,0],"span":[63,2,23]},{"path":[5,1,2,0,1],"span":[63,2,18]},{"path":[5,1,2,0,2],"span":[63,21,22]},{"path":[5,1,2,1],"span":[64,2,26]},{"path":[5,1,2,1,1],"span":[64,2,21]},{"path":[5,1,2,1,2],"span":[64,24,25]},{"path":[5,1,2,2],"span":[65,2,9]},{"path":[5,1,2,2,1],"span":[65,2,4]},{"path":[5,1,2,2,2],"span":[65,7,8]},{"path":[4,4],"span":[68,0,71,1]},{"path":[4,4,1],"span":[68,8,13]},{"path":[4,4,2,0],"span":[69,2,21]},{"path":[4,4,2,0,6],"span":[69,2,11]},{"path":[4,4,2,0,1],"span":[69,12,16]},{"path":[4,4,2,0,3],"span":[69,19,20]},{"path":[4,4,2,1],"span":[70,2,21]},{"path":[4,4,2,1,5],"span":[70,2,8]},{"path":[4,4,2,1,1],"span":[70,9,16]},{"path":[4,4,2,1,3],"span":[70,19,20]},{"path":[4,5],"span":[73,0,86,1]},{"path":[4,5,1],"span":[73,8,20]},{"path":[4,5,2,0],"span":[74,2,35]},{"path":[4,5,2,0,5],"span":[74,2,8]},{"path":[4,5,2,0,1],"span":[74,9,30]},{"path":[4,5,2,0,3],"span":[74,33,34]},{"path":[4,5,2,1],"span":[75,2,33]},{"path":[4,5,2,1,5],"span":[75,2,8]},{"path":[4,5,2,1,1],"span":[75,9,28]},{"path":[4,5,2,1,3],"span":[75,31,32]},{"path":[4,5,2,2],"span":[76,2,18]},{"path":[4,5,2,2,5],"span":[76,2,8]},{"path":[4,5,2,2,1],"span":[76,9,13]},{"path":[4,5,2,2,3],"span":[76,16,17]},{"path":[4,5,2,3],"span":[77,2,26]},{"path":[4,5,2,3,5],"span":[77,2,8]},{"path":[4,5,2,3,1],"span":[77,9,21]},{"path":[4,5,2,3,3],"span":[77,24,25]},{"path":[4,5,2,4],"span":[78,2,23]},{"path":[4,5,2,4,5],"span":[78,2,8]},{"path":[4,5,2,4,1],"span":[78,9,18]},{"path":[4,5,2,4,3],"span":[78,21,22]},{"path":[4,5,2,5],"span":[79,2,43]},{"path":[4,5,2,5,6],"span":[79,2,27]},{"path":[4,5,2,5,1],"span":[79,28,38]},{"path":[4,5,2,5,3],"span":[79,41,42]},{"path":[4,5,2,6],"span":[80,2,41]},{"path":[4,5,2,6,6],"span":[80,2,27]},{"path":[4,5,2,6,1],"span":[80,28,36]},{"path":[4,5,2,6,3],"span":[80,39,40]},{"path":[4,5,2,7],"span":[81,2,22]},{"path":[4,5,2,7,5],"span":[81,2,8]},{"path":[4,5,2,7,1],"span":[81,9,17]},{"path":[4,5,2,7,3],"span":[81,20,21]},{"path":[4,5,2,8],"span":[82,2,29]},{"path":[4,5,2,8,5],"span":[82,2,8]},{"path":[4,5,2,8,1],"span":[82,9,24]},{"path":[4,5,2,8,3],"span":[82,27,28]},{"path":[4,5,2,9],"span":[83,2,29]},{"path":[4,5,2,9,5],"span":[83,2,8]},{"path":[4,5,2,9,1],"span":[83,9,23]},{"path":[4,5,2,9,3],"span":[83,26,28]},{"path":[4,5,2,10],"span":[84,2,41]},{"path":[4,5,2,10,5],"span":[84,2,8]},{"path":[4,5,2,10,1],"span":[84,9,35]},{"path":[4,5,2,10,3],"span":[84,38,40]},{"path":[4,5,2,11],"span":[85,2,35]},{"path":[4,5,2,11,5],"span":[85,2,8]},{"path":[4,5,2,11,1],"span":[85,9,29]},{"path":[4,5,2,11,3],"span":[85,32,34]},{"path":[4,6],"span":[88,0,93,1]},{"path":[4,6,1],"span":[88,8,17]},{"path":[4,6,2,0],"span":[89,2,23]},{"path":[4,6,2,0,5],"span":[89,2,8]},{"path":[4,6,2,0,1],"span":[89,9,18]},{"path":[4,6,2,0,3],"span":[89,21,22]},{"path":[4,6,2,1],"span":[90,2,24]},{"path":[4,6,2,1,5],"span":[90,2,6]},{"path":[4,6,2,1,1],"span":[90,7,19]},{"path":[4,6,2,1,3],"span":[90,22,23]},{"path":[4,6,2,2],"span":[91,2,33]},{"path":[4,6,2,2,5],"span":[91,2,6]},{"path":[4,6,2,2,1],"span":[91,7,28]},{"path":[4,6,2,2,3],"span":[91,31,32]},{"path":[4,6,2,3],"span":[92,2,22]},{"path":[4,6,2,3,5],"span":[92,2,7]},{"path":[4,6,2,3,1],"span":[92,8,17]},{"path":[4,6,2,3,3],"span":[92,20,21]},{"path":[4,7],"span":[95,0,103,1]},{"path":[4,7,1],"span":[95,8,18]},{"path":[4,7,2,0],"span":[96,2,29]},{"path":[4,7,2,0,5],"span":[96,2,8]},{"path":[4,7,2,0,1],"span":[96,9,24]},{"path":[4,7,2,0,3],"span":[96,27,28]},{"path":[4,7,2,1],"span":[97,2,30]},{"path":[4,7,2,1,5],"span":[97,2,8]},{"path":[4,7,2,1,1],"span":[97,9,25]},{"path":[4,7,2,1,3],"span":[97,28,29]},{"path":[4,7,2,2],"span":[98,2,25]},{"path":[4,7,2,2,5],"span":[98,2,8]},{"path":[4,7,2,2,1],"span":[98,9,20]},{"path":[4,7,2,2,3],"span":[98,23,24]},{"path":[4,7,2,3],"span":[99,2,23]},{"path":[4,7,2,3,5],"span":[99,2,8]},{"path":[4,7,2,3,1],"span":[99,9,18]},{"path":[4,7,2,3,3],"span":[99,21,22]},{"path":[4,7,2,4],"span":[100,2,22]},{"path":[4,7,2,4,5],"span":[100,2,7]},{"path":[4,7,2,4,1],"span":[100,8,17]},{"path":[4,7,2,4,3],"span":[100,20,21]},{"path":[4,7,2,5],"span":[101,2,28]},{"path":[4,7,2,5,5],"span":[101,2,8]},{"path":[4,7,2,5,1],"span":[101,9,23]},{"path":[4,7,2,5,3],"span":[101,26,27]},{"path":[4,7,2,6],"span":[102,2,25]},{"path":[4,7,2,6,5],"span":[102,2,8]},{"path":[4,7,2,6,1],"span":[102,9,20]},{"path":[4,7,2,6,3],"span":[102,23,24]},{"path":[4,8],"span":[105,0,108,1]},{"path":[4,8,1],"span":[105,8,18]},{"path":[4,8,2,0],"span":[106,2,24]},{"path":[4,8,2,0,5],"span":[106,2,8]},{"path":[4,8,2,0,1],"span":[106,9,19]},{"path":[4,8,2,0,3],"span":[106,22,23]},{"path":[4,8,2,1],"span":[107,2,22]},{"path":[4,8,2,1,5],"span":[107,2,7]},{"path":[4,8,2,1,1],"span":[107,8,17]},{"path":[4,8,2,1,3],"span":[107,20,21]},{"path":[5,2],"span":[110,0,113,1]},{"path":[5,2,1],"span":[110,5,20]},{"path":[5,2,2,0],"span":[111,2,14]},{"path":[5,2,2,0,1],"span":[111,2,9]},{"path":[5,2,2,0,2],"span":[111,12,13]},{"path":[5,2,2,1],"span":[112,2,13]},{"path":[5,2,2,1,1],"span":[112,2,8]},{"path":[5,2,2,1,2],"span":[112,11,12]},{"path":[4,9],"span":[115,0,120,1]},{"path":[4,9,1],"span":[115,8,15]},{"path":[4,9,2,0],"span":[116,2,37]},{"path":[4,9,2,0,4],"span":[116,2,10]},{"path":[4,9,2,0,6],"span":[116,11,20]},{"path":[4,9,2,0,1],"span":[116,21,32]},{"path":[4,9,2,0,3],"span":[116,35,36]},{"path":[4,9,2,1],"span":[117,2,39]},{"path":[4,9,2,1,4],"span":[117,2,10]},{"path":[4,9,2,1,6],"span":[117,11,21]},{"path":[4,9,2,1,1],"span":[117,22,34]},{"path":[4,9,2,1,3],"span":[117,37,38]},{"path":[4,9,2,2],"span":[118,2,39]},{"path":[4,9,2,2,4],"span":[118,2,10]},{"path":[4,9,2,2,6],"span":[118,11,21]},{"path":[4,9,2,2,1],"span":[118,22,34]},{"path":[4,9,2,2,3],"span":[118,37,38]},{"path":[4,9,2,3],"span":[119,2,60]},{"path":[4,9,2,3,6],"span":[119,2,30]},{"path":[4,9,2,3,1],"span":[119,31,55]},{"path":[4,9,2,3,3],"span":[119,58,59]},{"path":[4,10],"span":[122,0,129,1]},{"path":[4,10,1],"span":[122,8,38]},{"path":[4,10,2,0],"span":[123,2,28]},{"path":[4,10,2,0,4],"span":[123,2,10]},{"path":[4,10,2,0,6],"span":[123,11,16]},{"path":[4,10,2,0,1],"span":[123,17,23]},{"path":[4,10,2,0,3],"span":[123,26,27]},{"path":[4,10,2,1],"span":[124,2,42]},{"path":[4,10,2,1,4],"span":[124,2,10]},{"path":[4,10,2,1,6],"span":[124,11,23]},{"path":[4,10,2,1,1],"span":[124,24,37]},{"path":[4,10,2,1,3],"span":[124,40,41]},{"path":[4,10,2,2],"span":[125,2,28]},{"path":[4,10,2,2,4],"span":[125,2,10]},{"path":[4,10,2,2,6],"span":[125,11,16]},{"path":[4,10,2,2,1],"span":[125,17,23]},{"path":[4,10,2,2,3],"span":[125,26,27]},{"path":[4,10,2,3],"span":[126,2,37]},{"path":[4,10,2,3,4],"span":[126,2,10]},{"path":[4,10,2,3,6],"span":[126,11,20]},{"path":[4,10,2,3,1],"span":[126,21,32]},{"path":[4,10,2,3,3],"span":[126,35,36]},{"path":[4,10,2,4],"span":[127,2,22]},{"path":[4,10,2,4,6],"span":[127,2,9]},{"path":[4,10,2,4,1],"span":[127,10,17]},{"path":[4,10,2,4,3],"span":[127,20,21]},{"path":[4,10,2,5],"span":[128,2,30]},{"path":[4,10,2,5,5],"span":[128,2,8]},{"path":[4,10,2,5,1],"span":[128,9,25]},{"path":[4,10,2,5,3],"span":[128,28,29]},{"path":[4,11],"span":[131,0,138,1]},{"path":[4,11,1],"span":[131,8,41]},{"path":[4,11,2,0],"span":[132,2,28]},{"path":[4,11,2,0,4],"span":[132,2,10]},{"path":[4,11,2,0,6],"span":[132,11,16]},{"path":[4,11,2,0,1],"span":[132,17,23]},{"path":[4,11,2,0,3],"span":[132,26,27]},{"path":[4,11,2,1],"span":[133,2,42]},{"path":[4,11,2,1,4],"span":[133,2,10]},{"path":[4,11,2,1,6],"span":[133,11,23]},{"path":[4,11,2,1,1],"span":[133,24,37]},{"path":[4,11,2,1,3],"span":[133,40,41]},{"path":[4,11,2,2],"span":[134,2,28]},{"path":[4,11,2,2,4],"span":[134,2,10]},{"path":[4,11,2,2,6],"span":[134,11,16]},{"path":[4,11,2,2,1],"span":[134,17,23]},{"path":[4,11,2,2,3],"span":[134,26,27]},{"path":[4,11,2,3],"span":[135,2,37]},{"path":[4,11,2,3,4],"span":[135,2,10]},{"path":[4,11,2,3,6],"span":[135,11,20]},{"path":[4,11,2,3,1],"span":[135,21,32]},{"path":[4,11,2,3,3],"span":[135,35,36]},{"path":[4,11,2,4],"span":[136,2,22]},{"path":[4,11,2,4,6],"span":[136,2,9]},{"path":[4,11,2,4,1],"span":[136,10,17]},{"path":[4,11,2,4,3],"span":[136,20,21]},{"path":[4,11,2,5],"span":[137,2,30]},{"path":[4,11,2,5,5],"span":[137,2,8]},{"path":[4,11,2,5,1],"span":[137,9,25]},{"path":[4,11,2,5,3],"span":[137,28,29]},{"path":[4,12],"span":[140,0,146,1]},{"path":[4,12,1],"span":[140,8,25]},{"path":[4,12,2,0],"span":[141,2,28]},{"path":[4,12,2,0,4],"span":[141,2,10]},{"path":[4,12,2,0,6],"span":[141,11,16]},{"path":[4,12,2,0,1],"span":[141,17,23]},{"path":[4,12,2,0,3],"span":[141,26,27]},{"path":[4,12,2,1],"span":[142,2,42]},{"path":[4,12,2,1,4],"span":[142,2,10]},{"path":[4,12,2,1,6],"span":[142,11,23]},{"path":[4,12,2,1,1],"span":[142,24,37]},{"path":[4,12,2,1,3],"span":[142,40,41]},{"path":[4,12,2,2],"span":[143,2,28]},{"path":[4,12,2,2,4],"span":[143,2,10]},{"path":[4,12,2,2,6],"span":[143,11,16]},{"path":[4,12,2,2,1],"span":[143,17,23]},{"path":[4,12,2,2,3],"span":[143,26,27]},{"path":[4,12,2,3],"span":[144,2,37]},{"path":[4,12,2,3,4],"span":[144,2,10]},{"path":[4,12,2,3,6],"span":[144,11,20]},{"path":[4,12,2,3,1],"span":[144,21,32]},{"path":[4,12,2,3,3],"span":[144,35,36]},{"path":[4,12,2,4],"span":[145,2,22]},{"path":[4,12,2,4,6],"span":[145,2,9]},{"path":[4,12,2,4,1],"span":[145,10,17]},{"path":[4,12,2,4,3],"span":[145,20,21]},{"path":[4,13],"span":[148,0,150,1]},{"path":[4,13,1],"span":[148,8,27]},{"path":[4,13,2,0],"span":[149,2,39]},{"path":[4,13,2,0,4],"span":[149,2,10]},{"path":[4,13,2,0,6],"span":[149,11,21]},{"path":[4,13,2,0,1],"span":[149,22,34]},{"path":[4,13,2,0,3],"span":[149,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.
|
|
18
|
-
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("0.0.
|
|
17
|
+
[assembly: System.Reflection.AssemblyFileVersionAttribute("0.0.34")]
|
|
18
|
+
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("0.0.34")]
|
|
19
19
|
[assembly: System.Reflection.AssemblyProductAttribute("Lansweeper Diagrams")]
|
|
20
20
|
[assembly: System.Reflection.AssemblyTitleAttribute("Lansweeper.Diagrams.GRPC")]
|
|
21
|
-
[assembly: System.Reflection.AssemblyVersionAttribute("0.0.
|
|
21
|
+
[assembly: System.Reflection.AssemblyVersionAttribute("0.0.34.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
|
-
|
|
1
|
+
eb3295e07b9e24a5ddd4f0f47d916f0a9a5227f1
|
|
Binary file
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
2c57203bbfd350f506e528b0ff348f2e9709c55f
|
|
Binary file
|
|
Binary file
|
|
@@ -32,7 +32,7 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
32
32
|
"dWxlc0VudHJ5EhAKCHRyYWNlX2lkGAQgASgJEhYKDmlwX2xvY2F0aW9uX2lk",
|
|
33
33
|
"GAUgASgJGjcKFUFzc2V0U2NvcGVzUnVsZXNFbnRyeRILCgNrZXkYASABKAkS",
|
|
34
34
|
"DQoFdmFsdWUYAiABKAk6AjgBIjoKEklwTG9jYXRpb25zUmVxdWVzdBISCgpj",
|
|
35
|
-
"
|
|
35
|
+
"bGllbnRfa2V5GAEgASgJEhAKCHRyYWNlX2lkGAIgASgJIvQCCgVBc3NldBIS",
|
|
36
36
|
"Cgp1bmlxdWVfa2V5GAEgASgJEgsKA2tleRgCIAEoCRIMCgRuYW1lGAMgASgJ",
|
|
37
37
|
"EhEKCXR5cGVfbmFtZRgEIAEoCRIRCglncm91cF9rZXkYBSABKAkSEAoIaXNf",
|
|
38
38
|
"Z3JvdXAYBiABKAgSEgoKaXBfYWRkcmVzcxgHIAEoCRIZChF2bV9ydW5uaW5n",
|
|
@@ -40,81 +40,83 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
40
40
|
"GAogASgIEhUKDWlzX3ZtX3J1bm5pbmcYCyABKAgSMgoGZXJyb3JzGAwgAygL",
|
|
41
41
|
"MiIubGFuc3dlZXBlci5kaWFncmFtcy52MS5Bc3NldEVycm9yEhcKD2lwX2xv",
|
|
42
42
|
"Y2F0aW9uX2tleRgNIAEoCRITCgttYWNfYWRkcmVzcxgOIAEoCRINCgVzdGF0",
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
"
|
|
82
|
-
"
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
"
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
"
|
|
89
|
-
"
|
|
90
|
-
"
|
|
91
|
-
"
|
|
92
|
-
"
|
|
93
|
-
"
|
|
94
|
-
"
|
|
95
|
-
"
|
|
96
|
-
"
|
|
97
|
-
"
|
|
98
|
-
"
|
|
99
|
-
"
|
|
100
|
-
"
|
|
101
|
-
"
|
|
102
|
-
"
|
|
103
|
-
"
|
|
104
|
-
"
|
|
105
|
-
"
|
|
106
|
-
"
|
|
107
|
-
"
|
|
108
|
-
"
|
|
43
|
+
"ZRgPIAEoCRInCh9oYXNfdW5zY2FubmVkX2Nvbm5lY3RlZF9kZXZpY2VzGBAg",
|
|
44
|
+
"ASgIIngKCkFzc2V0RXJyb3ISEAoIZXJyb3JfaWQYASABKAkSEgoKZXJyb3Jf",
|
|
45
|
+
"dGV4dBgCIAEoCRIUCgxsYXN0X2NoYW5nZWQYAyABKAkSFQoNZXJyb3JfdHlw",
|
|
46
|
+
"ZV9pZBgEIAEoCRIXCg9lcnJvcl90eXBlX25hbWUYBSABKAkiSQoFRXJyb3IS",
|
|
47
|
+
"LwoEdHlwZRgBIAEoDjIhLmxhbnN3ZWVwZXIuZGlhZ3JhbXMudjEuRXJyb3JU",
|
|
48
|
+
"eXBlEg8KB21lc3NhZ2UYAiABKAki5AIKDFJlbGF0aW9uc2hpcBIdChVmcm9t",
|
|
49
|
+
"X2Fzc2V0X3VuaXF1ZV9rZXkYASABKAkSGwoTdG9fYXNzZXRfdW5pcXVlX2tl",
|
|
50
|
+
"eRgCIAEoCRIMCgRuYW1lGAMgASgJEhQKDHJldmVyc2VfbmFtZRgEIAEoCRIR",
|
|
51
|
+
"CglpY29uX25hbWUYBSABKAkSLgoKc3RhcnRfZGF0ZRgGIAEoCzIaLmdvb2ds",
|
|
52
|
+
"ZS5wcm90b2J1Zi5UaW1lc3RhbXASLAoIZW5kX2RhdGUYByABKAsyGi5nb29n",
|
|
53
|
+
"bGUucHJvdG9idWYuVGltZXN0YW1wEhAKCGNvbW1lbnRzGAggASgJEhcKD2dl",
|
|
54
|
+
"bmVyYXRpb25fdHlwZRgJIAEoCRIWCg5pbnRlcmZhY2VfdHlwZRgKIAEoCRIi",
|
|
55
|
+
"Chpzbm1wX2ludGVyZmFjZV9kZXNjcmlwdGlvbhgLIAEoCRIcChRzbm1wX2lu",
|
|
56
|
+
"dGVyZmFjZV9zcGVlZBgMIAEoCSJmCglBc3NldFR5cGUSEQoJdHlwZV9uYW1l",
|
|
57
|
+
"GAEgASgJEhQKDGlzX21hbmRhdG9yeRgCIAEoCBIdChVpc19lbmFibGVkX2J5",
|
|
58
|
+
"X2RlZmF1bHQYAyABKAgSEQoJbmJfYXNzZXRzGAQgASgFIqcBCgpJcExvY2F0",
|
|
59
|
+
"aW9uEhcKD2lwX2xvY2F0aW9uX2tleRgBIAEoCRIYChBpcF9sb2NhdGlvbl9u",
|
|
60
|
+
"YW1lGAIgASgJEhMKC3JhbmdlX3N0YXJ0GAMgASgJEhEKCXJhbmdlX2VuZBgE",
|
|
61
|
+
"IAEoCRIRCgluYl9hc3NldHMYBSABKAUSFgoOaXBfbG9jYXRpb25faWQYBiAB",
|
|
62
|
+
"KAkSEwoLaW5zdGFsbF9rZXkYByABKAkiMwoKQXNzZXRTdGF0ZRISCgpzdGF0",
|
|
63
|
+
"ZV9uYW1lGAEgASgJEhEKCW5iX2Fzc2V0cxgCIAEoBSL8AgoHRmlsdGVycxI2",
|
|
64
|
+
"Cgthc3NldF90eXBlcxgBIAMoCzIhLmxhbnN3ZWVwZXIuZGlhZ3JhbXMudjEu",
|
|
65
|
+
"QXNzZXRUeXBlEjgKDGlwX2xvY2F0aW9ucxgCIAMoCzIiLmxhbnN3ZWVwZXIu",
|
|
66
|
+
"ZGlhZ3JhbXMudjEuSXBMb2NhdGlvbhI4Cgxhc3NldF9zdGF0ZXMYAyADKAsy",
|
|
67
|
+
"Ii5sYW5zd2VlcGVyLmRpYWdyYW1zLnYxLkFzc2V0U3RhdGUSXQoYZGVmYXVs",
|
|
68
|
+
"dF9maWx0ZXJfYmVoYXZpb3VyGAQgAygLMjsubGFuc3dlZXBlci5kaWFncmFt",
|
|
69
|
+
"cy52MS5GaWx0ZXJzLkRlZmF1bHRGaWx0ZXJCZWhhdmlvdXJFbnRyeRpmChtE",
|
|
70
|
+
"ZWZhdWx0RmlsdGVyQmVoYXZpb3VyRW50cnkSCwoDa2V5GAEgASgJEjYKBXZh",
|
|
71
|
+
"bHVlGAIgASgOMicubGFuc3dlZXBlci5kaWFncmFtcy52MS5GaWx0ZXJCZWhh",
|
|
72
|
+
"dmlvdXI6AjgBIr8CCh5OZXR3b3JrVG9wb2xvZ3lEaWFncmFtUmVzcG9uc2US",
|
|
73
|
+
"LQoGYXNzZXRzGAEgAygLMh0ubGFuc3dlZXBlci5kaWFncmFtcy52MS5Bc3Nl",
|
|
74
|
+
"dBI7Cg1yZWxhdGlvbnNoaXBzGAIgAygLMiQubGFuc3dlZXBlci5kaWFncmFt",
|
|
75
|
+
"cy52MS5SZWxhdGlvbnNoaXASLQoGZXJyb3JzGAMgAygLMh0ubGFuc3dlZXBl",
|
|
76
|
+
"ci5kaWFncmFtcy52MS5FcnJvchI2Cgthc3NldF90eXBlcxgEIAMoCzIhLmxh",
|
|
77
|
+
"bnN3ZWVwZXIuZGlhZ3JhbXMudjEuQXNzZXRUeXBlEjAKB2ZpbHRlcnMYBSAB",
|
|
78
|
+
"KAsyHy5sYW5zd2VlcGVyLmRpYWdyYW1zLnYxLkZpbHRlcnMSGAoQaXBfbG9j",
|
|
79
|
+
"YXRpb25fbmFtZRgGIAEoCSLCAgohVmlydHVhbEVudmlyb25tZW50RGlhZ3Jh",
|
|
80
|
+
"bVJlc3BvbnNlEi0KBmFzc2V0cxgBIAMoCzIdLmxhbnN3ZWVwZXIuZGlhZ3Jh",
|
|
81
|
+
"bXMudjEuQXNzZXQSOwoNcmVsYXRpb25zaGlwcxgCIAMoCzIkLmxhbnN3ZWVw",
|
|
82
|
+
"ZXIuZGlhZ3JhbXMudjEuUmVsYXRpb25zaGlwEi0KBmVycm9ycxgDIAMoCzId",
|
|
83
|
+
"LmxhbnN3ZWVwZXIuZGlhZ3JhbXMudjEuRXJyb3ISNgoLYXNzZXRfdHlwZXMY",
|
|
84
|
+
"BCADKAsyIS5sYW5zd2VlcGVyLmRpYWdyYW1zLnYxLkFzc2V0VHlwZRIwCgdm",
|
|
85
|
+
"aWx0ZXJzGAUgASgLMh8ubGFuc3dlZXBlci5kaWFncmFtcy52MS5GaWx0ZXJz",
|
|
86
|
+
"EhgKEGlwX2xvY2F0aW9uX25hbWUYBiABKAkimAIKEU90RGlhZ3JhbVJlc3Bv",
|
|
87
|
+
"bnNlEi0KBmFzc2V0cxgBIAMoCzIdLmxhbnN3ZWVwZXIuZGlhZ3JhbXMudjEu",
|
|
88
|
+
"QXNzZXQSOwoNcmVsYXRpb25zaGlwcxgCIAMoCzIkLmxhbnN3ZWVwZXIuZGlh",
|
|
89
|
+
"Z3JhbXMudjEuUmVsYXRpb25zaGlwEi0KBmVycm9ycxgDIAMoCzIdLmxhbnN3",
|
|
90
|
+
"ZWVwZXIuZGlhZ3JhbXMudjEuRXJyb3ISNgoLYXNzZXRfdHlwZXMYBCADKAsy",
|
|
91
|
+
"IS5sYW5zd2VlcGVyLmRpYWdyYW1zLnYxLkFzc2V0VHlwZRIwCgdmaWx0ZXJz",
|
|
92
|
+
"GAUgASgLMh8ubGFuc3dlZXBlci5kaWFncmFtcy52MS5GaWx0ZXJzIk8KE0lw",
|
|
93
|
+
"TG9jYXRpb25zUmVzcG9uc2USOAoMaXBfbG9jYXRpb25zGAEgAygLMiIubGFu",
|
|
94
|
+
"c3dlZXBlci5kaWFncmFtcy52MS5JcExvY2F0aW9uKlcKCUVycm9yVHlwZRIL",
|
|
95
|
+
"CgdVTktOT1dOEAASFAoQR0VORVJBVElPTl9FUlJPUhABEgwKCE5PX0FTU0VU",
|
|
96
|
+
"EAISGQoVQVNTRVRfQ09VTlRfVEhSRVNIT0xEEAMqSAoPRGlhZ3JhbUNhdGVn",
|
|
97
|
+
"b3J5EhQKEE5FVFdPUktfVE9QT0xPR1kQABIXChNWSVJUVUFMX0VOVklST05N",
|
|
98
|
+
"RU5UEAESBgoCT1QQAioqCg9GaWx0ZXJCZWhhdmlvdXISCwoHUkVEVUNFRBAA",
|
|
99
|
+
"EgoKBkhJRERFThABMugDCg9EaWFncmFtc1NlcnZpY2USfQoZR2V0TmV0d29y",
|
|
100
|
+
"a1RvcG9sb2d5RGlhZ3JhbRImLmxhbnN3ZWVwZXIuZGlhZ3JhbXMudjEuRGlh",
|
|
101
|
+
"Z3JhbVJlcXVlc3QaNi5sYW5zd2VlcGVyLmRpYWdyYW1zLnYxLk5ldHdvcmtU",
|
|
102
|
+
"b3BvbG9neURpYWdyYW1SZXNwb25zZSIAEoMBChxHZXRWaXJ0dWFsRW52aXJv",
|
|
103
|
+
"bm1lbnREaWFncmFtEiYubGFuc3dlZXBlci5kaWFncmFtcy52MS5EaWFncmFt",
|
|
104
|
+
"UmVxdWVzdBo5LmxhbnN3ZWVwZXIuZGlhZ3JhbXMudjEuVmlydHVhbEVudmly",
|
|
105
|
+
"b25tZW50RGlhZ3JhbVJlc3BvbnNlIgASYwoMR2V0T3REaWFncmFtEiYubGFu",
|
|
106
|
+
"c3dlZXBlci5kaWFncmFtcy52MS5EaWFncmFtUmVxdWVzdBopLmxhbnN3ZWVw",
|
|
107
|
+
"ZXIuZGlhZ3JhbXMudjEuT3REaWFncmFtUmVzcG9uc2UiABJrCg5HZXRJcExv",
|
|
108
|
+
"Y2F0aW9ucxIqLmxhbnN3ZWVwZXIuZGlhZ3JhbXMudjEuSXBMb2NhdGlvbnNS",
|
|
109
|
+
"ZXF1ZXN0GisubGFuc3dlZXBlci5kaWFncmFtcy52MS5JcExvY2F0aW9uc1Jl",
|
|
110
|
+
"c3BvbnNlIgBCG6oCGExhbnN3ZWVwZXIuRGlhZ3JhbXMuR1JQQ2IGcHJvdG8z"));
|
|
109
111
|
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
|
110
112
|
new pbr::FileDescriptor[] { global::Google.Protobuf.WellKnownTypes.TimestampReflection.Descriptor, },
|
|
111
113
|
new pbr::GeneratedClrTypeInfo(new[] {typeof(global::Lansweeper.Diagrams.GRPC.ErrorType), typeof(global::Lansweeper.Diagrams.GRPC.DiagramCategory), typeof(global::Lansweeper.Diagrams.GRPC.FilterBehaviour), }, null, new pbr::GeneratedClrTypeInfo[] {
|
|
112
114
|
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, }),
|
|
113
115
|
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.Diagrams.GRPC.IpLocationsRequest), global::Lansweeper.Diagrams.GRPC.IpLocationsRequest.Parser, new[]{ "ClientKey", "TraceId" }, null, null, null, null),
|
|
114
|
-
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", "State" }, null, null, null, null),
|
|
116
|
+
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", "State", "HasUnscannedConnectedDevices" }, null, null, null, null),
|
|
115
117
|
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),
|
|
116
118
|
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.Diagrams.GRPC.Error), global::Lansweeper.Diagrams.GRPC.Error.Parser, new[]{ "Type", "Message" }, null, null, null, null),
|
|
117
|
-
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", "InterfaceType" }, null, null, null, null),
|
|
119
|
+
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", "InterfaceType", "SnmpInterfaceDescription", "SnmpInterfaceSpeed" }, null, null, null, null),
|
|
118
120
|
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.Diagrams.GRPC.AssetType), global::Lansweeper.Diagrams.GRPC.AssetType.Parser, new[]{ "TypeName", "IsMandatory", "IsEnabledByDefault", "NbAssets" }, null, null, null, null),
|
|
119
121
|
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),
|
|
120
122
|
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.Diagrams.GRPC.AssetState), global::Lansweeper.Diagrams.GRPC.AssetState.Parser, new[]{ "StateName", "NbAssets" }, null, null, null, null),
|
|
@@ -751,6 +753,7 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
751
753
|
ipLocationKey_ = other.ipLocationKey_;
|
|
752
754
|
macAddress_ = other.macAddress_;
|
|
753
755
|
state_ = other.state_;
|
|
756
|
+
hasUnscannedConnectedDevices_ = other.hasUnscannedConnectedDevices_;
|
|
754
757
|
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
|
755
758
|
}
|
|
756
759
|
|
|
@@ -939,6 +942,18 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
939
942
|
}
|
|
940
943
|
}
|
|
941
944
|
|
|
945
|
+
/// <summary>Field number for the "has_unscanned_connected_devices" field.</summary>
|
|
946
|
+
public const int HasUnscannedConnectedDevicesFieldNumber = 16;
|
|
947
|
+
private bool hasUnscannedConnectedDevices_;
|
|
948
|
+
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
949
|
+
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
950
|
+
public bool HasUnscannedConnectedDevices {
|
|
951
|
+
get { return hasUnscannedConnectedDevices_; }
|
|
952
|
+
set {
|
|
953
|
+
hasUnscannedConnectedDevices_ = value;
|
|
954
|
+
}
|
|
955
|
+
}
|
|
956
|
+
|
|
942
957
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
943
958
|
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
944
959
|
public override bool Equals(object other) {
|
|
@@ -969,6 +984,7 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
969
984
|
if (IpLocationKey != other.IpLocationKey) return false;
|
|
970
985
|
if (MacAddress != other.MacAddress) return false;
|
|
971
986
|
if (State != other.State) return false;
|
|
987
|
+
if (HasUnscannedConnectedDevices != other.HasUnscannedConnectedDevices) return false;
|
|
972
988
|
return Equals(_unknownFields, other._unknownFields);
|
|
973
989
|
}
|
|
974
990
|
|
|
@@ -991,6 +1007,7 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
991
1007
|
if (IpLocationKey.Length != 0) hash ^= IpLocationKey.GetHashCode();
|
|
992
1008
|
if (MacAddress.Length != 0) hash ^= MacAddress.GetHashCode();
|
|
993
1009
|
if (State.Length != 0) hash ^= State.GetHashCode();
|
|
1010
|
+
if (HasUnscannedConnectedDevices != false) hash ^= HasUnscannedConnectedDevices.GetHashCode();
|
|
994
1011
|
if (_unknownFields != null) {
|
|
995
1012
|
hash ^= _unknownFields.GetHashCode();
|
|
996
1013
|
}
|
|
@@ -1066,6 +1083,10 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
1066
1083
|
output.WriteRawTag(122);
|
|
1067
1084
|
output.WriteString(State);
|
|
1068
1085
|
}
|
|
1086
|
+
if (HasUnscannedConnectedDevices != false) {
|
|
1087
|
+
output.WriteRawTag(128, 1);
|
|
1088
|
+
output.WriteBool(HasUnscannedConnectedDevices);
|
|
1089
|
+
}
|
|
1069
1090
|
if (_unknownFields != null) {
|
|
1070
1091
|
_unknownFields.WriteTo(output);
|
|
1071
1092
|
}
|
|
@@ -1133,6 +1154,10 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
1133
1154
|
output.WriteRawTag(122);
|
|
1134
1155
|
output.WriteString(State);
|
|
1135
1156
|
}
|
|
1157
|
+
if (HasUnscannedConnectedDevices != false) {
|
|
1158
|
+
output.WriteRawTag(128, 1);
|
|
1159
|
+
output.WriteBool(HasUnscannedConnectedDevices);
|
|
1160
|
+
}
|
|
1136
1161
|
if (_unknownFields != null) {
|
|
1137
1162
|
_unknownFields.WriteTo(ref output);
|
|
1138
1163
|
}
|
|
@@ -1186,6 +1211,9 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
1186
1211
|
if (State.Length != 0) {
|
|
1187
1212
|
size += 1 + pb::CodedOutputStream.ComputeStringSize(State);
|
|
1188
1213
|
}
|
|
1214
|
+
if (HasUnscannedConnectedDevices != false) {
|
|
1215
|
+
size += 2 + 1;
|
|
1216
|
+
}
|
|
1189
1217
|
if (_unknownFields != null) {
|
|
1190
1218
|
size += _unknownFields.CalculateSize();
|
|
1191
1219
|
}
|
|
@@ -1241,6 +1269,9 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
1241
1269
|
if (other.State.Length != 0) {
|
|
1242
1270
|
State = other.State;
|
|
1243
1271
|
}
|
|
1272
|
+
if (other.HasUnscannedConnectedDevices != false) {
|
|
1273
|
+
HasUnscannedConnectedDevices = other.HasUnscannedConnectedDevices;
|
|
1274
|
+
}
|
|
1244
1275
|
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
|
1245
1276
|
}
|
|
1246
1277
|
|
|
@@ -1316,6 +1347,10 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
1316
1347
|
State = input.ReadString();
|
|
1317
1348
|
break;
|
|
1318
1349
|
}
|
|
1350
|
+
case 128: {
|
|
1351
|
+
HasUnscannedConnectedDevices = input.ReadBool();
|
|
1352
|
+
break;
|
|
1353
|
+
}
|
|
1319
1354
|
}
|
|
1320
1355
|
}
|
|
1321
1356
|
#endif
|
|
@@ -1391,6 +1426,10 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
1391
1426
|
State = input.ReadString();
|
|
1392
1427
|
break;
|
|
1393
1428
|
}
|
|
1429
|
+
case 128: {
|
|
1430
|
+
HasUnscannedConnectedDevices = input.ReadBool();
|
|
1431
|
+
break;
|
|
1432
|
+
}
|
|
1394
1433
|
}
|
|
1395
1434
|
}
|
|
1396
1435
|
}
|
|
@@ -2005,6 +2044,8 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
2005
2044
|
comments_ = other.comments_;
|
|
2006
2045
|
generationType_ = other.generationType_;
|
|
2007
2046
|
interfaceType_ = other.interfaceType_;
|
|
2047
|
+
snmpInterfaceDescription_ = other.snmpInterfaceDescription_;
|
|
2048
|
+
snmpInterfaceSpeed_ = other.snmpInterfaceSpeed_;
|
|
2008
2049
|
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
|
2009
2050
|
}
|
|
2010
2051
|
|
|
@@ -2134,6 +2175,30 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
2134
2175
|
}
|
|
2135
2176
|
}
|
|
2136
2177
|
|
|
2178
|
+
/// <summary>Field number for the "snmp_interface_description" field.</summary>
|
|
2179
|
+
public const int SnmpInterfaceDescriptionFieldNumber = 11;
|
|
2180
|
+
private string snmpInterfaceDescription_ = "";
|
|
2181
|
+
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
2182
|
+
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
2183
|
+
public string SnmpInterfaceDescription {
|
|
2184
|
+
get { return snmpInterfaceDescription_; }
|
|
2185
|
+
set {
|
|
2186
|
+
snmpInterfaceDescription_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
|
|
2187
|
+
}
|
|
2188
|
+
}
|
|
2189
|
+
|
|
2190
|
+
/// <summary>Field number for the "snmp_interface_speed" field.</summary>
|
|
2191
|
+
public const int SnmpInterfaceSpeedFieldNumber = 12;
|
|
2192
|
+
private string snmpInterfaceSpeed_ = "";
|
|
2193
|
+
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
2194
|
+
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
2195
|
+
public string SnmpInterfaceSpeed {
|
|
2196
|
+
get { return snmpInterfaceSpeed_; }
|
|
2197
|
+
set {
|
|
2198
|
+
snmpInterfaceSpeed_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
|
|
2199
|
+
}
|
|
2200
|
+
}
|
|
2201
|
+
|
|
2137
2202
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
2138
2203
|
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
2139
2204
|
public override bool Equals(object other) {
|
|
@@ -2159,6 +2224,8 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
2159
2224
|
if (Comments != other.Comments) return false;
|
|
2160
2225
|
if (GenerationType != other.GenerationType) return false;
|
|
2161
2226
|
if (InterfaceType != other.InterfaceType) return false;
|
|
2227
|
+
if (SnmpInterfaceDescription != other.SnmpInterfaceDescription) return false;
|
|
2228
|
+
if (SnmpInterfaceSpeed != other.SnmpInterfaceSpeed) return false;
|
|
2162
2229
|
return Equals(_unknownFields, other._unknownFields);
|
|
2163
2230
|
}
|
|
2164
2231
|
|
|
@@ -2176,6 +2243,8 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
2176
2243
|
if (Comments.Length != 0) hash ^= Comments.GetHashCode();
|
|
2177
2244
|
if (GenerationType.Length != 0) hash ^= GenerationType.GetHashCode();
|
|
2178
2245
|
if (InterfaceType.Length != 0) hash ^= InterfaceType.GetHashCode();
|
|
2246
|
+
if (SnmpInterfaceDescription.Length != 0) hash ^= SnmpInterfaceDescription.GetHashCode();
|
|
2247
|
+
if (SnmpInterfaceSpeed.Length != 0) hash ^= SnmpInterfaceSpeed.GetHashCode();
|
|
2179
2248
|
if (_unknownFields != null) {
|
|
2180
2249
|
hash ^= _unknownFields.GetHashCode();
|
|
2181
2250
|
}
|
|
@@ -2234,6 +2303,14 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
2234
2303
|
output.WriteRawTag(82);
|
|
2235
2304
|
output.WriteString(InterfaceType);
|
|
2236
2305
|
}
|
|
2306
|
+
if (SnmpInterfaceDescription.Length != 0) {
|
|
2307
|
+
output.WriteRawTag(90);
|
|
2308
|
+
output.WriteString(SnmpInterfaceDescription);
|
|
2309
|
+
}
|
|
2310
|
+
if (SnmpInterfaceSpeed.Length != 0) {
|
|
2311
|
+
output.WriteRawTag(98);
|
|
2312
|
+
output.WriteString(SnmpInterfaceSpeed);
|
|
2313
|
+
}
|
|
2237
2314
|
if (_unknownFields != null) {
|
|
2238
2315
|
_unknownFields.WriteTo(output);
|
|
2239
2316
|
}
|
|
@@ -2284,6 +2361,14 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
2284
2361
|
output.WriteRawTag(82);
|
|
2285
2362
|
output.WriteString(InterfaceType);
|
|
2286
2363
|
}
|
|
2364
|
+
if (SnmpInterfaceDescription.Length != 0) {
|
|
2365
|
+
output.WriteRawTag(90);
|
|
2366
|
+
output.WriteString(SnmpInterfaceDescription);
|
|
2367
|
+
}
|
|
2368
|
+
if (SnmpInterfaceSpeed.Length != 0) {
|
|
2369
|
+
output.WriteRawTag(98);
|
|
2370
|
+
output.WriteString(SnmpInterfaceSpeed);
|
|
2371
|
+
}
|
|
2287
2372
|
if (_unknownFields != null) {
|
|
2288
2373
|
_unknownFields.WriteTo(ref output);
|
|
2289
2374
|
}
|
|
@@ -2324,6 +2409,12 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
2324
2409
|
if (InterfaceType.Length != 0) {
|
|
2325
2410
|
size += 1 + pb::CodedOutputStream.ComputeStringSize(InterfaceType);
|
|
2326
2411
|
}
|
|
2412
|
+
if (SnmpInterfaceDescription.Length != 0) {
|
|
2413
|
+
size += 1 + pb::CodedOutputStream.ComputeStringSize(SnmpInterfaceDescription);
|
|
2414
|
+
}
|
|
2415
|
+
if (SnmpInterfaceSpeed.Length != 0) {
|
|
2416
|
+
size += 1 + pb::CodedOutputStream.ComputeStringSize(SnmpInterfaceSpeed);
|
|
2417
|
+
}
|
|
2327
2418
|
if (_unknownFields != null) {
|
|
2328
2419
|
size += _unknownFields.CalculateSize();
|
|
2329
2420
|
}
|
|
@@ -2372,6 +2463,12 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
2372
2463
|
if (other.InterfaceType.Length != 0) {
|
|
2373
2464
|
InterfaceType = other.InterfaceType;
|
|
2374
2465
|
}
|
|
2466
|
+
if (other.SnmpInterfaceDescription.Length != 0) {
|
|
2467
|
+
SnmpInterfaceDescription = other.SnmpInterfaceDescription;
|
|
2468
|
+
}
|
|
2469
|
+
if (other.SnmpInterfaceSpeed.Length != 0) {
|
|
2470
|
+
SnmpInterfaceSpeed = other.SnmpInterfaceSpeed;
|
|
2471
|
+
}
|
|
2375
2472
|
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
|
2376
2473
|
}
|
|
2377
2474
|
|
|
@@ -2433,6 +2530,14 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
2433
2530
|
InterfaceType = input.ReadString();
|
|
2434
2531
|
break;
|
|
2435
2532
|
}
|
|
2533
|
+
case 90: {
|
|
2534
|
+
SnmpInterfaceDescription = input.ReadString();
|
|
2535
|
+
break;
|
|
2536
|
+
}
|
|
2537
|
+
case 98: {
|
|
2538
|
+
SnmpInterfaceSpeed = input.ReadString();
|
|
2539
|
+
break;
|
|
2540
|
+
}
|
|
2436
2541
|
}
|
|
2437
2542
|
}
|
|
2438
2543
|
#endif
|
|
@@ -2494,6 +2599,14 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
2494
2599
|
InterfaceType = input.ReadString();
|
|
2495
2600
|
break;
|
|
2496
2601
|
}
|
|
2602
|
+
case 90: {
|
|
2603
|
+
SnmpInterfaceDescription = input.ReadString();
|
|
2604
|
+
break;
|
|
2605
|
+
}
|
|
2606
|
+
case 98: {
|
|
2607
|
+
SnmpInterfaceSpeed = input.ReadString();
|
|
2608
|
+
break;
|
|
2609
|
+
}
|
|
2497
2610
|
}
|
|
2498
2611
|
}
|
|
2499
2612
|
}
|
|
Binary file
|
|
Binary file
|
|
@@ -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.
|
|
8
|
+
"version": "0.0.34",
|
|
9
9
|
"restore": {
|
|
10
10
|
"projectUniqueName": "/home/circleci/project/packages/diagrams/grpc/Lansweeper.Diagrams.GRPC.csproj",
|
|
11
11
|
"projectName": "Lansweeper.Diagrams.GRPC",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"privateAssets": "all"
|
|
79
79
|
}
|
|
80
80
|
},
|
|
81
|
-
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/6.0.
|
|
81
|
+
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/6.0.406/RuntimeIdentifierGraph.json"
|
|
82
82
|
}
|
|
83
83
|
}
|
|
84
84
|
}
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/circleci/.nuget/packages/</NuGetPackageRoot>
|
|
8
8
|
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/circleci/.nuget/packages/</NuGetPackageFolders>
|
|
9
9
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
|
10
|
-
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.3.
|
|
10
|
+
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.3.2</NuGetToolVersion>
|
|
11
11
|
</PropertyGroup>
|
|
12
12
|
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
|
13
13
|
<SourceRoot Include="/home/circleci/.nuget/packages/" />
|
package/obj/project.assets.json
CHANGED
|
@@ -305,7 +305,7 @@
|
|
|
305
305
|
"/home/circleci/.nuget/packages/": {}
|
|
306
306
|
},
|
|
307
307
|
"project": {
|
|
308
|
-
"version": "0.0.
|
|
308
|
+
"version": "0.0.34",
|
|
309
309
|
"restore": {
|
|
310
310
|
"projectUniqueName": "/home/circleci/project/packages/diagrams/grpc/Lansweeper.Diagrams.GRPC.csproj",
|
|
311
311
|
"projectName": "Lansweeper.Diagrams.GRPC",
|
|
@@ -378,7 +378,7 @@
|
|
|
378
378
|
"privateAssets": "all"
|
|
379
379
|
}
|
|
380
380
|
},
|
|
381
|
-
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/6.0.
|
|
381
|
+
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/6.0.406/RuntimeIdentifierGraph.json"
|
|
382
382
|
}
|
|
383
383
|
}
|
|
384
384
|
}
|
package/obj/project.nuget.cache
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 2,
|
|
3
|
-
"dgSpecHash": "
|
|
3
|
+
"dgSpecHash": "WW9x3nz+26gb0IIo76Vq/pQDv6bhEB+uwHMU8egG+90cpygCpx6OpK0QqbiLi8hpjjvx++rXsenVT1z/k/dzlQ==",
|
|
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.
|
|
3
|
+
"version": "0.0.35",
|
|
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": "
|
|
15
|
+
"gitHead": "2d8aec6e85411b3291d19522234dabf10b409071"
|
|
16
16
|
}
|
package/proto/diagrams.proto
CHANGED
|
@@ -42,6 +42,7 @@ message Asset {
|
|
|
42
42
|
string ip_location_key = 13;
|
|
43
43
|
string mac_address = 14;
|
|
44
44
|
string state = 15;
|
|
45
|
+
bool has_unscanned_connected_devices = 16;
|
|
45
46
|
}
|
|
46
47
|
|
|
47
48
|
message AssetError {
|
|
@@ -81,6 +82,8 @@ message Relationship {
|
|
|
81
82
|
string comments = 8;
|
|
82
83
|
string generation_type = 9;
|
|
83
84
|
string interface_type = 10;
|
|
85
|
+
string snmp_interface_description = 11;
|
|
86
|
+
string snmp_interface_speed = 12;
|
|
84
87
|
}
|
|
85
88
|
|
|
86
89
|
message AssetType {
|