@lansweeper/diagrams-grpc 0.0.7 → 0.0.8
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 +25 -0
- package/gen-proto/diagrams_pb.js +253 -5
- 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 +259 -20
- 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 +7 -0
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.8](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/diagrams-grpc@0.0.7...@lansweeper/diagrams-grpc@0.0.8) (2022-10-07)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @lansweeper/diagrams-grpc
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [0.0.7](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/diagrams-grpc@0.0.6...@lansweeper/diagrams-grpc@0.0.7) (2022-10-06)
|
|
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.7</PackageVersion>
|
|
11
|
+
<Version>0.0.7</Version>
|
|
12
|
+
<FileVersion>0.0.7</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.7": {
|
|
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.7": {
|
|
95
95
|
"type": "project",
|
|
96
96
|
"serviceable": false,
|
|
97
97
|
"sha512": ""
|
|
Binary file
|
|
Binary file
|
|
@@ -88,6 +88,16 @@ export class Relationship extends jspb.Message {
|
|
|
88
88
|
setFromAssetUniqueKey(value: string): Relationship;
|
|
89
89
|
getToAssetUniqueKey(): string;
|
|
90
90
|
setToAssetUniqueKey(value: string): Relationship;
|
|
91
|
+
getCategory(): string;
|
|
92
|
+
setCategory(value: string): Relationship;
|
|
93
|
+
getName(): string;
|
|
94
|
+
setName(value: string): Relationship;
|
|
95
|
+
getReverseName(): string;
|
|
96
|
+
setReverseName(value: string): Relationship;
|
|
97
|
+
getIconName(): string;
|
|
98
|
+
setIconName(value: string): Relationship;
|
|
99
|
+
getIsManual(): boolean;
|
|
100
|
+
setIsManual(value: boolean): Relationship;
|
|
91
101
|
|
|
92
102
|
serializeBinary(): Uint8Array;
|
|
93
103
|
toObject(includeInstance?: boolean): Relationship.AsObject;
|
|
@@ -103,6 +113,11 @@ export namespace Relationship {
|
|
|
103
113
|
export type AsObject = {
|
|
104
114
|
fromAssetUniqueKey: string,
|
|
105
115
|
toAssetUniqueKey: string,
|
|
116
|
+
category: string,
|
|
117
|
+
name: string,
|
|
118
|
+
reverseName: string,
|
|
119
|
+
iconName: string,
|
|
120
|
+
isManual: boolean,
|
|
106
121
|
}
|
|
107
122
|
}
|
|
108
123
|
|
|
@@ -115,6 +130,10 @@ export class NetworkTopologyDiagramResponse extends jspb.Message {
|
|
|
115
130
|
getRelationshipsList(): Array<Relationship>;
|
|
116
131
|
setRelationshipsList(value: Array<Relationship>): NetworkTopologyDiagramResponse;
|
|
117
132
|
addRelationships(value?: Relationship, index?: number): Relationship;
|
|
133
|
+
clearIssuesList(): void;
|
|
134
|
+
getIssuesList(): Array<string>;
|
|
135
|
+
setIssuesList(value: Array<string>): NetworkTopologyDiagramResponse;
|
|
136
|
+
addIssues(value: string, index?: number): string;
|
|
118
137
|
|
|
119
138
|
serializeBinary(): Uint8Array;
|
|
120
139
|
toObject(includeInstance?: boolean): NetworkTopologyDiagramResponse.AsObject;
|
|
@@ -130,6 +149,7 @@ export namespace NetworkTopologyDiagramResponse {
|
|
|
130
149
|
export type AsObject = {
|
|
131
150
|
assetsList: Array<Asset.AsObject>,
|
|
132
151
|
relationshipsList: Array<Relationship.AsObject>,
|
|
152
|
+
issuesList: Array<string>,
|
|
133
153
|
}
|
|
134
154
|
}
|
|
135
155
|
|
|
@@ -142,6 +162,10 @@ export class VirtualEnvironmentDiagramResponse extends jspb.Message {
|
|
|
142
162
|
getRelationshipsList(): Array<Relationship>;
|
|
143
163
|
setRelationshipsList(value: Array<Relationship>): VirtualEnvironmentDiagramResponse;
|
|
144
164
|
addRelationships(value?: Relationship, index?: number): Relationship;
|
|
165
|
+
clearIssuesList(): void;
|
|
166
|
+
getIssuesList(): Array<string>;
|
|
167
|
+
setIssuesList(value: Array<string>): VirtualEnvironmentDiagramResponse;
|
|
168
|
+
addIssues(value: string, index?: number): string;
|
|
145
169
|
|
|
146
170
|
serializeBinary(): Uint8Array;
|
|
147
171
|
toObject(includeInstance?: boolean): VirtualEnvironmentDiagramResponse.AsObject;
|
|
@@ -157,5 +181,6 @@ export namespace VirtualEnvironmentDiagramResponse {
|
|
|
157
181
|
export type AsObject = {
|
|
158
182
|
assetsList: Array<Asset.AsObject>,
|
|
159
183
|
relationshipsList: Array<Relationship.AsObject>,
|
|
184
|
+
issuesList: Array<string>,
|
|
160
185
|
}
|
|
161
186
|
}
|
package/gen-proto/diagrams_pb.js
CHANGED
|
@@ -777,7 +777,12 @@ proto.lansweeper.diagrams.v1.Relationship.prototype.toObject = function(opt_incl
|
|
|
777
777
|
proto.lansweeper.diagrams.v1.Relationship.toObject = function(includeInstance, msg) {
|
|
778
778
|
var f, obj = {
|
|
779
779
|
fromAssetUniqueKey: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
780
|
-
toAssetUniqueKey: jspb.Message.getFieldWithDefault(msg, 2, "")
|
|
780
|
+
toAssetUniqueKey: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
781
|
+
category: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
782
|
+
name: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
783
|
+
reverseName: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
784
|
+
iconName: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
785
|
+
isManual: jspb.Message.getBooleanFieldWithDefault(msg, 7, false)
|
|
781
786
|
};
|
|
782
787
|
|
|
783
788
|
if (includeInstance) {
|
|
@@ -822,6 +827,26 @@ proto.lansweeper.diagrams.v1.Relationship.deserializeBinaryFromReader = function
|
|
|
822
827
|
var value = /** @type {string} */ (reader.readString());
|
|
823
828
|
msg.setToAssetUniqueKey(value);
|
|
824
829
|
break;
|
|
830
|
+
case 3:
|
|
831
|
+
var value = /** @type {string} */ (reader.readString());
|
|
832
|
+
msg.setCategory(value);
|
|
833
|
+
break;
|
|
834
|
+
case 4:
|
|
835
|
+
var value = /** @type {string} */ (reader.readString());
|
|
836
|
+
msg.setName(value);
|
|
837
|
+
break;
|
|
838
|
+
case 5:
|
|
839
|
+
var value = /** @type {string} */ (reader.readString());
|
|
840
|
+
msg.setReverseName(value);
|
|
841
|
+
break;
|
|
842
|
+
case 6:
|
|
843
|
+
var value = /** @type {string} */ (reader.readString());
|
|
844
|
+
msg.setIconName(value);
|
|
845
|
+
break;
|
|
846
|
+
case 7:
|
|
847
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
848
|
+
msg.setIsManual(value);
|
|
849
|
+
break;
|
|
825
850
|
default:
|
|
826
851
|
reader.skipField();
|
|
827
852
|
break;
|
|
@@ -865,6 +890,41 @@ proto.lansweeper.diagrams.v1.Relationship.serializeBinaryToWriter = function(mes
|
|
|
865
890
|
f
|
|
866
891
|
);
|
|
867
892
|
}
|
|
893
|
+
f = message.getCategory();
|
|
894
|
+
if (f.length > 0) {
|
|
895
|
+
writer.writeString(
|
|
896
|
+
3,
|
|
897
|
+
f
|
|
898
|
+
);
|
|
899
|
+
}
|
|
900
|
+
f = message.getName();
|
|
901
|
+
if (f.length > 0) {
|
|
902
|
+
writer.writeString(
|
|
903
|
+
4,
|
|
904
|
+
f
|
|
905
|
+
);
|
|
906
|
+
}
|
|
907
|
+
f = message.getReverseName();
|
|
908
|
+
if (f.length > 0) {
|
|
909
|
+
writer.writeString(
|
|
910
|
+
5,
|
|
911
|
+
f
|
|
912
|
+
);
|
|
913
|
+
}
|
|
914
|
+
f = message.getIconName();
|
|
915
|
+
if (f.length > 0) {
|
|
916
|
+
writer.writeString(
|
|
917
|
+
6,
|
|
918
|
+
f
|
|
919
|
+
);
|
|
920
|
+
}
|
|
921
|
+
f = message.getIsManual();
|
|
922
|
+
if (f) {
|
|
923
|
+
writer.writeBool(
|
|
924
|
+
7,
|
|
925
|
+
f
|
|
926
|
+
);
|
|
927
|
+
}
|
|
868
928
|
};
|
|
869
929
|
|
|
870
930
|
|
|
@@ -904,13 +964,103 @@ proto.lansweeper.diagrams.v1.Relationship.prototype.setToAssetUniqueKey = functi
|
|
|
904
964
|
};
|
|
905
965
|
|
|
906
966
|
|
|
967
|
+
/**
|
|
968
|
+
* optional string category = 3;
|
|
969
|
+
* @return {string}
|
|
970
|
+
*/
|
|
971
|
+
proto.lansweeper.diagrams.v1.Relationship.prototype.getCategory = function() {
|
|
972
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
|
|
973
|
+
};
|
|
974
|
+
|
|
975
|
+
|
|
976
|
+
/**
|
|
977
|
+
* @param {string} value
|
|
978
|
+
* @return {!proto.lansweeper.diagrams.v1.Relationship} returns this
|
|
979
|
+
*/
|
|
980
|
+
proto.lansweeper.diagrams.v1.Relationship.prototype.setCategory = function(value) {
|
|
981
|
+
return jspb.Message.setProto3StringField(this, 3, value);
|
|
982
|
+
};
|
|
983
|
+
|
|
984
|
+
|
|
985
|
+
/**
|
|
986
|
+
* optional string name = 4;
|
|
987
|
+
* @return {string}
|
|
988
|
+
*/
|
|
989
|
+
proto.lansweeper.diagrams.v1.Relationship.prototype.getName = function() {
|
|
990
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
|
|
991
|
+
};
|
|
992
|
+
|
|
993
|
+
|
|
994
|
+
/**
|
|
995
|
+
* @param {string} value
|
|
996
|
+
* @return {!proto.lansweeper.diagrams.v1.Relationship} returns this
|
|
997
|
+
*/
|
|
998
|
+
proto.lansweeper.diagrams.v1.Relationship.prototype.setName = function(value) {
|
|
999
|
+
return jspb.Message.setProto3StringField(this, 4, value);
|
|
1000
|
+
};
|
|
1001
|
+
|
|
1002
|
+
|
|
1003
|
+
/**
|
|
1004
|
+
* optional string reverse_name = 5;
|
|
1005
|
+
* @return {string}
|
|
1006
|
+
*/
|
|
1007
|
+
proto.lansweeper.diagrams.v1.Relationship.prototype.getReverseName = function() {
|
|
1008
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
|
1009
|
+
};
|
|
1010
|
+
|
|
1011
|
+
|
|
1012
|
+
/**
|
|
1013
|
+
* @param {string} value
|
|
1014
|
+
* @return {!proto.lansweeper.diagrams.v1.Relationship} returns this
|
|
1015
|
+
*/
|
|
1016
|
+
proto.lansweeper.diagrams.v1.Relationship.prototype.setReverseName = function(value) {
|
|
1017
|
+
return jspb.Message.setProto3StringField(this, 5, value);
|
|
1018
|
+
};
|
|
1019
|
+
|
|
1020
|
+
|
|
1021
|
+
/**
|
|
1022
|
+
* optional string icon_name = 6;
|
|
1023
|
+
* @return {string}
|
|
1024
|
+
*/
|
|
1025
|
+
proto.lansweeper.diagrams.v1.Relationship.prototype.getIconName = function() {
|
|
1026
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 6, ""));
|
|
1027
|
+
};
|
|
1028
|
+
|
|
1029
|
+
|
|
1030
|
+
/**
|
|
1031
|
+
* @param {string} value
|
|
1032
|
+
* @return {!proto.lansweeper.diagrams.v1.Relationship} returns this
|
|
1033
|
+
*/
|
|
1034
|
+
proto.lansweeper.diagrams.v1.Relationship.prototype.setIconName = function(value) {
|
|
1035
|
+
return jspb.Message.setProto3StringField(this, 6, value);
|
|
1036
|
+
};
|
|
1037
|
+
|
|
1038
|
+
|
|
1039
|
+
/**
|
|
1040
|
+
* optional bool is_manual = 7;
|
|
1041
|
+
* @return {boolean}
|
|
1042
|
+
*/
|
|
1043
|
+
proto.lansweeper.diagrams.v1.Relationship.prototype.getIsManual = function() {
|
|
1044
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 7, false));
|
|
1045
|
+
};
|
|
1046
|
+
|
|
1047
|
+
|
|
1048
|
+
/**
|
|
1049
|
+
* @param {boolean} value
|
|
1050
|
+
* @return {!proto.lansweeper.diagrams.v1.Relationship} returns this
|
|
1051
|
+
*/
|
|
1052
|
+
proto.lansweeper.diagrams.v1.Relationship.prototype.setIsManual = function(value) {
|
|
1053
|
+
return jspb.Message.setProto3BooleanField(this, 7, value);
|
|
1054
|
+
};
|
|
1055
|
+
|
|
1056
|
+
|
|
907
1057
|
|
|
908
1058
|
/**
|
|
909
1059
|
* List of repeated fields within this message type.
|
|
910
1060
|
* @private {!Array<number>}
|
|
911
1061
|
* @const
|
|
912
1062
|
*/
|
|
913
|
-
proto.lansweeper.diagrams.v1.NetworkTopologyDiagramResponse.repeatedFields_ = [1,2];
|
|
1063
|
+
proto.lansweeper.diagrams.v1.NetworkTopologyDiagramResponse.repeatedFields_ = [1,2,3];
|
|
914
1064
|
|
|
915
1065
|
|
|
916
1066
|
|
|
@@ -946,7 +1096,8 @@ proto.lansweeper.diagrams.v1.NetworkTopologyDiagramResponse.toObject = function(
|
|
|
946
1096
|
assetsList: jspb.Message.toObjectList(msg.getAssetsList(),
|
|
947
1097
|
proto.lansweeper.diagrams.v1.Asset.toObject, includeInstance),
|
|
948
1098
|
relationshipsList: jspb.Message.toObjectList(msg.getRelationshipsList(),
|
|
949
|
-
proto.lansweeper.diagrams.v1.Relationship.toObject, includeInstance)
|
|
1099
|
+
proto.lansweeper.diagrams.v1.Relationship.toObject, includeInstance),
|
|
1100
|
+
issuesList: (f = jspb.Message.getRepeatedField(msg, 3)) == null ? undefined : f
|
|
950
1101
|
};
|
|
951
1102
|
|
|
952
1103
|
if (includeInstance) {
|
|
@@ -993,6 +1144,10 @@ proto.lansweeper.diagrams.v1.NetworkTopologyDiagramResponse.deserializeBinaryFro
|
|
|
993
1144
|
reader.readMessage(value,proto.lansweeper.diagrams.v1.Relationship.deserializeBinaryFromReader);
|
|
994
1145
|
msg.addRelationships(value);
|
|
995
1146
|
break;
|
|
1147
|
+
case 3:
|
|
1148
|
+
var value = /** @type {string} */ (reader.readString());
|
|
1149
|
+
msg.addIssues(value);
|
|
1150
|
+
break;
|
|
996
1151
|
default:
|
|
997
1152
|
reader.skipField();
|
|
998
1153
|
break;
|
|
@@ -1038,6 +1193,13 @@ proto.lansweeper.diagrams.v1.NetworkTopologyDiagramResponse.serializeBinaryToWri
|
|
|
1038
1193
|
proto.lansweeper.diagrams.v1.Relationship.serializeBinaryToWriter
|
|
1039
1194
|
);
|
|
1040
1195
|
}
|
|
1196
|
+
f = message.getIssuesList();
|
|
1197
|
+
if (f.length > 0) {
|
|
1198
|
+
writer.writeRepeatedString(
|
|
1199
|
+
3,
|
|
1200
|
+
f
|
|
1201
|
+
);
|
|
1202
|
+
}
|
|
1041
1203
|
};
|
|
1042
1204
|
|
|
1043
1205
|
|
|
@@ -1117,13 +1279,50 @@ proto.lansweeper.diagrams.v1.NetworkTopologyDiagramResponse.prototype.clearRelat
|
|
|
1117
1279
|
};
|
|
1118
1280
|
|
|
1119
1281
|
|
|
1282
|
+
/**
|
|
1283
|
+
* repeated string issues = 3;
|
|
1284
|
+
* @return {!Array<string>}
|
|
1285
|
+
*/
|
|
1286
|
+
proto.lansweeper.diagrams.v1.NetworkTopologyDiagramResponse.prototype.getIssuesList = function() {
|
|
1287
|
+
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 3));
|
|
1288
|
+
};
|
|
1289
|
+
|
|
1290
|
+
|
|
1291
|
+
/**
|
|
1292
|
+
* @param {!Array<string>} value
|
|
1293
|
+
* @return {!proto.lansweeper.diagrams.v1.NetworkTopologyDiagramResponse} returns this
|
|
1294
|
+
*/
|
|
1295
|
+
proto.lansweeper.diagrams.v1.NetworkTopologyDiagramResponse.prototype.setIssuesList = function(value) {
|
|
1296
|
+
return jspb.Message.setField(this, 3, value || []);
|
|
1297
|
+
};
|
|
1298
|
+
|
|
1299
|
+
|
|
1300
|
+
/**
|
|
1301
|
+
* @param {string} value
|
|
1302
|
+
* @param {number=} opt_index
|
|
1303
|
+
* @return {!proto.lansweeper.diagrams.v1.NetworkTopologyDiagramResponse} returns this
|
|
1304
|
+
*/
|
|
1305
|
+
proto.lansweeper.diagrams.v1.NetworkTopologyDiagramResponse.prototype.addIssues = function(value, opt_index) {
|
|
1306
|
+
return jspb.Message.addToRepeatedField(this, 3, value, opt_index);
|
|
1307
|
+
};
|
|
1308
|
+
|
|
1309
|
+
|
|
1310
|
+
/**
|
|
1311
|
+
* Clears the list making it empty but non-null.
|
|
1312
|
+
* @return {!proto.lansweeper.diagrams.v1.NetworkTopologyDiagramResponse} returns this
|
|
1313
|
+
*/
|
|
1314
|
+
proto.lansweeper.diagrams.v1.NetworkTopologyDiagramResponse.prototype.clearIssuesList = function() {
|
|
1315
|
+
return this.setIssuesList([]);
|
|
1316
|
+
};
|
|
1317
|
+
|
|
1318
|
+
|
|
1120
1319
|
|
|
1121
1320
|
/**
|
|
1122
1321
|
* List of repeated fields within this message type.
|
|
1123
1322
|
* @private {!Array<number>}
|
|
1124
1323
|
* @const
|
|
1125
1324
|
*/
|
|
1126
|
-
proto.lansweeper.diagrams.v1.VirtualEnvironmentDiagramResponse.repeatedFields_ = [1,2];
|
|
1325
|
+
proto.lansweeper.diagrams.v1.VirtualEnvironmentDiagramResponse.repeatedFields_ = [1,2,3];
|
|
1127
1326
|
|
|
1128
1327
|
|
|
1129
1328
|
|
|
@@ -1159,7 +1358,8 @@ proto.lansweeper.diagrams.v1.VirtualEnvironmentDiagramResponse.toObject = functi
|
|
|
1159
1358
|
assetsList: jspb.Message.toObjectList(msg.getAssetsList(),
|
|
1160
1359
|
proto.lansweeper.diagrams.v1.Asset.toObject, includeInstance),
|
|
1161
1360
|
relationshipsList: jspb.Message.toObjectList(msg.getRelationshipsList(),
|
|
1162
|
-
proto.lansweeper.diagrams.v1.Relationship.toObject, includeInstance)
|
|
1361
|
+
proto.lansweeper.diagrams.v1.Relationship.toObject, includeInstance),
|
|
1362
|
+
issuesList: (f = jspb.Message.getRepeatedField(msg, 3)) == null ? undefined : f
|
|
1163
1363
|
};
|
|
1164
1364
|
|
|
1165
1365
|
if (includeInstance) {
|
|
@@ -1206,6 +1406,10 @@ proto.lansweeper.diagrams.v1.VirtualEnvironmentDiagramResponse.deserializeBinary
|
|
|
1206
1406
|
reader.readMessage(value,proto.lansweeper.diagrams.v1.Relationship.deserializeBinaryFromReader);
|
|
1207
1407
|
msg.addRelationships(value);
|
|
1208
1408
|
break;
|
|
1409
|
+
case 3:
|
|
1410
|
+
var value = /** @type {string} */ (reader.readString());
|
|
1411
|
+
msg.addIssues(value);
|
|
1412
|
+
break;
|
|
1209
1413
|
default:
|
|
1210
1414
|
reader.skipField();
|
|
1211
1415
|
break;
|
|
@@ -1251,6 +1455,13 @@ proto.lansweeper.diagrams.v1.VirtualEnvironmentDiagramResponse.serializeBinaryTo
|
|
|
1251
1455
|
proto.lansweeper.diagrams.v1.Relationship.serializeBinaryToWriter
|
|
1252
1456
|
);
|
|
1253
1457
|
}
|
|
1458
|
+
f = message.getIssuesList();
|
|
1459
|
+
if (f.length > 0) {
|
|
1460
|
+
writer.writeRepeatedString(
|
|
1461
|
+
3,
|
|
1462
|
+
f
|
|
1463
|
+
);
|
|
1464
|
+
}
|
|
1254
1465
|
};
|
|
1255
1466
|
|
|
1256
1467
|
|
|
@@ -1330,4 +1541,41 @@ proto.lansweeper.diagrams.v1.VirtualEnvironmentDiagramResponse.prototype.clearRe
|
|
|
1330
1541
|
};
|
|
1331
1542
|
|
|
1332
1543
|
|
|
1544
|
+
/**
|
|
1545
|
+
* repeated string issues = 3;
|
|
1546
|
+
* @return {!Array<string>}
|
|
1547
|
+
*/
|
|
1548
|
+
proto.lansweeper.diagrams.v1.VirtualEnvironmentDiagramResponse.prototype.getIssuesList = function() {
|
|
1549
|
+
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 3));
|
|
1550
|
+
};
|
|
1551
|
+
|
|
1552
|
+
|
|
1553
|
+
/**
|
|
1554
|
+
* @param {!Array<string>} value
|
|
1555
|
+
* @return {!proto.lansweeper.diagrams.v1.VirtualEnvironmentDiagramResponse} returns this
|
|
1556
|
+
*/
|
|
1557
|
+
proto.lansweeper.diagrams.v1.VirtualEnvironmentDiagramResponse.prototype.setIssuesList = function(value) {
|
|
1558
|
+
return jspb.Message.setField(this, 3, value || []);
|
|
1559
|
+
};
|
|
1560
|
+
|
|
1561
|
+
|
|
1562
|
+
/**
|
|
1563
|
+
* @param {string} value
|
|
1564
|
+
* @param {number=} opt_index
|
|
1565
|
+
* @return {!proto.lansweeper.diagrams.v1.VirtualEnvironmentDiagramResponse} returns this
|
|
1566
|
+
*/
|
|
1567
|
+
proto.lansweeper.diagrams.v1.VirtualEnvironmentDiagramResponse.prototype.addIssues = function(value, opt_index) {
|
|
1568
|
+
return jspb.Message.addToRepeatedField(this, 3, value, opt_index);
|
|
1569
|
+
};
|
|
1570
|
+
|
|
1571
|
+
|
|
1572
|
+
/**
|
|
1573
|
+
* Clears the list making it empty but non-null.
|
|
1574
|
+
* @return {!proto.lansweeper.diagrams.v1.VirtualEnvironmentDiagramResponse} returns this
|
|
1575
|
+
*/
|
|
1576
|
+
proto.lansweeper.diagrams.v1.VirtualEnvironmentDiagramResponse.prototype.clearIssuesList = function() {
|
|
1577
|
+
return this.setIssuesList([]);
|
|
1578
|
+
};
|
|
1579
|
+
|
|
1580
|
+
|
|
1333
1581
|
goog.object.extend(exports, proto.lansweeper.diagrams.v1);
|
package/gen-proto/image.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"file":[{"name":"proto/diagrams.proto","package":"lansweeper.diagrams.v1","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_type_names","number":3,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"assetTypeNames"},{"name":"asset_scopes_rules","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.DiagramRequest.AssetScopesRulesEntry","jsonName":"assetScopesRules"}],"nestedType":[{"name":"AssetScopesRulesEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"value"}],"options":{"mapEntry":true}}]},{"name":"Asset","field":[{"name":"unique_key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"uniqueKey"},{"name":"key","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"type_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"typeName"},{"name":"group_key","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"groupKey"},{"name":"is_group","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isGroup"},{"name":"ip_address","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"ipAddress"},{"name":"vm_running_status","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"vmRunningStatus"},{"name":"category","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"category"}]},{"name":"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":"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":"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"}]}],"service":[{"name":"DiagramsService","method":[{"name":"GetNetworkTopologyDiagramByInstallation","inputType":".lansweeper.diagrams.v1.DiagramRequest","outputType":".lansweeper.diagrams.v1.NetworkTopologyDiagramResponse","options":{}},{"name":"GetVirtualEnvironmentDiagramByInstallation","inputType":".lansweeper.diagrams.v1.DiagramRequest","outputType":".lansweeper.diagrams.v1.VirtualEnvironmentDiagramResponse","options":{}}]}],"options":{"csharpNamespace":"Lansweeper.Diagrams.GRPC"},"sourceCodeInfo":{"location":[{"span":[0,0,
|
|
1
|
+
{"file":[{"name":"proto/diagrams.proto","package":"lansweeper.diagrams.v1","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_type_names","number":3,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"assetTypeNames"},{"name":"asset_scopes_rules","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.diagrams.v1.DiagramRequest.AssetScopesRulesEntry","jsonName":"assetScopesRules"}],"nestedType":[{"name":"AssetScopesRulesEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"value"}],"options":{"mapEntry":true}}]},{"name":"Asset","field":[{"name":"unique_key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"uniqueKey"},{"name":"key","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"type_name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"typeName"},{"name":"group_key","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"groupKey"},{"name":"is_group","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isGroup"},{"name":"ip_address","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"ipAddress"},{"name":"vm_running_status","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"vmRunningStatus"},{"name":"category","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"category"}]},{"name":"Relationship","field":[{"name":"from_asset_unique_key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"fromAssetUniqueKey"},{"name":"to_asset_unique_key","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"toAssetUniqueKey"},{"name":"category","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"category"},{"name":"name","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"reverse_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"reverseName"},{"name":"icon_name","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"iconName"},{"name":"is_manual","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isManual"}]},{"name":"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":"issues","number":3,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"issues"}]},{"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":"issues","number":3,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"issues"}]}],"service":[{"name":"DiagramsService","method":[{"name":"GetNetworkTopologyDiagramByInstallation","inputType":".lansweeper.diagrams.v1.DiagramRequest","outputType":".lansweeper.diagrams.v1.NetworkTopologyDiagramResponse","options":{}},{"name":"GetVirtualEnvironmentDiagramByInstallation","inputType":".lansweeper.diagrams.v1.DiagramRequest","outputType":".lansweeper.diagrams.v1.VirtualEnvironmentDiagramResponse","options":{}}]}],"options":{"csharpNamespace":"Lansweeper.Diagrams.GRPC"},"sourceCodeInfo":{"location":[{"span":[0,0,50,1]},{"path":[12],"span":[0,0,18]},{"path":[2],"span":[2,0,31]},{"path":[8],"span":[4,0,53]},{"path":[8,37],"span":[4,0,53]},{"path":[6,0],"span":[6,0,9,1]},{"path":[6,0,1],"span":[6,8,23]},{"path":[6,0,2,0],"span":[7,2,105]},{"path":[6,0,2,0,1],"span":[7,6,45]},{"path":[6,0,2,0,2],"span":[7,46,60]},{"path":[6,0,2,0,3],"span":[7,71,101]},{"path":[6,0,2,1],"span":[8,2,111]},{"path":[6,0,2,1,1],"span":[8,6,48]},{"path":[6,0,2,1,2],"span":[8,49,63]},{"path":[6,0,2,1,3],"span":[8,74,107]},{"path":[4,0],"span":[11,0,16,1]},{"path":[4,0,1],"span":[11,8,22]},{"path":[4,0,2,0],"span":[12,2,24]},{"path":[4,0,2,0,5],"span":[12,2,8]},{"path":[4,0,2,0,1],"span":[12,9,19]},{"path":[4,0,2,0,3],"span":[12,22,23]},{"path":[4,0,2,1],"span":[13,2,30]},{"path":[4,0,2,1,5],"span":[13,2,8]},{"path":[4,0,2,1,1],"span":[13,9,25]},{"path":[4,0,2,1,3],"span":[13,28,29]},{"path":[4,0,2,2],"span":[14,2,39]},{"path":[4,0,2,2,4],"span":[14,2,10]},{"path":[4,0,2,2,5],"span":[14,11,17]},{"path":[4,0,2,2,1],"span":[14,18,34]},{"path":[4,0,2,2,3],"span":[14,37,38]},{"path":[4,0,2,3],"span":[15,2,45]},{"path":[4,0,2,3,6],"span":[15,2,21]},{"path":[4,0,2,3,1],"span":[15,22,40]},{"path":[4,0,2,3,3],"span":[15,43,44]},{"path":[4,1],"span":[18,0,28,1]},{"path":[4,1,1],"span":[18,8,13]},{"path":[4,1,2,0],"span":[19,2,24]},{"path":[4,1,2,0,5],"span":[19,2,8]},{"path":[4,1,2,0,1],"span":[19,9,19]},{"path":[4,1,2,0,3],"span":[19,22,23]},{"path":[4,1,2,1],"span":[20,2,17]},{"path":[4,1,2,1,5],"span":[20,2,8]},{"path":[4,1,2,1,1],"span":[20,9,12]},{"path":[4,1,2,1,3],"span":[20,15,16]},{"path":[4,1,2,2],"span":[21,2,18]},{"path":[4,1,2,2,5],"span":[21,2,8]},{"path":[4,1,2,2,1],"span":[21,9,13]},{"path":[4,1,2,2,3],"span":[21,16,17]},{"path":[4,1,2,3],"span":[22,2,23]},{"path":[4,1,2,3,5],"span":[22,2,8]},{"path":[4,1,2,3,1],"span":[22,9,18]},{"path":[4,1,2,3,3],"span":[22,21,22]},{"path":[4,1,2,4],"span":[23,2,23]},{"path":[4,1,2,4,5],"span":[23,2,8]},{"path":[4,1,2,4,1],"span":[23,9,18]},{"path":[4,1,2,4,3],"span":[23,21,22]},{"path":[4,1,2,5],"span":[24,2,20]},{"path":[4,1,2,5,5],"span":[24,2,6]},{"path":[4,1,2,5,1],"span":[24,7,15]},{"path":[4,1,2,5,3],"span":[24,18,19]},{"path":[4,1,2,6],"span":[25,2,24]},{"path":[4,1,2,6,5],"span":[25,2,8]},{"path":[4,1,2,6,1],"span":[25,9,19]},{"path":[4,1,2,6,3],"span":[25,22,23]},{"path":[4,1,2,7],"span":[26,2,31]},{"path":[4,1,2,7,5],"span":[26,2,8]},{"path":[4,1,2,7,1],"span":[26,9,26]},{"path":[4,1,2,7,3],"span":[26,29,30]},{"path":[4,1,2,8],"span":[27,2,22]},{"path":[4,1,2,8,5],"span":[27,2,8]},{"path":[4,1,2,8,1],"span":[27,9,17]},{"path":[4,1,2,8,3],"span":[27,20,21]},{"path":[4,2],"span":[30,0,38,1]},{"path":[4,2,1],"span":[30,8,20]},{"path":[4,2,2,0],"span":[31,2,35]},{"path":[4,2,2,0,5],"span":[31,2,8]},{"path":[4,2,2,0,1],"span":[31,9,30]},{"path":[4,2,2,0,3],"span":[31,33,34]},{"path":[4,2,2,1],"span":[32,2,33]},{"path":[4,2,2,1,5],"span":[32,2,8]},{"path":[4,2,2,1,1],"span":[32,9,28]},{"path":[4,2,2,1,3],"span":[32,31,32]},{"path":[4,2,2,2],"span":[33,2,22]},{"path":[4,2,2,2,5],"span":[33,2,8]},{"path":[4,2,2,2,1],"span":[33,9,17]},{"path":[4,2,2,2,3],"span":[33,20,21]},{"path":[4,2,2,3],"span":[34,2,18]},{"path":[4,2,2,3,5],"span":[34,2,8]},{"path":[4,2,2,3,1],"span":[34,9,13]},{"path":[4,2,2,3,3],"span":[34,16,17]},{"path":[4,2,2,4],"span":[35,2,26]},{"path":[4,2,2,4,5],"span":[35,2,8]},{"path":[4,2,2,4,1],"span":[35,9,21]},{"path":[4,2,2,4,3],"span":[35,24,25]},{"path":[4,2,2,5],"span":[36,2,23]},{"path":[4,2,2,5,5],"span":[36,2,8]},{"path":[4,2,2,5,1],"span":[36,9,18]},{"path":[4,2,2,5,3],"span":[36,21,22]},{"path":[4,2,2,6],"span":[37,2,21]},{"path":[4,2,2,6,5],"span":[37,2,6]},{"path":[4,2,2,6,1],"span":[37,7,16]},{"path":[4,2,2,6,3],"span":[37,19,20]},{"path":[4,3],"span":[40,0,44,1]},{"path":[4,3,1],"span":[40,8,38]},{"path":[4,3,2,0],"span":[41,2,28]},{"path":[4,3,2,0,4],"span":[41,2,10]},{"path":[4,3,2,0,6],"span":[41,11,16]},{"path":[4,3,2,0,1],"span":[41,17,23]},{"path":[4,3,2,0,3],"span":[41,26,27]},{"path":[4,3,2,1],"span":[42,2,42]},{"path":[4,3,2,1,4],"span":[42,2,10]},{"path":[4,3,2,1,6],"span":[42,11,23]},{"path":[4,3,2,1,1],"span":[42,24,37]},{"path":[4,3,2,1,3],"span":[42,40,41]},{"path":[4,3,2,2],"span":[43,2,29]},{"path":[4,3,2,2,4],"span":[43,2,10]},{"path":[4,3,2,2,5],"span":[43,11,17]},{"path":[4,3,2,2,1],"span":[43,18,24]},{"path":[4,3,2,2,3],"span":[43,27,28]},{"path":[4,4],"span":[46,0,50,1]},{"path":[4,4,1],"span":[46,8,41]},{"path":[4,4,2,0],"span":[47,2,28]},{"path":[4,4,2,0,4],"span":[47,2,10]},{"path":[4,4,2,0,6],"span":[47,11,16]},{"path":[4,4,2,0,1],"span":[47,17,23]},{"path":[4,4,2,0,3],"span":[47,26,27]},{"path":[4,4,2,1],"span":[48,2,42]},{"path":[4,4,2,1,4],"span":[48,2,10]},{"path":[4,4,2,1,6],"span":[48,11,23]},{"path":[4,4,2,1,1],"span":[48,24,37]},{"path":[4,4,2,1,3],"span":[48,40,41]},{"path":[4,4,2,2],"span":[49,2,29]},{"path":[4,4,2,2,4],"span":[49,2,10]},{"path":[4,4,2,2,5],"span":[49,11,17]},{"path":[4,4,2,2,1],"span":[49,18,24]},{"path":[4,4,2,2,3],"span":[49,27,28]}]},"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.7")]
|
|
18
|
+
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("0.0.7")]
|
|
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.7.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
|
+
e93e4780d05430f586a9ed8e8106e9098110ac33
|
|
Binary file
|
|
Binary file
|
|
@@ -34,31 +34,33 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
34
34
|
"CwoDa2V5GAIgASgJEgwKBG5hbWUYAyABKAkSEQoJdHlwZV9uYW1lGAQgASgJ",
|
|
35
35
|
"EhEKCWdyb3VwX2tleRgFIAEoCRIQCghpc19ncm91cBgGIAEoCBISCgppcF9h",
|
|
36
36
|
"ZGRyZXNzGAcgASgJEhkKEXZtX3J1bm5pbmdfc3RhdHVzGAggASgJEhAKCGNh",
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
37
|
+
"dGVnb3J5GAkgASgJIqYBCgxSZWxhdGlvbnNoaXASHQoVZnJvbV9hc3NldF91",
|
|
38
|
+
"bmlxdWVfa2V5GAEgASgJEhsKE3RvX2Fzc2V0X3VuaXF1ZV9rZXkYAiABKAkS",
|
|
39
|
+
"EAoIY2F0ZWdvcnkYAyABKAkSDAoEbmFtZRgEIAEoCRIUCgxyZXZlcnNlX25h",
|
|
40
|
+
"bWUYBSABKAkSEQoJaWNvbl9uYW1lGAYgASgJEhEKCWlzX21hbnVhbBgHIAEo",
|
|
41
|
+
"CCKcAQoeTmV0d29ya1RvcG9sb2d5RGlhZ3JhbVJlc3BvbnNlEi0KBmFzc2V0",
|
|
42
|
+
"cxgBIAMoCzIdLmxhbnN3ZWVwZXIuZGlhZ3JhbXMudjEuQXNzZXQSOwoNcmVs",
|
|
43
|
+
"YXRpb25zaGlwcxgCIAMoCzIkLmxhbnN3ZWVwZXIuZGlhZ3JhbXMudjEuUmVs",
|
|
44
|
+
"YXRpb25zaGlwEg4KBmlzc3VlcxgDIAMoCSKfAQohVmlydHVhbEVudmlyb25t",
|
|
45
|
+
"ZW50RGlhZ3JhbVJlc3BvbnNlEi0KBmFzc2V0cxgBIAMoCzIdLmxhbnN3ZWVw",
|
|
46
|
+
"ZXIuZGlhZ3JhbXMudjEuQXNzZXQSOwoNcmVsYXRpb25zaGlwcxgCIAMoCzIk",
|
|
47
|
+
"LmxhbnN3ZWVwZXIuZGlhZ3JhbXMudjEuUmVsYXRpb25zaGlwEg4KBmlzc3Vl",
|
|
48
|
+
"cxgDIAMoCTKzAgoPRGlhZ3JhbXNTZXJ2aWNlEosBCidHZXROZXR3b3JrVG9w",
|
|
49
|
+
"b2xvZ3lEaWFncmFtQnlJbnN0YWxsYXRpb24SJi5sYW5zd2VlcGVyLmRpYWdy",
|
|
50
|
+
"YW1zLnYxLkRpYWdyYW1SZXF1ZXN0GjYubGFuc3dlZXBlci5kaWFncmFtcy52",
|
|
51
|
+
"MS5OZXR3b3JrVG9wb2xvZ3lEaWFncmFtUmVzcG9uc2UiABKRAQoqR2V0Vmly",
|
|
52
|
+
"dHVhbEVudmlyb25tZW50RGlhZ3JhbUJ5SW5zdGFsbGF0aW9uEiYubGFuc3dl",
|
|
53
|
+
"ZXBlci5kaWFncmFtcy52MS5EaWFncmFtUmVxdWVzdBo5LmxhbnN3ZWVwZXIu",
|
|
54
|
+
"ZGlhZ3JhbXMudjEuVmlydHVhbEVudmlyb25tZW50RGlhZ3JhbVJlc3BvbnNl",
|
|
55
|
+
"IgBCG6oCGExhbnN3ZWVwZXIuRGlhZ3JhbXMuR1JQQ2IGcHJvdG8z"));
|
|
54
56
|
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
|
|
55
57
|
new pbr::FileDescriptor[] { },
|
|
56
58
|
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
|
|
57
59
|
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.Diagrams.GRPC.DiagramRequest), global::Lansweeper.Diagrams.GRPC.DiagramRequest.Parser, new[]{ "ClientKey", "InstallationKey", "AssetTypeNames", "AssetScopesRules" }, null, null, null, new pbr::GeneratedClrTypeInfo[] { null, }),
|
|
58
60
|
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.Diagrams.GRPC.Asset), global::Lansweeper.Diagrams.GRPC.Asset.Parser, new[]{ "UniqueKey", "Key", "Name", "TypeName", "GroupKey", "IsGroup", "IpAddress", "VmRunningStatus", "Category" }, null, null, null, null),
|
|
59
|
-
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.Diagrams.GRPC.Relationship), global::Lansweeper.Diagrams.GRPC.Relationship.Parser, new[]{ "FromAssetUniqueKey", "ToAssetUniqueKey" }, null, null, null, null),
|
|
60
|
-
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.Diagrams.GRPC.NetworkTopologyDiagramResponse), global::Lansweeper.Diagrams.GRPC.NetworkTopologyDiagramResponse.Parser, new[]{ "Assets", "Relationships" }, null, null, null, null),
|
|
61
|
-
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.Diagrams.GRPC.VirtualEnvironmentDiagramResponse), global::Lansweeper.Diagrams.GRPC.VirtualEnvironmentDiagramResponse.Parser, new[]{ "Assets", "Relationships" }, null, null, null, null)
|
|
61
|
+
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.Diagrams.GRPC.Relationship), global::Lansweeper.Diagrams.GRPC.Relationship.Parser, new[]{ "FromAssetUniqueKey", "ToAssetUniqueKey", "Category", "Name", "ReverseName", "IconName", "IsManual" }, null, null, null, null),
|
|
62
|
+
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.Diagrams.GRPC.NetworkTopologyDiagramResponse), global::Lansweeper.Diagrams.GRPC.NetworkTopologyDiagramResponse.Parser, new[]{ "Assets", "Relationships", "Issues" }, null, null, null, null),
|
|
63
|
+
new pbr::GeneratedClrTypeInfo(typeof(global::Lansweeper.Diagrams.GRPC.VirtualEnvironmentDiagramResponse), global::Lansweeper.Diagrams.GRPC.VirtualEnvironmentDiagramResponse.Parser, new[]{ "Assets", "Relationships", "Issues" }, null, null, null, null)
|
|
62
64
|
}));
|
|
63
65
|
}
|
|
64
66
|
#endregion
|
|
@@ -864,6 +866,11 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
864
866
|
public Relationship(Relationship other) : this() {
|
|
865
867
|
fromAssetUniqueKey_ = other.fromAssetUniqueKey_;
|
|
866
868
|
toAssetUniqueKey_ = other.toAssetUniqueKey_;
|
|
869
|
+
category_ = other.category_;
|
|
870
|
+
name_ = other.name_;
|
|
871
|
+
reverseName_ = other.reverseName_;
|
|
872
|
+
iconName_ = other.iconName_;
|
|
873
|
+
isManual_ = other.isManual_;
|
|
867
874
|
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
|
868
875
|
}
|
|
869
876
|
|
|
@@ -897,6 +904,66 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
897
904
|
}
|
|
898
905
|
}
|
|
899
906
|
|
|
907
|
+
/// <summary>Field number for the "category" field.</summary>
|
|
908
|
+
public const int CategoryFieldNumber = 3;
|
|
909
|
+
private string category_ = "";
|
|
910
|
+
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
911
|
+
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
912
|
+
public string Category {
|
|
913
|
+
get { return category_; }
|
|
914
|
+
set {
|
|
915
|
+
category_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
|
|
916
|
+
}
|
|
917
|
+
}
|
|
918
|
+
|
|
919
|
+
/// <summary>Field number for the "name" field.</summary>
|
|
920
|
+
public const int NameFieldNumber = 4;
|
|
921
|
+
private string name_ = "";
|
|
922
|
+
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
923
|
+
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
924
|
+
public string Name {
|
|
925
|
+
get { return name_; }
|
|
926
|
+
set {
|
|
927
|
+
name_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
|
|
928
|
+
}
|
|
929
|
+
}
|
|
930
|
+
|
|
931
|
+
/// <summary>Field number for the "reverse_name" field.</summary>
|
|
932
|
+
public const int ReverseNameFieldNumber = 5;
|
|
933
|
+
private string reverseName_ = "";
|
|
934
|
+
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
935
|
+
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
936
|
+
public string ReverseName {
|
|
937
|
+
get { return reverseName_; }
|
|
938
|
+
set {
|
|
939
|
+
reverseName_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
|
|
940
|
+
}
|
|
941
|
+
}
|
|
942
|
+
|
|
943
|
+
/// <summary>Field number for the "icon_name" field.</summary>
|
|
944
|
+
public const int IconNameFieldNumber = 6;
|
|
945
|
+
private string iconName_ = "";
|
|
946
|
+
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
947
|
+
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
948
|
+
public string IconName {
|
|
949
|
+
get { return iconName_; }
|
|
950
|
+
set {
|
|
951
|
+
iconName_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
|
|
952
|
+
}
|
|
953
|
+
}
|
|
954
|
+
|
|
955
|
+
/// <summary>Field number for the "is_manual" field.</summary>
|
|
956
|
+
public const int IsManualFieldNumber = 7;
|
|
957
|
+
private bool isManual_;
|
|
958
|
+
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
959
|
+
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
960
|
+
public bool IsManual {
|
|
961
|
+
get { return isManual_; }
|
|
962
|
+
set {
|
|
963
|
+
isManual_ = value;
|
|
964
|
+
}
|
|
965
|
+
}
|
|
966
|
+
|
|
900
967
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
901
968
|
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
902
969
|
public override bool Equals(object other) {
|
|
@@ -914,6 +981,11 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
914
981
|
}
|
|
915
982
|
if (FromAssetUniqueKey != other.FromAssetUniqueKey) return false;
|
|
916
983
|
if (ToAssetUniqueKey != other.ToAssetUniqueKey) return false;
|
|
984
|
+
if (Category != other.Category) return false;
|
|
985
|
+
if (Name != other.Name) return false;
|
|
986
|
+
if (ReverseName != other.ReverseName) return false;
|
|
987
|
+
if (IconName != other.IconName) return false;
|
|
988
|
+
if (IsManual != other.IsManual) return false;
|
|
917
989
|
return Equals(_unknownFields, other._unknownFields);
|
|
918
990
|
}
|
|
919
991
|
|
|
@@ -923,6 +995,11 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
923
995
|
int hash = 1;
|
|
924
996
|
if (FromAssetUniqueKey.Length != 0) hash ^= FromAssetUniqueKey.GetHashCode();
|
|
925
997
|
if (ToAssetUniqueKey.Length != 0) hash ^= ToAssetUniqueKey.GetHashCode();
|
|
998
|
+
if (Category.Length != 0) hash ^= Category.GetHashCode();
|
|
999
|
+
if (Name.Length != 0) hash ^= Name.GetHashCode();
|
|
1000
|
+
if (ReverseName.Length != 0) hash ^= ReverseName.GetHashCode();
|
|
1001
|
+
if (IconName.Length != 0) hash ^= IconName.GetHashCode();
|
|
1002
|
+
if (IsManual != false) hash ^= IsManual.GetHashCode();
|
|
926
1003
|
if (_unknownFields != null) {
|
|
927
1004
|
hash ^= _unknownFields.GetHashCode();
|
|
928
1005
|
}
|
|
@@ -949,6 +1026,26 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
949
1026
|
output.WriteRawTag(18);
|
|
950
1027
|
output.WriteString(ToAssetUniqueKey);
|
|
951
1028
|
}
|
|
1029
|
+
if (Category.Length != 0) {
|
|
1030
|
+
output.WriteRawTag(26);
|
|
1031
|
+
output.WriteString(Category);
|
|
1032
|
+
}
|
|
1033
|
+
if (Name.Length != 0) {
|
|
1034
|
+
output.WriteRawTag(34);
|
|
1035
|
+
output.WriteString(Name);
|
|
1036
|
+
}
|
|
1037
|
+
if (ReverseName.Length != 0) {
|
|
1038
|
+
output.WriteRawTag(42);
|
|
1039
|
+
output.WriteString(ReverseName);
|
|
1040
|
+
}
|
|
1041
|
+
if (IconName.Length != 0) {
|
|
1042
|
+
output.WriteRawTag(50);
|
|
1043
|
+
output.WriteString(IconName);
|
|
1044
|
+
}
|
|
1045
|
+
if (IsManual != false) {
|
|
1046
|
+
output.WriteRawTag(56);
|
|
1047
|
+
output.WriteBool(IsManual);
|
|
1048
|
+
}
|
|
952
1049
|
if (_unknownFields != null) {
|
|
953
1050
|
_unknownFields.WriteTo(output);
|
|
954
1051
|
}
|
|
@@ -967,6 +1064,26 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
967
1064
|
output.WriteRawTag(18);
|
|
968
1065
|
output.WriteString(ToAssetUniqueKey);
|
|
969
1066
|
}
|
|
1067
|
+
if (Category.Length != 0) {
|
|
1068
|
+
output.WriteRawTag(26);
|
|
1069
|
+
output.WriteString(Category);
|
|
1070
|
+
}
|
|
1071
|
+
if (Name.Length != 0) {
|
|
1072
|
+
output.WriteRawTag(34);
|
|
1073
|
+
output.WriteString(Name);
|
|
1074
|
+
}
|
|
1075
|
+
if (ReverseName.Length != 0) {
|
|
1076
|
+
output.WriteRawTag(42);
|
|
1077
|
+
output.WriteString(ReverseName);
|
|
1078
|
+
}
|
|
1079
|
+
if (IconName.Length != 0) {
|
|
1080
|
+
output.WriteRawTag(50);
|
|
1081
|
+
output.WriteString(IconName);
|
|
1082
|
+
}
|
|
1083
|
+
if (IsManual != false) {
|
|
1084
|
+
output.WriteRawTag(56);
|
|
1085
|
+
output.WriteBool(IsManual);
|
|
1086
|
+
}
|
|
970
1087
|
if (_unknownFields != null) {
|
|
971
1088
|
_unknownFields.WriteTo(ref output);
|
|
972
1089
|
}
|
|
@@ -983,6 +1100,21 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
983
1100
|
if (ToAssetUniqueKey.Length != 0) {
|
|
984
1101
|
size += 1 + pb::CodedOutputStream.ComputeStringSize(ToAssetUniqueKey);
|
|
985
1102
|
}
|
|
1103
|
+
if (Category.Length != 0) {
|
|
1104
|
+
size += 1 + pb::CodedOutputStream.ComputeStringSize(Category);
|
|
1105
|
+
}
|
|
1106
|
+
if (Name.Length != 0) {
|
|
1107
|
+
size += 1 + pb::CodedOutputStream.ComputeStringSize(Name);
|
|
1108
|
+
}
|
|
1109
|
+
if (ReverseName.Length != 0) {
|
|
1110
|
+
size += 1 + pb::CodedOutputStream.ComputeStringSize(ReverseName);
|
|
1111
|
+
}
|
|
1112
|
+
if (IconName.Length != 0) {
|
|
1113
|
+
size += 1 + pb::CodedOutputStream.ComputeStringSize(IconName);
|
|
1114
|
+
}
|
|
1115
|
+
if (IsManual != false) {
|
|
1116
|
+
size += 1 + 1;
|
|
1117
|
+
}
|
|
986
1118
|
if (_unknownFields != null) {
|
|
987
1119
|
size += _unknownFields.CalculateSize();
|
|
988
1120
|
}
|
|
@@ -1001,6 +1133,21 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
1001
1133
|
if (other.ToAssetUniqueKey.Length != 0) {
|
|
1002
1134
|
ToAssetUniqueKey = other.ToAssetUniqueKey;
|
|
1003
1135
|
}
|
|
1136
|
+
if (other.Category.Length != 0) {
|
|
1137
|
+
Category = other.Category;
|
|
1138
|
+
}
|
|
1139
|
+
if (other.Name.Length != 0) {
|
|
1140
|
+
Name = other.Name;
|
|
1141
|
+
}
|
|
1142
|
+
if (other.ReverseName.Length != 0) {
|
|
1143
|
+
ReverseName = other.ReverseName;
|
|
1144
|
+
}
|
|
1145
|
+
if (other.IconName.Length != 0) {
|
|
1146
|
+
IconName = other.IconName;
|
|
1147
|
+
}
|
|
1148
|
+
if (other.IsManual != false) {
|
|
1149
|
+
IsManual = other.IsManual;
|
|
1150
|
+
}
|
|
1004
1151
|
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
|
1005
1152
|
}
|
|
1006
1153
|
|
|
@@ -1024,6 +1171,26 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
1024
1171
|
ToAssetUniqueKey = input.ReadString();
|
|
1025
1172
|
break;
|
|
1026
1173
|
}
|
|
1174
|
+
case 26: {
|
|
1175
|
+
Category = input.ReadString();
|
|
1176
|
+
break;
|
|
1177
|
+
}
|
|
1178
|
+
case 34: {
|
|
1179
|
+
Name = input.ReadString();
|
|
1180
|
+
break;
|
|
1181
|
+
}
|
|
1182
|
+
case 42: {
|
|
1183
|
+
ReverseName = input.ReadString();
|
|
1184
|
+
break;
|
|
1185
|
+
}
|
|
1186
|
+
case 50: {
|
|
1187
|
+
IconName = input.ReadString();
|
|
1188
|
+
break;
|
|
1189
|
+
}
|
|
1190
|
+
case 56: {
|
|
1191
|
+
IsManual = input.ReadBool();
|
|
1192
|
+
break;
|
|
1193
|
+
}
|
|
1027
1194
|
}
|
|
1028
1195
|
}
|
|
1029
1196
|
#endif
|
|
@@ -1047,6 +1214,26 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
1047
1214
|
ToAssetUniqueKey = input.ReadString();
|
|
1048
1215
|
break;
|
|
1049
1216
|
}
|
|
1217
|
+
case 26: {
|
|
1218
|
+
Category = input.ReadString();
|
|
1219
|
+
break;
|
|
1220
|
+
}
|
|
1221
|
+
case 34: {
|
|
1222
|
+
Name = input.ReadString();
|
|
1223
|
+
break;
|
|
1224
|
+
}
|
|
1225
|
+
case 42: {
|
|
1226
|
+
ReverseName = input.ReadString();
|
|
1227
|
+
break;
|
|
1228
|
+
}
|
|
1229
|
+
case 50: {
|
|
1230
|
+
IconName = input.ReadString();
|
|
1231
|
+
break;
|
|
1232
|
+
}
|
|
1233
|
+
case 56: {
|
|
1234
|
+
IsManual = input.ReadBool();
|
|
1235
|
+
break;
|
|
1236
|
+
}
|
|
1050
1237
|
}
|
|
1051
1238
|
}
|
|
1052
1239
|
}
|
|
@@ -1090,6 +1277,7 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
1090
1277
|
public NetworkTopologyDiagramResponse(NetworkTopologyDiagramResponse other) : this() {
|
|
1091
1278
|
assets_ = other.assets_.Clone();
|
|
1092
1279
|
relationships_ = other.relationships_.Clone();
|
|
1280
|
+
issues_ = other.issues_.Clone();
|
|
1093
1281
|
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
|
1094
1282
|
}
|
|
1095
1283
|
|
|
@@ -1121,6 +1309,17 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
1121
1309
|
get { return relationships_; }
|
|
1122
1310
|
}
|
|
1123
1311
|
|
|
1312
|
+
/// <summary>Field number for the "issues" field.</summary>
|
|
1313
|
+
public const int IssuesFieldNumber = 3;
|
|
1314
|
+
private static readonly pb::FieldCodec<string> _repeated_issues_codec
|
|
1315
|
+
= pb::FieldCodec.ForString(26);
|
|
1316
|
+
private readonly pbc::RepeatedField<string> issues_ = new pbc::RepeatedField<string>();
|
|
1317
|
+
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
1318
|
+
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
1319
|
+
public pbc::RepeatedField<string> Issues {
|
|
1320
|
+
get { return issues_; }
|
|
1321
|
+
}
|
|
1322
|
+
|
|
1124
1323
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
1125
1324
|
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
1126
1325
|
public override bool Equals(object other) {
|
|
@@ -1138,6 +1337,7 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
1138
1337
|
}
|
|
1139
1338
|
if(!assets_.Equals(other.assets_)) return false;
|
|
1140
1339
|
if(!relationships_.Equals(other.relationships_)) return false;
|
|
1340
|
+
if(!issues_.Equals(other.issues_)) return false;
|
|
1141
1341
|
return Equals(_unknownFields, other._unknownFields);
|
|
1142
1342
|
}
|
|
1143
1343
|
|
|
@@ -1147,6 +1347,7 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
1147
1347
|
int hash = 1;
|
|
1148
1348
|
hash ^= assets_.GetHashCode();
|
|
1149
1349
|
hash ^= relationships_.GetHashCode();
|
|
1350
|
+
hash ^= issues_.GetHashCode();
|
|
1150
1351
|
if (_unknownFields != null) {
|
|
1151
1352
|
hash ^= _unknownFields.GetHashCode();
|
|
1152
1353
|
}
|
|
@@ -1167,6 +1368,7 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
1167
1368
|
#else
|
|
1168
1369
|
assets_.WriteTo(output, _repeated_assets_codec);
|
|
1169
1370
|
relationships_.WriteTo(output, _repeated_relationships_codec);
|
|
1371
|
+
issues_.WriteTo(output, _repeated_issues_codec);
|
|
1170
1372
|
if (_unknownFields != null) {
|
|
1171
1373
|
_unknownFields.WriteTo(output);
|
|
1172
1374
|
}
|
|
@@ -1179,6 +1381,7 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
1179
1381
|
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
|
1180
1382
|
assets_.WriteTo(ref output, _repeated_assets_codec);
|
|
1181
1383
|
relationships_.WriteTo(ref output, _repeated_relationships_codec);
|
|
1384
|
+
issues_.WriteTo(ref output, _repeated_issues_codec);
|
|
1182
1385
|
if (_unknownFields != null) {
|
|
1183
1386
|
_unknownFields.WriteTo(ref output);
|
|
1184
1387
|
}
|
|
@@ -1191,6 +1394,7 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
1191
1394
|
int size = 0;
|
|
1192
1395
|
size += assets_.CalculateSize(_repeated_assets_codec);
|
|
1193
1396
|
size += relationships_.CalculateSize(_repeated_relationships_codec);
|
|
1397
|
+
size += issues_.CalculateSize(_repeated_issues_codec);
|
|
1194
1398
|
if (_unknownFields != null) {
|
|
1195
1399
|
size += _unknownFields.CalculateSize();
|
|
1196
1400
|
}
|
|
@@ -1205,6 +1409,7 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
1205
1409
|
}
|
|
1206
1410
|
assets_.Add(other.assets_);
|
|
1207
1411
|
relationships_.Add(other.relationships_);
|
|
1412
|
+
issues_.Add(other.issues_);
|
|
1208
1413
|
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
|
1209
1414
|
}
|
|
1210
1415
|
|
|
@@ -1228,6 +1433,10 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
1228
1433
|
relationships_.AddEntriesFrom(input, _repeated_relationships_codec);
|
|
1229
1434
|
break;
|
|
1230
1435
|
}
|
|
1436
|
+
case 26: {
|
|
1437
|
+
issues_.AddEntriesFrom(input, _repeated_issues_codec);
|
|
1438
|
+
break;
|
|
1439
|
+
}
|
|
1231
1440
|
}
|
|
1232
1441
|
}
|
|
1233
1442
|
#endif
|
|
@@ -1251,6 +1460,10 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
1251
1460
|
relationships_.AddEntriesFrom(ref input, _repeated_relationships_codec);
|
|
1252
1461
|
break;
|
|
1253
1462
|
}
|
|
1463
|
+
case 26: {
|
|
1464
|
+
issues_.AddEntriesFrom(ref input, _repeated_issues_codec);
|
|
1465
|
+
break;
|
|
1466
|
+
}
|
|
1254
1467
|
}
|
|
1255
1468
|
}
|
|
1256
1469
|
}
|
|
@@ -1294,6 +1507,7 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
1294
1507
|
public VirtualEnvironmentDiagramResponse(VirtualEnvironmentDiagramResponse other) : this() {
|
|
1295
1508
|
assets_ = other.assets_.Clone();
|
|
1296
1509
|
relationships_ = other.relationships_.Clone();
|
|
1510
|
+
issues_ = other.issues_.Clone();
|
|
1297
1511
|
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
|
|
1298
1512
|
}
|
|
1299
1513
|
|
|
@@ -1325,6 +1539,17 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
1325
1539
|
get { return relationships_; }
|
|
1326
1540
|
}
|
|
1327
1541
|
|
|
1542
|
+
/// <summary>Field number for the "issues" field.</summary>
|
|
1543
|
+
public const int IssuesFieldNumber = 3;
|
|
1544
|
+
private static readonly pb::FieldCodec<string> _repeated_issues_codec
|
|
1545
|
+
= pb::FieldCodec.ForString(26);
|
|
1546
|
+
private readonly pbc::RepeatedField<string> issues_ = new pbc::RepeatedField<string>();
|
|
1547
|
+
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
1548
|
+
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
1549
|
+
public pbc::RepeatedField<string> Issues {
|
|
1550
|
+
get { return issues_; }
|
|
1551
|
+
}
|
|
1552
|
+
|
|
1328
1553
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
|
1329
1554
|
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
|
1330
1555
|
public override bool Equals(object other) {
|
|
@@ -1342,6 +1567,7 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
1342
1567
|
}
|
|
1343
1568
|
if(!assets_.Equals(other.assets_)) return false;
|
|
1344
1569
|
if(!relationships_.Equals(other.relationships_)) return false;
|
|
1570
|
+
if(!issues_.Equals(other.issues_)) return false;
|
|
1345
1571
|
return Equals(_unknownFields, other._unknownFields);
|
|
1346
1572
|
}
|
|
1347
1573
|
|
|
@@ -1351,6 +1577,7 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
1351
1577
|
int hash = 1;
|
|
1352
1578
|
hash ^= assets_.GetHashCode();
|
|
1353
1579
|
hash ^= relationships_.GetHashCode();
|
|
1580
|
+
hash ^= issues_.GetHashCode();
|
|
1354
1581
|
if (_unknownFields != null) {
|
|
1355
1582
|
hash ^= _unknownFields.GetHashCode();
|
|
1356
1583
|
}
|
|
@@ -1371,6 +1598,7 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
1371
1598
|
#else
|
|
1372
1599
|
assets_.WriteTo(output, _repeated_assets_codec);
|
|
1373
1600
|
relationships_.WriteTo(output, _repeated_relationships_codec);
|
|
1601
|
+
issues_.WriteTo(output, _repeated_issues_codec);
|
|
1374
1602
|
if (_unknownFields != null) {
|
|
1375
1603
|
_unknownFields.WriteTo(output);
|
|
1376
1604
|
}
|
|
@@ -1383,6 +1611,7 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
1383
1611
|
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
|
|
1384
1612
|
assets_.WriteTo(ref output, _repeated_assets_codec);
|
|
1385
1613
|
relationships_.WriteTo(ref output, _repeated_relationships_codec);
|
|
1614
|
+
issues_.WriteTo(ref output, _repeated_issues_codec);
|
|
1386
1615
|
if (_unknownFields != null) {
|
|
1387
1616
|
_unknownFields.WriteTo(ref output);
|
|
1388
1617
|
}
|
|
@@ -1395,6 +1624,7 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
1395
1624
|
int size = 0;
|
|
1396
1625
|
size += assets_.CalculateSize(_repeated_assets_codec);
|
|
1397
1626
|
size += relationships_.CalculateSize(_repeated_relationships_codec);
|
|
1627
|
+
size += issues_.CalculateSize(_repeated_issues_codec);
|
|
1398
1628
|
if (_unknownFields != null) {
|
|
1399
1629
|
size += _unknownFields.CalculateSize();
|
|
1400
1630
|
}
|
|
@@ -1409,6 +1639,7 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
1409
1639
|
}
|
|
1410
1640
|
assets_.Add(other.assets_);
|
|
1411
1641
|
relationships_.Add(other.relationships_);
|
|
1642
|
+
issues_.Add(other.issues_);
|
|
1412
1643
|
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
|
|
1413
1644
|
}
|
|
1414
1645
|
|
|
@@ -1432,6 +1663,10 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
1432
1663
|
relationships_.AddEntriesFrom(input, _repeated_relationships_codec);
|
|
1433
1664
|
break;
|
|
1434
1665
|
}
|
|
1666
|
+
case 26: {
|
|
1667
|
+
issues_.AddEntriesFrom(input, _repeated_issues_codec);
|
|
1668
|
+
break;
|
|
1669
|
+
}
|
|
1435
1670
|
}
|
|
1436
1671
|
}
|
|
1437
1672
|
#endif
|
|
@@ -1455,6 +1690,10 @@ namespace Lansweeper.Diagrams.GRPC {
|
|
|
1455
1690
|
relationships_.AddEntriesFrom(ref input, _repeated_relationships_codec);
|
|
1456
1691
|
break;
|
|
1457
1692
|
}
|
|
1693
|
+
case 26: {
|
|
1694
|
+
issues_.AddEntriesFrom(ref input, _repeated_issues_codec);
|
|
1695
|
+
break;
|
|
1696
|
+
}
|
|
1458
1697
|
}
|
|
1459
1698
|
}
|
|
1460
1699
|
}
|
|
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.7",
|
|
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.7",
|
|
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": "rbki15J8+zb4vpWU/dOQRRQmtf+ELEh3oPBKsErFnluB2KbyzB9V9jD/YHbne02RWLHG5GQxlaQb6Z7RGQyIcw==",
|
|
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.8",
|
|
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": "d29aabfd7a1505b3237292a60bb4ef33a1f4d9d3"
|
|
16
16
|
}
|
package/proto/diagrams.proto
CHANGED
|
@@ -31,14 +31,21 @@ message Asset {
|
|
|
31
31
|
message Relationship {
|
|
32
32
|
string from_asset_unique_key = 1;
|
|
33
33
|
string to_asset_unique_key = 2;
|
|
34
|
+
string category = 3;
|
|
35
|
+
string name = 4;
|
|
36
|
+
string reverse_name = 5;
|
|
37
|
+
string icon_name = 6;
|
|
38
|
+
bool is_manual = 7;
|
|
34
39
|
}
|
|
35
40
|
|
|
36
41
|
message NetworkTopologyDiagramResponse {
|
|
37
42
|
repeated Asset assets = 1;
|
|
38
43
|
repeated Relationship relationships = 2;
|
|
44
|
+
repeated string issues = 3;
|
|
39
45
|
}
|
|
40
46
|
|
|
41
47
|
message VirtualEnvironmentDiagramResponse {
|
|
42
48
|
repeated Asset assets = 1;
|
|
43
49
|
repeated Relationship relationships = 2;
|
|
50
|
+
repeated string issues = 3;
|
|
44
51
|
}
|