@hpcc-js/comms 3.15.5 → 3.15.6
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/browser/index.js +1 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/browser/index.umd.cjs +1 -1
- package/dist/browser/index.umd.cjs.map +1 -1
- package/dist/node/index.cjs +10 -10
- package/dist/node/index.cjs.map +4 -4
- package/dist/node/index.js +9 -9
- package/dist/node/index.js.map +4 -4
- package/package.json +4 -4
- package/src/services/wsPackageProcess.ts +1 -1
- package/src/services/wsWorkunits.ts +1 -1
- package/src/services/wsdl/FileSpray/v1.27/FileSpray.ts +538 -538
- package/src/services/wsdl/WsCloud/v1.02/WsCloud.ts +21 -21
- package/src/services/wsdl/WsDFUXRef/v1.04/WsDFUXRef.ts +70 -69
- package/src/services/wsdl/WsDali/v1.07/WsDali.ts +72 -72
- package/src/services/wsdl/WsDfu/v1.68/WsDfu.ts +1301 -0
- package/src/services/wsdl/WsESDLConfig/v1.5/WsESDLConfig.ts +366 -0
- package/src/services/wsdl/WsFileIO/v1.01/WsFileIO.ts +32 -32
- package/src/services/wsdl/WsPackageProcess/v1.08/WsPackageProcess.ts +503 -0
- package/src/services/wsdl/WsSasha/v1.01/WsSasha.ts +18 -18
- package/src/services/wsdl/WsTopology/v1.33/WsTopology.ts +383 -383
- package/src/services/wsdl/WsWorkunits/v2.05/WsWorkunits.ts +3177 -0
- package/src/services/wsdl/ws_access/v1.17/ws_access.ts +319 -319
- package/src/services/wsdl/ws_account/v1.07/ws_account.ts +39 -39
- package/src/services/wsdl/ws_codesign/v1.1/ws_codesign.ts +26 -26
- package/src/services/wsdl/ws_elk/v1/ws_elk.ts +14 -14
- package/src/services/wsdl/wsstore/v1.02/wsstore.ts +72 -72
- package/types/services/wsPackageProcess.d.ts +1 -1
- package/types/services/wsWorkunits.d.ts +1 -1
- package/types/services/wsdl/FileSpray/v1.27/FileSpray.d.ts +506 -506
- package/types/services/wsdl/WsCloud/v1.02/WsCloud.d.ts +18 -18
- package/types/services/wsdl/WsDFUXRef/v1.04/WsDFUXRef.d.ts +58 -57
- package/types/services/wsdl/WsDali/v1.07/WsDali.d.ts +42 -42
- package/types/services/wsdl/WsPackageProcess/{v1.07 → v1.08}/WsPackageProcess.d.ts +121 -118
- package/types/services/wsdl/WsSasha/v1.01/WsSasha.d.ts +13 -13
- package/types/services/wsdl/WsTopology/v1.33/WsTopology.d.ts +360 -360
- package/types/services/wsdl/WsWorkunits/v2.05/WsWorkunits.d.ts +2571 -0
- package/types/services/wsdl/ws_access/v1.17/ws_access.d.ts +268 -268
- package/types/services/wsdl/ws_account/v1.07/ws_account.d.ts +34 -34
- package/types/services/wsdl/ws_codesign/v1.1/ws_codesign.d.ts +22 -22
- package/types/services/wsdl/ws_elk/v1/ws_elk.d.ts +12 -12
- package/types/services/wsdl/wsstore/v1.02/wsstore.d.ts +61 -61
- package/types/services/wsdl/WsWorkunits/v2.04/WsWorkunits.d.ts +0 -2565
|
@@ -47,20 +47,20 @@ export namespace WsTopology {
|
|
|
47
47
|
}
|
|
48
48
|
|
|
49
49
|
export interface Exception {
|
|
50
|
-
Code
|
|
51
|
-
Audience
|
|
52
|
-
Source
|
|
53
|
-
Message
|
|
50
|
+
Code?: string;
|
|
51
|
+
Audience?: string;
|
|
52
|
+
Source?: string;
|
|
53
|
+
Message?: string;
|
|
54
54
|
}
|
|
55
55
|
|
|
56
56
|
export interface Exceptions {
|
|
57
|
-
Source
|
|
58
|
-
Exception
|
|
57
|
+
Source?: string;
|
|
58
|
+
Exception?: Exception[];
|
|
59
59
|
}
|
|
60
60
|
|
|
61
61
|
export interface SystemLogResponse {
|
|
62
|
-
Exceptions
|
|
63
|
-
thefile
|
|
62
|
+
Exceptions?: Exceptions;
|
|
63
|
+
thefile?: base64Binary;
|
|
64
64
|
}
|
|
65
65
|
|
|
66
66
|
export interface TpClusterInfoRequest {
|
|
@@ -68,19 +68,19 @@ export namespace WsTopology {
|
|
|
68
68
|
}
|
|
69
69
|
|
|
70
70
|
export interface TpQueue {
|
|
71
|
-
Name
|
|
72
|
-
WorkUnit
|
|
71
|
+
Name?: string;
|
|
72
|
+
WorkUnit?: string;
|
|
73
73
|
}
|
|
74
74
|
|
|
75
75
|
export interface TpQueues {
|
|
76
|
-
TpQueue
|
|
76
|
+
TpQueue?: TpQueue[];
|
|
77
77
|
}
|
|
78
78
|
|
|
79
79
|
export interface TpClusterInfoResponse {
|
|
80
|
-
Exceptions
|
|
81
|
-
Name
|
|
82
|
-
WorkUnit
|
|
83
|
-
TpQueues
|
|
80
|
+
Exceptions?: Exceptions;
|
|
81
|
+
Name?: string;
|
|
82
|
+
WorkUnit?: string;
|
|
83
|
+
TpQueues?: TpQueues;
|
|
84
84
|
}
|
|
85
85
|
|
|
86
86
|
export interface TpClusterQueryRequest {
|
|
@@ -88,52 +88,52 @@ export namespace WsTopology {
|
|
|
88
88
|
}
|
|
89
89
|
|
|
90
90
|
export interface TpMachine {
|
|
91
|
-
Name
|
|
92
|
-
Netaddress
|
|
93
|
-
ConfigNetaddress
|
|
94
|
-
Domain
|
|
95
|
-
Directory
|
|
96
|
-
Type
|
|
97
|
-
Available
|
|
98
|
-
OS
|
|
99
|
-
Path
|
|
100
|
-
Port
|
|
101
|
-
ProcessNumber
|
|
102
|
-
Channels
|
|
91
|
+
Name?: string;
|
|
92
|
+
Netaddress?: string;
|
|
93
|
+
ConfigNetaddress?: string;
|
|
94
|
+
Domain?: string;
|
|
95
|
+
Directory?: string;
|
|
96
|
+
Type?: string;
|
|
97
|
+
Available?: string;
|
|
98
|
+
OS?: int;
|
|
99
|
+
Path?: string;
|
|
100
|
+
Port?: int;
|
|
101
|
+
ProcessNumber?: int;
|
|
102
|
+
Channels?: unsignedInt;
|
|
103
103
|
}
|
|
104
104
|
|
|
105
105
|
export interface TpMachines {
|
|
106
|
-
TpMachine
|
|
106
|
+
TpMachine?: TpMachine[];
|
|
107
107
|
}
|
|
108
108
|
|
|
109
109
|
export interface TpCluster {
|
|
110
|
-
Type
|
|
111
|
-
Name
|
|
112
|
-
QueueName
|
|
113
|
-
Build
|
|
114
|
-
Directory
|
|
115
|
-
LogDirectory
|
|
116
|
-
Desc
|
|
117
|
-
Path
|
|
118
|
-
DataModel
|
|
119
|
-
OS
|
|
120
|
-
HasThorSpareProcess
|
|
121
|
-
TpMachines
|
|
110
|
+
Type?: string;
|
|
111
|
+
Name?: string;
|
|
112
|
+
QueueName?: string;
|
|
113
|
+
Build?: string;
|
|
114
|
+
Directory?: string;
|
|
115
|
+
LogDirectory?: string;
|
|
116
|
+
Desc?: string;
|
|
117
|
+
Path?: string;
|
|
118
|
+
DataModel?: string;
|
|
119
|
+
OS?: int;
|
|
120
|
+
HasThorSpareProcess?: boolean;
|
|
121
|
+
TpMachines?: TpMachines;
|
|
122
122
|
}
|
|
123
123
|
|
|
124
124
|
export interface TpClusters {
|
|
125
|
-
TpCluster
|
|
125
|
+
TpCluster?: TpCluster[];
|
|
126
126
|
}
|
|
127
127
|
|
|
128
128
|
export interface TpClusterQueryResponse {
|
|
129
|
-
Exceptions
|
|
130
|
-
EnableSNMP
|
|
131
|
-
AcceptLanguage
|
|
132
|
-
TpClusters
|
|
129
|
+
Exceptions?: Exceptions;
|
|
130
|
+
EnableSNMP?: boolean;
|
|
131
|
+
AcceptLanguage?: string;
|
|
132
|
+
TpClusters?: TpClusters;
|
|
133
133
|
}
|
|
134
134
|
|
|
135
135
|
export interface ComponentNames {
|
|
136
|
-
Item
|
|
136
|
+
Item?: string[];
|
|
137
137
|
}
|
|
138
138
|
|
|
139
139
|
export interface TpComponentConfigurationRequest {
|
|
@@ -141,18 +141,18 @@ export namespace WsTopology {
|
|
|
141
141
|
}
|
|
142
142
|
|
|
143
143
|
export interface Result {
|
|
144
|
-
ComponentName
|
|
145
|
-
Configuration
|
|
144
|
+
ComponentName?: string;
|
|
145
|
+
Configuration?: string;
|
|
146
146
|
}
|
|
147
147
|
|
|
148
148
|
export interface Results {
|
|
149
|
-
Result
|
|
149
|
+
Result?: Result[];
|
|
150
150
|
}
|
|
151
151
|
|
|
152
152
|
export interface TpComponentConfigurationResponse {
|
|
153
|
-
Exceptions
|
|
154
|
-
ConfigFormat
|
|
155
|
-
Results
|
|
153
|
+
Exceptions?: Exceptions;
|
|
154
|
+
ConfigFormat?: TpConfigResponseFormat;
|
|
155
|
+
Results?: Results;
|
|
156
156
|
}
|
|
157
157
|
|
|
158
158
|
export interface TpConfiguredComponentsRequest {
|
|
@@ -160,12 +160,12 @@ export namespace WsTopology {
|
|
|
160
160
|
}
|
|
161
161
|
|
|
162
162
|
export interface ConfiguredComponents {
|
|
163
|
-
Item
|
|
163
|
+
Item?: string[];
|
|
164
164
|
}
|
|
165
165
|
|
|
166
166
|
export interface TpConfiguredComponentsResponse {
|
|
167
|
-
Exceptions
|
|
168
|
-
ConfiguredComponents
|
|
167
|
+
Exceptions?: Exceptions;
|
|
168
|
+
ConfiguredComponents?: ConfiguredComponents;
|
|
169
169
|
}
|
|
170
170
|
|
|
171
171
|
export interface TpDropZoneQueryRequest {
|
|
@@ -174,22 +174,22 @@ export namespace WsTopology {
|
|
|
174
174
|
}
|
|
175
175
|
|
|
176
176
|
export interface TpDropZone {
|
|
177
|
-
Name
|
|
178
|
-
Description
|
|
179
|
-
Build
|
|
180
|
-
Path
|
|
181
|
-
ECLWatchVisible
|
|
182
|
-
UMask
|
|
183
|
-
TpMachines
|
|
177
|
+
Name?: string;
|
|
178
|
+
Description?: string;
|
|
179
|
+
Build?: string;
|
|
180
|
+
Path?: string;
|
|
181
|
+
ECLWatchVisible?: boolean;
|
|
182
|
+
UMask?: string;
|
|
183
|
+
TpMachines?: TpMachines;
|
|
184
184
|
}
|
|
185
185
|
|
|
186
186
|
export interface TpDropZones {
|
|
187
|
-
TpDropZone
|
|
187
|
+
TpDropZone?: TpDropZone[];
|
|
188
188
|
}
|
|
189
189
|
|
|
190
190
|
export interface TpDropZoneQueryResponse {
|
|
191
|
-
Exceptions
|
|
192
|
-
TpDropZones
|
|
191
|
+
Exceptions?: Exceptions;
|
|
192
|
+
TpDropZones?: TpDropZones;
|
|
193
193
|
}
|
|
194
194
|
|
|
195
195
|
export interface TpGetComponentFileRequest {
|
|
@@ -203,8 +203,8 @@ export namespace WsTopology {
|
|
|
203
203
|
}
|
|
204
204
|
|
|
205
205
|
export interface TpGetComponentFileResponse {
|
|
206
|
-
Exceptions
|
|
207
|
-
FileContents
|
|
206
|
+
Exceptions?: Exceptions;
|
|
207
|
+
FileContents?: base64Binary;
|
|
208
208
|
}
|
|
209
209
|
|
|
210
210
|
export interface TpGetServicePluginsRequest {
|
|
@@ -212,19 +212,19 @@ export namespace WsTopology {
|
|
|
212
212
|
}
|
|
213
213
|
|
|
214
214
|
export interface Plugin {
|
|
215
|
-
ShortName
|
|
216
|
-
LongName
|
|
217
|
-
FolderName
|
|
218
|
-
WidgetName
|
|
215
|
+
ShortName?: string;
|
|
216
|
+
LongName?: string;
|
|
217
|
+
FolderName?: string;
|
|
218
|
+
WidgetName?: string;
|
|
219
219
|
}
|
|
220
220
|
|
|
221
221
|
export interface Plugins {
|
|
222
|
-
Plugin
|
|
222
|
+
Plugin?: Plugin[];
|
|
223
223
|
}
|
|
224
224
|
|
|
225
225
|
export interface TpGetServicePluginsResponse {
|
|
226
|
-
Exceptions
|
|
227
|
-
Plugins
|
|
226
|
+
Exceptions?: Exceptions;
|
|
227
|
+
Plugins?: Plugins;
|
|
228
228
|
}
|
|
229
229
|
|
|
230
230
|
export interface TpGroupQueryRequest {
|
|
@@ -232,18 +232,18 @@ export namespace WsTopology {
|
|
|
232
232
|
}
|
|
233
233
|
|
|
234
234
|
export interface TpGroup {
|
|
235
|
-
Name
|
|
236
|
-
Kind
|
|
237
|
-
ReplicateOutputs
|
|
235
|
+
Name?: string;
|
|
236
|
+
Kind?: string;
|
|
237
|
+
ReplicateOutputs?: boolean;
|
|
238
238
|
}
|
|
239
239
|
|
|
240
240
|
export interface TpGroups {
|
|
241
|
-
TpGroup
|
|
241
|
+
TpGroup?: TpGroup[];
|
|
242
242
|
}
|
|
243
243
|
|
|
244
244
|
export interface TpGroupQueryResponse {
|
|
245
|
-
Exceptions
|
|
246
|
-
TpGroups
|
|
245
|
+
Exceptions?: Exceptions;
|
|
246
|
+
TpGroups?: TpGroups;
|
|
247
247
|
}
|
|
248
248
|
|
|
249
249
|
export interface TpListLogFilesRequest {
|
|
@@ -252,21 +252,21 @@ export namespace WsTopology {
|
|
|
252
252
|
}
|
|
253
253
|
|
|
254
254
|
export interface LogFileStruct {
|
|
255
|
-
Name
|
|
256
|
-
Path
|
|
257
|
-
Host
|
|
258
|
-
IsDir
|
|
259
|
-
FileSize
|
|
260
|
-
Modifiedtime
|
|
255
|
+
Name?: string;
|
|
256
|
+
Path?: string;
|
|
257
|
+
Host?: string;
|
|
258
|
+
IsDir?: boolean;
|
|
259
|
+
FileSize?: long;
|
|
260
|
+
Modifiedtime?: string;
|
|
261
261
|
}
|
|
262
262
|
|
|
263
263
|
export interface Files {
|
|
264
|
-
LogFileStruct
|
|
264
|
+
LogFileStruct?: LogFileStruct[];
|
|
265
265
|
}
|
|
266
266
|
|
|
267
267
|
export interface TpListLogFilesResponse {
|
|
268
|
-
Exceptions
|
|
269
|
-
Files
|
|
268
|
+
Exceptions?: Exceptions;
|
|
269
|
+
Files?: Files;
|
|
270
270
|
}
|
|
271
271
|
|
|
272
272
|
export interface TpListTargetClustersRequest {
|
|
@@ -274,18 +274,18 @@ export namespace WsTopology {
|
|
|
274
274
|
}
|
|
275
275
|
|
|
276
276
|
export interface TpClusterNameType {
|
|
277
|
-
Name
|
|
278
|
-
Type
|
|
279
|
-
IsDefault
|
|
277
|
+
Name?: string;
|
|
278
|
+
Type?: string;
|
|
279
|
+
IsDefault?: boolean;
|
|
280
280
|
}
|
|
281
281
|
|
|
282
282
|
export interface TargetClusters {
|
|
283
|
-
TpClusterNameType
|
|
283
|
+
TpClusterNameType?: TpClusterNameType[];
|
|
284
284
|
}
|
|
285
285
|
|
|
286
286
|
export interface TpListTargetClustersResponse {
|
|
287
|
-
Exceptions
|
|
288
|
-
TargetClusters
|
|
287
|
+
Exceptions?: Exceptions;
|
|
288
|
+
TargetClusters?: TargetClusters;
|
|
289
289
|
}
|
|
290
290
|
|
|
291
291
|
export interface TpLogFileRequest {
|
|
@@ -305,32 +305,32 @@ export namespace WsTopology {
|
|
|
305
305
|
}
|
|
306
306
|
|
|
307
307
|
export interface LogFieldNames {
|
|
308
|
-
Item
|
|
308
|
+
Item?: string[];
|
|
309
309
|
}
|
|
310
310
|
|
|
311
311
|
export interface TpLogFileResponse {
|
|
312
|
-
Exceptions
|
|
313
|
-
Name
|
|
314
|
-
Type
|
|
315
|
-
StartDate
|
|
316
|
-
EndDate
|
|
317
|
-
LastHours
|
|
318
|
-
FirstRows
|
|
319
|
-
LastRows
|
|
320
|
-
Reversely
|
|
321
|
-
Zip
|
|
322
|
-
FilterType
|
|
323
|
-
LogData
|
|
324
|
-
HasDate
|
|
325
|
-
FileSize
|
|
326
|
-
PageFrom
|
|
327
|
-
PageTo
|
|
328
|
-
PageNumber
|
|
329
|
-
PrevPage
|
|
330
|
-
NextPage
|
|
331
|
-
TotalPages
|
|
332
|
-
AcceptLanguage
|
|
333
|
-
LogFieldNames
|
|
312
|
+
Exceptions?: Exceptions;
|
|
313
|
+
Name?: string;
|
|
314
|
+
Type?: string;
|
|
315
|
+
StartDate?: string;
|
|
316
|
+
EndDate?: string;
|
|
317
|
+
LastHours?: int;
|
|
318
|
+
FirstRows?: int;
|
|
319
|
+
LastRows?: int;
|
|
320
|
+
Reversely?: boolean;
|
|
321
|
+
Zip?: boolean;
|
|
322
|
+
FilterType?: int;
|
|
323
|
+
LogData?: string;
|
|
324
|
+
HasDate?: boolean;
|
|
325
|
+
FileSize?: long;
|
|
326
|
+
PageFrom?: long;
|
|
327
|
+
PageTo?: long;
|
|
328
|
+
PageNumber?: int;
|
|
329
|
+
PrevPage?: int;
|
|
330
|
+
NextPage?: int;
|
|
331
|
+
TotalPages?: int;
|
|
332
|
+
AcceptLanguage?: string;
|
|
333
|
+
LogFieldNames?: LogFieldNames;
|
|
334
334
|
}
|
|
335
335
|
|
|
336
336
|
export interface TpLogicalClusterQueryRequest {
|
|
@@ -339,21 +339,21 @@ export namespace WsTopology {
|
|
|
339
339
|
}
|
|
340
340
|
|
|
341
341
|
export interface TpLogicalCluster {
|
|
342
|
-
Name
|
|
343
|
-
Queue
|
|
344
|
-
LanguageVersion
|
|
345
|
-
Process
|
|
346
|
-
Type
|
|
347
|
-
QueriesOnly
|
|
342
|
+
Name?: string;
|
|
343
|
+
Queue?: string;
|
|
344
|
+
LanguageVersion?: string;
|
|
345
|
+
Process?: string;
|
|
346
|
+
Type?: string;
|
|
347
|
+
QueriesOnly?: boolean;
|
|
348
348
|
}
|
|
349
349
|
|
|
350
350
|
export interface TpLogicalClusters {
|
|
351
|
-
TpLogicalCluster
|
|
351
|
+
TpLogicalCluster?: TpLogicalCluster[];
|
|
352
352
|
}
|
|
353
353
|
|
|
354
354
|
export interface TpLogicalClusterQueryResponse {
|
|
355
|
-
Exceptions
|
|
356
|
-
TpLogicalClusters
|
|
355
|
+
Exceptions?: Exceptions;
|
|
356
|
+
TpLogicalClusters?: TpLogicalClusters;
|
|
357
357
|
}
|
|
358
358
|
|
|
359
359
|
export interface TpMachineInfoRequest {
|
|
@@ -362,23 +362,23 @@ export namespace WsTopology {
|
|
|
362
362
|
}
|
|
363
363
|
|
|
364
364
|
export interface MachineInfo {
|
|
365
|
-
Name
|
|
366
|
-
Netaddress
|
|
367
|
-
ConfigNetaddress
|
|
368
|
-
Domain
|
|
369
|
-
Directory
|
|
370
|
-
Type
|
|
371
|
-
Available
|
|
372
|
-
OS
|
|
373
|
-
Path
|
|
374
|
-
Port
|
|
375
|
-
ProcessNumber
|
|
376
|
-
Channels
|
|
365
|
+
Name?: string;
|
|
366
|
+
Netaddress?: string;
|
|
367
|
+
ConfigNetaddress?: string;
|
|
368
|
+
Domain?: string;
|
|
369
|
+
Directory?: string;
|
|
370
|
+
Type?: string;
|
|
371
|
+
Available?: string;
|
|
372
|
+
OS?: int;
|
|
373
|
+
Path?: string;
|
|
374
|
+
Port?: int;
|
|
375
|
+
ProcessNumber?: int;
|
|
376
|
+
Channels?: unsignedInt;
|
|
377
377
|
}
|
|
378
378
|
|
|
379
379
|
export interface TpMachineInfoResponse {
|
|
380
|
-
Exceptions
|
|
381
|
-
MachineInfo
|
|
380
|
+
Exceptions?: Exceptions;
|
|
381
|
+
MachineInfo?: MachineInfo;
|
|
382
382
|
}
|
|
383
383
|
|
|
384
384
|
export interface TpMachineQueryRequest {
|
|
@@ -391,23 +391,23 @@ export namespace WsTopology {
|
|
|
391
391
|
}
|
|
392
392
|
|
|
393
393
|
export interface TpMachineQueryResponse {
|
|
394
|
-
Exceptions
|
|
395
|
-
EnablePreflightInfo
|
|
396
|
-
HasThorSpareProcess
|
|
397
|
-
Type
|
|
398
|
-
Cluster
|
|
399
|
-
OldIP
|
|
400
|
-
LogDirectory
|
|
401
|
-
Path
|
|
402
|
-
MemThreshold
|
|
403
|
-
DiskThreshold
|
|
404
|
-
CpuThreshold
|
|
405
|
-
MemThresholdType
|
|
406
|
-
DiskThresholdType
|
|
407
|
-
PreflightProcessFilter
|
|
408
|
-
EnableSNMP
|
|
409
|
-
AcceptLanguage
|
|
410
|
-
TpMachines
|
|
394
|
+
Exceptions?: Exceptions;
|
|
395
|
+
EnablePreflightInfo?: boolean;
|
|
396
|
+
HasThorSpareProcess?: boolean;
|
|
397
|
+
Type?: TpMachineType;
|
|
398
|
+
Cluster?: string;
|
|
399
|
+
OldIP?: string;
|
|
400
|
+
LogDirectory?: string;
|
|
401
|
+
Path?: string;
|
|
402
|
+
MemThreshold?: int;
|
|
403
|
+
DiskThreshold?: int;
|
|
404
|
+
CpuThreshold?: int;
|
|
405
|
+
MemThresholdType?: string;
|
|
406
|
+
DiskThresholdType?: string;
|
|
407
|
+
PreflightProcessFilter?: string;
|
|
408
|
+
EnableSNMP?: boolean;
|
|
409
|
+
AcceptLanguage?: string;
|
|
410
|
+
TpMachines?: TpMachines;
|
|
411
411
|
}
|
|
412
412
|
|
|
413
413
|
export interface TpServiceQueryRequest {
|
|
@@ -415,237 +415,237 @@ export namespace WsTopology {
|
|
|
415
415
|
}
|
|
416
416
|
|
|
417
417
|
export interface TpDali {
|
|
418
|
-
Name
|
|
419
|
-
Description
|
|
420
|
-
Build
|
|
421
|
-
BackupComputer
|
|
422
|
-
BackupDirectory
|
|
423
|
-
Type
|
|
424
|
-
Path
|
|
425
|
-
LogDirectory
|
|
426
|
-
AuditLogDirectory
|
|
427
|
-
TpMachines
|
|
418
|
+
Name?: string;
|
|
419
|
+
Description?: string;
|
|
420
|
+
Build?: string;
|
|
421
|
+
BackupComputer?: string;
|
|
422
|
+
BackupDirectory?: string;
|
|
423
|
+
Type?: string;
|
|
424
|
+
Path?: string;
|
|
425
|
+
LogDirectory?: string;
|
|
426
|
+
AuditLogDirectory?: string;
|
|
427
|
+
TpMachines?: TpMachines;
|
|
428
428
|
}
|
|
429
429
|
|
|
430
430
|
export interface TpDalis {
|
|
431
|
-
TpDali
|
|
431
|
+
TpDali?: TpDali[];
|
|
432
432
|
}
|
|
433
433
|
|
|
434
434
|
export interface TpDfuServer {
|
|
435
|
-
Name
|
|
436
|
-
Description
|
|
437
|
-
Build
|
|
438
|
-
Queue
|
|
439
|
-
Type
|
|
440
|
-
Path
|
|
441
|
-
LogDirectory
|
|
442
|
-
TpMachines
|
|
435
|
+
Name?: string;
|
|
436
|
+
Description?: string;
|
|
437
|
+
Build?: string;
|
|
438
|
+
Queue?: string;
|
|
439
|
+
Type?: string;
|
|
440
|
+
Path?: string;
|
|
441
|
+
LogDirectory?: string;
|
|
442
|
+
TpMachines?: TpMachines;
|
|
443
443
|
}
|
|
444
444
|
|
|
445
445
|
export interface TpDfuServers {
|
|
446
|
-
TpDfuServer
|
|
446
|
+
TpDfuServer?: TpDfuServer[];
|
|
447
447
|
}
|
|
448
448
|
|
|
449
449
|
export interface TpDkcSlave {
|
|
450
|
-
Name
|
|
451
|
-
Description
|
|
452
|
-
Build
|
|
453
|
-
Path
|
|
454
|
-
TpMachines
|
|
450
|
+
Name?: string;
|
|
451
|
+
Description?: string;
|
|
452
|
+
Build?: string;
|
|
453
|
+
Path?: string;
|
|
454
|
+
TpMachines?: TpMachines;
|
|
455
455
|
}
|
|
456
456
|
|
|
457
457
|
export interface TpDkcSlaves {
|
|
458
|
-
TpDkcSlave
|
|
458
|
+
TpDkcSlave?: TpDkcSlave[];
|
|
459
459
|
}
|
|
460
460
|
|
|
461
461
|
export interface TpEclAgent {
|
|
462
|
-
Name
|
|
463
|
-
Description
|
|
464
|
-
Build
|
|
465
|
-
Type
|
|
466
|
-
Path
|
|
467
|
-
DaliServer
|
|
468
|
-
LogDir
|
|
469
|
-
TpMachines
|
|
462
|
+
Name?: string;
|
|
463
|
+
Description?: string;
|
|
464
|
+
Build?: string;
|
|
465
|
+
Type?: string;
|
|
466
|
+
Path?: string;
|
|
467
|
+
DaliServer?: string;
|
|
468
|
+
LogDir?: string;
|
|
469
|
+
TpMachines?: TpMachines;
|
|
470
470
|
}
|
|
471
471
|
|
|
472
472
|
export interface TpEclAgents {
|
|
473
|
-
TpEclAgent
|
|
473
|
+
TpEclAgent?: TpEclAgent[];
|
|
474
474
|
}
|
|
475
475
|
|
|
476
476
|
export interface TpEclServer {
|
|
477
|
-
Name
|
|
478
|
-
Description
|
|
479
|
-
Build
|
|
480
|
-
LogDirectory
|
|
481
|
-
Type
|
|
482
|
-
Path
|
|
483
|
-
TpMachines
|
|
477
|
+
Name?: string;
|
|
478
|
+
Description?: string;
|
|
479
|
+
Build?: string;
|
|
480
|
+
LogDirectory?: string;
|
|
481
|
+
Type?: string;
|
|
482
|
+
Path?: string;
|
|
483
|
+
TpMachines?: TpMachines;
|
|
484
484
|
}
|
|
485
485
|
|
|
486
486
|
export interface TpEclServers {
|
|
487
|
-
TpEclServer
|
|
487
|
+
TpEclServer?: TpEclServer[];
|
|
488
488
|
}
|
|
489
489
|
|
|
490
490
|
export interface TpEclCCServers {
|
|
491
|
-
TpEclServer
|
|
491
|
+
TpEclServer?: TpEclServer[];
|
|
492
492
|
}
|
|
493
493
|
|
|
494
494
|
export interface TpEclScheduler {
|
|
495
|
-
Name
|
|
496
|
-
Description
|
|
497
|
-
Build
|
|
498
|
-
LogDirectory
|
|
499
|
-
Type
|
|
500
|
-
Path
|
|
501
|
-
TpMachines
|
|
495
|
+
Name?: string;
|
|
496
|
+
Description?: string;
|
|
497
|
+
Build?: string;
|
|
498
|
+
LogDirectory?: string;
|
|
499
|
+
Type?: string;
|
|
500
|
+
Path?: string;
|
|
501
|
+
TpMachines?: TpMachines;
|
|
502
502
|
}
|
|
503
503
|
|
|
504
504
|
export interface TpEclSchedulers {
|
|
505
|
-
TpEclScheduler
|
|
505
|
+
TpEclScheduler?: TpEclScheduler[];
|
|
506
506
|
}
|
|
507
507
|
|
|
508
508
|
export interface TpBinding {
|
|
509
|
-
Name
|
|
510
|
-
Service
|
|
511
|
-
ServiceType
|
|
512
|
-
BindingType
|
|
513
|
-
ServiceBuildSet
|
|
514
|
-
Port
|
|
515
|
-
Protocol
|
|
509
|
+
Name?: string;
|
|
510
|
+
Service?: string;
|
|
511
|
+
ServiceType?: string;
|
|
512
|
+
BindingType?: string;
|
|
513
|
+
ServiceBuildSet?: string;
|
|
514
|
+
Port?: string;
|
|
515
|
+
Protocol?: string;
|
|
516
516
|
}
|
|
517
517
|
|
|
518
518
|
export interface TpBindings {
|
|
519
|
-
TpBinding
|
|
519
|
+
TpBinding?: TpBinding[];
|
|
520
520
|
}
|
|
521
521
|
|
|
522
522
|
export interface TpEspServer {
|
|
523
|
-
Name
|
|
524
|
-
Description
|
|
525
|
-
Build
|
|
526
|
-
Type
|
|
527
|
-
Path
|
|
528
|
-
LogDirectory
|
|
529
|
-
TpMachines
|
|
530
|
-
TpBindings
|
|
523
|
+
Name?: string;
|
|
524
|
+
Description?: string;
|
|
525
|
+
Build?: string;
|
|
526
|
+
Type?: string;
|
|
527
|
+
Path?: string;
|
|
528
|
+
LogDirectory?: string;
|
|
529
|
+
TpMachines?: TpMachines;
|
|
530
|
+
TpBindings?: TpBindings;
|
|
531
531
|
}
|
|
532
532
|
|
|
533
533
|
export interface TpEspServers {
|
|
534
|
-
TpEspServer
|
|
534
|
+
TpEspServer?: TpEspServer[];
|
|
535
535
|
}
|
|
536
536
|
|
|
537
537
|
export interface TpFTSlave {
|
|
538
|
-
Name
|
|
539
|
-
Description
|
|
540
|
-
Build
|
|
541
|
-
Path
|
|
542
|
-
TpMachines
|
|
538
|
+
Name?: string;
|
|
539
|
+
Description?: string;
|
|
540
|
+
Build?: string;
|
|
541
|
+
Path?: string;
|
|
542
|
+
TpMachines?: TpMachines;
|
|
543
543
|
}
|
|
544
544
|
|
|
545
545
|
export interface TpFTSlaves {
|
|
546
|
-
TpFTSlave
|
|
546
|
+
TpFTSlave?: TpFTSlave[];
|
|
547
547
|
}
|
|
548
548
|
|
|
549
549
|
export interface TpGenesisServer {
|
|
550
|
-
Name
|
|
551
|
-
Description
|
|
552
|
-
Build
|
|
553
|
-
Path
|
|
554
|
-
TpMachines
|
|
550
|
+
Name?: string;
|
|
551
|
+
Description?: string;
|
|
552
|
+
Build?: string;
|
|
553
|
+
Path?: string;
|
|
554
|
+
TpMachines?: TpMachines;
|
|
555
555
|
}
|
|
556
556
|
|
|
557
557
|
export interface TpGenesisServers {
|
|
558
|
-
TpGenesisServer
|
|
558
|
+
TpGenesisServer?: TpGenesisServer[];
|
|
559
559
|
}
|
|
560
560
|
|
|
561
561
|
export interface TpLdapServer {
|
|
562
|
-
Name
|
|
563
|
-
Description
|
|
564
|
-
Build
|
|
565
|
-
Path
|
|
566
|
-
TpMachines
|
|
562
|
+
Name?: string;
|
|
563
|
+
Description?: string;
|
|
564
|
+
Build?: string;
|
|
565
|
+
Path?: string;
|
|
566
|
+
TpMachines?: TpMachines;
|
|
567
567
|
}
|
|
568
568
|
|
|
569
569
|
export interface TpLdapServers {
|
|
570
|
-
TpLdapServer
|
|
570
|
+
TpLdapServer?: TpLdapServer[];
|
|
571
571
|
}
|
|
572
572
|
|
|
573
573
|
export interface TpMySqlServer {
|
|
574
|
-
Name
|
|
575
|
-
Description
|
|
576
|
-
Build
|
|
577
|
-
Path
|
|
578
|
-
TpMachines
|
|
574
|
+
Name?: string;
|
|
575
|
+
Description?: string;
|
|
576
|
+
Build?: string;
|
|
577
|
+
Path?: string;
|
|
578
|
+
TpMachines?: TpMachines;
|
|
579
579
|
}
|
|
580
580
|
|
|
581
581
|
export interface TpMySqlServers {
|
|
582
|
-
TpMySqlServer
|
|
582
|
+
TpMySqlServer?: TpMySqlServer[];
|
|
583
583
|
}
|
|
584
584
|
|
|
585
585
|
export interface TpSashaServer {
|
|
586
|
-
Name
|
|
587
|
-
Description
|
|
588
|
-
Build
|
|
589
|
-
Path
|
|
590
|
-
LogDirectory
|
|
591
|
-
TpMachines
|
|
586
|
+
Name?: string;
|
|
587
|
+
Description?: string;
|
|
588
|
+
Build?: string;
|
|
589
|
+
Path?: string;
|
|
590
|
+
LogDirectory?: string;
|
|
591
|
+
TpMachines?: TpMachines;
|
|
592
592
|
}
|
|
593
593
|
|
|
594
594
|
export interface TpSashaServers {
|
|
595
|
-
TpSashaServer
|
|
595
|
+
TpSashaServer?: TpSashaServer[];
|
|
596
596
|
}
|
|
597
597
|
|
|
598
598
|
export interface TpSparkThor {
|
|
599
|
-
Name
|
|
600
|
-
Build
|
|
601
|
-
ThorClusterName
|
|
602
|
-
ThorPath
|
|
603
|
-
SparkExecutorCores
|
|
604
|
-
SparkExecutorMemory
|
|
605
|
-
SparkMasterPort
|
|
606
|
-
SparkMasterWebUIPort
|
|
607
|
-
SparkWorkerCores
|
|
608
|
-
SparkWorkerMemory
|
|
609
|
-
SparkWorkerPort
|
|
610
|
-
LogDirectory
|
|
611
|
-
Path
|
|
612
|
-
TpMachines
|
|
599
|
+
Name?: string;
|
|
600
|
+
Build?: string;
|
|
601
|
+
ThorClusterName?: string;
|
|
602
|
+
ThorPath?: string;
|
|
603
|
+
SparkExecutorCores?: unsignedInt;
|
|
604
|
+
SparkExecutorMemory?: long;
|
|
605
|
+
SparkMasterPort?: unsignedInt;
|
|
606
|
+
SparkMasterWebUIPort?: unsignedInt;
|
|
607
|
+
SparkWorkerCores?: unsignedInt;
|
|
608
|
+
SparkWorkerMemory?: long;
|
|
609
|
+
SparkWorkerPort?: unsignedInt;
|
|
610
|
+
LogDirectory?: string;
|
|
611
|
+
Path?: string;
|
|
612
|
+
TpMachines?: TpMachines;
|
|
613
613
|
}
|
|
614
614
|
|
|
615
615
|
export interface TpSparkThors {
|
|
616
|
-
TpSparkThor
|
|
616
|
+
TpSparkThor?: TpSparkThor[];
|
|
617
617
|
}
|
|
618
618
|
|
|
619
619
|
export interface ServiceList {
|
|
620
|
-
TpDalis
|
|
621
|
-
TpDfuServers
|
|
622
|
-
TpDkcSlaves
|
|
623
|
-
TpDropZones
|
|
624
|
-
TpEclAgents
|
|
625
|
-
TpEclServers
|
|
626
|
-
TpEclCCServers
|
|
627
|
-
TpEclSchedulers
|
|
628
|
-
TpEspServers
|
|
629
|
-
TpFTSlaves
|
|
630
|
-
TpGenesisServers
|
|
631
|
-
TpLdapServers
|
|
632
|
-
TpMySqlServers
|
|
633
|
-
TpSashaServers
|
|
634
|
-
TpSparkThors
|
|
620
|
+
TpDalis?: TpDalis;
|
|
621
|
+
TpDfuServers?: TpDfuServers;
|
|
622
|
+
TpDkcSlaves?: TpDkcSlaves;
|
|
623
|
+
TpDropZones?: TpDropZones;
|
|
624
|
+
TpEclAgents?: TpEclAgents;
|
|
625
|
+
TpEclServers?: TpEclServers;
|
|
626
|
+
TpEclCCServers?: TpEclCCServers;
|
|
627
|
+
TpEclSchedulers?: TpEclSchedulers;
|
|
628
|
+
TpEspServers?: TpEspServers;
|
|
629
|
+
TpFTSlaves?: TpFTSlaves;
|
|
630
|
+
TpGenesisServers?: TpGenesisServers;
|
|
631
|
+
TpLdapServers?: TpLdapServers;
|
|
632
|
+
TpMySqlServers?: TpMySqlServers;
|
|
633
|
+
TpSashaServers?: TpSashaServers;
|
|
634
|
+
TpSparkThors?: TpSparkThors;
|
|
635
635
|
}
|
|
636
636
|
|
|
637
637
|
export interface TpServiceQueryResponse {
|
|
638
|
-
Exceptions
|
|
639
|
-
MemThreshold
|
|
640
|
-
DiskThreshold
|
|
641
|
-
CpuThreshold
|
|
642
|
-
EncapsulatedSystem
|
|
643
|
-
EnableSNMP
|
|
644
|
-
PreflightProcessFilter
|
|
645
|
-
AcceptLanguage
|
|
646
|
-
MemThresholdType
|
|
647
|
-
DiskThresholdType
|
|
648
|
-
ServiceList
|
|
638
|
+
Exceptions?: Exceptions;
|
|
639
|
+
MemThreshold?: int;
|
|
640
|
+
DiskThreshold?: int;
|
|
641
|
+
CpuThreshold?: int;
|
|
642
|
+
EncapsulatedSystem?: boolean;
|
|
643
|
+
EnableSNMP?: boolean;
|
|
644
|
+
PreflightProcessFilter?: string;
|
|
645
|
+
AcceptLanguage?: string;
|
|
646
|
+
MemThresholdType?: string;
|
|
647
|
+
DiskThresholdType?: string;
|
|
648
|
+
ServiceList?: ServiceList;
|
|
649
649
|
}
|
|
650
650
|
|
|
651
651
|
export interface TpSetMachineStatusRequest {
|
|
@@ -654,8 +654,8 @@ export namespace WsTopology {
|
|
|
654
654
|
}
|
|
655
655
|
|
|
656
656
|
export interface TpSetMachineStatusResponse {
|
|
657
|
-
Exceptions
|
|
658
|
-
TpSetMachineStatusResult
|
|
657
|
+
Exceptions?: Exceptions;
|
|
658
|
+
TpSetMachineStatusResult?: boolean;
|
|
659
659
|
}
|
|
660
660
|
|
|
661
661
|
export interface TpSwapNodeRequest {
|
|
@@ -665,8 +665,8 @@ export namespace WsTopology {
|
|
|
665
665
|
}
|
|
666
666
|
|
|
667
667
|
export interface TpSwapNodeResponse {
|
|
668
|
-
Exceptions
|
|
669
|
-
TpSwapNodeResult
|
|
668
|
+
Exceptions?: Exceptions;
|
|
669
|
+
TpSwapNodeResult?: boolean;
|
|
670
670
|
}
|
|
671
671
|
|
|
672
672
|
export interface TpTargetClusterQueryRequest {
|
|
@@ -676,31 +676,31 @@ export namespace WsTopology {
|
|
|
676
676
|
}
|
|
677
677
|
|
|
678
678
|
export interface TpTargetCluster {
|
|
679
|
-
Name
|
|
680
|
-
Prefix
|
|
681
|
-
Type
|
|
682
|
-
TpClusters
|
|
683
|
-
TpEclCCServers
|
|
684
|
-
TpEclServers
|
|
685
|
-
TpEclAgents
|
|
686
|
-
TpEclSchedulers
|
|
679
|
+
Name?: string;
|
|
680
|
+
Prefix?: string;
|
|
681
|
+
Type?: string;
|
|
682
|
+
TpClusters?: TpClusters;
|
|
683
|
+
TpEclCCServers?: TpEclCCServers;
|
|
684
|
+
TpEclServers?: TpEclServers;
|
|
685
|
+
TpEclAgents?: TpEclAgents;
|
|
686
|
+
TpEclSchedulers?: TpEclSchedulers;
|
|
687
687
|
}
|
|
688
688
|
|
|
689
689
|
export interface TpTargetClusters {
|
|
690
|
-
TpTargetCluster
|
|
690
|
+
TpTargetCluster?: TpTargetCluster[];
|
|
691
691
|
}
|
|
692
692
|
|
|
693
693
|
export interface TpTargetClusterQueryResponse {
|
|
694
|
-
Exceptions
|
|
695
|
-
ShowDetails
|
|
696
|
-
MemThreshold
|
|
697
|
-
DiskThreshold
|
|
698
|
-
CpuThreshold
|
|
699
|
-
MemThresholdType
|
|
700
|
-
DiskThresholdType
|
|
701
|
-
PreflightProcessFilter
|
|
702
|
-
AcceptLanguage
|
|
703
|
-
TpTargetClusters
|
|
694
|
+
Exceptions?: Exceptions;
|
|
695
|
+
ShowDetails?: boolean;
|
|
696
|
+
MemThreshold?: int;
|
|
697
|
+
DiskThreshold?: int;
|
|
698
|
+
CpuThreshold?: int;
|
|
699
|
+
MemThresholdType?: string;
|
|
700
|
+
DiskThresholdType?: string;
|
|
701
|
+
PreflightProcessFilter?: string;
|
|
702
|
+
AcceptLanguage?: string;
|
|
703
|
+
TpTargetClusters?: TpTargetClusters;
|
|
704
704
|
}
|
|
705
705
|
|
|
706
706
|
export interface TpThorStatusRequest {
|
|
@@ -708,19 +708,19 @@ export namespace WsTopology {
|
|
|
708
708
|
}
|
|
709
709
|
|
|
710
710
|
export interface TpThorStatusResponse {
|
|
711
|
-
Exceptions
|
|
712
|
-
Name
|
|
713
|
-
Queue
|
|
714
|
-
Group
|
|
715
|
-
ThorMasterIPAddress
|
|
716
|
-
Port
|
|
717
|
-
StartTime
|
|
718
|
-
LogFile
|
|
719
|
-
Wuid
|
|
720
|
-
Graph
|
|
721
|
-
SubGraph
|
|
722
|
-
SubGraphDuration
|
|
723
|
-
AutoRefresh
|
|
711
|
+
Exceptions?: Exceptions;
|
|
712
|
+
Name?: string;
|
|
713
|
+
Queue?: string;
|
|
714
|
+
Group?: string;
|
|
715
|
+
ThorMasterIPAddress?: string;
|
|
716
|
+
Port?: int;
|
|
717
|
+
StartTime?: string;
|
|
718
|
+
LogFile?: string;
|
|
719
|
+
Wuid?: string;
|
|
720
|
+
Graph?: string;
|
|
721
|
+
SubGraph?: int;
|
|
722
|
+
SubGraphDuration?: int;
|
|
723
|
+
AutoRefresh?: int;
|
|
724
724
|
}
|
|
725
725
|
|
|
726
726
|
export interface TpXMLFileRequest {
|
|
@@ -728,8 +728,8 @@ export namespace WsTopology {
|
|
|
728
728
|
}
|
|
729
729
|
|
|
730
730
|
export interface TpXMLFileResponse {
|
|
731
|
-
Exceptions
|
|
732
|
-
thefile
|
|
731
|
+
Exceptions?: Exceptions;
|
|
732
|
+
thefile?: base64Binary;
|
|
733
733
|
}
|
|
734
734
|
|
|
735
735
|
}
|
|
@@ -740,96 +740,96 @@ export class TopologyServiceBase extends Service {
|
|
|
740
740
|
super(optsConnection, "WsTopology", "1.33");
|
|
741
741
|
}
|
|
742
742
|
|
|
743
|
-
Ping(request:
|
|
744
|
-
return this._connection.send("Ping", request, "json", false,
|
|
743
|
+
Ping(request: WsTopology.WsTopologyPingRequest, abortSignal?: AbortSignal): Promise<WsTopology.WsTopologyPingResponse> {
|
|
744
|
+
return this._connection.send("Ping", request, "json", false, abortSignal, "WsTopologyPingResponse");
|
|
745
745
|
}
|
|
746
746
|
|
|
747
|
-
SystemLog(request:
|
|
748
|
-
return this._connection.send("SystemLog", request, "json", false,
|
|
747
|
+
SystemLog(request: WsTopology.SystemLogRequest, abortSignal?: AbortSignal): Promise<WsTopology.SystemLogResponse> {
|
|
748
|
+
return this._connection.send("SystemLog", request, "json", false, abortSignal, "SystemLogResponse");
|
|
749
749
|
}
|
|
750
750
|
|
|
751
|
-
TpClusterInfo(request:
|
|
752
|
-
return this._connection.send("TpClusterInfo", request, "json", false,
|
|
751
|
+
TpClusterInfo(request: WsTopology.TpClusterInfoRequest, abortSignal?: AbortSignal): Promise<WsTopology.TpClusterInfoResponse> {
|
|
752
|
+
return this._connection.send("TpClusterInfo", request, "json", false, abortSignal, "TpClusterInfoResponse");
|
|
753
753
|
}
|
|
754
754
|
|
|
755
|
-
TpClusterQuery(request:
|
|
756
|
-
return this._connection.send("TpClusterQuery", request, "json", false,
|
|
755
|
+
TpClusterQuery(request: WsTopology.TpClusterQueryRequest, abortSignal?: AbortSignal): Promise<WsTopology.TpClusterQueryResponse> {
|
|
756
|
+
return this._connection.send("TpClusterQuery", request, "json", false, abortSignal, "TpClusterQueryResponse");
|
|
757
757
|
}
|
|
758
758
|
|
|
759
|
-
TpComponentConfiguration(request:
|
|
760
|
-
return this._connection.send("TpComponentConfiguration", request, "json", false,
|
|
759
|
+
TpComponentConfiguration(request: WsTopology.TpComponentConfigurationRequest, abortSignal?: AbortSignal): Promise<WsTopology.TpComponentConfigurationResponse> {
|
|
760
|
+
return this._connection.send("TpComponentConfiguration", request, "json", false, abortSignal, "TpComponentConfigurationResponse");
|
|
761
761
|
}
|
|
762
762
|
|
|
763
|
-
TpConfiguredComponents(request:
|
|
764
|
-
return this._connection.send("TpConfiguredComponents", request, "json", false,
|
|
763
|
+
TpConfiguredComponents(request: WsTopology.TpConfiguredComponentsRequest, abortSignal?: AbortSignal): Promise<WsTopology.TpConfiguredComponentsResponse> {
|
|
764
|
+
return this._connection.send("TpConfiguredComponents", request, "json", false, abortSignal, "TpConfiguredComponentsResponse");
|
|
765
765
|
}
|
|
766
766
|
|
|
767
|
-
TpDropZoneQuery(request:
|
|
768
|
-
return this._connection.send("TpDropZoneQuery", request, "json", false,
|
|
767
|
+
TpDropZoneQuery(request: WsTopology.TpDropZoneQueryRequest, abortSignal?: AbortSignal): Promise<WsTopology.TpDropZoneQueryResponse> {
|
|
768
|
+
return this._connection.send("TpDropZoneQuery", request, "json", false, abortSignal, "TpDropZoneQueryResponse");
|
|
769
769
|
}
|
|
770
770
|
|
|
771
|
-
TpGetComponentFile(request:
|
|
772
|
-
return this._connection.send("TpGetComponentFile", request, "json", false,
|
|
771
|
+
TpGetComponentFile(request: WsTopology.TpGetComponentFileRequest, abortSignal?: AbortSignal): Promise<WsTopology.TpGetComponentFileResponse> {
|
|
772
|
+
return this._connection.send("TpGetComponentFile", request, "json", false, abortSignal, "TpGetComponentFileResponse");
|
|
773
773
|
}
|
|
774
774
|
|
|
775
|
-
TpGetServicePlugins(request:
|
|
776
|
-
return this._connection.send("TpGetServicePlugins", request, "json", false,
|
|
775
|
+
TpGetServicePlugins(request: WsTopology.TpGetServicePluginsRequest, abortSignal?: AbortSignal): Promise<WsTopology.TpGetServicePluginsResponse> {
|
|
776
|
+
return this._connection.send("TpGetServicePlugins", request, "json", false, abortSignal, "TpGetServicePluginsResponse");
|
|
777
777
|
}
|
|
778
778
|
|
|
779
|
-
TpGroupQuery(request:
|
|
780
|
-
return this._connection.send("TpGroupQuery", request, "json", false,
|
|
779
|
+
TpGroupQuery(request: WsTopology.TpGroupQueryRequest, abortSignal?: AbortSignal): Promise<WsTopology.TpGroupQueryResponse> {
|
|
780
|
+
return this._connection.send("TpGroupQuery", request, "json", false, abortSignal, "TpGroupQueryResponse");
|
|
781
781
|
}
|
|
782
782
|
|
|
783
|
-
TpListLogFiles(request:
|
|
784
|
-
return this._connection.send("TpListLogFiles", request, "json", false,
|
|
783
|
+
TpListLogFiles(request: WsTopology.TpListLogFilesRequest, abortSignal?: AbortSignal): Promise<WsTopology.TpListLogFilesResponse> {
|
|
784
|
+
return this._connection.send("TpListLogFiles", request, "json", false, abortSignal, "TpListLogFilesResponse");
|
|
785
785
|
}
|
|
786
786
|
|
|
787
|
-
TpListTargetClusters(request:
|
|
788
|
-
return this._connection.send("TpListTargetClusters", request, "json", false,
|
|
787
|
+
TpListTargetClusters(request: WsTopology.TpListTargetClustersRequest, abortSignal?: AbortSignal): Promise<WsTopology.TpListTargetClustersResponse> {
|
|
788
|
+
return this._connection.send("TpListTargetClusters", request, "json", false, abortSignal, "TpListTargetClustersResponse");
|
|
789
789
|
}
|
|
790
790
|
|
|
791
|
-
TpLogFile(request:
|
|
792
|
-
return this._connection.send("TpLogFile", request, "json", false,
|
|
791
|
+
TpLogFile(request: WsTopology.TpLogFileRequest, abortSignal?: AbortSignal): Promise<WsTopology.TpLogFileResponse> {
|
|
792
|
+
return this._connection.send("TpLogFile", request, "json", false, abortSignal, "TpLogFileResponse");
|
|
793
793
|
}
|
|
794
794
|
|
|
795
|
-
TpLogFileDisplay(request:
|
|
796
|
-
return this._connection.send("TpLogFileDisplay", request, "json", false,
|
|
795
|
+
TpLogFileDisplay(request: WsTopology.TpLogFileRequest, abortSignal?: AbortSignal): Promise<WsTopology.TpLogFileResponse> {
|
|
796
|
+
return this._connection.send("TpLogFileDisplay", request, "json", false, abortSignal, "TpLogFileResponse");
|
|
797
797
|
}
|
|
798
798
|
|
|
799
|
-
TpLogicalClusterQuery(request:
|
|
800
|
-
return this._connection.send("TpLogicalClusterQuery", request, "json", false,
|
|
799
|
+
TpLogicalClusterQuery(request: WsTopology.TpLogicalClusterQueryRequest, abortSignal?: AbortSignal): Promise<WsTopology.TpLogicalClusterQueryResponse> {
|
|
800
|
+
return this._connection.send("TpLogicalClusterQuery", request, "json", false, abortSignal, "TpLogicalClusterQueryResponse");
|
|
801
801
|
}
|
|
802
802
|
|
|
803
|
-
TpMachineInfo(request:
|
|
804
|
-
return this._connection.send("TpMachineInfo", request, "json", false,
|
|
803
|
+
TpMachineInfo(request: WsTopology.TpMachineInfoRequest, abortSignal?: AbortSignal): Promise<WsTopology.TpMachineInfoResponse> {
|
|
804
|
+
return this._connection.send("TpMachineInfo", request, "json", false, abortSignal, "TpMachineInfoResponse");
|
|
805
805
|
}
|
|
806
806
|
|
|
807
|
-
TpMachineQuery(request:
|
|
808
|
-
return this._connection.send("TpMachineQuery", request, "json", false,
|
|
807
|
+
TpMachineQuery(request: WsTopology.TpMachineQueryRequest, abortSignal?: AbortSignal): Promise<WsTopology.TpMachineQueryResponse> {
|
|
808
|
+
return this._connection.send("TpMachineQuery", request, "json", false, abortSignal, "TpMachineQueryResponse");
|
|
809
809
|
}
|
|
810
810
|
|
|
811
|
-
TpServiceQuery(request:
|
|
812
|
-
return this._connection.send("TpServiceQuery", request, "json", false,
|
|
811
|
+
TpServiceQuery(request: WsTopology.TpServiceQueryRequest, abortSignal?: AbortSignal): Promise<WsTopology.TpServiceQueryResponse> {
|
|
812
|
+
return this._connection.send("TpServiceQuery", request, "json", false, abortSignal, "TpServiceQueryResponse");
|
|
813
813
|
}
|
|
814
814
|
|
|
815
|
-
TpSetMachineStatus(request:
|
|
816
|
-
return this._connection.send("TpSetMachineStatus", request, "json", false,
|
|
815
|
+
TpSetMachineStatus(request: WsTopology.TpSetMachineStatusRequest, abortSignal?: AbortSignal): Promise<WsTopology.TpSetMachineStatusResponse> {
|
|
816
|
+
return this._connection.send("TpSetMachineStatus", request, "json", false, abortSignal, "TpSetMachineStatusResponse");
|
|
817
817
|
}
|
|
818
818
|
|
|
819
|
-
TpSwapNode(request:
|
|
820
|
-
return this._connection.send("TpSwapNode", request, "json", false,
|
|
819
|
+
TpSwapNode(request: WsTopology.TpSwapNodeRequest, abortSignal?: AbortSignal): Promise<WsTopology.TpSwapNodeResponse> {
|
|
820
|
+
return this._connection.send("TpSwapNode", request, "json", false, abortSignal, "TpSwapNodeResponse");
|
|
821
821
|
}
|
|
822
822
|
|
|
823
|
-
TpTargetClusterQuery(request:
|
|
824
|
-
return this._connection.send("TpTargetClusterQuery", request, "json", false,
|
|
823
|
+
TpTargetClusterQuery(request: WsTopology.TpTargetClusterQueryRequest, abortSignal?: AbortSignal): Promise<WsTopology.TpTargetClusterQueryResponse> {
|
|
824
|
+
return this._connection.send("TpTargetClusterQuery", request, "json", false, abortSignal, "TpTargetClusterQueryResponse");
|
|
825
825
|
}
|
|
826
826
|
|
|
827
|
-
TpThorStatus(request:
|
|
828
|
-
return this._connection.send("TpThorStatus", request, "json", false,
|
|
827
|
+
TpThorStatus(request: WsTopology.TpThorStatusRequest, abortSignal?: AbortSignal): Promise<WsTopology.TpThorStatusResponse> {
|
|
828
|
+
return this._connection.send("TpThorStatus", request, "json", false, abortSignal, "TpThorStatusResponse");
|
|
829
829
|
}
|
|
830
830
|
|
|
831
|
-
TpXMLFile(request:
|
|
832
|
-
return this._connection.send("TpXMLFile", request, "json", false,
|
|
831
|
+
TpXMLFile(request: WsTopology.TpXMLFileRequest, abortSignal?: AbortSignal): Promise<WsTopology.TpXMLFileResponse> {
|
|
832
|
+
return this._connection.send("TpXMLFile", request, "json", false, abortSignal, "TpXMLFileResponse");
|
|
833
833
|
}
|
|
834
834
|
|
|
835
835
|
}
|