@lansweeper/diagrams-grpc 0.0.30 → 0.0.31
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 +8 -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 +27 -4
- package/gen-proto/diagrams_pb.js +200 -14
- 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.dll +0 -0
- package/obj/Debug/net6.0/Lansweeper.Diagrams.GRPC.pdb +0 -0
- package/obj/Debug/net6.0/proto/Diagrams.cs +280 -51
- 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 +1 -1
- package/obj/project.assets.json +1 -1
- package/obj/project.nuget.cache +1 -1
- package/package.json +2 -2
- package/proto/diagrams.proto +6 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.0.31](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/diagrams-grpc@0.0.30...@lansweeper/diagrams-grpc@0.0.31) (2023-02-02)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @lansweeper/diagrams-grpc
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [0.0.30](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/diagrams-grpc@0.0.29...@lansweeper/diagrams-grpc@0.0.30) (2023-01-30)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @lansweeper/diagrams-grpc
|
|
@@ -7,9 +7,9 @@
|
|
|
7
7
|
<Company>Lansweeper</Company>
|
|
8
8
|
<Product>Lansweeper Diagrams</Product>
|
|
9
9
|
<Copyright>Lansweeper</Copyright>
|
|
10
|
-
<PackageVersion>0.0.
|
|
11
|
-
<Version>0.0.
|
|
12
|
-
<FileVersion>0.0.
|
|
10
|
+
<PackageVersion>0.0.30</PackageVersion>
|
|
11
|
+
<Version>0.0.30</Version>
|
|
12
|
+
<FileVersion>0.0.30</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.30": {
|
|
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.30": {
|
|
95
95
|
"type": "project",
|
|
96
96
|
"serviceable": false,
|
|
97
97
|
"sha512": ""
|
|
Binary file
|
|
Binary file
|
|
@@ -300,6 +300,29 @@ export namespace IpLocation {
|
|
|
300
300
|
}
|
|
301
301
|
}
|
|
302
302
|
|
|
303
|
+
export class AssetState extends jspb.Message {
|
|
304
|
+
getStateName(): string;
|
|
305
|
+
setStateName(value: string): AssetState;
|
|
306
|
+
getNbAssets(): number;
|
|
307
|
+
setNbAssets(value: number): AssetState;
|
|
308
|
+
|
|
309
|
+
serializeBinary(): Uint8Array;
|
|
310
|
+
toObject(includeInstance?: boolean): AssetState.AsObject;
|
|
311
|
+
static toObject(includeInstance: boolean, msg: AssetState): AssetState.AsObject;
|
|
312
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
313
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
314
|
+
static serializeBinaryToWriter(message: AssetState, writer: jspb.BinaryWriter): void;
|
|
315
|
+
static deserializeBinary(bytes: Uint8Array): AssetState;
|
|
316
|
+
static deserializeBinaryFromReader(message: AssetState, reader: jspb.BinaryReader): AssetState;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
export namespace AssetState {
|
|
320
|
+
export type AsObject = {
|
|
321
|
+
stateName: string,
|
|
322
|
+
nbAssets: number,
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
|
|
303
326
|
export class Filters extends jspb.Message {
|
|
304
327
|
clearAssetTypesList(): void;
|
|
305
328
|
getAssetTypesList(): Array<AssetType>;
|
|
@@ -310,9 +333,9 @@ export class Filters extends jspb.Message {
|
|
|
310
333
|
setIpLocationsList(value: Array<IpLocation>): Filters;
|
|
311
334
|
addIpLocations(value?: IpLocation, index?: number): IpLocation;
|
|
312
335
|
clearAssetStatesList(): void;
|
|
313
|
-
getAssetStatesList(): Array<
|
|
314
|
-
setAssetStatesList(value: Array<
|
|
315
|
-
addAssetStates(value
|
|
336
|
+
getAssetStatesList(): Array<AssetState>;
|
|
337
|
+
setAssetStatesList(value: Array<AssetState>): Filters;
|
|
338
|
+
addAssetStates(value?: AssetState, index?: number): AssetState;
|
|
316
339
|
|
|
317
340
|
serializeBinary(): Uint8Array;
|
|
318
341
|
toObject(includeInstance?: boolean): Filters.AsObject;
|
|
@@ -328,7 +351,7 @@ export namespace Filters {
|
|
|
328
351
|
export type AsObject = {
|
|
329
352
|
assetTypesList: Array<AssetType.AsObject>,
|
|
330
353
|
ipLocationsList: Array<IpLocation.AsObject>,
|
|
331
|
-
assetStatesList: Array<
|
|
354
|
+
assetStatesList: Array<AssetState.AsObject>,
|
|
332
355
|
}
|
|
333
356
|
}
|
|
334
357
|
|
package/gen-proto/diagrams_pb.js
CHANGED
|
@@ -19,6 +19,7 @@ var google_protobuf_timestamp_pb = require('google-protobuf/google/protobuf/time
|
|
|
19
19
|
goog.object.extend(proto, google_protobuf_timestamp_pb);
|
|
20
20
|
goog.exportSymbol('proto.lansweeper.diagrams.v1.Asset', null, global);
|
|
21
21
|
goog.exportSymbol('proto.lansweeper.diagrams.v1.AssetError', null, global);
|
|
22
|
+
goog.exportSymbol('proto.lansweeper.diagrams.v1.AssetState', null, global);
|
|
22
23
|
goog.exportSymbol('proto.lansweeper.diagrams.v1.AssetType', null, global);
|
|
23
24
|
goog.exportSymbol('proto.lansweeper.diagrams.v1.DiagramCategory', null, global);
|
|
24
25
|
goog.exportSymbol('proto.lansweeper.diagrams.v1.DiagramRequest', null, global);
|
|
@@ -200,6 +201,27 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
200
201
|
*/
|
|
201
202
|
proto.lansweeper.diagrams.v1.IpLocation.displayName = 'proto.lansweeper.diagrams.v1.IpLocation';
|
|
202
203
|
}
|
|
204
|
+
/**
|
|
205
|
+
* Generated by JsPbCodeGenerator.
|
|
206
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
207
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
208
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
209
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
210
|
+
* valid.
|
|
211
|
+
* @extends {jspb.Message}
|
|
212
|
+
* @constructor
|
|
213
|
+
*/
|
|
214
|
+
proto.lansweeper.diagrams.v1.AssetState = function(opt_data) {
|
|
215
|
+
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
216
|
+
};
|
|
217
|
+
goog.inherits(proto.lansweeper.diagrams.v1.AssetState, jspb.Message);
|
|
218
|
+
if (goog.DEBUG && !COMPILED) {
|
|
219
|
+
/**
|
|
220
|
+
* @public
|
|
221
|
+
* @override
|
|
222
|
+
*/
|
|
223
|
+
proto.lansweeper.diagrams.v1.AssetState.displayName = 'proto.lansweeper.diagrams.v1.AssetState';
|
|
224
|
+
}
|
|
203
225
|
/**
|
|
204
226
|
* Generated by JsPbCodeGenerator.
|
|
205
227
|
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
@@ -2651,6 +2673,166 @@ proto.lansweeper.diagrams.v1.IpLocation.prototype.setInstallKey = function(value
|
|
|
2651
2673
|
|
|
2652
2674
|
|
|
2653
2675
|
|
|
2676
|
+
|
|
2677
|
+
|
|
2678
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
2679
|
+
/**
|
|
2680
|
+
* Creates an object representation of this proto.
|
|
2681
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
2682
|
+
* Optional fields that are not set will be set to undefined.
|
|
2683
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
2684
|
+
* For the list of reserved names please see:
|
|
2685
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
2686
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
2687
|
+
* JSPB instance for transitional soy proto support:
|
|
2688
|
+
* http://goto/soy-param-migration
|
|
2689
|
+
* @return {!Object}
|
|
2690
|
+
*/
|
|
2691
|
+
proto.lansweeper.diagrams.v1.AssetState.prototype.toObject = function(opt_includeInstance) {
|
|
2692
|
+
return proto.lansweeper.diagrams.v1.AssetState.toObject(opt_includeInstance, this);
|
|
2693
|
+
};
|
|
2694
|
+
|
|
2695
|
+
|
|
2696
|
+
/**
|
|
2697
|
+
* Static version of the {@see toObject} method.
|
|
2698
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
2699
|
+
* the JSPB instance for transitional soy proto support:
|
|
2700
|
+
* http://goto/soy-param-migration
|
|
2701
|
+
* @param {!proto.lansweeper.diagrams.v1.AssetState} msg The msg instance to transform.
|
|
2702
|
+
* @return {!Object}
|
|
2703
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
2704
|
+
*/
|
|
2705
|
+
proto.lansweeper.diagrams.v1.AssetState.toObject = function(includeInstance, msg) {
|
|
2706
|
+
var f, obj = {
|
|
2707
|
+
stateName: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
2708
|
+
nbAssets: jspb.Message.getFieldWithDefault(msg, 2, 0)
|
|
2709
|
+
};
|
|
2710
|
+
|
|
2711
|
+
if (includeInstance) {
|
|
2712
|
+
obj.$jspbMessageInstance = msg;
|
|
2713
|
+
}
|
|
2714
|
+
return obj;
|
|
2715
|
+
};
|
|
2716
|
+
}
|
|
2717
|
+
|
|
2718
|
+
|
|
2719
|
+
/**
|
|
2720
|
+
* Deserializes binary data (in protobuf wire format).
|
|
2721
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
2722
|
+
* @return {!proto.lansweeper.diagrams.v1.AssetState}
|
|
2723
|
+
*/
|
|
2724
|
+
proto.lansweeper.diagrams.v1.AssetState.deserializeBinary = function(bytes) {
|
|
2725
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
2726
|
+
var msg = new proto.lansweeper.diagrams.v1.AssetState;
|
|
2727
|
+
return proto.lansweeper.diagrams.v1.AssetState.deserializeBinaryFromReader(msg, reader);
|
|
2728
|
+
};
|
|
2729
|
+
|
|
2730
|
+
|
|
2731
|
+
/**
|
|
2732
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
2733
|
+
* given reader into the given message object.
|
|
2734
|
+
* @param {!proto.lansweeper.diagrams.v1.AssetState} msg The message object to deserialize into.
|
|
2735
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
2736
|
+
* @return {!proto.lansweeper.diagrams.v1.AssetState}
|
|
2737
|
+
*/
|
|
2738
|
+
proto.lansweeper.diagrams.v1.AssetState.deserializeBinaryFromReader = function(msg, reader) {
|
|
2739
|
+
while (reader.nextField()) {
|
|
2740
|
+
if (reader.isEndGroup()) {
|
|
2741
|
+
break;
|
|
2742
|
+
}
|
|
2743
|
+
var field = reader.getFieldNumber();
|
|
2744
|
+
switch (field) {
|
|
2745
|
+
case 1:
|
|
2746
|
+
var value = /** @type {string} */ (reader.readString());
|
|
2747
|
+
msg.setStateName(value);
|
|
2748
|
+
break;
|
|
2749
|
+
case 2:
|
|
2750
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
2751
|
+
msg.setNbAssets(value);
|
|
2752
|
+
break;
|
|
2753
|
+
default:
|
|
2754
|
+
reader.skipField();
|
|
2755
|
+
break;
|
|
2756
|
+
}
|
|
2757
|
+
}
|
|
2758
|
+
return msg;
|
|
2759
|
+
};
|
|
2760
|
+
|
|
2761
|
+
|
|
2762
|
+
/**
|
|
2763
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
2764
|
+
* @return {!Uint8Array}
|
|
2765
|
+
*/
|
|
2766
|
+
proto.lansweeper.diagrams.v1.AssetState.prototype.serializeBinary = function() {
|
|
2767
|
+
var writer = new jspb.BinaryWriter();
|
|
2768
|
+
proto.lansweeper.diagrams.v1.AssetState.serializeBinaryToWriter(this, writer);
|
|
2769
|
+
return writer.getResultBuffer();
|
|
2770
|
+
};
|
|
2771
|
+
|
|
2772
|
+
|
|
2773
|
+
/**
|
|
2774
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
2775
|
+
* format), writing to the given BinaryWriter.
|
|
2776
|
+
* @param {!proto.lansweeper.diagrams.v1.AssetState} message
|
|
2777
|
+
* @param {!jspb.BinaryWriter} writer
|
|
2778
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
2779
|
+
*/
|
|
2780
|
+
proto.lansweeper.diagrams.v1.AssetState.serializeBinaryToWriter = function(message, writer) {
|
|
2781
|
+
var f = undefined;
|
|
2782
|
+
f = message.getStateName();
|
|
2783
|
+
if (f.length > 0) {
|
|
2784
|
+
writer.writeString(
|
|
2785
|
+
1,
|
|
2786
|
+
f
|
|
2787
|
+
);
|
|
2788
|
+
}
|
|
2789
|
+
f = message.getNbAssets();
|
|
2790
|
+
if (f !== 0) {
|
|
2791
|
+
writer.writeInt32(
|
|
2792
|
+
2,
|
|
2793
|
+
f
|
|
2794
|
+
);
|
|
2795
|
+
}
|
|
2796
|
+
};
|
|
2797
|
+
|
|
2798
|
+
|
|
2799
|
+
/**
|
|
2800
|
+
* optional string state_name = 1;
|
|
2801
|
+
* @return {string}
|
|
2802
|
+
*/
|
|
2803
|
+
proto.lansweeper.diagrams.v1.AssetState.prototype.getStateName = function() {
|
|
2804
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
|
|
2805
|
+
};
|
|
2806
|
+
|
|
2807
|
+
|
|
2808
|
+
/**
|
|
2809
|
+
* @param {string} value
|
|
2810
|
+
* @return {!proto.lansweeper.diagrams.v1.AssetState} returns this
|
|
2811
|
+
*/
|
|
2812
|
+
proto.lansweeper.diagrams.v1.AssetState.prototype.setStateName = function(value) {
|
|
2813
|
+
return jspb.Message.setProto3StringField(this, 1, value);
|
|
2814
|
+
};
|
|
2815
|
+
|
|
2816
|
+
|
|
2817
|
+
/**
|
|
2818
|
+
* optional int32 nb_assets = 2;
|
|
2819
|
+
* @return {number}
|
|
2820
|
+
*/
|
|
2821
|
+
proto.lansweeper.diagrams.v1.AssetState.prototype.getNbAssets = function() {
|
|
2822
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 2, 0));
|
|
2823
|
+
};
|
|
2824
|
+
|
|
2825
|
+
|
|
2826
|
+
/**
|
|
2827
|
+
* @param {number} value
|
|
2828
|
+
* @return {!proto.lansweeper.diagrams.v1.AssetState} returns this
|
|
2829
|
+
*/
|
|
2830
|
+
proto.lansweeper.diagrams.v1.AssetState.prototype.setNbAssets = function(value) {
|
|
2831
|
+
return jspb.Message.setProto3IntField(this, 2, value);
|
|
2832
|
+
};
|
|
2833
|
+
|
|
2834
|
+
|
|
2835
|
+
|
|
2654
2836
|
/**
|
|
2655
2837
|
* List of repeated fields within this message type.
|
|
2656
2838
|
* @private {!Array<number>}
|
|
@@ -2693,7 +2875,8 @@ proto.lansweeper.diagrams.v1.Filters.toObject = function(includeInstance, msg) {
|
|
|
2693
2875
|
proto.lansweeper.diagrams.v1.AssetType.toObject, includeInstance),
|
|
2694
2876
|
ipLocationsList: jspb.Message.toObjectList(msg.getIpLocationsList(),
|
|
2695
2877
|
proto.lansweeper.diagrams.v1.IpLocation.toObject, includeInstance),
|
|
2696
|
-
assetStatesList:
|
|
2878
|
+
assetStatesList: jspb.Message.toObjectList(msg.getAssetStatesList(),
|
|
2879
|
+
proto.lansweeper.diagrams.v1.AssetState.toObject, includeInstance)
|
|
2697
2880
|
};
|
|
2698
2881
|
|
|
2699
2882
|
if (includeInstance) {
|
|
@@ -2741,7 +2924,8 @@ proto.lansweeper.diagrams.v1.Filters.deserializeBinaryFromReader = function(msg,
|
|
|
2741
2924
|
msg.addIpLocations(value);
|
|
2742
2925
|
break;
|
|
2743
2926
|
case 3:
|
|
2744
|
-
var value =
|
|
2927
|
+
var value = new proto.lansweeper.diagrams.v1.AssetState;
|
|
2928
|
+
reader.readMessage(value,proto.lansweeper.diagrams.v1.AssetState.deserializeBinaryFromReader);
|
|
2745
2929
|
msg.addAssetStates(value);
|
|
2746
2930
|
break;
|
|
2747
2931
|
default:
|
|
@@ -2791,9 +2975,10 @@ proto.lansweeper.diagrams.v1.Filters.serializeBinaryToWriter = function(message,
|
|
|
2791
2975
|
}
|
|
2792
2976
|
f = message.getAssetStatesList();
|
|
2793
2977
|
if (f.length > 0) {
|
|
2794
|
-
writer.
|
|
2978
|
+
writer.writeRepeatedMessage(
|
|
2795
2979
|
3,
|
|
2796
|
-
f
|
|
2980
|
+
f,
|
|
2981
|
+
proto.lansweeper.diagrams.v1.AssetState.serializeBinaryToWriter
|
|
2797
2982
|
);
|
|
2798
2983
|
}
|
|
2799
2984
|
};
|
|
@@ -2876,30 +3061,31 @@ proto.lansweeper.diagrams.v1.Filters.prototype.clearIpLocationsList = function()
|
|
|
2876
3061
|
|
|
2877
3062
|
|
|
2878
3063
|
/**
|
|
2879
|
-
* repeated
|
|
2880
|
-
* @return {!Array
|
|
3064
|
+
* repeated AssetState asset_states = 3;
|
|
3065
|
+
* @return {!Array<!proto.lansweeper.diagrams.v1.AssetState>}
|
|
2881
3066
|
*/
|
|
2882
3067
|
proto.lansweeper.diagrams.v1.Filters.prototype.getAssetStatesList = function() {
|
|
2883
|
-
return /** @type
|
|
3068
|
+
return /** @type{!Array<!proto.lansweeper.diagrams.v1.AssetState>} */ (
|
|
3069
|
+
jspb.Message.getRepeatedWrapperField(this, proto.lansweeper.diagrams.v1.AssetState, 3));
|
|
2884
3070
|
};
|
|
2885
3071
|
|
|
2886
3072
|
|
|
2887
3073
|
/**
|
|
2888
|
-
* @param {!Array
|
|
3074
|
+
* @param {!Array<!proto.lansweeper.diagrams.v1.AssetState>} value
|
|
2889
3075
|
* @return {!proto.lansweeper.diagrams.v1.Filters} returns this
|
|
2890
|
-
|
|
3076
|
+
*/
|
|
2891
3077
|
proto.lansweeper.diagrams.v1.Filters.prototype.setAssetStatesList = function(value) {
|
|
2892
|
-
return jspb.Message.
|
|
3078
|
+
return jspb.Message.setRepeatedWrapperField(this, 3, value);
|
|
2893
3079
|
};
|
|
2894
3080
|
|
|
2895
3081
|
|
|
2896
3082
|
/**
|
|
2897
|
-
* @param {
|
|
3083
|
+
* @param {!proto.lansweeper.diagrams.v1.AssetState=} opt_value
|
|
2898
3084
|
* @param {number=} opt_index
|
|
2899
|
-
* @return {!proto.lansweeper.diagrams.v1.
|
|
3085
|
+
* @return {!proto.lansweeper.diagrams.v1.AssetState}
|
|
2900
3086
|
*/
|
|
2901
|
-
proto.lansweeper.diagrams.v1.Filters.prototype.addAssetStates = function(
|
|
2902
|
-
return jspb.Message.
|
|
3087
|
+
proto.lansweeper.diagrams.v1.Filters.prototype.addAssetStates = function(opt_value, opt_index) {
|
|
3088
|
+
return jspb.Message.addToRepeatedWrapperField(this, 3, opt_value, proto.lansweeper.diagrams.v1.AssetState, opt_index);
|
|
2903
3089
|
};
|
|
2904
3090
|
|
|
2905
3091
|
|
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":"AssetType","field":[{"name":"type_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"typeName"},{"name":"is_mandatory","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isMandatory"},{"name":"is_enabled_by_default","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isEnabledByDefault"},{"name":"nb_assets","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"nbAssets"}]},{"name":"IpLocation","field":[{"name":"ip_location_key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"ipLocationKey"},{"name":"ip_location_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"ipLocationName"},{"name":"range_start","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"rangeStart"},{"name":"range_end","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"rangeEnd"},{"name":"nb_assets","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"nbAssets"},{"name":"ip_location_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"ipLocationId"},{"name":"install_key","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"installKey"}]},{"name":"Filters","field":[{"name":"asset_types","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.AssetType","jsonName":"assetTypes"},{"name":"ip_locations","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.IpLocation","jsonName":"ipLocations"},{"name":"asset_states","number":3,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"assetStates"}]},{"name":"NetworkTopologyDiagramResponse","field":[{"name":"assets","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Asset","jsonName":"assets"},{"name":"relationships","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Relationship","jsonName":"relationships"},{"name":"errors","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Error","jsonName":"errors"},{"name":"asset_types","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.AssetType","jsonName":"assetTypes"},{"name":"filters","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Filters","jsonName":"filters"},{"name":"ip_location_name","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"ipLocationName"}]},{"name":"VirtualEnvironmentDiagramResponse","field":[{"name":"assets","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Asset","jsonName":"assets"},{"name":"relationships","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Relationship","jsonName":"relationships"},{"name":"errors","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Error","jsonName":"errors"},{"name":"asset_types","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.AssetType","jsonName":"assetTypes"},{"name":"filters","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Filters","jsonName":"filters"},{"name":"ip_location_name","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"ipLocationName"}]},{"name":"OtDiagramResponse","field":[{"name":"assets","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Asset","jsonName":"assets"},{"name":"relationships","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Relationship","jsonName":"relationships"},{"name":"errors","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Error","jsonName":"errors"},{"name":"asset_types","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.AssetType","jsonName":"assetTypes"},{"name":"filters","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Filters","jsonName":"filters"}]},{"name":"IpLocationsResponse","field":[{"name":"ip_locations","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.IpLocation","jsonName":"ipLocations"}]}],"enumType":[{"name":"ErrorType","value":[{"name":"UNKNOWN","number":0},{"name":"GENERATION_ERROR","number":1},{"name":"NO_ASSET","number":2},{"name":"ASSET_COUNT_THRESHOLD","number":3}]},{"name":"DiagramCategory","value":[{"name":"NETWORK_TOPOLOGY","number":0},{"name":"VIRTUAL_ENVIRONMENT","number":1},{"name":"OT","number":2}]}],"service":[{"name":"DiagramsService","method":[{"name":"GetNetworkTopologyDiagram","inputType":".lansweeper.diagrams.v1.DiagramRequest","outputType":".lansweeper.diagrams.v1.NetworkTopologyDiagramResponse","options":{}},{"name":"GetVirtualEnvironmentDiagram","inputType":".lansweeper.diagrams.v1.DiagramRequest","outputType":".lansweeper.diagrams.v1.VirtualEnvironmentDiagramResponse","options":{}},{"name":"GetOtDiagram","inputType":".lansweeper.diagrams.v1.DiagramRequest","outputType":".lansweeper.diagrams.v1.OtDiagramResponse","options":{}},{"name":"GetIpLocations","inputType":".lansweeper.diagrams.v1.IpLocationsRequest","outputType":".lansweeper.diagrams.v1.IpLocationsResponse","options":{}}]}],"options":{"csharpNamespace":"Lansweeper.Diagrams.GRPC"},"sourceCodeInfo":{"location":[{"span":[0,0,135,1]},{"path":[12],"span":[0,0,18]},{"path":[2],"span":[2,0,31]},{"path":[3,0],"span":[4,0,41]},{"path":[8],"span":[6,0,53]},{"path":[8,37],"span":[6,0,53]},{"path":[6,0],"span":[8,0,13,1]},{"path":[6,0,1],"span":[8,8,23]},{"path":[6,0,2,0],"span":[9,2,91]},{"path":[6,0,2,0,1],"span":[9,6,31]},{"path":[6,0,2,0,2],"span":[9,32,46]},{"path":[6,0,2,0,3],"span":[9,57,87]},{"path":[6,0,2,1],"span":[10,2,97]},{"path":[6,0,2,1,1],"span":[10,6,34]},{"path":[6,0,2,1,2],"span":[10,35,49]},{"path":[6,0,2,1,3],"span":[10,60,93]},{"path":[6,0,2,2],"span":[11,2,65]},{"path":[6,0,2,2,1],"span":[11,6,18]},{"path":[6,0,2,2,2],"span":[11,19,33]},{"path":[6,0,2,2,3],"span":[11,44,61]},{"path":[6,0,2,3],"span":[12,2,73]},{"path":[6,0,2,3,1],"span":[12,6,20]},{"path":[6,0,2,3,2],"span":[12,21,39]},{"path":[6,0,2,3,3],"span":[12,50,69]},{"path":[4,0],"span":[15,0,21,1]},{"path":[4,0,1],"span":[15,8,22]},{"path":[4,0,2,0],"span":[16,2,24]},{"path":[4,0,2,0,5],"span":[16,2,8]},{"path":[4,0,2,0,1],"span":[16,9,19]},{"path":[4,0,2,0,3],"span":[16,22,23]},{"path":[4,0,2,1],"span":[17,2,30]},{"path":[4,0,2,1,5],"span":[17,2,8]},{"path":[4,0,2,1,1],"span":[17,9,25]},{"path":[4,0,2,1,3],"span":[17,28,29]},{"path":[4,0,2,2],"span":[18,2,45]},{"path":[4,0,2,2,6],"span":[18,2,21]},{"path":[4,0,2,2,1],"span":[18,22,40]},{"path":[4,0,2,2,3],"span":[18,43,44]},{"path":[4,0,2,3],"span":[19,2,22]},{"path":[4,0,2,3,5],"span":[19,2,8]},{"path":[4,0,2,3,1],"span":[19,9,17]},{"path":[4,0,2,3,3],"span":[19,20,21]},{"path":[4,0,2,4],"span":[20,2,28]},{"path":[4,0,2,4,5],"span":[20,2,8]},{"path":[4,0,2,4,1],"span":[20,9,23]},{"path":[4,0,2,4,3],"span":[20,26,27]},{"path":[4,1],"span":[23,0,26,1]},{"path":[4,1,1],"span":[23,8,26]},{"path":[4,1,2,0],"span":[24,2,24]},{"path":[4,1,2,0,5],"span":[24,2,8]},{"path":[4,1,2,0,1],"span":[24,9,19]},{"path":[4,1,2,0,3],"span":[24,22,23]},{"path":[4,1,2,1],"span":[25,2,22]},{"path":[4,1,2,1,5],"span":[25,2,8]},{"path":[4,1,2,1,1],"span":[25,9,17]},{"path":[4,1,2,1,3],"span":[25,20,21]},{"path":[4,2],"span":[28,0,44,1]},{"path":[4,2,1],"span":[28,8,13]},{"path":[4,2,2,0],"span":[29,2,24]},{"path":[4,2,2,0,5],"span":[29,2,8]},{"path":[4,2,2,0,1],"span":[29,9,19]},{"path":[4,2,2,0,3],"span":[29,22,23]},{"path":[4,2,2,1],"span":[30,2,17]},{"path":[4,2,2,1,5],"span":[30,2,8]},{"path":[4,2,2,1,1],"span":[30,9,12]},{"path":[4,2,2,1,3],"span":[30,15,16]},{"path":[4,2,2,2],"span":[31,2,18]},{"path":[4,2,2,2,5],"span":[31,2,8]},{"path":[4,2,2,2,1],"span":[31,9,13]},{"path":[4,2,2,2,3],"span":[31,16,17]},{"path":[4,2,2,3],"span":[32,2,23]},{"path":[4,2,2,3,5],"span":[32,2,8]},{"path":[4,2,2,3,1],"span":[32,9,18]},{"path":[4,2,2,3,3],"span":[32,21,22]},{"path":[4,2,2,4],"span":[33,2,23]},{"path":[4,2,2,4,5],"span":[33,2,8]},{"path":[4,2,2,4,1],"span":[33,9,18]},{"path":[4,2,2,4,3],"span":[33,21,22]},{"path":[4,2,2,5],"span":[34,2,20]},{"path":[4,2,2,5,5],"span":[34,2,6]},{"path":[4,2,2,5,1],"span":[34,7,15]},{"path":[4,2,2,5,3],"span":[34,18,19]},{"path":[4,2,2,6],"span":[35,2,24]},{"path":[4,2,2,6,5],"span":[35,2,8]},{"path":[4,2,2,6,1],"span":[35,9,19]},{"path":[4,2,2,6,3],"span":[35,22,23]},{"path":[4,2,2,7],"span":[36,2,31]},{"path":[4,2,2,7,5],"span":[36,2,8]},{"path":[4,2,2,7,1],"span":[36,9,26]},{"path":[4,2,2,7,3],"span":[36,29,30]},{"path":[4,2,2,8],"span":[37,2,22]},{"path":[4,2,2,8,5],"span":[37,2,8]},{"path":[4,2,2,8,1],"span":[37,9,17]},{"path":[4,2,2,8,3],"span":[37,20,21]},{"path":[4,2,2,9],"span":[38,2,23]},{"path":[4,2,2,9,5],"span":[38,2,6]},{"path":[4,2,2,9,1],"span":[38,7,17]},{"path":[4,2,2,9,3],"span":[38,20,22]},{"path":[4,2,2,10],"span":[39,2,26]},{"path":[4,2,2,10,5],"span":[39,2,6]},{"path":[4,2,2,10,1],"span":[39,7,20]},{"path":[4,2,2,10,3],"span":[39,23,25]},{"path":[4,2,2,11],"span":[40,2,34]},{"path":[4,2,2,11,4],"span":[40,2,10]},{"path":[4,2,2,11,6],"span":[40,11,21]},{"path":[4,2,2,11,1],"span":[40,22,28]},{"path":[4,2,2,11,3],"span":[40,31,33]},{"path":[4,2,2,12],"span":[41,2,30]},{"path":[4,2,2,12,5],"span":[41,2,8]},{"path":[4,2,2,12,1],"span":[41,9,24]},{"path":[4,2,2,12,3],"span":[41,27,29]},{"path":[4,2,2,13],"span":[42,2,26]},{"path":[4,2,2,13,5],"span":[42,2,8]},{"path":[4,2,2,13,1],"span":[42,9,20]},{"path":[4,2,2,13,3],"span":[42,23,25]},{"path":[4,2,2,14],"span":[43,2,20]},{"path":[4,2,2,14,5],"span":[43,2,8]},{"path":[4,2,2,14,1],"span":[43,9,14]},{"path":[4,2,2,14,3],"span":[43,17,19]},{"path":[4,3],"span":[46,0,52,1]},{"path":[4,3,1],"span":[46,8,18]},{"path":[4,3,2,0],"span":[47,2,22]},{"path":[4,3,2,0,5],"span":[47,2,8]},{"path":[4,3,2,0,1],"span":[47,9,17]},{"path":[4,3,2,0,3],"span":[47,20,21]},{"path":[4,3,2,1],"span":[48,2,24]},{"path":[4,3,2,1,5],"span":[48,2,8]},{"path":[4,3,2,1,1],"span":[48,9,19]},{"path":[4,3,2,1,3],"span":[48,22,23]},{"path":[4,3,2,2],"span":[49,2,26]},{"path":[4,3,2,2,5],"span":[49,2,8]},{"path":[4,3,2,2,1],"span":[49,9,21]},{"path":[4,3,2,2,3],"span":[49,24,25]},{"path":[4,3,2,3],"span":[50,2,27]},{"path":[4,3,2,3,5],"span":[50,2,8]},{"path":[4,3,2,3,1],"span":[50,9,22]},{"path":[4,3,2,3,3],"span":[50,25,26]},{"path":[4,3,2,4],"span":[51,2,29]},{"path":[4,3,2,4,5],"span":[51,2,8]},{"path":[4,3,2,4,1],"span":[51,9,24]},{"path":[4,3,2,4,3],"span":[51,27,28]},{"path":[5,0],"span":[54,0,59,1]},{"path":[5,0,1],"span":[54,5,14]},{"path":[5,0,2,0],"span":[55,2,14]},{"path":[5,0,2,0,1],"span":[55,2,9]},{"path":[5,0,2,0,2],"span":[55,12,13]},{"path":[5,0,2,1],"span":[56,2,23]},{"path":[5,0,2,1,1],"span":[56,2,18]},{"path":[5,0,2,1,2],"span":[56,21,22]},{"path":[5,0,2,2],"span":[57,2,15]},{"path":[5,0,2,2,1],"span":[57,2,10]},{"path":[5,0,2,2,2],"span":[57,13,14]},{"path":[5,0,2,3],"span":[58,2,28]},{"path":[5,0,2,3,1],"span":[58,2,23]},{"path":[5,0,2,3,2],"span":[58,26,27]},{"path":[5,1],"span":[61,0,65,1]},{"path":[5,1,1],"span":[61,5,20]},{"path":[5,1,2,0],"span":[62,2,23]},{"path":[5,1,2,0,1],"span":[62,2,18]},{"path":[5,1,2,0,2],"span":[62,21,22]},{"path":[5,1,2,1],"span":[63,2,26]},{"path":[5,1,2,1,1],"span":[63,2,21]},{"path":[5,1,2,1,2],"span":[63,24,25]},{"path":[5,1,2,2],"span":[64,2,9]},{"path":[5,1,2,2,1],"span":[64,2,4]},{"path":[5,1,2,2,2],"span":[64,7,8]},{"path":[4,4],"span":[67,0,70,1]},{"path":[4,4,1],"span":[67,8,13]},{"path":[4,4,2,0],"span":[68,2,21]},{"path":[4,4,2,0,6],"span":[68,2,11]},{"path":[4,4,2,0,1],"span":[68,12,16]},{"path":[4,4,2,0,3],"span":[68,19,20]},{"path":[4,4,2,1],"span":[69,2,21]},{"path":[4,4,2,1,5],"span":[69,2,8]},{"path":[4,4,2,1,1],"span":[69,9,16]},{"path":[4,4,2,1,3],"span":[69,19,20]},{"path":[4,5],"span":[72,0,82,1]},{"path":[4,5,1],"span":[72,8,20]},{"path":[4,5,2,0],"span":[73,2,35]},{"path":[4,5,2,0,5],"span":[73,2,8]},{"path":[4,5,2,0,1],"span":[73,9,30]},{"path":[4,5,2,0,3],"span":[73,33,34]},{"path":[4,5,2,1],"span":[74,2,33]},{"path":[4,5,2,1,5],"span":[74,2,8]},{"path":[4,5,2,1,1],"span":[74,9,28]},{"path":[4,5,2,1,3],"span":[74,31,32]},{"path":[4,5,2,2],"span":[75,2,18]},{"path":[4,5,2,2,5],"span":[75,2,8]},{"path":[4,5,2,2,1],"span":[75,9,13]},{"path":[4,5,2,2,3],"span":[75,16,17]},{"path":[4,5,2,3],"span":[76,2,26]},{"path":[4,5,2,3,5],"span":[76,2,8]},{"path":[4,5,2,3,1],"span":[76,9,21]},{"path":[4,5,2,3,3],"span":[76,24,25]},{"path":[4,5,2,4],"span":[77,2,23]},{"path":[4,5,2,4,5],"span":[77,2,8]},{"path":[4,5,2,4,1],"span":[77,9,18]},{"path":[4,5,2,4,3],"span":[77,21,22]},{"path":[4,5,2,5],"span":[78,2,43]},{"path":[4,5,2,5,6],"span":[78,2,27]},{"path":[4,5,2,5,1],"span":[78,28,38]},{"path":[4,5,2,5,3],"span":[78,41,42]},{"path":[4,5,2,6],"span":[79,2,41]},{"path":[4,5,2,6,6],"span":[79,2,27]},{"path":[4,5,2,6,1],"span":[79,28,36]},{"path":[4,5,2,6,3],"span":[79,39,40]},{"path":[4,5,2,7],"span":[80,2,22]},{"path":[4,5,2,7,5],"span":[80,2,8]},{"path":[4,5,2,7,1],"span":[80,9,17]},{"path":[4,5,2,7,3],"span":[80,20,21]},{"path":[4,5,2,8],"span":[81,2,29]},{"path":[4,5,2,8,5],"span":[81,2,8]},{"path":[4,5,2,8,1],"span":[81,9,24]},{"path":[4,5,2,8,3],"span":[81,27,28]},{"path":[4,6],"span":[84,0,89,1]},{"path":[4,6,1],"span":[84,8,17]},{"path":[4,6,2,0],"span":[85,2,23]},{"path":[4,6,2,0,5],"span":[85,2,8]},{"path":[4,6,2,0,1],"span":[85,9,18]},{"path":[4,6,2,0,3],"span":[85,21,22]},{"path":[4,6,2,1],"span":[86,2,24]},{"path":[4,6,2,1,5],"span":[86,2,6]},{"path":[4,6,2,1,1],"span":[86,7,19]},{"path":[4,6,2,1,3],"span":[86,22,23]},{"path":[4,6,2,2],"span":[87,2,33]},{"path":[4,6,2,2,5],"span":[87,2,6]},{"path":[4,6,2,2,1],"span":[87,7,28]},{"path":[4,6,2,2,3],"span":[87,31,32]},{"path":[4,6,2,3],"span":[88,2,22]},{"path":[4,6,2,3,5],"span":[88,2,7]},{"path":[4,6,2,3,1],"span":[88,8,17]},{"path":[4,6,2,3,3],"span":[88,20,21]},{"path":[4,7],"span":[91,0,99,1]},{"path":[4,7,1],"span":[91,8,18]},{"path":[4,7,2,0],"span":[92,2,29]},{"path":[4,7,2,0,5],"span":[92,2,8]},{"path":[4,7,2,0,1],"span":[92,9,24]},{"path":[4,7,2,0,3],"span":[92,27,28]},{"path":[4,7,2,1],"span":[93,2,30]},{"path":[4,7,2,1,5],"span":[93,2,8]},{"path":[4,7,2,1,1],"span":[93,9,25]},{"path":[4,7,2,1,3],"span":[93,28,29]},{"path":[4,7,2,2],"span":[94,2,25]},{"path":[4,7,2,2,5],"span":[94,2,8]},{"path":[4,7,2,2,1],"span":[94,9,20]},{"path":[4,7,2,2,3],"span":[94,23,24]},{"path":[4,7,2,3],"span":[95,2,23]},{"path":[4,7,2,3,5],"span":[95,2,8]},{"path":[4,7,2,3,1],"span":[95,9,18]},{"path":[4,7,2,3,3],"span":[95,21,22]},{"path":[4,7,2,4],"span":[96,2,22]},{"path":[4,7,2,4,5],"span":[96,2,7]},{"path":[4,7,2,4,1],"span":[96,8,17]},{"path":[4,7,2,4,3],"span":[96,20,21]},{"path":[4,7,2,5],"span":[97,2,28]},{"path":[4,7,2,5,5],"span":[97,2,8]},{"path":[4,7,2,5,1],"span":[97,9,23]},{"path":[4,7,2,5,3],"span":[97,26,27]},{"path":[4,7,2,6],"span":[98,2,25]},{"path":[4,7,2,6,5],"span":[98,2,8]},{"path":[4,7,2,6,1],"span":[98,9,20]},{"path":[4,7,2,6,3],"span":[98,23,24]},{"path":[4,8],"span":[101,0,105,1]},{"path":[4,8,1],"span":[101,8,15]},{"path":[4,8,2,0],"span":[102,2,37]},{"path":[4,8,2,0,4],"span":[102,2,10]},{"path":[4,8,2,0,6],"span":[102,11,20]},{"path":[4,8,2,0,1],"span":[102,21,32]},{"path":[4,8,2,0,3],"span":[102,35,36]},{"path":[4,8,2,1],"span":[103,2,39]},{"path":[4,8,2,1,4],"span":[103,2,10]},{"path":[4,8,2,1,6],"span":[103,11,21]},{"path":[4,8,2,1,1],"span":[103,22,34]},{"path":[4,8,2,1,3],"span":[103,37,38]},{"path":[4,8,2,2],"span":[104,2,35]},{"path":[4,8,2,2,4],"span":[104,2,10]},{"path":[4,8,2,2,5],"span":[104,11,17]},{"path":[4,8,2,2,1],"span":[104,18,30]},{"path":[4,8,2,2,3],"span":[104,33,34]},{"path":[4,9],"span":[107,0,114,1]},{"path":[4,9,1],"span":[107,8,38]},{"path":[4,9,2,0],"span":[108,2,28]},{"path":[4,9,2,0,4],"span":[108,2,10]},{"path":[4,9,2,0,6],"span":[108,11,16]},{"path":[4,9,2,0,1],"span":[108,17,23]},{"path":[4,9,2,0,3],"span":[108,26,27]},{"path":[4,9,2,1],"span":[109,2,42]},{"path":[4,9,2,1,4],"span":[109,2,10]},{"path":[4,9,2,1,6],"span":[109,11,23]},{"path":[4,9,2,1,1],"span":[109,24,37]},{"path":[4,9,2,1,3],"span":[109,40,41]},{"path":[4,9,2,2],"span":[110,2,28]},{"path":[4,9,2,2,4],"span":[110,2,10]},{"path":[4,9,2,2,6],"span":[110,11,16]},{"path":[4,9,2,2,1],"span":[110,17,23]},{"path":[4,9,2,2,3],"span":[110,26,27]},{"path":[4,9,2,3],"span":[111,2,37]},{"path":[4,9,2,3,4],"span":[111,2,10]},{"path":[4,9,2,3,6],"span":[111,11,20]},{"path":[4,9,2,3,1],"span":[111,21,32]},{"path":[4,9,2,3,3],"span":[111,35,36]},{"path":[4,9,2,4],"span":[112,2,22]},{"path":[4,9,2,4,6],"span":[112,2,9]},{"path":[4,9,2,4,1],"span":[112,10,17]},{"path":[4,9,2,4,3],"span":[112,20,21]},{"path":[4,9,2,5],"span":[113,2,30]},{"path":[4,9,2,5,5],"span":[113,2,8]},{"path":[4,9,2,5,1],"span":[113,9,25]},{"path":[4,9,2,5,3],"span":[113,28,29]},{"path":[4,10],"span":[116,0,123,1]},{"path":[4,10,1],"span":[116,8,41]},{"path":[4,10,2,0],"span":[117,2,28]},{"path":[4,10,2,0,4],"span":[117,2,10]},{"path":[4,10,2,0,6],"span":[117,11,16]},{"path":[4,10,2,0,1],"span":[117,17,23]},{"path":[4,10,2,0,3],"span":[117,26,27]},{"path":[4,10,2,1],"span":[118,2,42]},{"path":[4,10,2,1,4],"span":[118,2,10]},{"path":[4,10,2,1,6],"span":[118,11,23]},{"path":[4,10,2,1,1],"span":[118,24,37]},{"path":[4,10,2,1,3],"span":[118,40,41]},{"path":[4,10,2,2],"span":[119,2,28]},{"path":[4,10,2,2,4],"span":[119,2,10]},{"path":[4,10,2,2,6],"span":[119,11,16]},{"path":[4,10,2,2,1],"span":[119,17,23]},{"path":[4,10,2,2,3],"span":[119,26,27]},{"path":[4,10,2,3],"span":[120,2,37]},{"path":[4,10,2,3,4],"span":[120,2,10]},{"path":[4,10,2,3,6],"span":[120,11,20]},{"path":[4,10,2,3,1],"span":[120,21,32]},{"path":[4,10,2,3,3],"span":[120,35,36]},{"path":[4,10,2,4],"span":[121,2,22]},{"path":[4,10,2,4,6],"span":[121,2,9]},{"path":[4,10,2,4,1],"span":[121,10,17]},{"path":[4,10,2,4,3],"span":[121,20,21]},{"path":[4,10,2,5],"span":[122,2,30]},{"path":[4,10,2,5,5],"span":[122,2,8]},{"path":[4,10,2,5,1],"span":[122,9,25]},{"path":[4,10,2,5,3],"span":[122,28,29]},{"path":[4,11],"span":[125,0,131,1]},{"path":[4,11,1],"span":[125,8,25]},{"path":[4,11,2,0],"span":[126,2,28]},{"path":[4,11,2,0,4],"span":[126,2,10]},{"path":[4,11,2,0,6],"span":[126,11,16]},{"path":[4,11,2,0,1],"span":[126,17,23]},{"path":[4,11,2,0,3],"span":[126,26,27]},{"path":[4,11,2,1],"span":[127,2,42]},{"path":[4,11,2,1,4],"span":[127,2,10]},{"path":[4,11,2,1,6],"span":[127,11,23]},{"path":[4,11,2,1,1],"span":[127,24,37]},{"path":[4,11,2,1,3],"span":[127,40,41]},{"path":[4,11,2,2],"span":[128,2,28]},{"path":[4,11,2,2,4],"span":[128,2,10]},{"path":[4,11,2,2,6],"span":[128,11,16]},{"path":[4,11,2,2,1],"span":[128,17,23]},{"path":[4,11,2,2,3],"span":[128,26,27]},{"path":[4,11,2,3],"span":[129,2,37]},{"path":[4,11,2,3,4],"span":[129,2,10]},{"path":[4,11,2,3,6],"span":[129,11,20]},{"path":[4,11,2,3,1],"span":[129,21,32]},{"path":[4,11,2,3,3],"span":[129,35,36]},{"path":[4,11,2,4],"span":[130,2,22]},{"path":[4,11,2,4,6],"span":[130,2,9]},{"path":[4,11,2,4,1],"span":[130,10,17]},{"path":[4,11,2,4,3],"span":[130,20,21]},{"path":[4,12],"span":[133,0,135,1]},{"path":[4,12,1],"span":[133,8,27]},{"path":[4,12,2,0],"span":[134,2,39]},{"path":[4,12,2,0,4],"span":[134,2,10]},{"path":[4,12,2,0,6],"span":[134,11,21]},{"path":[4,12,2,0,1],"span":[134,22,34]},{"path":[4,12,2,0,3],"span":[134,37,38]}]},"syntax":"proto3","bufExtension":{"isImport":false,"isSyntaxUnspecified":false}}]}
|
|
1
|
+
{"file":[{"name":"google/protobuf/timestamp.proto","package":"google.protobuf","messageType":[{"name":"Timestamp","field":[{"name":"seconds","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"seconds"},{"name":"nanos","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"nanos"}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"TimestampProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/timestamppb","ccEnableArenas":true,"objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"sourceCodeInfo":{"location":[{"span":[30,0,146,1]},{"path":[12],"span":[30,0,18],"leadingDetachedComments":[" Protocol Buffers - Google's data interchange format\n Copyright 2008 Google Inc. All rights reserved.\n https://developers.google.com/protocol-buffers/\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"]},{"path":[2],"span":[32,0,24]},{"path":[8],"span":[34,0,59]},{"path":[8,37],"span":[34,0,59]},{"path":[8],"span":[35,0,31]},{"path":[8,31],"span":[35,0,31]},{"path":[8],"span":[36,0,73]},{"path":[8,11],"span":[36,0,73]},{"path":[8],"span":[37,0,44]},{"path":[8,1],"span":[37,0,44]},{"path":[8],"span":[38,0,47]},{"path":[8,8],"span":[38,0,47]},{"path":[8],"span":[39,0,34]},{"path":[8,10],"span":[39,0,34]},{"path":[8],"span":[40,0,33]},{"path":[8,36],"span":[40,0,33]},{"path":[4,0],"span":[135,0,146,1],"leadingComments":" A Timestamp represents a point in time independent of any time zone or local\n calendar, encoded as a count of seconds and fractions of seconds at\n nanosecond resolution. The count is relative to an epoch at UTC midnight on\n January 1, 1970, in the proleptic Gregorian calendar which extends the\n Gregorian calendar backwards to year one.\n\n All minutes are 60 seconds long. Leap seconds are \"smeared\" so that no leap\n second table is needed for interpretation, using a [24-hour linear\n smear](https://developers.google.com/time/smear).\n\n The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By\n restricting to that range, we ensure that we can convert to and from [RFC\n 3339](https://www.ietf.org/rfc/rfc3339.txt) date strings.\n\n # Examples\n\n Example 1: Compute Timestamp from POSIX `time()`.\n\n Timestamp timestamp;\n timestamp.set_seconds(time(NULL));\n timestamp.set_nanos(0);\n\n Example 2: Compute Timestamp from POSIX `gettimeofday()`.\n\n struct timeval tv;\n gettimeofday(&tv, NULL);\n\n Timestamp timestamp;\n timestamp.set_seconds(tv.tv_sec);\n timestamp.set_nanos(tv.tv_usec * 1000);\n\n Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`.\n\n FILETIME ft;\n GetSystemTimeAsFileTime(&ft);\n UINT64 ticks = (((UINT64)ft.dwHighDateTime) << 32) | ft.dwLowDateTime;\n\n // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z\n // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.\n Timestamp timestamp;\n timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL));\n timestamp.set_nanos((INT32) ((ticks % 10000000) * 100));\n\n Example 4: Compute Timestamp from Java `System.currentTimeMillis()`.\n\n long millis = System.currentTimeMillis();\n\n Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)\n .setNanos((int) ((millis % 1000) * 1000000)).build();\n\n\n Example 5: Compute Timestamp from Java `Instant.now()`.\n\n Instant now = Instant.now();\n\n Timestamp timestamp =\n Timestamp.newBuilder().setSeconds(now.getEpochSecond())\n .setNanos(now.getNano()).build();\n\n\n Example 6: Compute Timestamp from current time in Python.\n\n timestamp = Timestamp()\n timestamp.GetCurrentTime()\n\n # JSON Mapping\n\n In JSON format, the Timestamp type is encoded as a string in the\n [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the\n format is \"{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z\"\n where {year} is always expressed using four digits while {month}, {day},\n {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional\n seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution),\n are optional. The \"Z\" suffix indicates the timezone (\"UTC\"); the timezone\n is required. A proto3 JSON serializer should always use UTC (as indicated by\n \"Z\") when printing the Timestamp type and a proto3 JSON parser should be\n able to accept both UTC and other timezones (as indicated by an offset).\n\n For example, \"2017-01-15T01:30:15.01Z\" encodes 15.01 seconds past\n 01:30 UTC on January 15, 2017.\n\n In JavaScript, one can convert a Date object to this format using the\n standard\n [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString)\n method. In Python, a standard `datetime.datetime` object can be converted\n to this format using\n [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with\n the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use\n the Joda Time's [`ISODateTimeFormat.dateTime()`](\n http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D\n ) to obtain a formatter capable of generating timestamps in this format.\n\n\n"},{"path":[4,0,1],"span":[135,8,17]},{"path":[4,0,2,0],"span":[139,2,20],"leadingComments":" Represents seconds of UTC time since Unix epoch\n 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to\n 9999-12-31T23:59:59Z inclusive.\n"},{"path":[4,0,2,0,5],"span":[139,2,7]},{"path":[4,0,2,0,1],"span":[139,8,15]},{"path":[4,0,2,0,3],"span":[139,18,19]},{"path":[4,0,2,1],"span":[145,2,18],"leadingComments":" Non-negative fractions of a second at nanosecond resolution. Negative\n second values with fractions must still have non-negative nanos values\n that count forward in time. Must be from 0 to 999,999,999\n inclusive.\n"},{"path":[4,0,2,1,5],"span":[145,2,7]},{"path":[4,0,2,1,1],"span":[145,8,13]},{"path":[4,0,2,1,3],"span":[145,16,17]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"proto/diagrams.proto","package":"lansweeper.diagrams.v1","dependency":["google/protobuf/timestamp.proto"],"messageType":[{"name":"DiagramRequest","field":[{"name":"client_key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientKey"},{"name":"installation_key","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"installationKey"},{"name":"asset_scopes_rules","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.DiagramRequest.AssetScopesRulesEntry","jsonName":"assetScopesRules"},{"name":"trace_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"traceId"},{"name":"ip_location_id","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"ipLocationId"}],"nestedType":[{"name":"AssetScopesRulesEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"value"}],"options":{"mapEntry":true}}]},{"name":"IpLocationsRequest","field":[{"name":"client_key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientKey"},{"name":"trace_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"traceId"}]},{"name":"Asset","field":[{"name":"unique_key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"uniqueKey"},{"name":"key","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"type_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"typeName"},{"name":"group_key","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"groupKey"},{"name":"is_group","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isGroup"},{"name":"ip_address","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"ipAddress"},{"name":"vm_running_status","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"vmRunningStatus"},{"name":"category","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"category"},{"name":"is_virtual","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isVirtual"},{"name":"is_vm_running","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isVmRunning"},{"name":"errors","number":12,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.AssetError","jsonName":"errors"},{"name":"ip_location_key","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"ipLocationKey"},{"name":"mac_address","number":14,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"macAddress"},{"name":"state","number":15,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"state"}]},{"name":"AssetError","field":[{"name":"error_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"errorId"},{"name":"error_text","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"errorText"},{"name":"last_changed","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"lastChanged"},{"name":"error_type_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"errorTypeId"},{"name":"error_type_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"errorTypeName"}]},{"name":"Error","field":[{"name":"type","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.diagrams.v1.ErrorType","jsonName":"type"},{"name":"message","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"message"}]},{"name":"Relationship","field":[{"name":"from_asset_unique_key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"fromAssetUniqueKey"},{"name":"to_asset_unique_key","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"toAssetUniqueKey"},{"name":"name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"reverse_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"reverseName"},{"name":"icon_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"iconName"},{"name":"start_date","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"startDate"},{"name":"end_date","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","jsonName":"endDate"},{"name":"comments","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"comments"},{"name":"generation_type","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"generationType"}]},{"name":"AssetType","field":[{"name":"type_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"typeName"},{"name":"is_mandatory","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isMandatory"},{"name":"is_enabled_by_default","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isEnabledByDefault"},{"name":"nb_assets","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"nbAssets"}]},{"name":"IpLocation","field":[{"name":"ip_location_key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"ipLocationKey"},{"name":"ip_location_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"ipLocationName"},{"name":"range_start","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"rangeStart"},{"name":"range_end","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"rangeEnd"},{"name":"nb_assets","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"nbAssets"},{"name":"ip_location_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"ipLocationId"},{"name":"install_key","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"installKey"}]},{"name":"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":"NetworkTopologyDiagramResponse","field":[{"name":"assets","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Asset","jsonName":"assets"},{"name":"relationships","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Relationship","jsonName":"relationships"},{"name":"errors","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Error","jsonName":"errors"},{"name":"asset_types","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.AssetType","jsonName":"assetTypes"},{"name":"filters","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Filters","jsonName":"filters"},{"name":"ip_location_name","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"ipLocationName"}]},{"name":"VirtualEnvironmentDiagramResponse","field":[{"name":"assets","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Asset","jsonName":"assets"},{"name":"relationships","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Relationship","jsonName":"relationships"},{"name":"errors","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Error","jsonName":"errors"},{"name":"asset_types","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.AssetType","jsonName":"assetTypes"},{"name":"filters","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Filters","jsonName":"filters"},{"name":"ip_location_name","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"ipLocationName"}]},{"name":"OtDiagramResponse","field":[{"name":"assets","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Asset","jsonName":"assets"},{"name":"relationships","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Relationship","jsonName":"relationships"},{"name":"errors","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Error","jsonName":"errors"},{"name":"asset_types","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.AssetType","jsonName":"assetTypes"},{"name":"filters","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.Filters","jsonName":"filters"}]},{"name":"IpLocationsResponse","field":[{"name":"ip_locations","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.IpLocation","jsonName":"ipLocations"}]}],"enumType":[{"name":"ErrorType","value":[{"name":"UNKNOWN","number":0},{"name":"GENERATION_ERROR","number":1},{"name":"NO_ASSET","number":2},{"name":"ASSET_COUNT_THRESHOLD","number":3}]},{"name":"DiagramCategory","value":[{"name":"NETWORK_TOPOLOGY","number":0},{"name":"VIRTUAL_ENVIRONMENT","number":1},{"name":"OT","number":2}]}],"service":[{"name":"DiagramsService","method":[{"name":"GetNetworkTopologyDiagram","inputType":".lansweeper.diagrams.v1.DiagramRequest","outputType":".lansweeper.diagrams.v1.NetworkTopologyDiagramResponse","options":{}},{"name":"GetVirtualEnvironmentDiagram","inputType":".lansweeper.diagrams.v1.DiagramRequest","outputType":".lansweeper.diagrams.v1.VirtualEnvironmentDiagramResponse","options":{}},{"name":"GetOtDiagram","inputType":".lansweeper.diagrams.v1.DiagramRequest","outputType":".lansweeper.diagrams.v1.OtDiagramResponse","options":{}},{"name":"GetIpLocations","inputType":".lansweeper.diagrams.v1.IpLocationsRequest","outputType":".lansweeper.diagrams.v1.IpLocationsResponse","options":{}}]}],"options":{"csharpNamespace":"Lansweeper.Diagrams.GRPC"},"sourceCodeInfo":{"location":[{"span":[0,0,140,1]},{"path":[12],"span":[0,0,18]},{"path":[2],"span":[2,0,31]},{"path":[3,0],"span":[4,0,41]},{"path":[8],"span":[6,0,53]},{"path":[8,37],"span":[6,0,53]},{"path":[6,0],"span":[8,0,13,1]},{"path":[6,0,1],"span":[8,8,23]},{"path":[6,0,2,0],"span":[9,2,91]},{"path":[6,0,2,0,1],"span":[9,6,31]},{"path":[6,0,2,0,2],"span":[9,32,46]},{"path":[6,0,2,0,3],"span":[9,57,87]},{"path":[6,0,2,1],"span":[10,2,97]},{"path":[6,0,2,1,1],"span":[10,6,34]},{"path":[6,0,2,1,2],"span":[10,35,49]},{"path":[6,0,2,1,3],"span":[10,60,93]},{"path":[6,0,2,2],"span":[11,2,65]},{"path":[6,0,2,2,1],"span":[11,6,18]},{"path":[6,0,2,2,2],"span":[11,19,33]},{"path":[6,0,2,2,3],"span":[11,44,61]},{"path":[6,0,2,3],"span":[12,2,73]},{"path":[6,0,2,3,1],"span":[12,6,20]},{"path":[6,0,2,3,2],"span":[12,21,39]},{"path":[6,0,2,3,3],"span":[12,50,69]},{"path":[4,0],"span":[15,0,21,1]},{"path":[4,0,1],"span":[15,8,22]},{"path":[4,0,2,0],"span":[16,2,24]},{"path":[4,0,2,0,5],"span":[16,2,8]},{"path":[4,0,2,0,1],"span":[16,9,19]},{"path":[4,0,2,0,3],"span":[16,22,23]},{"path":[4,0,2,1],"span":[17,2,30]},{"path":[4,0,2,1,5],"span":[17,2,8]},{"path":[4,0,2,1,1],"span":[17,9,25]},{"path":[4,0,2,1,3],"span":[17,28,29]},{"path":[4,0,2,2],"span":[18,2,45]},{"path":[4,0,2,2,6],"span":[18,2,21]},{"path":[4,0,2,2,1],"span":[18,22,40]},{"path":[4,0,2,2,3],"span":[18,43,44]},{"path":[4,0,2,3],"span":[19,2,22]},{"path":[4,0,2,3,5],"span":[19,2,8]},{"path":[4,0,2,3,1],"span":[19,9,17]},{"path":[4,0,2,3,3],"span":[19,20,21]},{"path":[4,0,2,4],"span":[20,2,28]},{"path":[4,0,2,4,5],"span":[20,2,8]},{"path":[4,0,2,4,1],"span":[20,9,23]},{"path":[4,0,2,4,3],"span":[20,26,27]},{"path":[4,1],"span":[23,0,26,1]},{"path":[4,1,1],"span":[23,8,26]},{"path":[4,1,2,0],"span":[24,2,24]},{"path":[4,1,2,0,5],"span":[24,2,8]},{"path":[4,1,2,0,1],"span":[24,9,19]},{"path":[4,1,2,0,3],"span":[24,22,23]},{"path":[4,1,2,1],"span":[25,2,22]},{"path":[4,1,2,1,5],"span":[25,2,8]},{"path":[4,1,2,1,1],"span":[25,9,17]},{"path":[4,1,2,1,3],"span":[25,20,21]},{"path":[4,2],"span":[28,0,44,1]},{"path":[4,2,1],"span":[28,8,13]},{"path":[4,2,2,0],"span":[29,2,24]},{"path":[4,2,2,0,5],"span":[29,2,8]},{"path":[4,2,2,0,1],"span":[29,9,19]},{"path":[4,2,2,0,3],"span":[29,22,23]},{"path":[4,2,2,1],"span":[30,2,17]},{"path":[4,2,2,1,5],"span":[30,2,8]},{"path":[4,2,2,1,1],"span":[30,9,12]},{"path":[4,2,2,1,3],"span":[30,15,16]},{"path":[4,2,2,2],"span":[31,2,18]},{"path":[4,2,2,2,5],"span":[31,2,8]},{"path":[4,2,2,2,1],"span":[31,9,13]},{"path":[4,2,2,2,3],"span":[31,16,17]},{"path":[4,2,2,3],"span":[32,2,23]},{"path":[4,2,2,3,5],"span":[32,2,8]},{"path":[4,2,2,3,1],"span":[32,9,18]},{"path":[4,2,2,3,3],"span":[32,21,22]},{"path":[4,2,2,4],"span":[33,2,23]},{"path":[4,2,2,4,5],"span":[33,2,8]},{"path":[4,2,2,4,1],"span":[33,9,18]},{"path":[4,2,2,4,3],"span":[33,21,22]},{"path":[4,2,2,5],"span":[34,2,20]},{"path":[4,2,2,5,5],"span":[34,2,6]},{"path":[4,2,2,5,1],"span":[34,7,15]},{"path":[4,2,2,5,3],"span":[34,18,19]},{"path":[4,2,2,6],"span":[35,2,24]},{"path":[4,2,2,6,5],"span":[35,2,8]},{"path":[4,2,2,6,1],"span":[35,9,19]},{"path":[4,2,2,6,3],"span":[35,22,23]},{"path":[4,2,2,7],"span":[36,2,31]},{"path":[4,2,2,7,5],"span":[36,2,8]},{"path":[4,2,2,7,1],"span":[36,9,26]},{"path":[4,2,2,7,3],"span":[36,29,30]},{"path":[4,2,2,8],"span":[37,2,22]},{"path":[4,2,2,8,5],"span":[37,2,8]},{"path":[4,2,2,8,1],"span":[37,9,17]},{"path":[4,2,2,8,3],"span":[37,20,21]},{"path":[4,2,2,9],"span":[38,2,23]},{"path":[4,2,2,9,5],"span":[38,2,6]},{"path":[4,2,2,9,1],"span":[38,7,17]},{"path":[4,2,2,9,3],"span":[38,20,22]},{"path":[4,2,2,10],"span":[39,2,26]},{"path":[4,2,2,10,5],"span":[39,2,6]},{"path":[4,2,2,10,1],"span":[39,7,20]},{"path":[4,2,2,10,3],"span":[39,23,25]},{"path":[4,2,2,11],"span":[40,2,34]},{"path":[4,2,2,11,4],"span":[40,2,10]},{"path":[4,2,2,11,6],"span":[40,11,21]},{"path":[4,2,2,11,1],"span":[40,22,28]},{"path":[4,2,2,11,3],"span":[40,31,33]},{"path":[4,2,2,12],"span":[41,2,30]},{"path":[4,2,2,12,5],"span":[41,2,8]},{"path":[4,2,2,12,1],"span":[41,9,24]},{"path":[4,2,2,12,3],"span":[41,27,29]},{"path":[4,2,2,13],"span":[42,2,26]},{"path":[4,2,2,13,5],"span":[42,2,8]},{"path":[4,2,2,13,1],"span":[42,9,20]},{"path":[4,2,2,13,3],"span":[42,23,25]},{"path":[4,2,2,14],"span":[43,2,20]},{"path":[4,2,2,14,5],"span":[43,2,8]},{"path":[4,2,2,14,1],"span":[43,9,14]},{"path":[4,2,2,14,3],"span":[43,17,19]},{"path":[4,3],"span":[46,0,52,1]},{"path":[4,3,1],"span":[46,8,18]},{"path":[4,3,2,0],"span":[47,2,22]},{"path":[4,3,2,0,5],"span":[47,2,8]},{"path":[4,3,2,0,1],"span":[47,9,17]},{"path":[4,3,2,0,3],"span":[47,20,21]},{"path":[4,3,2,1],"span":[48,2,24]},{"path":[4,3,2,1,5],"span":[48,2,8]},{"path":[4,3,2,1,1],"span":[48,9,19]},{"path":[4,3,2,1,3],"span":[48,22,23]},{"path":[4,3,2,2],"span":[49,2,26]},{"path":[4,3,2,2,5],"span":[49,2,8]},{"path":[4,3,2,2,1],"span":[49,9,21]},{"path":[4,3,2,2,3],"span":[49,24,25]},{"path":[4,3,2,3],"span":[50,2,27]},{"path":[4,3,2,3,5],"span":[50,2,8]},{"path":[4,3,2,3,1],"span":[50,9,22]},{"path":[4,3,2,3,3],"span":[50,25,26]},{"path":[4,3,2,4],"span":[51,2,29]},{"path":[4,3,2,4,5],"span":[51,2,8]},{"path":[4,3,2,4,1],"span":[51,9,24]},{"path":[4,3,2,4,3],"span":[51,27,28]},{"path":[5,0],"span":[54,0,59,1]},{"path":[5,0,1],"span":[54,5,14]},{"path":[5,0,2,0],"span":[55,2,14]},{"path":[5,0,2,0,1],"span":[55,2,9]},{"path":[5,0,2,0,2],"span":[55,12,13]},{"path":[5,0,2,1],"span":[56,2,23]},{"path":[5,0,2,1,1],"span":[56,2,18]},{"path":[5,0,2,1,2],"span":[56,21,22]},{"path":[5,0,2,2],"span":[57,2,15]},{"path":[5,0,2,2,1],"span":[57,2,10]},{"path":[5,0,2,2,2],"span":[57,13,14]},{"path":[5,0,2,3],"span":[58,2,28]},{"path":[5,0,2,3,1],"span":[58,2,23]},{"path":[5,0,2,3,2],"span":[58,26,27]},{"path":[5,1],"span":[61,0,65,1]},{"path":[5,1,1],"span":[61,5,20]},{"path":[5,1,2,0],"span":[62,2,23]},{"path":[5,1,2,0,1],"span":[62,2,18]},{"path":[5,1,2,0,2],"span":[62,21,22]},{"path":[5,1,2,1],"span":[63,2,26]},{"path":[5,1,2,1,1],"span":[63,2,21]},{"path":[5,1,2,1,2],"span":[63,24,25]},{"path":[5,1,2,2],"span":[64,2,9]},{"path":[5,1,2,2,1],"span":[64,2,4]},{"path":[5,1,2,2,2],"span":[64,7,8]},{"path":[4,4],"span":[67,0,70,1]},{"path":[4,4,1],"span":[67,8,13]},{"path":[4,4,2,0],"span":[68,2,21]},{"path":[4,4,2,0,6],"span":[68,2,11]},{"path":[4,4,2,0,1],"span":[68,12,16]},{"path":[4,4,2,0,3],"span":[68,19,20]},{"path":[4,4,2,1],"span":[69,2,21]},{"path":[4,4,2,1,5],"span":[69,2,8]},{"path":[4,4,2,1,1],"span":[69,9,16]},{"path":[4,4,2,1,3],"span":[69,19,20]},{"path":[4,5],"span":[72,0,82,1]},{"path":[4,5,1],"span":[72,8,20]},{"path":[4,5,2,0],"span":[73,2,35]},{"path":[4,5,2,0,5],"span":[73,2,8]},{"path":[4,5,2,0,1],"span":[73,9,30]},{"path":[4,5,2,0,3],"span":[73,33,34]},{"path":[4,5,2,1],"span":[74,2,33]},{"path":[4,5,2,1,5],"span":[74,2,8]},{"path":[4,5,2,1,1],"span":[74,9,28]},{"path":[4,5,2,1,3],"span":[74,31,32]},{"path":[4,5,2,2],"span":[75,2,18]},{"path":[4,5,2,2,5],"span":[75,2,8]},{"path":[4,5,2,2,1],"span":[75,9,13]},{"path":[4,5,2,2,3],"span":[75,16,17]},{"path":[4,5,2,3],"span":[76,2,26]},{"path":[4,5,2,3,5],"span":[76,2,8]},{"path":[4,5,2,3,1],"span":[76,9,21]},{"path":[4,5,2,3,3],"span":[76,24,25]},{"path":[4,5,2,4],"span":[77,2,23]},{"path":[4,5,2,4,5],"span":[77,2,8]},{"path":[4,5,2,4,1],"span":[77,9,18]},{"path":[4,5,2,4,3],"span":[77,21,22]},{"path":[4,5,2,5],"span":[78,2,43]},{"path":[4,5,2,5,6],"span":[78,2,27]},{"path":[4,5,2,5,1],"span":[78,28,38]},{"path":[4,5,2,5,3],"span":[78,41,42]},{"path":[4,5,2,6],"span":[79,2,41]},{"path":[4,5,2,6,6],"span":[79,2,27]},{"path":[4,5,2,6,1],"span":[79,28,36]},{"path":[4,5,2,6,3],"span":[79,39,40]},{"path":[4,5,2,7],"span":[80,2,22]},{"path":[4,5,2,7,5],"span":[80,2,8]},{"path":[4,5,2,7,1],"span":[80,9,17]},{"path":[4,5,2,7,3],"span":[80,20,21]},{"path":[4,5,2,8],"span":[81,2,29]},{"path":[4,5,2,8,5],"span":[81,2,8]},{"path":[4,5,2,8,1],"span":[81,9,24]},{"path":[4,5,2,8,3],"span":[81,27,28]},{"path":[4,6],"span":[84,0,89,1]},{"path":[4,6,1],"span":[84,8,17]},{"path":[4,6,2,0],"span":[85,2,23]},{"path":[4,6,2,0,5],"span":[85,2,8]},{"path":[4,6,2,0,1],"span":[85,9,18]},{"path":[4,6,2,0,3],"span":[85,21,22]},{"path":[4,6,2,1],"span":[86,2,24]},{"path":[4,6,2,1,5],"span":[86,2,6]},{"path":[4,6,2,1,1],"span":[86,7,19]},{"path":[4,6,2,1,3],"span":[86,22,23]},{"path":[4,6,2,2],"span":[87,2,33]},{"path":[4,6,2,2,5],"span":[87,2,6]},{"path":[4,6,2,2,1],"span":[87,7,28]},{"path":[4,6,2,2,3],"span":[87,31,32]},{"path":[4,6,2,3],"span":[88,2,22]},{"path":[4,6,2,3,5],"span":[88,2,7]},{"path":[4,6,2,3,1],"span":[88,8,17]},{"path":[4,6,2,3,3],"span":[88,20,21]},{"path":[4,7],"span":[91,0,99,1]},{"path":[4,7,1],"span":[91,8,18]},{"path":[4,7,2,0],"span":[92,2,29]},{"path":[4,7,2,0,5],"span":[92,2,8]},{"path":[4,7,2,0,1],"span":[92,9,24]},{"path":[4,7,2,0,3],"span":[92,27,28]},{"path":[4,7,2,1],"span":[93,2,30]},{"path":[4,7,2,1,5],"span":[93,2,8]},{"path":[4,7,2,1,1],"span":[93,9,25]},{"path":[4,7,2,1,3],"span":[93,28,29]},{"path":[4,7,2,2],"span":[94,2,25]},{"path":[4,7,2,2,5],"span":[94,2,8]},{"path":[4,7,2,2,1],"span":[94,9,20]},{"path":[4,7,2,2,3],"span":[94,23,24]},{"path":[4,7,2,3],"span":[95,2,23]},{"path":[4,7,2,3,5],"span":[95,2,8]},{"path":[4,7,2,3,1],"span":[95,9,18]},{"path":[4,7,2,3,3],"span":[95,21,22]},{"path":[4,7,2,4],"span":[96,2,22]},{"path":[4,7,2,4,5],"span":[96,2,7]},{"path":[4,7,2,4,1],"span":[96,8,17]},{"path":[4,7,2,4,3],"span":[96,20,21]},{"path":[4,7,2,5],"span":[97,2,28]},{"path":[4,7,2,5,5],"span":[97,2,8]},{"path":[4,7,2,5,1],"span":[97,9,23]},{"path":[4,7,2,5,3],"span":[97,26,27]},{"path":[4,7,2,6],"span":[98,2,25]},{"path":[4,7,2,6,5],"span":[98,2,8]},{"path":[4,7,2,6,1],"span":[98,9,20]},{"path":[4,7,2,6,3],"span":[98,23,24]},{"path":[4,8],"span":[101,0,104,1]},{"path":[4,8,1],"span":[101,8,18]},{"path":[4,8,2,0],"span":[102,2,24]},{"path":[4,8,2,0,5],"span":[102,2,8]},{"path":[4,8,2,0,1],"span":[102,9,19]},{"path":[4,8,2,0,3],"span":[102,22,23]},{"path":[4,8,2,1],"span":[103,2,22]},{"path":[4,8,2,1,5],"span":[103,2,7]},{"path":[4,8,2,1,1],"span":[103,8,17]},{"path":[4,8,2,1,3],"span":[103,20,21]},{"path":[4,9],"span":[106,0,110,1]},{"path":[4,9,1],"span":[106,8,15]},{"path":[4,9,2,0],"span":[107,2,37]},{"path":[4,9,2,0,4],"span":[107,2,10]},{"path":[4,9,2,0,6],"span":[107,11,20]},{"path":[4,9,2,0,1],"span":[107,21,32]},{"path":[4,9,2,0,3],"span":[107,35,36]},{"path":[4,9,2,1],"span":[108,2,39]},{"path":[4,9,2,1,4],"span":[108,2,10]},{"path":[4,9,2,1,6],"span":[108,11,21]},{"path":[4,9,2,1,1],"span":[108,22,34]},{"path":[4,9,2,1,3],"span":[108,37,38]},{"path":[4,9,2,2],"span":[109,2,39]},{"path":[4,9,2,2,4],"span":[109,2,10]},{"path":[4,9,2,2,6],"span":[109,11,21]},{"path":[4,9,2,2,1],"span":[109,22,34]},{"path":[4,9,2,2,3],"span":[109,37,38]},{"path":[4,10],"span":[112,0,119,1]},{"path":[4,10,1],"span":[112,8,38]},{"path":[4,10,2,0],"span":[113,2,28]},{"path":[4,10,2,0,4],"span":[113,2,10]},{"path":[4,10,2,0,6],"span":[113,11,16]},{"path":[4,10,2,0,1],"span":[113,17,23]},{"path":[4,10,2,0,3],"span":[113,26,27]},{"path":[4,10,2,1],"span":[114,2,42]},{"path":[4,10,2,1,4],"span":[114,2,10]},{"path":[4,10,2,1,6],"span":[114,11,23]},{"path":[4,10,2,1,1],"span":[114,24,37]},{"path":[4,10,2,1,3],"span":[114,40,41]},{"path":[4,10,2,2],"span":[115,2,28]},{"path":[4,10,2,2,4],"span":[115,2,10]},{"path":[4,10,2,2,6],"span":[115,11,16]},{"path":[4,10,2,2,1],"span":[115,17,23]},{"path":[4,10,2,2,3],"span":[115,26,27]},{"path":[4,10,2,3],"span":[116,2,37]},{"path":[4,10,2,3,4],"span":[116,2,10]},{"path":[4,10,2,3,6],"span":[116,11,20]},{"path":[4,10,2,3,1],"span":[116,21,32]},{"path":[4,10,2,3,3],"span":[116,35,36]},{"path":[4,10,2,4],"span":[117,2,22]},{"path":[4,10,2,4,6],"span":[117,2,9]},{"path":[4,10,2,4,1],"span":[117,10,17]},{"path":[4,10,2,4,3],"span":[117,20,21]},{"path":[4,10,2,5],"span":[118,2,30]},{"path":[4,10,2,5,5],"span":[118,2,8]},{"path":[4,10,2,5,1],"span":[118,9,25]},{"path":[4,10,2,5,3],"span":[118,28,29]},{"path":[4,11],"span":[121,0,128,1]},{"path":[4,11,1],"span":[121,8,41]},{"path":[4,11,2,0],"span":[122,2,28]},{"path":[4,11,2,0,4],"span":[122,2,10]},{"path":[4,11,2,0,6],"span":[122,11,16]},{"path":[4,11,2,0,1],"span":[122,17,23]},{"path":[4,11,2,0,3],"span":[122,26,27]},{"path":[4,11,2,1],"span":[123,2,42]},{"path":[4,11,2,1,4],"span":[123,2,10]},{"path":[4,11,2,1,6],"span":[123,11,23]},{"path":[4,11,2,1,1],"span":[123,24,37]},{"path":[4,11,2,1,3],"span":[123,40,41]},{"path":[4,11,2,2],"span":[124,2,28]},{"path":[4,11,2,2,4],"span":[124,2,10]},{"path":[4,11,2,2,6],"span":[124,11,16]},{"path":[4,11,2,2,1],"span":[124,17,23]},{"path":[4,11,2,2,3],"span":[124,26,27]},{"path":[4,11,2,3],"span":[125,2,37]},{"path":[4,11,2,3,4],"span":[125,2,10]},{"path":[4,11,2,3,6],"span":[125,11,20]},{"path":[4,11,2,3,1],"span":[125,21,32]},{"path":[4,11,2,3,3],"span":[125,35,36]},{"path":[4,11,2,4],"span":[126,2,22]},{"path":[4,11,2,4,6],"span":[126,2,9]},{"path":[4,11,2,4,1],"span":[126,10,17]},{"path":[4,11,2,4,3],"span":[126,20,21]},{"path":[4,11,2,5],"span":[127,2,30]},{"path":[4,11,2,5,5],"span":[127,2,8]},{"path":[4,11,2,5,1],"span":[127,9,25]},{"path":[4,11,2,5,3],"span":[127,28,29]},{"path":[4,12],"span":[130,0,136,1]},{"path":[4,12,1],"span":[130,8,25]},{"path":[4,12,2,0],"span":[131,2,28]},{"path":[4,12,2,0,4],"span":[131,2,10]},{"path":[4,12,2,0,6],"span":[131,11,16]},{"path":[4,12,2,0,1],"span":[131,17,23]},{"path":[4,12,2,0,3],"span":[131,26,27]},{"path":[4,12,2,1],"span":[132,2,42]},{"path":[4,12,2,1,4],"span":[132,2,10]},{"path":[4,12,2,1,6],"span":[132,11,23]},{"path":[4,12,2,1,1],"span":[132,24,37]},{"path":[4,12,2,1,3],"span":[132,40,41]},{"path":[4,12,2,2],"span":[133,2,28]},{"path":[4,12,2,2,4],"span":[133,2,10]},{"path":[4,12,2,2,6],"span":[133,11,16]},{"path":[4,12,2,2,1],"span":[133,17,23]},{"path":[4,12,2,2,3],"span":[133,26,27]},{"path":[4,12,2,3],"span":[134,2,37]},{"path":[4,12,2,3,4],"span":[134,2,10]},{"path":[4,12,2,3,6],"span":[134,11,20]},{"path":[4,12,2,3,1],"span":[134,21,32]},{"path":[4,12,2,3,3],"span":[134,35,36]},{"path":[4,12,2,4],"span":[135,2,22]},{"path":[4,12,2,4,6],"span":[135,2,9]},{"path":[4,12,2,4,1],"span":[135,10,17]},{"path":[4,12,2,4,3],"span":[135,20,21]},{"path":[4,13],"span":[138,0,140,1]},{"path":[4,13,1],"span":[138,8,27]},{"path":[4,13,2,0],"span":[139,2,39]},{"path":[4,13,2,0,4],"span":[139,2,10]},{"path":[4,13,2,0,6],"span":[139,11,21]},{"path":[4,13,2,0,1],"span":[139,22,34]},{"path":[4,13,2,0,3],"span":[139,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.30")]
|
|
18
|
+
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("0.0.30")]
|
|
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.30.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
|
+
fb93a08a3a29a91e21fd50118a1dd9971a23fbc2
|
|
Binary file
|
|
Binary file
|
|
@@ -56,48 +56,50 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
56
56
|
"b2NhdGlvbhIXCg9pcF9sb2NhdGlvbl9rZXkYASABKAkSGAoQaXBfbG9jYXRp",
|
|
57
57
|
"b25fbmFtZRgCIAEoCRITCgtyYW5nZV9zdGFydBgDIAEoCRIRCglyYW5nZV9l",
|
|
58
58
|
"bmQYBCABKAkSEQoJbmJfYXNzZXRzGAUgASgFEhYKDmlwX2xvY2F0aW9uX2lk",
|
|
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
|
-
"
|
|
59
|
+
"GAYgASgJEhMKC2luc3RhbGxfa2V5GAcgASgJIjMKCkFzc2V0U3RhdGUSEgoK",
|
|
60
|
+
"c3RhdGVfbmFtZRgBIAEoCRIRCgluYl9hc3NldHMYAiABKAUitQEKB0ZpbHRl",
|
|
61
|
+
"cnMSNgoLYXNzZXRfdHlwZXMYASADKAsyIS5sYW5zd2VlcGVyLmRpYWdyYW1z",
|
|
62
|
+
"LnYxLkFzc2V0VHlwZRI4CgxpcF9sb2NhdGlvbnMYAiADKAsyIi5sYW5zd2Vl",
|
|
63
|
+
"cGVyLmRpYWdyYW1zLnYxLklwTG9jYXRpb24SOAoMYXNzZXRfc3RhdGVzGAMg",
|
|
64
|
+
"AygLMiIubGFuc3dlZXBlci5kaWFncmFtcy52MS5Bc3NldFN0YXRlIr8CCh5O",
|
|
65
|
+
"ZXR3b3JrVG9wb2xvZ3lEaWFncmFtUmVzcG9uc2USLQoGYXNzZXRzGAEgAygL",
|
|
66
|
+
"Mh0ubGFuc3dlZXBlci5kaWFncmFtcy52MS5Bc3NldBI7Cg1yZWxhdGlvbnNo",
|
|
67
|
+
"aXBzGAIgAygLMiQubGFuc3dlZXBlci5kaWFncmFtcy52MS5SZWxhdGlvbnNo",
|
|
68
|
+
"aXASLQoGZXJyb3JzGAMgAygLMh0ubGFuc3dlZXBlci5kaWFncmFtcy52MS5F",
|
|
69
|
+
"cnJvchI2Cgthc3NldF90eXBlcxgEIAMoCzIhLmxhbnN3ZWVwZXIuZGlhZ3Jh",
|
|
70
|
+
"bXMudjEuQXNzZXRUeXBlEjAKB2ZpbHRlcnMYBSABKAsyHy5sYW5zd2VlcGVy",
|
|
71
|
+
"LmRpYWdyYW1zLnYxLkZpbHRlcnMSGAoQaXBfbG9jYXRpb25fbmFtZRgGIAEo",
|
|
72
|
+
"CSLCAgohVmlydHVhbEVudmlyb25tZW50RGlhZ3JhbVJlc3BvbnNlEi0KBmFz",
|
|
73
|
+
"c2V0cxgBIAMoCzIdLmxhbnN3ZWVwZXIuZGlhZ3JhbXMudjEuQXNzZXQSOwoN",
|
|
74
|
+
"cmVsYXRpb25zaGlwcxgCIAMoCzIkLmxhbnN3ZWVwZXIuZGlhZ3JhbXMudjEu",
|
|
75
|
+
"UmVsYXRpb25zaGlwEi0KBmVycm9ycxgDIAMoCzIdLmxhbnN3ZWVwZXIuZGlh",
|
|
76
|
+
"Z3JhbXMudjEuRXJyb3ISNgoLYXNzZXRfdHlwZXMYBCADKAsyIS5sYW5zd2Vl",
|
|
77
|
+
"cGVyLmRpYWdyYW1zLnYxLkFzc2V0VHlwZRIwCgdmaWx0ZXJzGAUgASgLMh8u",
|
|
78
|
+
"bGFuc3dlZXBlci5kaWFncmFtcy52MS5GaWx0ZXJzEhgKEGlwX2xvY2F0aW9u",
|
|
79
|
+
"X25hbWUYBiABKAkimAIKEU90RGlhZ3JhbVJlc3BvbnNlEi0KBmFzc2V0cxgB",
|
|
80
|
+
"IAMoCzIdLmxhbnN3ZWVwZXIuZGlhZ3JhbXMudjEuQXNzZXQSOwoNcmVsYXRp",
|
|
81
|
+
"b25zaGlwcxgCIAMoCzIkLmxhbnN3ZWVwZXIuZGlhZ3JhbXMudjEuUmVsYXRp",
|
|
82
|
+
"b25zaGlwEi0KBmVycm9ycxgDIAMoCzIdLmxhbnN3ZWVwZXIuZGlhZ3JhbXMu",
|
|
83
|
+
"djEuRXJyb3ISNgoLYXNzZXRfdHlwZXMYBCADKAsyIS5sYW5zd2VlcGVyLmRp",
|
|
84
|
+
"YWdyYW1zLnYxLkFzc2V0VHlwZRIwCgdmaWx0ZXJzGAUgASgLMh8ubGFuc3dl",
|
|
85
|
+
"ZXBlci5kaWFncmFtcy52MS5GaWx0ZXJzIk8KE0lwTG9jYXRpb25zUmVzcG9u",
|
|
86
|
+
"c2USOAoMaXBfbG9jYXRpb25zGAEgAygLMiIubGFuc3dlZXBlci5kaWFncmFt",
|
|
87
|
+
"cy52MS5JcExvY2F0aW9uKlcKCUVycm9yVHlwZRILCgdVTktOT1dOEAASFAoQ",
|
|
88
|
+
"R0VORVJBVElPTl9FUlJPUhABEgwKCE5PX0FTU0VUEAISGQoVQVNTRVRfQ09V",
|
|
89
|
+
"TlRfVEhSRVNIT0xEEAMqSAoPRGlhZ3JhbUNhdGVnb3J5EhQKEE5FVFdPUktf",
|
|
90
|
+
"VE9QT0xPR1kQABIXChNWSVJUVUFMX0VOVklST05NRU5UEAESBgoCT1QQAjLo",
|
|
91
|
+
"AwoPRGlhZ3JhbXNTZXJ2aWNlEn0KGUdldE5ldHdvcmtUb3BvbG9neURpYWdy",
|
|
92
|
+
"YW0SJi5sYW5zd2VlcGVyLmRpYWdyYW1zLnYxLkRpYWdyYW1SZXF1ZXN0GjYu",
|
|
93
|
+
"bGFuc3dlZXBlci5kaWFncmFtcy52MS5OZXR3b3JrVG9wb2xvZ3lEaWFncmFt",
|
|
94
|
+
"UmVzcG9uc2UiABKDAQocR2V0VmlydHVhbEVudmlyb25tZW50RGlhZ3JhbRIm",
|
|
95
|
+
"LmxhbnN3ZWVwZXIuZGlhZ3JhbXMudjEuRGlhZ3JhbVJlcXVlc3QaOS5sYW5z",
|
|
96
|
+
"d2VlcGVyLmRpYWdyYW1zLnYxLlZpcnR1YWxFbnZpcm9ubWVudERpYWdyYW1S",
|
|
97
|
+
"ZXNwb25zZSIAEmMKDEdldE90RGlhZ3JhbRImLmxhbnN3ZWVwZXIuZGlhZ3Jh",
|
|
98
|
+
"bXMudjEuRGlhZ3JhbVJlcXVlc3QaKS5sYW5zd2VlcGVyLmRpYWdyYW1zLnYx",
|
|
99
|
+
"Lk90RGlhZ3JhbVJlc3BvbnNlIgASawoOR2V0SXBMb2NhdGlvbnMSKi5sYW5z",
|
|
100
|
+
"d2VlcGVyLmRpYWdyYW1zLnYxLklwTG9jYXRpb25zUmVxdWVzdBorLmxhbnN3",
|
|
101
|
+
"ZWVwZXIuZGlhZ3JhbXMudjEuSXBMb2NhdGlvbnNSZXNwb25zZSIAQhuqAhhM",
|
|
102
|
+
"YW5zd2VlcGVyLkRpYWdyYW1zLkdSUENiBnByb3RvMw=="));
|
|
101
103
|
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
|
102
104
|
new pbr::FileDescriptor[] { global::Google.Protobuf.WellKnownTypes.TimestampReflection.Descriptor, },
|
|
103
105
|
new pbr::GeneratedClrTypeInfo(new[] {typeof(global::Lansweeper.Diagrams.GRPC.ErrorType), typeof(global::Lansweeper.Diagrams.GRPC.DiagramCategory), }, null, new pbr::GeneratedClrTypeInfo[] {
|
|
@@ -109,6 +111,7 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
109
111
|
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.Diagrams.GRPC.Relationship), global::Lansweeper.Diagrams.GRPC.Relationship.Parser, new[]{ "FromAssetUniqueKey", "ToAssetUniqueKey", "Name", "ReverseName", "IconName", "StartDate", "EndDate", "Comments", "GenerationType" }, null, null, null, null),
|
|
110
112
|
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.Diagrams.GRPC.AssetType), global::Lansweeper.Diagrams.GRPC.AssetType.Parser, new[]{ "TypeName", "IsMandatory", "IsEnabledByDefault", "NbAssets" }, null, null, null, null),
|
|
111
113
|
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),
|
|
114
|
+
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.Diagrams.GRPC.AssetState), global::Lansweeper.Diagrams.GRPC.AssetState.Parser, new[]{ "StateName", "NbAssets" }, null, null, null, null),
|
|
112
115
|
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.Diagrams.GRPC.Filters), global::Lansweeper.Diagrams.GRPC.Filters.Parser, new[]{ "AssetTypes", "IpLocations", "AssetStates" }, null, null, null, null),
|
|
113
116
|
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.Diagrams.GRPC.NetworkTopologyDiagramResponse), global::Lansweeper.Diagrams.GRPC.NetworkTopologyDiagramResponse.Parser, new[]{ "Assets", "Relationships", "Errors", "AssetTypes", "Filters", "IpLocationName" }, null, null, null, null),
|
|
114
117
|
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.Diagrams.GRPC.VirtualEnvironmentDiagramResponse), global::Lansweeper.Diagrams.GRPC.VirtualEnvironmentDiagramResponse.Parser, new[]{ "Assets", "Relationships", "Errors", "AssetTypes", "Filters", "IpLocationName" }, null, null, null, null),
|
|
@@ -3161,6 +3164,232 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
3161
3164
|
|
|
3162
3165
|
}
|
|
3163
3166
|
|
|
3167
|
+
public sealed partial class AssetState : pb::IMessage<AssetState>
|
|
3168
|
+
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
|
3169
|
+
, pb::IBufferMessage
|
|
3170
|
+
#endif
|
|
3171
|
+
{
|
|
3172
|
+
private static readonly pb::MessageParser<AssetState> _parser = new pb::MessageParser<AssetState>(() => new AssetState());
|
|
3173
|
+
private pb::UnknownFieldSet _unknownFields;
|
|
3174
|
+
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
3175
|
+
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
3176
|
+
public static pb::MessageParser<AssetState> Parser { get { return _parser; } }
|
|
3177
|
+
|
|
3178
|
+
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
3179
|
+
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
3180
|
+
public static pbr::MessageDescriptor Descriptor {
|
|
3181
|
+
get { return global::Lansweeper.Diagrams.GRPC.DiagramsReflection.Descriptor.MessageTypes[8]; }
|
|
3182
|
+
}
|
|
3183
|
+
|
|
3184
|
+
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
3185
|
+
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
3186
|
+
pbr::MessageDescriptor pb::IMessage.Descriptor {
|
|
3187
|
+
get { return Descriptor; }
|
|
3188
|
+
}
|
|
3189
|
+
|
|
3190
|
+
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
3191
|
+
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
3192
|
+
public AssetState() {
|
|
3193
|
+
OnConstruction();
|
|
3194
|
+
}
|
|
3195
|
+
|
|
3196
|
+
partial void OnConstruction();
|
|
3197
|
+
|
|
3198
|
+
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
3199
|
+
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
3200
|
+
public AssetState(AssetState other) : this() {
|
|
3201
|
+
stateName_ = other.stateName_;
|
|
3202
|
+
nbAssets_ = other.nbAssets_;
|
|
3203
|
+
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
|
3204
|
+
}
|
|
3205
|
+
|
|
3206
|
+
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
3207
|
+
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
3208
|
+
public AssetState Clone() {
|
|
3209
|
+
return new AssetState(this);
|
|
3210
|
+
}
|
|
3211
|
+
|
|
3212
|
+
/// <summary>Field number for the "state_name" field.</summary>
|
|
3213
|
+
public const int StateNameFieldNumber = 1;
|
|
3214
|
+
private string stateName_ = "";
|
|
3215
|
+
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
3216
|
+
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
3217
|
+
public string StateName {
|
|
3218
|
+
get { return stateName_; }
|
|
3219
|
+
set {
|
|
3220
|
+
stateName_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
|
|
3221
|
+
}
|
|
3222
|
+
}
|
|
3223
|
+
|
|
3224
|
+
/// <summary>Field number for the "nb_assets" field.</summary>
|
|
3225
|
+
public const int NbAssetsFieldNumber = 2;
|
|
3226
|
+
private int nbAssets_;
|
|
3227
|
+
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
3228
|
+
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
3229
|
+
public int NbAssets {
|
|
3230
|
+
get { return nbAssets_; }
|
|
3231
|
+
set {
|
|
3232
|
+
nbAssets_ = value;
|
|
3233
|
+
}
|
|
3234
|
+
}
|
|
3235
|
+
|
|
3236
|
+
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
3237
|
+
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
3238
|
+
public override bool Equals(object other) {
|
|
3239
|
+
return Equals(other as AssetState);
|
|
3240
|
+
}
|
|
3241
|
+
|
|
3242
|
+
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
3243
|
+
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
3244
|
+
public bool Equals(AssetState other) {
|
|
3245
|
+
if (ReferenceEquals(other, null)) {
|
|
3246
|
+
return false;
|
|
3247
|
+
}
|
|
3248
|
+
if (ReferenceEquals(other, this)) {
|
|
3249
|
+
return true;
|
|
3250
|
+
}
|
|
3251
|
+
if (StateName != other.StateName) return false;
|
|
3252
|
+
if (NbAssets != other.NbAssets) return false;
|
|
3253
|
+
return Equals(_unknownFields, other._unknownFields);
|
|
3254
|
+
}
|
|
3255
|
+
|
|
3256
|
+
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
3257
|
+
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
3258
|
+
public override int GetHashCode() {
|
|
3259
|
+
int hash = 1;
|
|
3260
|
+
if (StateName.Length != 0) hash ^= StateName.GetHashCode();
|
|
3261
|
+
if (NbAssets != 0) hash ^= NbAssets.GetHashCode();
|
|
3262
|
+
if (_unknownFields != null) {
|
|
3263
|
+
hash ^= _unknownFields.GetHashCode();
|
|
3264
|
+
}
|
|
3265
|
+
return hash;
|
|
3266
|
+
}
|
|
3267
|
+
|
|
3268
|
+
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
3269
|
+
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
3270
|
+
public override string ToString() {
|
|
3271
|
+
return pb::JsonFormatter.ToDiagnosticString(this);
|
|
3272
|
+
}
|
|
3273
|
+
|
|
3274
|
+
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
3275
|
+
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
3276
|
+
public void WriteTo(pb::CodedOutputStream output) {
|
|
3277
|
+
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
|
3278
|
+
output.WriteRawMessage(this);
|
|
3279
|
+
#else
|
|
3280
|
+
if (StateName.Length != 0) {
|
|
3281
|
+
output.WriteRawTag(10);
|
|
3282
|
+
output.WriteString(StateName);
|
|
3283
|
+
}
|
|
3284
|
+
if (NbAssets != 0) {
|
|
3285
|
+
output.WriteRawTag(16);
|
|
3286
|
+
output.WriteInt32(NbAssets);
|
|
3287
|
+
}
|
|
3288
|
+
if (_unknownFields != null) {
|
|
3289
|
+
_unknownFields.WriteTo(output);
|
|
3290
|
+
}
|
|
3291
|
+
#endif
|
|
3292
|
+
}
|
|
3293
|
+
|
|
3294
|
+
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
|
3295
|
+
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
3296
|
+
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
3297
|
+
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
|
3298
|
+
if (StateName.Length != 0) {
|
|
3299
|
+
output.WriteRawTag(10);
|
|
3300
|
+
output.WriteString(StateName);
|
|
3301
|
+
}
|
|
3302
|
+
if (NbAssets != 0) {
|
|
3303
|
+
output.WriteRawTag(16);
|
|
3304
|
+
output.WriteInt32(NbAssets);
|
|
3305
|
+
}
|
|
3306
|
+
if (_unknownFields != null) {
|
|
3307
|
+
_unknownFields.WriteTo(ref output);
|
|
3308
|
+
}
|
|
3309
|
+
}
|
|
3310
|
+
#endif
|
|
3311
|
+
|
|
3312
|
+
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
3313
|
+
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
3314
|
+
public int CalculateSize() {
|
|
3315
|
+
int size = 0;
|
|
3316
|
+
if (StateName.Length != 0) {
|
|
3317
|
+
size += 1 + pb::CodedOutputStream.ComputeStringSize(StateName);
|
|
3318
|
+
}
|
|
3319
|
+
if (NbAssets != 0) {
|
|
3320
|
+
size += 1 + pb::CodedOutputStream.ComputeInt32Size(NbAssets);
|
|
3321
|
+
}
|
|
3322
|
+
if (_unknownFields != null) {
|
|
3323
|
+
size += _unknownFields.CalculateSize();
|
|
3324
|
+
}
|
|
3325
|
+
return size;
|
|
3326
|
+
}
|
|
3327
|
+
|
|
3328
|
+
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
3329
|
+
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
3330
|
+
public void MergeFrom(AssetState other) {
|
|
3331
|
+
if (other == null) {
|
|
3332
|
+
return;
|
|
3333
|
+
}
|
|
3334
|
+
if (other.StateName.Length != 0) {
|
|
3335
|
+
StateName = other.StateName;
|
|
3336
|
+
}
|
|
3337
|
+
if (other.NbAssets != 0) {
|
|
3338
|
+
NbAssets = other.NbAssets;
|
|
3339
|
+
}
|
|
3340
|
+
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
|
3341
|
+
}
|
|
3342
|
+
|
|
3343
|
+
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
3344
|
+
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
3345
|
+
public void MergeFrom(pb::CodedInputStream input) {
|
|
3346
|
+
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
|
3347
|
+
input.ReadRawMessage(this);
|
|
3348
|
+
#else
|
|
3349
|
+
uint tag;
|
|
3350
|
+
while ((tag = input.ReadTag()) != 0) {
|
|
3351
|
+
switch(tag) {
|
|
3352
|
+
default:
|
|
3353
|
+
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
|
|
3354
|
+
break;
|
|
3355
|
+
case 10: {
|
|
3356
|
+
StateName = input.ReadString();
|
|
3357
|
+
break;
|
|
3358
|
+
}
|
|
3359
|
+
case 16: {
|
|
3360
|
+
NbAssets = input.ReadInt32();
|
|
3361
|
+
break;
|
|
3362
|
+
}
|
|
3363
|
+
}
|
|
3364
|
+
}
|
|
3365
|
+
#endif
|
|
3366
|
+
}
|
|
3367
|
+
|
|
3368
|
+
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
|
3369
|
+
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
3370
|
+
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
3371
|
+
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
|
|
3372
|
+
uint tag;
|
|
3373
|
+
while ((tag = input.ReadTag()) != 0) {
|
|
3374
|
+
switch(tag) {
|
|
3375
|
+
default:
|
|
3376
|
+
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
|
|
3377
|
+
break;
|
|
3378
|
+
case 10: {
|
|
3379
|
+
StateName = input.ReadString();
|
|
3380
|
+
break;
|
|
3381
|
+
}
|
|
3382
|
+
case 16: {
|
|
3383
|
+
NbAssets = input.ReadInt32();
|
|
3384
|
+
break;
|
|
3385
|
+
}
|
|
3386
|
+
}
|
|
3387
|
+
}
|
|
3388
|
+
}
|
|
3389
|
+
#endif
|
|
3390
|
+
|
|
3391
|
+
}
|
|
3392
|
+
|
|
3164
3393
|
public sealed partial class Filters : pb::IMessage<Filters>
|
|
3165
3394
|
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
|
|
3166
3395
|
, pb::IBufferMessage
|
|
@@ -3175,7 +3404,7 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
3175
3404
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
3176
3405
|
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
3177
3406
|
public static pbr::MessageDescriptor Descriptor {
|
|
3178
|
-
get { return global::Lansweeper.Diagrams.GRPC.DiagramsReflection.Descriptor.MessageTypes[
|
|
3407
|
+
get { return global::Lansweeper.Diagrams.GRPC.DiagramsReflection.Descriptor.MessageTypes[9]; }
|
|
3179
3408
|
}
|
|
3180
3409
|
|
|
3181
3410
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
@@ -3231,12 +3460,12 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
3231
3460
|
|
|
3232
3461
|
/// <summary>Field number for the "asset_states" field.</summary>
|
|
3233
3462
|
public const int AssetStatesFieldNumber = 3;
|
|
3234
|
-
private static readonly pb::FieldCodec<
|
|
3235
|
-
= pb::FieldCodec.
|
|
3236
|
-
private readonly pbc::RepeatedField<
|
|
3463
|
+
private static readonly pb::FieldCodec<global::Lansweeper.Diagrams.GRPC.AssetState> _repeated_assetStates_codec
|
|
3464
|
+
= pb::FieldCodec.ForMessage(26, global::Lansweeper.Diagrams.GRPC.AssetState.Parser);
|
|
3465
|
+
private readonly pbc::RepeatedField<global::Lansweeper.Diagrams.GRPC.AssetState> assetStates_ = new pbc::RepeatedField<global::Lansweeper.Diagrams.GRPC.AssetState>();
|
|
3237
3466
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
3238
3467
|
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
3239
|
-
public pbc::RepeatedField<
|
|
3468
|
+
public pbc::RepeatedField<global::Lansweeper.Diagrams.GRPC.AssetState> AssetStates {
|
|
3240
3469
|
get { return assetStates_; }
|
|
3241
3470
|
}
|
|
3242
3471
|
|
|
@@ -3405,7 +3634,7 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
3405
3634
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
3406
3635
|
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
3407
3636
|
public static pbr::MessageDescriptor Descriptor {
|
|
3408
|
-
get { return global::Lansweeper.Diagrams.GRPC.DiagramsReflection.Descriptor.MessageTypes[
|
|
3637
|
+
get { return global::Lansweeper.Diagrams.GRPC.DiagramsReflection.Descriptor.MessageTypes[10]; }
|
|
3409
3638
|
}
|
|
3410
3639
|
|
|
3411
3640
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
@@ -3744,7 +3973,7 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
3744
3973
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
3745
3974
|
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
3746
3975
|
public static pbr::MessageDescriptor Descriptor {
|
|
3747
|
-
get { return global::Lansweeper.Diagrams.GRPC.DiagramsReflection.Descriptor.MessageTypes[
|
|
3976
|
+
get { return global::Lansweeper.Diagrams.GRPC.DiagramsReflection.Descriptor.MessageTypes[11]; }
|
|
3748
3977
|
}
|
|
3749
3978
|
|
|
3750
3979
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
@@ -4083,7 +4312,7 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
4083
4312
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
4084
4313
|
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
4085
4314
|
public static pbr::MessageDescriptor Descriptor {
|
|
4086
|
-
get { return global::Lansweeper.Diagrams.GRPC.DiagramsReflection.Descriptor.MessageTypes[
|
|
4315
|
+
get { return global::Lansweeper.Diagrams.GRPC.DiagramsReflection.Descriptor.MessageTypes[12]; }
|
|
4087
4316
|
}
|
|
4088
4317
|
|
|
4089
4318
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
@@ -4385,7 +4614,7 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
4385
4614
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
4386
4615
|
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
4387
4616
|
public static pbr::MessageDescriptor Descriptor {
|
|
4388
|
-
get { return global::Lansweeper.Diagrams.GRPC.DiagramsReflection.Descriptor.MessageTypes[
|
|
4617
|
+
get { return global::Lansweeper.Diagrams.GRPC.DiagramsReflection.Descriptor.MessageTypes[13]; }
|
|
4389
4618
|
}
|
|
4390
4619
|
|
|
4391
4620
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
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.30",
|
|
9
9
|
"restore": {
|
|
10
10
|
"projectUniqueName": "/home/circleci/project/packages/diagrams/grpc/Lansweeper.Diagrams.GRPC.csproj",
|
|
11
11
|
"projectName": "Lansweeper.Diagrams.GRPC",
|
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.30",
|
|
309
309
|
"restore": {
|
|
310
310
|
"projectUniqueName": "/home/circleci/project/packages/diagrams/grpc/Lansweeper.Diagrams.GRPC.csproj",
|
|
311
311
|
"projectName": "Lansweeper.Diagrams.GRPC",
|
package/obj/project.nuget.cache
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 2,
|
|
3
|
-
"dgSpecHash": "
|
|
3
|
+
"dgSpecHash": "bL2HWhjMX6CkThyO+9nImqzXGcZzu3wBreIvA9BYasH/QvL8E4tAr4kyWV5W0JV43DUrS3CP6cxlnwLzXJ8bIw==",
|
|
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.31",
|
|
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": "e98fc6b2ddb6995e303bf5940c157e7c9e8c5703"
|
|
16
16
|
}
|
package/proto/diagrams.proto
CHANGED
|
@@ -99,10 +99,15 @@ message IpLocation {
|
|
|
99
99
|
string install_key = 7;
|
|
100
100
|
}
|
|
101
101
|
|
|
102
|
+
message AssetState {
|
|
103
|
+
string state_name = 1;
|
|
104
|
+
int32 nb_assets = 2;
|
|
105
|
+
}
|
|
106
|
+
|
|
102
107
|
message Filters {
|
|
103
108
|
repeated AssetType asset_types = 1;
|
|
104
109
|
repeated IpLocation ip_locations = 2;
|
|
105
|
-
repeated
|
|
110
|
+
repeated AssetState asset_states = 3;
|
|
106
111
|
}
|
|
107
112
|
|
|
108
113
|
message NetworkTopologyDiagramResponse {
|