@hpcc-js/comms 2.84.1 → 2.84.3
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/dist/index.es6.js +33 -20372
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +6 -3
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist/index.node.js +125 -20483
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.min.js +1 -4
- package/dist/index.node.min.js.map +1 -1
- package/lib-es6/__package__.js +2 -2
- package/lib-es6/services/wsTopology.js +1 -1
- package/lib-es6/services/wsdl/WsTopology/v1.32/WsTopology.js +83 -0
- package/lib-es6/services/wsdl/WsTopology/v1.32/WsTopology.js.map +1 -0
- package/package.json +5 -5
- package/src/__package__.ts +2 -2
- package/src/services/wsTopology.ts +1 -1
- package/src/services/wsdl/WsTopology/v1.32/WsTopology.ts +885 -0
- package/types/__package__.d.ts +2 -2
- package/types/services/wsTopology.d.ts +1 -1
- package/types/services/wsdl/WsTopology/v1.32/WsTopology.d.ts +716 -0
- package/types/services/wsdl/WsTopology/v1.32/WsTopology.d.ts.map +1 -0
- package/types-3.4/__package__.d.ts +2 -2
- package/types-3.4/services/wsTopology.d.ts +1 -1
- package/types-3.4/services/wsdl/WsTopology/v1.32/WsTopology.d.ts +716 -0
|
@@ -0,0 +1,716 @@
|
|
|
1
|
+
import { IConnection, IOptions } from "../../../../connection";
|
|
2
|
+
import { Service } from "../../../../espConnection";
|
|
3
|
+
export declare namespace WsTopology {
|
|
4
|
+
type int = number;
|
|
5
|
+
type base64Binary = string;
|
|
6
|
+
type unsignedInt = number;
|
|
7
|
+
type long = number;
|
|
8
|
+
enum RoxieQueueFilter {
|
|
9
|
+
All = "All",
|
|
10
|
+
QueriesOnly = "QueriesOnly",
|
|
11
|
+
WorkunitsOnly = "WorkunitsOnly"
|
|
12
|
+
}
|
|
13
|
+
interface WsTopologyPingRequest {
|
|
14
|
+
}
|
|
15
|
+
interface WsTopologyPingResponse {
|
|
16
|
+
}
|
|
17
|
+
interface SystemLogRequest {
|
|
18
|
+
Name?: string;
|
|
19
|
+
Type?: string;
|
|
20
|
+
Zip?: int;
|
|
21
|
+
}
|
|
22
|
+
interface Exception {
|
|
23
|
+
Code: string;
|
|
24
|
+
Audience: string;
|
|
25
|
+
Source: string;
|
|
26
|
+
Message: string;
|
|
27
|
+
}
|
|
28
|
+
interface Exceptions {
|
|
29
|
+
Source: string;
|
|
30
|
+
Exception: Exception[];
|
|
31
|
+
}
|
|
32
|
+
interface SystemLogResponse {
|
|
33
|
+
Exceptions: {
|
|
34
|
+
Source: string;
|
|
35
|
+
Exception: Exception[];
|
|
36
|
+
};
|
|
37
|
+
thefile: base64Binary;
|
|
38
|
+
}
|
|
39
|
+
interface TpClusterInfoRequest {
|
|
40
|
+
Name?: string;
|
|
41
|
+
}
|
|
42
|
+
interface TpQueue {
|
|
43
|
+
Name: string;
|
|
44
|
+
WorkUnit: string;
|
|
45
|
+
}
|
|
46
|
+
interface TpQueues {
|
|
47
|
+
TpQueue: TpQueue[];
|
|
48
|
+
}
|
|
49
|
+
interface TpClusterInfoResponse {
|
|
50
|
+
Exceptions: Exceptions;
|
|
51
|
+
Name: string;
|
|
52
|
+
WorkUnit: string;
|
|
53
|
+
TpQueues: {
|
|
54
|
+
TpQueue: TpQueue[];
|
|
55
|
+
};
|
|
56
|
+
}
|
|
57
|
+
interface TpClusterQueryRequest {
|
|
58
|
+
Type?: string;
|
|
59
|
+
}
|
|
60
|
+
interface TpMachine {
|
|
61
|
+
Name: string;
|
|
62
|
+
Netaddress: string;
|
|
63
|
+
ConfigNetaddress: string;
|
|
64
|
+
Domain: string;
|
|
65
|
+
Directory: string;
|
|
66
|
+
Type: string;
|
|
67
|
+
Available: string;
|
|
68
|
+
OS: int;
|
|
69
|
+
Path: string;
|
|
70
|
+
Port: int;
|
|
71
|
+
ProcessNumber: int;
|
|
72
|
+
Channels: unsignedInt;
|
|
73
|
+
}
|
|
74
|
+
interface TpMachines {
|
|
75
|
+
TpMachine: TpMachine[];
|
|
76
|
+
}
|
|
77
|
+
interface TpCluster {
|
|
78
|
+
Type: string;
|
|
79
|
+
Name: string;
|
|
80
|
+
QueueName: string;
|
|
81
|
+
Build: string;
|
|
82
|
+
Directory: string;
|
|
83
|
+
LogDirectory: string;
|
|
84
|
+
Desc: string;
|
|
85
|
+
Path: string;
|
|
86
|
+
DataModel: string;
|
|
87
|
+
OS: int;
|
|
88
|
+
HasThorSpareProcess: boolean;
|
|
89
|
+
TpMachines: {
|
|
90
|
+
TpMachine: TpMachine[];
|
|
91
|
+
};
|
|
92
|
+
}
|
|
93
|
+
interface TpClusters {
|
|
94
|
+
TpCluster: TpCluster[];
|
|
95
|
+
}
|
|
96
|
+
interface TpClusterQueryResponse {
|
|
97
|
+
Exceptions: Exceptions;
|
|
98
|
+
EnableSNMP: boolean;
|
|
99
|
+
AcceptLanguage: string;
|
|
100
|
+
TpClusters: {
|
|
101
|
+
TpCluster: TpCluster[];
|
|
102
|
+
};
|
|
103
|
+
}
|
|
104
|
+
interface TpDropZoneQueryRequest {
|
|
105
|
+
Name?: string;
|
|
106
|
+
ECLWatchVisibleOnly?: boolean;
|
|
107
|
+
}
|
|
108
|
+
interface TpDropZone {
|
|
109
|
+
Name: string;
|
|
110
|
+
Description: string;
|
|
111
|
+
Build: string;
|
|
112
|
+
Path: string;
|
|
113
|
+
ECLWatchVisible: boolean;
|
|
114
|
+
UMask: string;
|
|
115
|
+
TpMachines: TpMachines;
|
|
116
|
+
}
|
|
117
|
+
interface TpDropZones {
|
|
118
|
+
TpDropZone: TpDropZone[];
|
|
119
|
+
}
|
|
120
|
+
interface TpDropZoneQueryResponse {
|
|
121
|
+
Exceptions: Exceptions;
|
|
122
|
+
TpDropZones: {
|
|
123
|
+
TpDropZone: TpDropZone[];
|
|
124
|
+
};
|
|
125
|
+
}
|
|
126
|
+
interface TpGetComponentFileRequest {
|
|
127
|
+
CompType?: string;
|
|
128
|
+
CompName?: string;
|
|
129
|
+
NetAddress?: string;
|
|
130
|
+
Directory?: string;
|
|
131
|
+
FileType?: string;
|
|
132
|
+
OsType?: int;
|
|
133
|
+
PlainText?: string;
|
|
134
|
+
}
|
|
135
|
+
interface TpGetComponentFileResponse {
|
|
136
|
+
Exceptions: Exceptions;
|
|
137
|
+
FileContents: base64Binary;
|
|
138
|
+
}
|
|
139
|
+
interface TpGetServicePluginsRequest {
|
|
140
|
+
}
|
|
141
|
+
interface Plugin {
|
|
142
|
+
ShortName: string;
|
|
143
|
+
LongName: string;
|
|
144
|
+
FolderName: string;
|
|
145
|
+
WidgetName: string;
|
|
146
|
+
}
|
|
147
|
+
interface Plugins {
|
|
148
|
+
Plugin: Plugin[];
|
|
149
|
+
}
|
|
150
|
+
interface TpGetServicePluginsResponse {
|
|
151
|
+
Exceptions: Exceptions;
|
|
152
|
+
Plugins: {
|
|
153
|
+
Plugin: Plugin[];
|
|
154
|
+
};
|
|
155
|
+
}
|
|
156
|
+
interface TpGroupQueryRequest {
|
|
157
|
+
Kind?: string;
|
|
158
|
+
}
|
|
159
|
+
interface TpGroup {
|
|
160
|
+
Name: string;
|
|
161
|
+
Kind: string;
|
|
162
|
+
ReplicateOutputs: boolean;
|
|
163
|
+
}
|
|
164
|
+
interface TpGroups {
|
|
165
|
+
TpGroup: TpGroup[];
|
|
166
|
+
}
|
|
167
|
+
interface TpGroupQueryResponse {
|
|
168
|
+
Exceptions: Exceptions;
|
|
169
|
+
TpGroups: {
|
|
170
|
+
TpGroup: TpGroup[];
|
|
171
|
+
};
|
|
172
|
+
}
|
|
173
|
+
interface TpListLogFilesRequest {
|
|
174
|
+
NetworkAddress?: string;
|
|
175
|
+
Path?: string;
|
|
176
|
+
}
|
|
177
|
+
interface LogFileStruct {
|
|
178
|
+
Name: string;
|
|
179
|
+
Path: string;
|
|
180
|
+
Host: string;
|
|
181
|
+
IsDir: boolean;
|
|
182
|
+
FileSize: long;
|
|
183
|
+
Modifiedtime: string;
|
|
184
|
+
}
|
|
185
|
+
interface Files {
|
|
186
|
+
LogFileStruct: LogFileStruct[];
|
|
187
|
+
}
|
|
188
|
+
interface TpListLogFilesResponse {
|
|
189
|
+
Exceptions: Exceptions;
|
|
190
|
+
Files: {
|
|
191
|
+
LogFileStruct: LogFileStruct[];
|
|
192
|
+
};
|
|
193
|
+
}
|
|
194
|
+
interface TpListTargetClustersRequest {
|
|
195
|
+
}
|
|
196
|
+
interface TpClusterNameType {
|
|
197
|
+
Name: string;
|
|
198
|
+
Type: string;
|
|
199
|
+
IsDefault: boolean;
|
|
200
|
+
}
|
|
201
|
+
interface TargetClusters {
|
|
202
|
+
TpClusterNameType: TpClusterNameType[];
|
|
203
|
+
}
|
|
204
|
+
interface TpListTargetClustersResponse {
|
|
205
|
+
Exceptions: Exceptions;
|
|
206
|
+
TargetClusters: {
|
|
207
|
+
TpClusterNameType: TpClusterNameType[];
|
|
208
|
+
};
|
|
209
|
+
}
|
|
210
|
+
interface TpLogFileRequest {
|
|
211
|
+
Name?: string;
|
|
212
|
+
Type?: string;
|
|
213
|
+
LastHours?: int;
|
|
214
|
+
StartDate?: string;
|
|
215
|
+
EndDate?: string;
|
|
216
|
+
FirstRows?: int;
|
|
217
|
+
LastRows?: int;
|
|
218
|
+
FilterType?: int;
|
|
219
|
+
Reversely?: boolean;
|
|
220
|
+
Zip?: boolean;
|
|
221
|
+
PageNumber?: int;
|
|
222
|
+
LoadData?: boolean;
|
|
223
|
+
IncludeLogFieldNames?: boolean;
|
|
224
|
+
}
|
|
225
|
+
interface LogFieldNames {
|
|
226
|
+
Item: string[];
|
|
227
|
+
}
|
|
228
|
+
interface TpLogFileResponse {
|
|
229
|
+
Exceptions: Exceptions;
|
|
230
|
+
Name: string;
|
|
231
|
+
Type: string;
|
|
232
|
+
StartDate: string;
|
|
233
|
+
EndDate: string;
|
|
234
|
+
LastHours: int;
|
|
235
|
+
FirstRows: int;
|
|
236
|
+
LastRows: int;
|
|
237
|
+
Reversely: boolean;
|
|
238
|
+
Zip: boolean;
|
|
239
|
+
FilterType: int;
|
|
240
|
+
LogData: string;
|
|
241
|
+
HasDate: boolean;
|
|
242
|
+
FileSize: long;
|
|
243
|
+
PageFrom: long;
|
|
244
|
+
PageTo: long;
|
|
245
|
+
PageNumber: int;
|
|
246
|
+
PrevPage: int;
|
|
247
|
+
NextPage: int;
|
|
248
|
+
TotalPages: int;
|
|
249
|
+
AcceptLanguage: string;
|
|
250
|
+
LogFieldNames: {
|
|
251
|
+
Item: string[];
|
|
252
|
+
};
|
|
253
|
+
}
|
|
254
|
+
interface TpLogicalClusterQueryRequest {
|
|
255
|
+
EclServerQueue?: string;
|
|
256
|
+
RoxieQueueFilter?: RoxieQueueFilter;
|
|
257
|
+
}
|
|
258
|
+
interface TpLogicalCluster {
|
|
259
|
+
Name: string;
|
|
260
|
+
Queue: string;
|
|
261
|
+
LanguageVersion: string;
|
|
262
|
+
Process: string;
|
|
263
|
+
Type: string;
|
|
264
|
+
QueriesOnly: boolean;
|
|
265
|
+
}
|
|
266
|
+
interface TpLogicalClusters {
|
|
267
|
+
TpLogicalCluster: TpLogicalCluster[];
|
|
268
|
+
}
|
|
269
|
+
interface TpLogicalClusterQueryResponse {
|
|
270
|
+
Exceptions: Exceptions;
|
|
271
|
+
TpLogicalClusters: {
|
|
272
|
+
TpLogicalCluster: TpLogicalCluster[];
|
|
273
|
+
};
|
|
274
|
+
}
|
|
275
|
+
interface TpMachineInfoRequest {
|
|
276
|
+
Name?: string;
|
|
277
|
+
NetAddress?: string;
|
|
278
|
+
}
|
|
279
|
+
interface MachineInfo {
|
|
280
|
+
Name: string;
|
|
281
|
+
Netaddress: string;
|
|
282
|
+
ConfigNetaddress: string;
|
|
283
|
+
Domain: string;
|
|
284
|
+
Directory: string;
|
|
285
|
+
Type: string;
|
|
286
|
+
Available: string;
|
|
287
|
+
OS: int;
|
|
288
|
+
Path: string;
|
|
289
|
+
Port: int;
|
|
290
|
+
ProcessNumber: int;
|
|
291
|
+
Channels: unsignedInt;
|
|
292
|
+
}
|
|
293
|
+
interface TpMachineInfoResponse {
|
|
294
|
+
Exceptions: Exceptions;
|
|
295
|
+
MachineInfo: {
|
|
296
|
+
Name: string;
|
|
297
|
+
Netaddress: string;
|
|
298
|
+
ConfigNetaddress: string;
|
|
299
|
+
Domain: string;
|
|
300
|
+
Directory: string;
|
|
301
|
+
Type: string;
|
|
302
|
+
Available: string;
|
|
303
|
+
OS: int;
|
|
304
|
+
Path: string;
|
|
305
|
+
Port: int;
|
|
306
|
+
ProcessNumber: int;
|
|
307
|
+
Channels: unsignedInt;
|
|
308
|
+
};
|
|
309
|
+
}
|
|
310
|
+
interface TpMachineQueryRequest {
|
|
311
|
+
Type?: string;
|
|
312
|
+
Cluster?: string;
|
|
313
|
+
OldIP?: string;
|
|
314
|
+
Path?: string;
|
|
315
|
+
Directory?: string;
|
|
316
|
+
LogDirectory?: string;
|
|
317
|
+
}
|
|
318
|
+
interface TpMachineQueryResponse {
|
|
319
|
+
Exceptions: Exceptions;
|
|
320
|
+
EnablePreflightInfo: boolean;
|
|
321
|
+
HasThorSpareProcess: boolean;
|
|
322
|
+
Type: string;
|
|
323
|
+
Cluster: string;
|
|
324
|
+
OldIP: string;
|
|
325
|
+
LogDirectory: string;
|
|
326
|
+
Path: string;
|
|
327
|
+
MemThreshold: int;
|
|
328
|
+
DiskThreshold: int;
|
|
329
|
+
CpuThreshold: int;
|
|
330
|
+
MemThresholdType: string;
|
|
331
|
+
DiskThresholdType: string;
|
|
332
|
+
PreflightProcessFilter: string;
|
|
333
|
+
EnableSNMP: boolean;
|
|
334
|
+
AcceptLanguage: string;
|
|
335
|
+
TpMachines: TpMachines;
|
|
336
|
+
}
|
|
337
|
+
interface TpServiceQueryRequest {
|
|
338
|
+
Type?: string;
|
|
339
|
+
}
|
|
340
|
+
interface TpDali {
|
|
341
|
+
Name: string;
|
|
342
|
+
Description: string;
|
|
343
|
+
Build: string;
|
|
344
|
+
BackupComputer: string;
|
|
345
|
+
BackupDirectory: string;
|
|
346
|
+
Type: string;
|
|
347
|
+
Path: string;
|
|
348
|
+
LogDirectory: string;
|
|
349
|
+
AuditLogDirectory: string;
|
|
350
|
+
TpMachines: TpMachines;
|
|
351
|
+
}
|
|
352
|
+
interface TpDalis {
|
|
353
|
+
TpDali: TpDali[];
|
|
354
|
+
}
|
|
355
|
+
interface TpDfuServer {
|
|
356
|
+
Name: string;
|
|
357
|
+
Description: string;
|
|
358
|
+
Build: string;
|
|
359
|
+
Queue: string;
|
|
360
|
+
Type: string;
|
|
361
|
+
Path: string;
|
|
362
|
+
LogDirectory: string;
|
|
363
|
+
TpMachines: TpMachines;
|
|
364
|
+
}
|
|
365
|
+
interface TpDfuServers {
|
|
366
|
+
TpDfuServer: TpDfuServer[];
|
|
367
|
+
}
|
|
368
|
+
interface TpDkcSlave {
|
|
369
|
+
Name: string;
|
|
370
|
+
Description: string;
|
|
371
|
+
Build: string;
|
|
372
|
+
Path: string;
|
|
373
|
+
TpMachines: TpMachines;
|
|
374
|
+
}
|
|
375
|
+
interface TpDkcSlaves {
|
|
376
|
+
TpDkcSlave: TpDkcSlave[];
|
|
377
|
+
}
|
|
378
|
+
interface TpEclAgent {
|
|
379
|
+
Name: string;
|
|
380
|
+
Description: string;
|
|
381
|
+
Build: string;
|
|
382
|
+
Type: string;
|
|
383
|
+
Path: string;
|
|
384
|
+
DaliServer: string;
|
|
385
|
+
LogDir: string;
|
|
386
|
+
TpMachines: TpMachines;
|
|
387
|
+
}
|
|
388
|
+
interface TpEclAgents {
|
|
389
|
+
TpEclAgent: TpEclAgent[];
|
|
390
|
+
}
|
|
391
|
+
interface TpEclServer {
|
|
392
|
+
Name: string;
|
|
393
|
+
Description: string;
|
|
394
|
+
Build: string;
|
|
395
|
+
LogDirectory: string;
|
|
396
|
+
Type: string;
|
|
397
|
+
Path: string;
|
|
398
|
+
TpMachines: TpMachines;
|
|
399
|
+
}
|
|
400
|
+
interface TpEclServers {
|
|
401
|
+
TpEclServer: TpEclServer[];
|
|
402
|
+
}
|
|
403
|
+
interface TpEclCCServers {
|
|
404
|
+
TpEclServer: TpEclServer[];
|
|
405
|
+
}
|
|
406
|
+
interface TpEclScheduler {
|
|
407
|
+
Name: string;
|
|
408
|
+
Description: string;
|
|
409
|
+
Build: string;
|
|
410
|
+
LogDirectory: string;
|
|
411
|
+
Type: string;
|
|
412
|
+
Path: string;
|
|
413
|
+
TpMachines: TpMachines;
|
|
414
|
+
}
|
|
415
|
+
interface TpEclSchedulers {
|
|
416
|
+
TpEclScheduler: TpEclScheduler[];
|
|
417
|
+
}
|
|
418
|
+
interface TpBinding {
|
|
419
|
+
Name: string;
|
|
420
|
+
Service: string;
|
|
421
|
+
ServiceType: string;
|
|
422
|
+
BindingType: string;
|
|
423
|
+
ServiceBuildSet: string;
|
|
424
|
+
Port: string;
|
|
425
|
+
Protocol: string;
|
|
426
|
+
}
|
|
427
|
+
interface TpBindings {
|
|
428
|
+
TpBinding: TpBinding[];
|
|
429
|
+
}
|
|
430
|
+
interface TpEspServer {
|
|
431
|
+
Name: string;
|
|
432
|
+
Description: string;
|
|
433
|
+
Build: string;
|
|
434
|
+
Type: string;
|
|
435
|
+
Path: string;
|
|
436
|
+
LogDirectory: string;
|
|
437
|
+
TpMachines: TpMachines;
|
|
438
|
+
TpBindings: {
|
|
439
|
+
TpBinding: TpBinding[];
|
|
440
|
+
};
|
|
441
|
+
}
|
|
442
|
+
interface TpEspServers {
|
|
443
|
+
TpEspServer: TpEspServer[];
|
|
444
|
+
}
|
|
445
|
+
interface TpFTSlave {
|
|
446
|
+
Name: string;
|
|
447
|
+
Description: string;
|
|
448
|
+
Build: string;
|
|
449
|
+
Path: string;
|
|
450
|
+
TpMachines: TpMachines;
|
|
451
|
+
}
|
|
452
|
+
interface TpFTSlaves {
|
|
453
|
+
TpFTSlave: TpFTSlave[];
|
|
454
|
+
}
|
|
455
|
+
interface TpGenesisServer {
|
|
456
|
+
Name: string;
|
|
457
|
+
Description: string;
|
|
458
|
+
Build: string;
|
|
459
|
+
Path: string;
|
|
460
|
+
TpMachines: TpMachines;
|
|
461
|
+
}
|
|
462
|
+
interface TpGenesisServers {
|
|
463
|
+
TpGenesisServer: TpGenesisServer[];
|
|
464
|
+
}
|
|
465
|
+
interface TpLdapServer {
|
|
466
|
+
Name: string;
|
|
467
|
+
Description: string;
|
|
468
|
+
Build: string;
|
|
469
|
+
Path: string;
|
|
470
|
+
TpMachines: TpMachines;
|
|
471
|
+
}
|
|
472
|
+
interface TpLdapServers {
|
|
473
|
+
TpLdapServer: TpLdapServer[];
|
|
474
|
+
}
|
|
475
|
+
interface TpMySqlServer {
|
|
476
|
+
Name: string;
|
|
477
|
+
Description: string;
|
|
478
|
+
Build: string;
|
|
479
|
+
Path: string;
|
|
480
|
+
TpMachines: TpMachines;
|
|
481
|
+
}
|
|
482
|
+
interface TpMySqlServers {
|
|
483
|
+
TpMySqlServer: TpMySqlServer[];
|
|
484
|
+
}
|
|
485
|
+
interface TpSashaServer {
|
|
486
|
+
Name: string;
|
|
487
|
+
Description: string;
|
|
488
|
+
Build: string;
|
|
489
|
+
Path: string;
|
|
490
|
+
LogDirectory: string;
|
|
491
|
+
TpMachines: TpMachines;
|
|
492
|
+
}
|
|
493
|
+
interface TpSashaServers {
|
|
494
|
+
TpSashaServer: TpSashaServer[];
|
|
495
|
+
}
|
|
496
|
+
interface TpSparkThor {
|
|
497
|
+
Name: string;
|
|
498
|
+
Build: string;
|
|
499
|
+
ThorClusterName: string;
|
|
500
|
+
ThorPath: string;
|
|
501
|
+
SparkExecutorCores: unsignedInt;
|
|
502
|
+
SparkExecutorMemory: long;
|
|
503
|
+
SparkMasterPort: unsignedInt;
|
|
504
|
+
SparkMasterWebUIPort: unsignedInt;
|
|
505
|
+
SparkWorkerCores: unsignedInt;
|
|
506
|
+
SparkWorkerMemory: long;
|
|
507
|
+
SparkWorkerPort: unsignedInt;
|
|
508
|
+
LogDirectory: string;
|
|
509
|
+
Path: string;
|
|
510
|
+
TpMachines: TpMachines;
|
|
511
|
+
}
|
|
512
|
+
interface TpSparkThors {
|
|
513
|
+
TpSparkThor: TpSparkThor[];
|
|
514
|
+
}
|
|
515
|
+
interface ServiceList {
|
|
516
|
+
TpDalis: {
|
|
517
|
+
TpDali: TpDali[];
|
|
518
|
+
};
|
|
519
|
+
TpDfuServers: {
|
|
520
|
+
TpDfuServer: TpDfuServer[];
|
|
521
|
+
};
|
|
522
|
+
TpDkcSlaves: {
|
|
523
|
+
TpDkcSlave: TpDkcSlave[];
|
|
524
|
+
};
|
|
525
|
+
TpDropZones: TpDropZones;
|
|
526
|
+
TpEclAgents: {
|
|
527
|
+
TpEclAgent: TpEclAgent[];
|
|
528
|
+
};
|
|
529
|
+
TpEclServers: {
|
|
530
|
+
TpEclServer: TpEclServer[];
|
|
531
|
+
};
|
|
532
|
+
TpEclCCServers: {
|
|
533
|
+
TpEclServer: TpEclServer[];
|
|
534
|
+
};
|
|
535
|
+
TpEclSchedulers: {
|
|
536
|
+
TpEclScheduler: TpEclScheduler[];
|
|
537
|
+
};
|
|
538
|
+
TpEspServers: {
|
|
539
|
+
TpEspServer: TpEspServer[];
|
|
540
|
+
};
|
|
541
|
+
TpFTSlaves: {
|
|
542
|
+
TpFTSlave: TpFTSlave[];
|
|
543
|
+
};
|
|
544
|
+
TpGenesisServers: {
|
|
545
|
+
TpGenesisServer: TpGenesisServer[];
|
|
546
|
+
};
|
|
547
|
+
TpLdapServers: {
|
|
548
|
+
TpLdapServer: TpLdapServer[];
|
|
549
|
+
};
|
|
550
|
+
TpMySqlServers: {
|
|
551
|
+
TpMySqlServer: TpMySqlServer[];
|
|
552
|
+
};
|
|
553
|
+
TpSashaServers: {
|
|
554
|
+
TpSashaServer: TpSashaServer[];
|
|
555
|
+
};
|
|
556
|
+
TpSparkThors: {
|
|
557
|
+
TpSparkThor: TpSparkThor[];
|
|
558
|
+
};
|
|
559
|
+
}
|
|
560
|
+
interface TpServiceQueryResponse {
|
|
561
|
+
Exceptions: Exceptions;
|
|
562
|
+
MemThreshold: int;
|
|
563
|
+
DiskThreshold: int;
|
|
564
|
+
CpuThreshold: int;
|
|
565
|
+
EncapsulatedSystem: boolean;
|
|
566
|
+
EnableSNMP: boolean;
|
|
567
|
+
PreflightProcessFilter: string;
|
|
568
|
+
AcceptLanguage: string;
|
|
569
|
+
MemThresholdType: string;
|
|
570
|
+
DiskThresholdType: string;
|
|
571
|
+
ServiceList: {
|
|
572
|
+
TpDalis: {
|
|
573
|
+
TpDali: TpDali[];
|
|
574
|
+
};
|
|
575
|
+
TpDfuServers: {
|
|
576
|
+
TpDfuServer: TpDfuServer[];
|
|
577
|
+
};
|
|
578
|
+
TpDkcSlaves: {
|
|
579
|
+
TpDkcSlave: TpDkcSlave[];
|
|
580
|
+
};
|
|
581
|
+
TpDropZones: TpDropZones;
|
|
582
|
+
TpEclAgents: {
|
|
583
|
+
TpEclAgent: TpEclAgent[];
|
|
584
|
+
};
|
|
585
|
+
TpEclServers: {
|
|
586
|
+
TpEclServer: TpEclServer[];
|
|
587
|
+
};
|
|
588
|
+
TpEclCCServers: {
|
|
589
|
+
TpEclServer: TpEclServer[];
|
|
590
|
+
};
|
|
591
|
+
TpEclSchedulers: {
|
|
592
|
+
TpEclScheduler: TpEclScheduler[];
|
|
593
|
+
};
|
|
594
|
+
TpEspServers: {
|
|
595
|
+
TpEspServer: TpEspServer[];
|
|
596
|
+
};
|
|
597
|
+
TpFTSlaves: {
|
|
598
|
+
TpFTSlave: TpFTSlave[];
|
|
599
|
+
};
|
|
600
|
+
TpGenesisServers: {
|
|
601
|
+
TpGenesisServer: TpGenesisServer[];
|
|
602
|
+
};
|
|
603
|
+
TpLdapServers: {
|
|
604
|
+
TpLdapServer: TpLdapServer[];
|
|
605
|
+
};
|
|
606
|
+
TpMySqlServers: {
|
|
607
|
+
TpMySqlServer: TpMySqlServer[];
|
|
608
|
+
};
|
|
609
|
+
TpSashaServers: {
|
|
610
|
+
TpSashaServer: TpSashaServer[];
|
|
611
|
+
};
|
|
612
|
+
TpSparkThors: {
|
|
613
|
+
TpSparkThor: TpSparkThor[];
|
|
614
|
+
};
|
|
615
|
+
};
|
|
616
|
+
}
|
|
617
|
+
interface TpSetMachineStatusRequest {
|
|
618
|
+
MachinePath?: string;
|
|
619
|
+
StatusValue?: string;
|
|
620
|
+
}
|
|
621
|
+
interface TpSetMachineStatusResponse {
|
|
622
|
+
Exceptions: Exceptions;
|
|
623
|
+
TpSetMachineStatusResult: boolean;
|
|
624
|
+
}
|
|
625
|
+
interface TpSwapNodeRequest {
|
|
626
|
+
Cluster?: string;
|
|
627
|
+
OldIP?: string;
|
|
628
|
+
NewIP?: string;
|
|
629
|
+
}
|
|
630
|
+
interface TpSwapNodeResponse {
|
|
631
|
+
Exceptions: Exceptions;
|
|
632
|
+
TpSwapNodeResult: boolean;
|
|
633
|
+
}
|
|
634
|
+
interface TpTargetClusterQueryRequest {
|
|
635
|
+
Type?: string;
|
|
636
|
+
Name?: string;
|
|
637
|
+
ShowDetails?: boolean;
|
|
638
|
+
}
|
|
639
|
+
interface TpTargetCluster {
|
|
640
|
+
Name: string;
|
|
641
|
+
Prefix: string;
|
|
642
|
+
Type: string;
|
|
643
|
+
TpClusters: TpClusters;
|
|
644
|
+
TpEclCCServers: TpEclCCServers;
|
|
645
|
+
TpEclServers: TpEclServers;
|
|
646
|
+
TpEclAgents: TpEclAgents;
|
|
647
|
+
TpEclSchedulers: TpEclSchedulers;
|
|
648
|
+
}
|
|
649
|
+
interface TpTargetClusters {
|
|
650
|
+
TpTargetCluster: TpTargetCluster[];
|
|
651
|
+
}
|
|
652
|
+
interface TpTargetClusterQueryResponse {
|
|
653
|
+
Exceptions: Exceptions;
|
|
654
|
+
ShowDetails: boolean;
|
|
655
|
+
MemThreshold: int;
|
|
656
|
+
DiskThreshold: int;
|
|
657
|
+
CpuThreshold: int;
|
|
658
|
+
MemThresholdType: string;
|
|
659
|
+
DiskThresholdType: string;
|
|
660
|
+
PreflightProcessFilter: string;
|
|
661
|
+
AcceptLanguage: string;
|
|
662
|
+
TpTargetClusters: {
|
|
663
|
+
TpTargetCluster: TpTargetCluster[];
|
|
664
|
+
};
|
|
665
|
+
}
|
|
666
|
+
interface TpThorStatusRequest {
|
|
667
|
+
Name?: string;
|
|
668
|
+
}
|
|
669
|
+
interface TpThorStatusResponse {
|
|
670
|
+
Exceptions: Exceptions;
|
|
671
|
+
Name: string;
|
|
672
|
+
Queue: string;
|
|
673
|
+
Group: string;
|
|
674
|
+
ThorMasterIPAddress: string;
|
|
675
|
+
Port: int;
|
|
676
|
+
StartTime: string;
|
|
677
|
+
LogFile: string;
|
|
678
|
+
Wuid: string;
|
|
679
|
+
Graph: string;
|
|
680
|
+
SubGraph: int;
|
|
681
|
+
SubGraphDuration: int;
|
|
682
|
+
AutoRefresh: int;
|
|
683
|
+
}
|
|
684
|
+
interface TpXMLFileRequest {
|
|
685
|
+
Name?: string;
|
|
686
|
+
}
|
|
687
|
+
interface TpXMLFileResponse {
|
|
688
|
+
Exceptions: Exceptions;
|
|
689
|
+
thefile: base64Binary;
|
|
690
|
+
}
|
|
691
|
+
}
|
|
692
|
+
export declare class TopologyServiceBase extends Service {
|
|
693
|
+
constructor(optsConnection: IOptions | IConnection);
|
|
694
|
+
Ping(request: WsTopology.WsTopologyPingRequest): Promise<WsTopology.WsTopologyPingResponse>;
|
|
695
|
+
SystemLog(request: WsTopology.SystemLogRequest): Promise<WsTopology.SystemLogResponse>;
|
|
696
|
+
TpClusterInfo(request: WsTopology.TpClusterInfoRequest): Promise<WsTopology.TpClusterInfoResponse>;
|
|
697
|
+
TpClusterQuery(request: WsTopology.TpClusterQueryRequest): Promise<WsTopology.TpClusterQueryResponse>;
|
|
698
|
+
TpDropZoneQuery(request: WsTopology.TpDropZoneQueryRequest): Promise<WsTopology.TpDropZoneQueryResponse>;
|
|
699
|
+
TpGetComponentFile(request: WsTopology.TpGetComponentFileRequest): Promise<WsTopology.TpGetComponentFileResponse>;
|
|
700
|
+
TpGetServicePlugins(request: WsTopology.TpGetServicePluginsRequest): Promise<WsTopology.TpGetServicePluginsResponse>;
|
|
701
|
+
TpGroupQuery(request: WsTopology.TpGroupQueryRequest): Promise<WsTopology.TpGroupQueryResponse>;
|
|
702
|
+
TpListLogFiles(request: WsTopology.TpListLogFilesRequest): Promise<WsTopology.TpListLogFilesResponse>;
|
|
703
|
+
TpListTargetClusters(request: WsTopology.TpListTargetClustersRequest): Promise<WsTopology.TpListTargetClustersResponse>;
|
|
704
|
+
TpLogFile(request: WsTopology.TpLogFileRequest): Promise<WsTopology.TpLogFileResponse>;
|
|
705
|
+
TpLogFileDisplay(request: WsTopology.TpLogFileRequest): Promise<WsTopology.TpLogFileResponse>;
|
|
706
|
+
TpLogicalClusterQuery(request: WsTopology.TpLogicalClusterQueryRequest): Promise<WsTopology.TpLogicalClusterQueryResponse>;
|
|
707
|
+
TpMachineInfo(request: WsTopology.TpMachineInfoRequest): Promise<WsTopology.TpMachineInfoResponse>;
|
|
708
|
+
TpMachineQuery(request: WsTopology.TpMachineQueryRequest): Promise<WsTopology.TpMachineQueryResponse>;
|
|
709
|
+
TpServiceQuery(request: WsTopology.TpServiceQueryRequest): Promise<WsTopology.TpServiceQueryResponse>;
|
|
710
|
+
TpSetMachineStatus(request: WsTopology.TpSetMachineStatusRequest): Promise<WsTopology.TpSetMachineStatusResponse>;
|
|
711
|
+
TpSwapNode(request: WsTopology.TpSwapNodeRequest): Promise<WsTopology.TpSwapNodeResponse>;
|
|
712
|
+
TpTargetClusterQuery(request: WsTopology.TpTargetClusterQueryRequest): Promise<WsTopology.TpTargetClusterQueryResponse>;
|
|
713
|
+
TpThorStatus(request: WsTopology.TpThorStatusRequest): Promise<WsTopology.TpThorStatusResponse>;
|
|
714
|
+
TpXMLFile(request: WsTopology.TpXMLFileRequest): Promise<WsTopology.TpXMLFileResponse>;
|
|
715
|
+
}
|
|
716
|
+
//# sourceMappingURL=WsTopology.d.ts.map
|