@lansweeper/data-platform-outbound-grpc 0.1.85 → 0.1.87
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/outbound_grpc_pb.d.ts +34 -0
- package/gen-proto/outbound_grpc_pb.js +82 -2
- package/gen-proto/outbound_pb.d.ts +143 -64
- package/gen-proto/outbound_pb.js +1166 -513
- package/generated-go/outbound.pb.go +6501 -6237
- package/generated-go/outbound_grpc.pb.go +81 -3
- package/java.json +1 -1
- package/package.json +2 -2
- package/proto/outbound.proto +55 -18
|
@@ -13,6 +13,8 @@ interface IDataCoreOutboundServiceService extends grpc.ServiceDefinition<grpc.Un
|
|
|
13
13
|
getEntity: IDataCoreOutboundServiceService_IGetEntity;
|
|
14
14
|
listEntities: IDataCoreOutboundServiceService_IListEntities;
|
|
15
15
|
catalogLookup: IDataCoreOutboundServiceService_ICatalogLookup;
|
|
16
|
+
getIpLocationConfig: IDataCoreOutboundServiceService_IGetIpLocationConfig;
|
|
17
|
+
setIpLocationConfig: IDataCoreOutboundServiceService_ISetIpLocationConfig;
|
|
16
18
|
}
|
|
17
19
|
|
|
18
20
|
interface IDataCoreOutboundServiceService_IGetEntity extends grpc.MethodDefinition<outbound_pb.GetEntityRequest, outbound_pb.GetEntityResponse> {
|
|
@@ -42,6 +44,24 @@ interface IDataCoreOutboundServiceService_ICatalogLookup extends grpc.MethodDefi
|
|
|
42
44
|
responseSerialize: grpc.serialize<outbound_pb.CatalogLookupResponse>;
|
|
43
45
|
responseDeserialize: grpc.deserialize<outbound_pb.CatalogLookupResponse>;
|
|
44
46
|
}
|
|
47
|
+
interface IDataCoreOutboundServiceService_IGetIpLocationConfig extends grpc.MethodDefinition<outbound_pb.GetIpLocationConfigRequest, outbound_pb.GetIpLocationConfigResponse> {
|
|
48
|
+
path: "/com.lansweeper.dp.outbound.v1.DataCoreOutboundService/GetIpLocationConfig";
|
|
49
|
+
requestStream: false;
|
|
50
|
+
responseStream: false;
|
|
51
|
+
requestSerialize: grpc.serialize<outbound_pb.GetIpLocationConfigRequest>;
|
|
52
|
+
requestDeserialize: grpc.deserialize<outbound_pb.GetIpLocationConfigRequest>;
|
|
53
|
+
responseSerialize: grpc.serialize<outbound_pb.GetIpLocationConfigResponse>;
|
|
54
|
+
responseDeserialize: grpc.deserialize<outbound_pb.GetIpLocationConfigResponse>;
|
|
55
|
+
}
|
|
56
|
+
interface IDataCoreOutboundServiceService_ISetIpLocationConfig extends grpc.MethodDefinition<outbound_pb.SetIpLocationConfigRequest, outbound_pb.SetIpLocationConfigResponse> {
|
|
57
|
+
path: "/com.lansweeper.dp.outbound.v1.DataCoreOutboundService/SetIpLocationConfig";
|
|
58
|
+
requestStream: false;
|
|
59
|
+
responseStream: false;
|
|
60
|
+
requestSerialize: grpc.serialize<outbound_pb.SetIpLocationConfigRequest>;
|
|
61
|
+
requestDeserialize: grpc.deserialize<outbound_pb.SetIpLocationConfigRequest>;
|
|
62
|
+
responseSerialize: grpc.serialize<outbound_pb.SetIpLocationConfigResponse>;
|
|
63
|
+
responseDeserialize: grpc.deserialize<outbound_pb.SetIpLocationConfigResponse>;
|
|
64
|
+
}
|
|
45
65
|
|
|
46
66
|
export const DataCoreOutboundServiceService: IDataCoreOutboundServiceService;
|
|
47
67
|
|
|
@@ -49,6 +69,8 @@ export interface IDataCoreOutboundServiceServer extends grpc.UntypedServiceImple
|
|
|
49
69
|
getEntity: grpc.handleUnaryCall<outbound_pb.GetEntityRequest, outbound_pb.GetEntityResponse>;
|
|
50
70
|
listEntities: grpc.handleServerStreamingCall<outbound_pb.ListEntityRequest, outbound_pb.ListEntityResponse>;
|
|
51
71
|
catalogLookup: grpc.handleUnaryCall<outbound_pb.CatalogLookupRequest, outbound_pb.CatalogLookupResponse>;
|
|
72
|
+
getIpLocationConfig: grpc.handleUnaryCall<outbound_pb.GetIpLocationConfigRequest, outbound_pb.GetIpLocationConfigResponse>;
|
|
73
|
+
setIpLocationConfig: grpc.handleUnaryCall<outbound_pb.SetIpLocationConfigRequest, outbound_pb.SetIpLocationConfigResponse>;
|
|
52
74
|
}
|
|
53
75
|
|
|
54
76
|
export interface IDataCoreOutboundServiceClient {
|
|
@@ -60,6 +82,12 @@ export interface IDataCoreOutboundServiceClient {
|
|
|
60
82
|
catalogLookup(request: outbound_pb.CatalogLookupRequest, callback: (error: grpc.ServiceError | null, response: outbound_pb.CatalogLookupResponse) => void): grpc.ClientUnaryCall;
|
|
61
83
|
catalogLookup(request: outbound_pb.CatalogLookupRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: outbound_pb.CatalogLookupResponse) => void): grpc.ClientUnaryCall;
|
|
62
84
|
catalogLookup(request: outbound_pb.CatalogLookupRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: outbound_pb.CatalogLookupResponse) => void): grpc.ClientUnaryCall;
|
|
85
|
+
getIpLocationConfig(request: outbound_pb.GetIpLocationConfigRequest, callback: (error: grpc.ServiceError | null, response: outbound_pb.GetIpLocationConfigResponse) => void): grpc.ClientUnaryCall;
|
|
86
|
+
getIpLocationConfig(request: outbound_pb.GetIpLocationConfigRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: outbound_pb.GetIpLocationConfigResponse) => void): grpc.ClientUnaryCall;
|
|
87
|
+
getIpLocationConfig(request: outbound_pb.GetIpLocationConfigRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: outbound_pb.GetIpLocationConfigResponse) => void): grpc.ClientUnaryCall;
|
|
88
|
+
setIpLocationConfig(request: outbound_pb.SetIpLocationConfigRequest, callback: (error: grpc.ServiceError | null, response: outbound_pb.SetIpLocationConfigResponse) => void): grpc.ClientUnaryCall;
|
|
89
|
+
setIpLocationConfig(request: outbound_pb.SetIpLocationConfigRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: outbound_pb.SetIpLocationConfigResponse) => void): grpc.ClientUnaryCall;
|
|
90
|
+
setIpLocationConfig(request: outbound_pb.SetIpLocationConfigRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: outbound_pb.SetIpLocationConfigResponse) => void): grpc.ClientUnaryCall;
|
|
63
91
|
}
|
|
64
92
|
|
|
65
93
|
export class DataCoreOutboundServiceClient extends grpc.Client implements IDataCoreOutboundServiceClient {
|
|
@@ -72,4 +100,10 @@ export class DataCoreOutboundServiceClient extends grpc.Client implements IDataC
|
|
|
72
100
|
public catalogLookup(request: outbound_pb.CatalogLookupRequest, callback: (error: grpc.ServiceError | null, response: outbound_pb.CatalogLookupResponse) => void): grpc.ClientUnaryCall;
|
|
73
101
|
public catalogLookup(request: outbound_pb.CatalogLookupRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: outbound_pb.CatalogLookupResponse) => void): grpc.ClientUnaryCall;
|
|
74
102
|
public catalogLookup(request: outbound_pb.CatalogLookupRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: outbound_pb.CatalogLookupResponse) => void): grpc.ClientUnaryCall;
|
|
103
|
+
public getIpLocationConfig(request: outbound_pb.GetIpLocationConfigRequest, callback: (error: grpc.ServiceError | null, response: outbound_pb.GetIpLocationConfigResponse) => void): grpc.ClientUnaryCall;
|
|
104
|
+
public getIpLocationConfig(request: outbound_pb.GetIpLocationConfigRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: outbound_pb.GetIpLocationConfigResponse) => void): grpc.ClientUnaryCall;
|
|
105
|
+
public getIpLocationConfig(request: outbound_pb.GetIpLocationConfigRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: outbound_pb.GetIpLocationConfigResponse) => void): grpc.ClientUnaryCall;
|
|
106
|
+
public setIpLocationConfig(request: outbound_pb.SetIpLocationConfigRequest, callback: (error: grpc.ServiceError | null, response: outbound_pb.SetIpLocationConfigResponse) => void): grpc.ClientUnaryCall;
|
|
107
|
+
public setIpLocationConfig(request: outbound_pb.SetIpLocationConfigRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: outbound_pb.SetIpLocationConfigResponse) => void): grpc.ClientUnaryCall;
|
|
108
|
+
public setIpLocationConfig(request: outbound_pb.SetIpLocationConfigRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: outbound_pb.SetIpLocationConfigResponse) => void): grpc.ClientUnaryCall;
|
|
75
109
|
}
|
|
@@ -57,6 +57,28 @@ function deserialize_com_lansweeper_dp_outbound_v1_GetEntityResponse(buffer_arg)
|
|
|
57
57
|
return outbound_pb.GetEntityResponse.deserializeBinary(new Uint8Array(buffer_arg));
|
|
58
58
|
}
|
|
59
59
|
|
|
60
|
+
function serialize_com_lansweeper_dp_outbound_v1_GetIpLocationConfigRequest(arg) {
|
|
61
|
+
if (!(arg instanceof outbound_pb.GetIpLocationConfigRequest)) {
|
|
62
|
+
throw new Error('Expected argument of type com.lansweeper.dp.outbound.v1.GetIpLocationConfigRequest');
|
|
63
|
+
}
|
|
64
|
+
return Buffer.from(arg.serializeBinary());
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
function deserialize_com_lansweeper_dp_outbound_v1_GetIpLocationConfigRequest(buffer_arg) {
|
|
68
|
+
return outbound_pb.GetIpLocationConfigRequest.deserializeBinary(new Uint8Array(buffer_arg));
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
function serialize_com_lansweeper_dp_outbound_v1_GetIpLocationConfigResponse(arg) {
|
|
72
|
+
if (!(arg instanceof outbound_pb.GetIpLocationConfigResponse)) {
|
|
73
|
+
throw new Error('Expected argument of type com.lansweeper.dp.outbound.v1.GetIpLocationConfigResponse');
|
|
74
|
+
}
|
|
75
|
+
return Buffer.from(arg.serializeBinary());
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
function deserialize_com_lansweeper_dp_outbound_v1_GetIpLocationConfigResponse(buffer_arg) {
|
|
79
|
+
return outbound_pb.GetIpLocationConfigResponse.deserializeBinary(new Uint8Array(buffer_arg));
|
|
80
|
+
}
|
|
81
|
+
|
|
60
82
|
function serialize_com_lansweeper_dp_outbound_v1_ListEntityRequest(arg) {
|
|
61
83
|
if (!(arg instanceof outbound_pb.ListEntityRequest)) {
|
|
62
84
|
throw new Error('Expected argument of type com.lansweeper.dp.outbound.v1.ListEntityRequest');
|
|
@@ -79,6 +101,28 @@ function deserialize_com_lansweeper_dp_outbound_v1_ListEntityResponse(buffer_arg
|
|
|
79
101
|
return outbound_pb.ListEntityResponse.deserializeBinary(new Uint8Array(buffer_arg));
|
|
80
102
|
}
|
|
81
103
|
|
|
104
|
+
function serialize_com_lansweeper_dp_outbound_v1_SetIpLocationConfigRequest(arg) {
|
|
105
|
+
if (!(arg instanceof outbound_pb.SetIpLocationConfigRequest)) {
|
|
106
|
+
throw new Error('Expected argument of type com.lansweeper.dp.outbound.v1.SetIpLocationConfigRequest');
|
|
107
|
+
}
|
|
108
|
+
return Buffer.from(arg.serializeBinary());
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
function deserialize_com_lansweeper_dp_outbound_v1_SetIpLocationConfigRequest(buffer_arg) {
|
|
112
|
+
return outbound_pb.SetIpLocationConfigRequest.deserializeBinary(new Uint8Array(buffer_arg));
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
function serialize_com_lansweeper_dp_outbound_v1_SetIpLocationConfigResponse(arg) {
|
|
116
|
+
if (!(arg instanceof outbound_pb.SetIpLocationConfigResponse)) {
|
|
117
|
+
throw new Error('Expected argument of type com.lansweeper.dp.outbound.v1.SetIpLocationConfigResponse');
|
|
118
|
+
}
|
|
119
|
+
return Buffer.from(arg.serializeBinary());
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
function deserialize_com_lansweeper_dp_outbound_v1_SetIpLocationConfigResponse(buffer_arg) {
|
|
123
|
+
return outbound_pb.SetIpLocationConfigResponse.deserializeBinary(new Uint8Array(buffer_arg));
|
|
124
|
+
}
|
|
125
|
+
|
|
82
126
|
|
|
83
127
|
// ----- Service Part ------
|
|
84
128
|
//
|
|
@@ -87,7 +131,11 @@ function deserialize_com_lansweeper_dp_outbound_v1_ListEntityResponse(buffer_arg
|
|
|
87
131
|
// - Get Entity
|
|
88
132
|
// - Stream Entities
|
|
89
133
|
var DataCoreOutboundServiceService = exports.DataCoreOutboundServiceService = {
|
|
90
|
-
//
|
|
134
|
+
// ----------------------------------------
|
|
135
|
+
// ACCESS API
|
|
136
|
+
// ----------------------------------------
|
|
137
|
+
//
|
|
138
|
+
// Retrieve a single entity by site/inst-id/type/id
|
|
91
139
|
getEntity: {
|
|
92
140
|
path: '/com.lansweeper.dp.outbound.v1.DataCoreOutboundService/GetEntity',
|
|
93
141
|
requestStream: false,
|
|
@@ -111,7 +159,11 @@ listEntities: {
|
|
|
111
159
|
responseSerialize: serialize_com_lansweeper_dp_outbound_v1_ListEntityResponse,
|
|
112
160
|
responseDeserialize: deserialize_com_lansweeper_dp_outbound_v1_ListEntityResponse,
|
|
113
161
|
},
|
|
114
|
-
//
|
|
162
|
+
// ----------------------------------------
|
|
163
|
+
// ENRICHMENT API
|
|
164
|
+
// ----------------------------------------
|
|
165
|
+
//
|
|
166
|
+
// Retrieve a single entity by site/inst-id/type/id
|
|
115
167
|
catalogLookup: {
|
|
116
168
|
path: '/com.lansweeper.dp.outbound.v1.DataCoreOutboundService/CatalogLookup',
|
|
117
169
|
requestStream: false,
|
|
@@ -123,6 +175,34 @@ catalogLookup: {
|
|
|
123
175
|
responseSerialize: serialize_com_lansweeper_dp_outbound_v1_CatalogLookupResponse,
|
|
124
176
|
responseDeserialize: deserialize_com_lansweeper_dp_outbound_v1_CatalogLookupResponse,
|
|
125
177
|
},
|
|
178
|
+
// ----------------------------------------
|
|
179
|
+
// CONFIG API
|
|
180
|
+
// ----------------------------------------
|
|
181
|
+
//
|
|
182
|
+
// Get IP Location config (BY SITE)
|
|
183
|
+
getIpLocationConfig: {
|
|
184
|
+
path: '/com.lansweeper.dp.outbound.v1.DataCoreOutboundService/GetIpLocationConfig',
|
|
185
|
+
requestStream: false,
|
|
186
|
+
responseStream: false,
|
|
187
|
+
requestType: outbound_pb.GetIpLocationConfigRequest,
|
|
188
|
+
responseType: outbound_pb.GetIpLocationConfigResponse,
|
|
189
|
+
requestSerialize: serialize_com_lansweeper_dp_outbound_v1_GetIpLocationConfigRequest,
|
|
190
|
+
requestDeserialize: deserialize_com_lansweeper_dp_outbound_v1_GetIpLocationConfigRequest,
|
|
191
|
+
responseSerialize: serialize_com_lansweeper_dp_outbound_v1_GetIpLocationConfigResponse,
|
|
192
|
+
responseDeserialize: deserialize_com_lansweeper_dp_outbound_v1_GetIpLocationConfigResponse,
|
|
193
|
+
},
|
|
194
|
+
// Set IP Location Config far a Site
|
|
195
|
+
setIpLocationConfig: {
|
|
196
|
+
path: '/com.lansweeper.dp.outbound.v1.DataCoreOutboundService/SetIpLocationConfig',
|
|
197
|
+
requestStream: false,
|
|
198
|
+
responseStream: false,
|
|
199
|
+
requestType: outbound_pb.SetIpLocationConfigRequest,
|
|
200
|
+
responseType: outbound_pb.SetIpLocationConfigResponse,
|
|
201
|
+
requestSerialize: serialize_com_lansweeper_dp_outbound_v1_SetIpLocationConfigRequest,
|
|
202
|
+
requestDeserialize: deserialize_com_lansweeper_dp_outbound_v1_SetIpLocationConfigRequest,
|
|
203
|
+
responseSerialize: serialize_com_lansweeper_dp_outbound_v1_SetIpLocationConfigResponse,
|
|
204
|
+
responseDeserialize: deserialize_com_lansweeper_dp_outbound_v1_SetIpLocationConfigResponse,
|
|
205
|
+
},
|
|
126
206
|
};
|
|
127
207
|
|
|
128
208
|
exports.DataCoreOutboundServiceClient = grpc.makeGenericClientConstructor(DataCoreOutboundServiceService);
|
|
@@ -221,6 +221,96 @@ export namespace CatalogLookupResponse {
|
|
|
221
221
|
}
|
|
222
222
|
}
|
|
223
223
|
|
|
224
|
+
export class GetIpLocationConfigRequest extends jspb.Message {
|
|
225
|
+
getSiteId(): string;
|
|
226
|
+
setSiteId(value: string): GetIpLocationConfigRequest;
|
|
227
|
+
|
|
228
|
+
serializeBinary(): Uint8Array;
|
|
229
|
+
toObject(includeInstance?: boolean): GetIpLocationConfigRequest.AsObject;
|
|
230
|
+
static toObject(includeInstance: boolean, msg: GetIpLocationConfigRequest): GetIpLocationConfigRequest.AsObject;
|
|
231
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
232
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
233
|
+
static serializeBinaryToWriter(message: GetIpLocationConfigRequest, writer: jspb.BinaryWriter): void;
|
|
234
|
+
static deserializeBinary(bytes: Uint8Array): GetIpLocationConfigRequest;
|
|
235
|
+
static deserializeBinaryFromReader(message: GetIpLocationConfigRequest, reader: jspb.BinaryReader): GetIpLocationConfigRequest;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
export namespace GetIpLocationConfigRequest {
|
|
239
|
+
export type AsObject = {
|
|
240
|
+
siteId: string,
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
export class GetIpLocationConfigResponse extends jspb.Message {
|
|
245
|
+
clearConfigList(): void;
|
|
246
|
+
getConfigList(): Array<IpLocationConfig>;
|
|
247
|
+
setConfigList(value: Array<IpLocationConfig>): GetIpLocationConfigResponse;
|
|
248
|
+
addConfig(value?: IpLocationConfig, index?: number): IpLocationConfig;
|
|
249
|
+
|
|
250
|
+
serializeBinary(): Uint8Array;
|
|
251
|
+
toObject(includeInstance?: boolean): GetIpLocationConfigResponse.AsObject;
|
|
252
|
+
static toObject(includeInstance: boolean, msg: GetIpLocationConfigResponse): GetIpLocationConfigResponse.AsObject;
|
|
253
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
254
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
255
|
+
static serializeBinaryToWriter(message: GetIpLocationConfigResponse, writer: jspb.BinaryWriter): void;
|
|
256
|
+
static deserializeBinary(bytes: Uint8Array): GetIpLocationConfigResponse;
|
|
257
|
+
static deserializeBinaryFromReader(message: GetIpLocationConfigResponse, reader: jspb.BinaryReader): GetIpLocationConfigResponse;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
export namespace GetIpLocationConfigResponse {
|
|
261
|
+
export type AsObject = {
|
|
262
|
+
configList: Array<IpLocationConfig.AsObject>,
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
export class SetIpLocationConfigRequest extends jspb.Message {
|
|
267
|
+
getSiteId(): string;
|
|
268
|
+
setSiteId(value: string): SetIpLocationConfigRequest;
|
|
269
|
+
clearConfigList(): void;
|
|
270
|
+
getConfigList(): Array<IpLocationConfig>;
|
|
271
|
+
setConfigList(value: Array<IpLocationConfig>): SetIpLocationConfigRequest;
|
|
272
|
+
addConfig(value?: IpLocationConfig, index?: number): IpLocationConfig;
|
|
273
|
+
|
|
274
|
+
serializeBinary(): Uint8Array;
|
|
275
|
+
toObject(includeInstance?: boolean): SetIpLocationConfigRequest.AsObject;
|
|
276
|
+
static toObject(includeInstance: boolean, msg: SetIpLocationConfigRequest): SetIpLocationConfigRequest.AsObject;
|
|
277
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
278
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
279
|
+
static serializeBinaryToWriter(message: SetIpLocationConfigRequest, writer: jspb.BinaryWriter): void;
|
|
280
|
+
static deserializeBinary(bytes: Uint8Array): SetIpLocationConfigRequest;
|
|
281
|
+
static deserializeBinaryFromReader(message: SetIpLocationConfigRequest, reader: jspb.BinaryReader): SetIpLocationConfigRequest;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
export namespace SetIpLocationConfigRequest {
|
|
285
|
+
export type AsObject = {
|
|
286
|
+
siteId: string,
|
|
287
|
+
configList: Array<IpLocationConfig.AsObject>,
|
|
288
|
+
}
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
export class SetIpLocationConfigResponse extends jspb.Message {
|
|
292
|
+
getOk(): boolean;
|
|
293
|
+
setOk(value: boolean): SetIpLocationConfigResponse;
|
|
294
|
+
getErrorDescription(): string;
|
|
295
|
+
setErrorDescription(value: string): SetIpLocationConfigResponse;
|
|
296
|
+
|
|
297
|
+
serializeBinary(): Uint8Array;
|
|
298
|
+
toObject(includeInstance?: boolean): SetIpLocationConfigResponse.AsObject;
|
|
299
|
+
static toObject(includeInstance: boolean, msg: SetIpLocationConfigResponse): SetIpLocationConfigResponse.AsObject;
|
|
300
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
301
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
302
|
+
static serializeBinaryToWriter(message: SetIpLocationConfigResponse, writer: jspb.BinaryWriter): void;
|
|
303
|
+
static deserializeBinary(bytes: Uint8Array): SetIpLocationConfigResponse;
|
|
304
|
+
static deserializeBinaryFromReader(message: SetIpLocationConfigResponse, reader: jspb.BinaryReader): SetIpLocationConfigResponse;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
export namespace SetIpLocationConfigResponse {
|
|
308
|
+
export type AsObject = {
|
|
309
|
+
ok: boolean,
|
|
310
|
+
errorDescription: string,
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
|
|
224
314
|
export class EntityPath extends jspb.Message {
|
|
225
315
|
getSiteId(): string;
|
|
226
316
|
setSiteId(value: string): EntityPath;
|
|
@@ -359,6 +449,11 @@ export class Asset extends jspb.Message {
|
|
|
359
449
|
setRelationList(value: Array<Relation>): Asset;
|
|
360
450
|
addRelation(value?: Relation, index?: number): Relation;
|
|
361
451
|
|
|
452
|
+
hasCorrelationFields(): boolean;
|
|
453
|
+
clearCorrelationFields(): void;
|
|
454
|
+
getCorrelationFields(): CorrelationFields | undefined;
|
|
455
|
+
setCorrelationFields(value?: CorrelationFields): Asset;
|
|
456
|
+
|
|
362
457
|
hasCore(): boolean;
|
|
363
458
|
clearCore(): void;
|
|
364
459
|
getCore(): CoreFields | undefined;
|
|
@@ -434,6 +529,7 @@ export namespace Asset {
|
|
|
434
529
|
internetIp?: IpInfo.AsObject,
|
|
435
530
|
tagList: Array<Tag.AsObject>,
|
|
436
531
|
relationList: Array<Relation.AsObject>,
|
|
532
|
+
correlationFields?: CorrelationFields.AsObject,
|
|
437
533
|
core?: CoreFields.AsObject,
|
|
438
534
|
hw?: HardwareInfo.AsObject,
|
|
439
535
|
os?: OperatingSystem.AsObject,
|
|
@@ -835,6 +931,53 @@ export namespace Relation {
|
|
|
835
931
|
}
|
|
836
932
|
}
|
|
837
933
|
|
|
934
|
+
export class CorrelationFields extends jspb.Message {
|
|
935
|
+
clearFieldList(): void;
|
|
936
|
+
getFieldList(): Array<CorrField>;
|
|
937
|
+
setFieldList(value: Array<CorrField>): CorrelationFields;
|
|
938
|
+
addField(value?: CorrField, index?: number): CorrField;
|
|
939
|
+
|
|
940
|
+
serializeBinary(): Uint8Array;
|
|
941
|
+
toObject(includeInstance?: boolean): CorrelationFields.AsObject;
|
|
942
|
+
static toObject(includeInstance: boolean, msg: CorrelationFields): CorrelationFields.AsObject;
|
|
943
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
944
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
945
|
+
static serializeBinaryToWriter(message: CorrelationFields, writer: jspb.BinaryWriter): void;
|
|
946
|
+
static deserializeBinary(bytes: Uint8Array): CorrelationFields;
|
|
947
|
+
static deserializeBinaryFromReader(message: CorrelationFields, reader: jspb.BinaryReader): CorrelationFields;
|
|
948
|
+
}
|
|
949
|
+
|
|
950
|
+
export namespace CorrelationFields {
|
|
951
|
+
export type AsObject = {
|
|
952
|
+
fieldList: Array<CorrField.AsObject>,
|
|
953
|
+
}
|
|
954
|
+
}
|
|
955
|
+
|
|
956
|
+
export class CorrField extends jspb.Message {
|
|
957
|
+
getKey(): string;
|
|
958
|
+
setKey(value: string): CorrField;
|
|
959
|
+
clearValueList(): void;
|
|
960
|
+
getValueList(): Array<string>;
|
|
961
|
+
setValueList(value: Array<string>): CorrField;
|
|
962
|
+
addValue(value: string, index?: number): string;
|
|
963
|
+
|
|
964
|
+
serializeBinary(): Uint8Array;
|
|
965
|
+
toObject(includeInstance?: boolean): CorrField.AsObject;
|
|
966
|
+
static toObject(includeInstance: boolean, msg: CorrField): CorrField.AsObject;
|
|
967
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
968
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
969
|
+
static serializeBinaryToWriter(message: CorrField, writer: jspb.BinaryWriter): void;
|
|
970
|
+
static deserializeBinary(bytes: Uint8Array): CorrField;
|
|
971
|
+
static deserializeBinaryFromReader(message: CorrField, reader: jspb.BinaryReader): CorrField;
|
|
972
|
+
}
|
|
973
|
+
|
|
974
|
+
export namespace CorrField {
|
|
975
|
+
export type AsObject = {
|
|
976
|
+
key: string,
|
|
977
|
+
valueList: Array<string>,
|
|
978
|
+
}
|
|
979
|
+
}
|
|
980
|
+
|
|
838
981
|
export class CloudEntity extends jspb.Message {
|
|
839
982
|
|
|
840
983
|
hasBody(): boolean;
|
|
@@ -9892,70 +10035,6 @@ export namespace CatalogMonitor {
|
|
|
9892
10035
|
}
|
|
9893
10036
|
}
|
|
9894
10037
|
|
|
9895
|
-
export class GetIpLocationConfigResponse extends jspb.Message {
|
|
9896
|
-
clearConfigList(): void;
|
|
9897
|
-
getConfigList(): Array<IpLocationConfig>;
|
|
9898
|
-
setConfigList(value: Array<IpLocationConfig>): GetIpLocationConfigResponse;
|
|
9899
|
-
addConfig(value?: IpLocationConfig, index?: number): IpLocationConfig;
|
|
9900
|
-
|
|
9901
|
-
serializeBinary(): Uint8Array;
|
|
9902
|
-
toObject(includeInstance?: boolean): GetIpLocationConfigResponse.AsObject;
|
|
9903
|
-
static toObject(includeInstance: boolean, msg: GetIpLocationConfigResponse): GetIpLocationConfigResponse.AsObject;
|
|
9904
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
9905
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
9906
|
-
static serializeBinaryToWriter(message: GetIpLocationConfigResponse, writer: jspb.BinaryWriter): void;
|
|
9907
|
-
static deserializeBinary(bytes: Uint8Array): GetIpLocationConfigResponse;
|
|
9908
|
-
static deserializeBinaryFromReader(message: GetIpLocationConfigResponse, reader: jspb.BinaryReader): GetIpLocationConfigResponse;
|
|
9909
|
-
}
|
|
9910
|
-
|
|
9911
|
-
export namespace GetIpLocationConfigResponse {
|
|
9912
|
-
export type AsObject = {
|
|
9913
|
-
configList: Array<IpLocationConfig.AsObject>,
|
|
9914
|
-
}
|
|
9915
|
-
}
|
|
9916
|
-
|
|
9917
|
-
export class SetIpLocationConfigRequest extends jspb.Message {
|
|
9918
|
-
clearConfigList(): void;
|
|
9919
|
-
getConfigList(): Array<IpLocationConfig>;
|
|
9920
|
-
setConfigList(value: Array<IpLocationConfig>): SetIpLocationConfigRequest;
|
|
9921
|
-
addConfig(value?: IpLocationConfig, index?: number): IpLocationConfig;
|
|
9922
|
-
|
|
9923
|
-
serializeBinary(): Uint8Array;
|
|
9924
|
-
toObject(includeInstance?: boolean): SetIpLocationConfigRequest.AsObject;
|
|
9925
|
-
static toObject(includeInstance: boolean, msg: SetIpLocationConfigRequest): SetIpLocationConfigRequest.AsObject;
|
|
9926
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
9927
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
9928
|
-
static serializeBinaryToWriter(message: SetIpLocationConfigRequest, writer: jspb.BinaryWriter): void;
|
|
9929
|
-
static deserializeBinary(bytes: Uint8Array): SetIpLocationConfigRequest;
|
|
9930
|
-
static deserializeBinaryFromReader(message: SetIpLocationConfigRequest, reader: jspb.BinaryReader): SetIpLocationConfigRequest;
|
|
9931
|
-
}
|
|
9932
|
-
|
|
9933
|
-
export namespace SetIpLocationConfigRequest {
|
|
9934
|
-
export type AsObject = {
|
|
9935
|
-
configList: Array<IpLocationConfig.AsObject>,
|
|
9936
|
-
}
|
|
9937
|
-
}
|
|
9938
|
-
|
|
9939
|
-
export class SetIpLocationConfigResponse extends jspb.Message {
|
|
9940
|
-
getOk(): boolean;
|
|
9941
|
-
setOk(value: boolean): SetIpLocationConfigResponse;
|
|
9942
|
-
|
|
9943
|
-
serializeBinary(): Uint8Array;
|
|
9944
|
-
toObject(includeInstance?: boolean): SetIpLocationConfigResponse.AsObject;
|
|
9945
|
-
static toObject(includeInstance: boolean, msg: SetIpLocationConfigResponse): SetIpLocationConfigResponse.AsObject;
|
|
9946
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
9947
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
9948
|
-
static serializeBinaryToWriter(message: SetIpLocationConfigResponse, writer: jspb.BinaryWriter): void;
|
|
9949
|
-
static deserializeBinary(bytes: Uint8Array): SetIpLocationConfigResponse;
|
|
9950
|
-
static deserializeBinaryFromReader(message: SetIpLocationConfigResponse, reader: jspb.BinaryReader): SetIpLocationConfigResponse;
|
|
9951
|
-
}
|
|
9952
|
-
|
|
9953
|
-
export namespace SetIpLocationConfigResponse {
|
|
9954
|
-
export type AsObject = {
|
|
9955
|
-
ok: boolean,
|
|
9956
|
-
}
|
|
9957
|
-
}
|
|
9958
|
-
|
|
9959
10038
|
export class IpLocationConfig extends jspb.Message {
|
|
9960
10039
|
getName(): string;
|
|
9961
10040
|
setName(value: string): IpLocationConfig;
|