@hpcc-js/comms 3.15.6 → 3.15.7
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 +8 -8
- package/dist/node/index.cjs.map +4 -4
- package/dist/node/index.js +7 -7
- package/dist/node/index.js.map +4 -4
- package/package.json +11 -9
- package/src/ecl/scope.ts +1 -2
- package/src/ecl/workunit.ts +1 -0
- package/src/services/fileSpray.ts +1 -26
- package/src/services/wsWorkunits.ts +1 -1
- package/src/services/wsdl/FileSpray/v1.29/FileSpray.ts +946 -0
- package/src/services/wsdl/WsWorkunits/v2.08/WsWorkunits.ts +3179 -0
- package/src/services/wsdl/ws_machine/v1.19/ws_machine.ts +215 -215
- package/types/ecl/workunit.d.ts +1 -0
- package/types/services/fileSpray.d.ts +1 -14
- package/types/services/wsWorkunits.d.ts +1 -1
- package/types/services/wsdl/FileSpray/{v1.27 → v1.29}/FileSpray.d.ts +17 -2
- package/types/services/wsdl/WsWorkunits/{v2.05 → v2.08}/WsWorkunits.d.ts +2 -0
- package/types/services/wsdl/ws_machine/v1.19/ws_machine.d.ts +205 -205
|
@@ -30,70 +30,70 @@ export namespace WsMachine {
|
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
export interface Exception {
|
|
33
|
-
Code
|
|
34
|
-
Audience
|
|
35
|
-
Source
|
|
36
|
-
Message
|
|
33
|
+
Code?: string;
|
|
34
|
+
Audience?: string;
|
|
35
|
+
Source?: string;
|
|
36
|
+
Message?: string;
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
export interface Exceptions {
|
|
40
|
-
Source
|
|
41
|
-
Exception
|
|
40
|
+
Source?: string;
|
|
41
|
+
Exception?: Exception[];
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
export interface StatusReport {
|
|
45
|
-
StatusID
|
|
46
|
-
Status
|
|
47
|
-
StatusDetails
|
|
48
|
-
Reporter
|
|
49
|
-
TimeReported
|
|
50
|
-
TimeReportedStr
|
|
51
|
-
TimeCached
|
|
52
|
-
URL
|
|
45
|
+
StatusID?: int;
|
|
46
|
+
Status?: string;
|
|
47
|
+
StatusDetails?: string;
|
|
48
|
+
Reporter?: string;
|
|
49
|
+
TimeReported?: long;
|
|
50
|
+
TimeReportedStr?: string;
|
|
51
|
+
TimeCached?: string;
|
|
52
|
+
URL?: string;
|
|
53
53
|
}
|
|
54
54
|
|
|
55
55
|
export interface StatusReports {
|
|
56
|
-
StatusReport
|
|
56
|
+
StatusReport?: StatusReport[];
|
|
57
57
|
}
|
|
58
58
|
|
|
59
59
|
export interface ComponentStatus {
|
|
60
|
-
ComponentTypeID
|
|
61
|
-
ComponentType
|
|
62
|
-
EndPoint
|
|
63
|
-
StatusID
|
|
64
|
-
Status
|
|
65
|
-
TimeReported
|
|
66
|
-
TimeReportedStr
|
|
67
|
-
Reporter
|
|
68
|
-
StatusReports
|
|
60
|
+
ComponentTypeID?: int;
|
|
61
|
+
ComponentType?: string;
|
|
62
|
+
EndPoint?: string;
|
|
63
|
+
StatusID?: int;
|
|
64
|
+
Status?: string;
|
|
65
|
+
TimeReported?: long;
|
|
66
|
+
TimeReportedStr?: string;
|
|
67
|
+
Reporter?: string;
|
|
68
|
+
StatusReports?: StatusReports;
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
export interface ComponentStatusList {
|
|
72
|
-
ComponentStatus
|
|
72
|
+
ComponentStatus?: ComponentStatus[];
|
|
73
73
|
}
|
|
74
74
|
|
|
75
75
|
export interface GetComponentStatusResponse {
|
|
76
|
-
Exceptions
|
|
77
|
-
StatusCode
|
|
78
|
-
Status
|
|
79
|
-
ComponentType
|
|
80
|
-
EndPoint
|
|
81
|
-
ComponentStatusID
|
|
82
|
-
ComponentStatus
|
|
83
|
-
TimeReported
|
|
84
|
-
TimeReportedStr
|
|
85
|
-
Reporter
|
|
86
|
-
StatusReport
|
|
87
|
-
ComponentStatusList
|
|
76
|
+
Exceptions?: Exceptions;
|
|
77
|
+
StatusCode?: int;
|
|
78
|
+
Status?: string;
|
|
79
|
+
ComponentType?: string;
|
|
80
|
+
EndPoint?: string;
|
|
81
|
+
ComponentStatusID?: int;
|
|
82
|
+
ComponentStatus?: string;
|
|
83
|
+
TimeReported?: long;
|
|
84
|
+
TimeReportedStr?: string;
|
|
85
|
+
Reporter?: string;
|
|
86
|
+
StatusReport?: StatusReport;
|
|
87
|
+
ComponentStatusList?: ComponentStatusList;
|
|
88
88
|
}
|
|
89
89
|
|
|
90
90
|
export interface Component {
|
|
91
|
-
Type
|
|
92
|
-
Name
|
|
91
|
+
Type?: string;
|
|
92
|
+
Name?: string;
|
|
93
93
|
}
|
|
94
94
|
|
|
95
95
|
export interface Components {
|
|
96
|
-
Component
|
|
96
|
+
Component?: Component[];
|
|
97
97
|
}
|
|
98
98
|
|
|
99
99
|
export interface GetComponentUsageRequest {
|
|
@@ -102,51 +102,51 @@ export namespace WsMachine {
|
|
|
102
102
|
}
|
|
103
103
|
|
|
104
104
|
export interface DiskUsage {
|
|
105
|
-
Name
|
|
106
|
-
Path
|
|
107
|
-
Description
|
|
108
|
-
InUse
|
|
109
|
-
Available
|
|
110
|
-
PercentAvailable
|
|
111
|
-
Exception
|
|
105
|
+
Name?: string;
|
|
106
|
+
Path?: string;
|
|
107
|
+
Description?: string;
|
|
108
|
+
InUse?: long;
|
|
109
|
+
Available?: long;
|
|
110
|
+
PercentAvailable?: int;
|
|
111
|
+
Exception?: string;
|
|
112
112
|
}
|
|
113
113
|
|
|
114
114
|
export interface DiskUsages {
|
|
115
|
-
DiskUsage
|
|
115
|
+
DiskUsage?: DiskUsage[];
|
|
116
116
|
}
|
|
117
117
|
|
|
118
118
|
export interface MachineUsage {
|
|
119
|
-
Name
|
|
120
|
-
NetAddress
|
|
121
|
-
Description
|
|
122
|
-
Exception
|
|
123
|
-
DiskUsages
|
|
119
|
+
Name?: string;
|
|
120
|
+
NetAddress?: string;
|
|
121
|
+
Description?: string;
|
|
122
|
+
Exception?: string;
|
|
123
|
+
DiskUsages?: DiskUsages;
|
|
124
124
|
}
|
|
125
125
|
|
|
126
126
|
export interface MachineUsages {
|
|
127
|
-
MachineUsage
|
|
127
|
+
MachineUsage?: MachineUsage[];
|
|
128
128
|
}
|
|
129
129
|
|
|
130
130
|
export interface ComponentUsage {
|
|
131
|
-
Type
|
|
132
|
-
Name
|
|
133
|
-
Description
|
|
134
|
-
Exception
|
|
135
|
-
MachineUsages
|
|
131
|
+
Type?: string;
|
|
132
|
+
Name?: string;
|
|
133
|
+
Description?: string;
|
|
134
|
+
Exception?: string;
|
|
135
|
+
MachineUsages?: MachineUsages;
|
|
136
136
|
}
|
|
137
137
|
|
|
138
138
|
export interface ComponentUsages {
|
|
139
|
-
ComponentUsage
|
|
139
|
+
ComponentUsage?: ComponentUsage[];
|
|
140
140
|
}
|
|
141
141
|
|
|
142
142
|
export interface GetComponentUsageResponse {
|
|
143
|
-
Exceptions
|
|
144
|
-
ComponentUsages
|
|
145
|
-
UsageTime
|
|
143
|
+
Exceptions?: Exceptions;
|
|
144
|
+
ComponentUsages?: ComponentUsages;
|
|
145
|
+
UsageTime?: string;
|
|
146
146
|
}
|
|
147
147
|
|
|
148
148
|
export interface Addresses {
|
|
149
|
-
Item
|
|
149
|
+
Item?: string[];
|
|
150
150
|
}
|
|
151
151
|
|
|
152
152
|
export interface GetMachineInfoRequest {
|
|
@@ -174,145 +174,145 @@ export namespace WsMachine {
|
|
|
174
174
|
}
|
|
175
175
|
|
|
176
176
|
export interface RequestInfo {
|
|
177
|
-
Addresses
|
|
178
|
-
SortBy
|
|
179
|
-
ClusterType
|
|
180
|
-
Cluster
|
|
181
|
-
OldIP
|
|
182
|
-
Path
|
|
183
|
-
AddProcessesToFilter
|
|
184
|
-
ApplyProcessFilter
|
|
185
|
-
GetProcessorInfo
|
|
186
|
-
GetStorageInfo
|
|
187
|
-
LocalFileSystemsOnly
|
|
188
|
-
GetSoftwareInfo
|
|
189
|
-
MemThreshold
|
|
190
|
-
DiskThreshold
|
|
191
|
-
CpuThreshold
|
|
192
|
-
AutoRefresh
|
|
193
|
-
MemThresholdType
|
|
194
|
-
DiskThresholdType
|
|
195
|
-
SecurityString
|
|
196
|
-
UserName
|
|
197
|
-
Password
|
|
198
|
-
EnableSNMP
|
|
177
|
+
Addresses?: Addresses;
|
|
178
|
+
SortBy?: string;
|
|
179
|
+
ClusterType?: TpMachineType;
|
|
180
|
+
Cluster?: string;
|
|
181
|
+
OldIP?: string;
|
|
182
|
+
Path?: string;
|
|
183
|
+
AddProcessesToFilter?: string;
|
|
184
|
+
ApplyProcessFilter?: boolean;
|
|
185
|
+
GetProcessorInfo?: boolean;
|
|
186
|
+
GetStorageInfo?: boolean;
|
|
187
|
+
LocalFileSystemsOnly?: boolean;
|
|
188
|
+
GetSoftwareInfo?: boolean;
|
|
189
|
+
MemThreshold?: int;
|
|
190
|
+
DiskThreshold?: int;
|
|
191
|
+
CpuThreshold?: int;
|
|
192
|
+
AutoRefresh?: int;
|
|
193
|
+
MemThresholdType?: ThresholdType;
|
|
194
|
+
DiskThresholdType?: ThresholdType;
|
|
195
|
+
SecurityString?: string;
|
|
196
|
+
UserName?: string;
|
|
197
|
+
Password?: string;
|
|
198
|
+
EnableSNMP?: boolean;
|
|
199
199
|
}
|
|
200
200
|
|
|
201
201
|
export interface Columns {
|
|
202
|
-
Item
|
|
202
|
+
Item?: string[];
|
|
203
203
|
}
|
|
204
204
|
|
|
205
205
|
export interface ProcessorInfo {
|
|
206
|
-
Type
|
|
207
|
-
Load
|
|
206
|
+
Type?: string;
|
|
207
|
+
Load?: int;
|
|
208
208
|
}
|
|
209
209
|
|
|
210
210
|
export interface Processors {
|
|
211
|
-
ProcessorInfo
|
|
211
|
+
ProcessorInfo?: ProcessorInfo[];
|
|
212
212
|
}
|
|
213
213
|
|
|
214
214
|
export interface StorageInfo {
|
|
215
|
-
Description
|
|
216
|
-
Type
|
|
217
|
-
Available
|
|
218
|
-
PercentAvail
|
|
219
|
-
Total
|
|
220
|
-
Failures
|
|
215
|
+
Description?: string;
|
|
216
|
+
Type?: string;
|
|
217
|
+
Available?: long;
|
|
218
|
+
PercentAvail?: int;
|
|
219
|
+
Total?: long;
|
|
220
|
+
Failures?: int;
|
|
221
221
|
}
|
|
222
222
|
|
|
223
223
|
export interface Storage {
|
|
224
|
-
StorageInfo
|
|
224
|
+
StorageInfo?: StorageInfo[];
|
|
225
225
|
}
|
|
226
226
|
|
|
227
227
|
export interface SWRunInfo {
|
|
228
|
-
Name
|
|
229
|
-
Instances
|
|
230
|
-
State
|
|
228
|
+
Name?: string;
|
|
229
|
+
Instances?: int;
|
|
230
|
+
State?: int;
|
|
231
231
|
}
|
|
232
232
|
|
|
233
233
|
export interface Running {
|
|
234
|
-
SWRunInfo
|
|
234
|
+
SWRunInfo?: SWRunInfo[];
|
|
235
235
|
}
|
|
236
236
|
|
|
237
237
|
export interface PhysicalMemory {
|
|
238
|
-
Description
|
|
239
|
-
Type
|
|
240
|
-
Available
|
|
241
|
-
PercentAvail
|
|
242
|
-
Total
|
|
243
|
-
Failures
|
|
238
|
+
Description?: string;
|
|
239
|
+
Type?: string;
|
|
240
|
+
Available?: long;
|
|
241
|
+
PercentAvail?: int;
|
|
242
|
+
Total?: long;
|
|
243
|
+
Failures?: int;
|
|
244
244
|
}
|
|
245
245
|
|
|
246
246
|
export interface VirtualMemory {
|
|
247
|
-
Description
|
|
248
|
-
Type
|
|
249
|
-
Available
|
|
250
|
-
PercentAvail
|
|
251
|
-
Total
|
|
252
|
-
Failures
|
|
247
|
+
Description?: string;
|
|
248
|
+
Type?: string;
|
|
249
|
+
Available?: long;
|
|
250
|
+
PercentAvail?: int;
|
|
251
|
+
Total?: long;
|
|
252
|
+
Failures?: int;
|
|
253
253
|
}
|
|
254
254
|
|
|
255
255
|
export interface ComponentInfo {
|
|
256
|
-
Condition
|
|
257
|
-
State
|
|
258
|
-
UpTime
|
|
256
|
+
Condition?: int;
|
|
257
|
+
State?: int;
|
|
258
|
+
UpTime?: string;
|
|
259
259
|
}
|
|
260
260
|
|
|
261
261
|
export interface MachineInfoEx {
|
|
262
|
-
Address
|
|
263
|
-
ConfigAddress
|
|
264
|
-
Name
|
|
265
|
-
ProcessType
|
|
266
|
-
DisplayType
|
|
267
|
-
Description
|
|
268
|
-
AgentVersion
|
|
269
|
-
Contact
|
|
270
|
-
Location
|
|
271
|
-
UpTime
|
|
272
|
-
ComponentName
|
|
273
|
-
ComponentPath
|
|
274
|
-
RoxieState
|
|
275
|
-
RoxieStateDetails
|
|
276
|
-
OS
|
|
277
|
-
ProcessNumber
|
|
278
|
-
Channels
|
|
279
|
-
Processors
|
|
280
|
-
Storage
|
|
281
|
-
Running
|
|
282
|
-
PhysicalMemory
|
|
283
|
-
VirtualMemory
|
|
284
|
-
ComponentInfo
|
|
285
|
-
Exception
|
|
262
|
+
Address?: string;
|
|
263
|
+
ConfigAddress?: string;
|
|
264
|
+
Name?: string;
|
|
265
|
+
ProcessType?: string;
|
|
266
|
+
DisplayType?: string;
|
|
267
|
+
Description?: string;
|
|
268
|
+
AgentVersion?: string;
|
|
269
|
+
Contact?: string;
|
|
270
|
+
Location?: string;
|
|
271
|
+
UpTime?: string;
|
|
272
|
+
ComponentName?: string;
|
|
273
|
+
ComponentPath?: string;
|
|
274
|
+
RoxieState?: string;
|
|
275
|
+
RoxieStateDetails?: string;
|
|
276
|
+
OS?: int;
|
|
277
|
+
ProcessNumber?: int;
|
|
278
|
+
Channels?: unsignedInt;
|
|
279
|
+
Processors?: Processors;
|
|
280
|
+
Storage?: Storage;
|
|
281
|
+
Running?: Running;
|
|
282
|
+
PhysicalMemory?: PhysicalMemory;
|
|
283
|
+
VirtualMemory?: VirtualMemory;
|
|
284
|
+
ComponentInfo?: ComponentInfo;
|
|
285
|
+
Exception?: string;
|
|
286
286
|
}
|
|
287
287
|
|
|
288
288
|
export interface Machines {
|
|
289
|
-
MachineInfoEx
|
|
289
|
+
MachineInfoEx?: MachineInfoEx[];
|
|
290
290
|
}
|
|
291
291
|
|
|
292
292
|
export interface GetMachineInfoResponse {
|
|
293
|
-
Exceptions
|
|
294
|
-
RequestInfo
|
|
295
|
-
Columns
|
|
296
|
-
Machines
|
|
297
|
-
TimeStamp
|
|
298
|
-
UserName
|
|
299
|
-
Password
|
|
300
|
-
AcceptLanguage
|
|
293
|
+
Exceptions?: Exceptions;
|
|
294
|
+
RequestInfo?: RequestInfo;
|
|
295
|
+
Columns?: Columns;
|
|
296
|
+
Machines?: Machines;
|
|
297
|
+
TimeStamp?: string;
|
|
298
|
+
UserName?: string;
|
|
299
|
+
Password?: string;
|
|
300
|
+
AcceptLanguage?: string;
|
|
301
301
|
}
|
|
302
302
|
|
|
303
303
|
export interface GetMachineInfoRequestEx {
|
|
304
|
-
Addresses
|
|
305
|
-
ClusterType
|
|
304
|
+
Addresses?: Addresses;
|
|
305
|
+
ClusterType?: TpMachineType;
|
|
306
306
|
}
|
|
307
307
|
|
|
308
308
|
export interface GetMachineInfoResponseEx {
|
|
309
|
-
Exceptions
|
|
310
|
-
AcceptLanguage
|
|
311
|
-
Machines
|
|
309
|
+
Exceptions?: Exceptions;
|
|
310
|
+
AcceptLanguage?: string;
|
|
311
|
+
Machines?: Machines;
|
|
312
312
|
}
|
|
313
313
|
|
|
314
314
|
export interface ShowColumns {
|
|
315
|
-
Item
|
|
315
|
+
Item?: string[];
|
|
316
316
|
}
|
|
317
317
|
|
|
318
318
|
export interface MetricsRequest {
|
|
@@ -326,18 +326,18 @@ export namespace WsMachine {
|
|
|
326
326
|
}
|
|
327
327
|
|
|
328
328
|
export interface MetricsResponse {
|
|
329
|
-
Exceptions
|
|
330
|
-
FieldInformation
|
|
331
|
-
Metrics
|
|
332
|
-
AutoRefresh
|
|
333
|
-
Cluster
|
|
334
|
-
SelectAllChecked
|
|
335
|
-
AutoUpdate
|
|
336
|
-
AcceptLanguage
|
|
329
|
+
Exceptions?: Exceptions;
|
|
330
|
+
FieldInformation?: string;
|
|
331
|
+
Metrics?: string;
|
|
332
|
+
AutoRefresh?: int;
|
|
333
|
+
Cluster?: string;
|
|
334
|
+
SelectAllChecked?: boolean;
|
|
335
|
+
AutoUpdate?: boolean;
|
|
336
|
+
AcceptLanguage?: string;
|
|
337
337
|
}
|
|
338
338
|
|
|
339
339
|
export interface NodeGroups {
|
|
340
|
-
Item
|
|
340
|
+
Item?: string[];
|
|
341
341
|
}
|
|
342
342
|
|
|
343
343
|
export interface GetNodeGroupUsageRequest {
|
|
@@ -346,24 +346,24 @@ export namespace WsMachine {
|
|
|
346
346
|
}
|
|
347
347
|
|
|
348
348
|
export interface NodeGroupUsage {
|
|
349
|
-
Name
|
|
350
|
-
Description
|
|
351
|
-
Exception
|
|
352
|
-
ComponentUsages
|
|
349
|
+
Name?: string;
|
|
350
|
+
Description?: string;
|
|
351
|
+
Exception?: string;
|
|
352
|
+
ComponentUsages?: ComponentUsages;
|
|
353
353
|
}
|
|
354
354
|
|
|
355
355
|
export interface NodeGroupUsages {
|
|
356
|
-
NodeGroupUsage
|
|
356
|
+
NodeGroupUsage?: NodeGroupUsage[];
|
|
357
357
|
}
|
|
358
358
|
|
|
359
359
|
export interface GetNodeGroupUsageResponse {
|
|
360
|
-
Exceptions
|
|
361
|
-
NodeGroupUsages
|
|
362
|
-
UsageTime
|
|
360
|
+
Exceptions?: Exceptions;
|
|
361
|
+
NodeGroupUsages?: NodeGroupUsages;
|
|
362
|
+
UsageTime?: string;
|
|
363
363
|
}
|
|
364
364
|
|
|
365
365
|
export interface TargetClusters {
|
|
366
|
-
Item
|
|
366
|
+
Item?: string[];
|
|
367
367
|
}
|
|
368
368
|
|
|
369
369
|
export interface GetTargetClusterInfoRequest {
|
|
@@ -383,26 +383,26 @@ export namespace WsMachine {
|
|
|
383
383
|
}
|
|
384
384
|
|
|
385
385
|
export interface Processes {
|
|
386
|
-
MachineInfoEx
|
|
386
|
+
MachineInfoEx?: MachineInfoEx[];
|
|
387
387
|
}
|
|
388
388
|
|
|
389
389
|
export interface TargetClusterInfo {
|
|
390
|
-
Name
|
|
391
|
-
Type
|
|
392
|
-
Processes
|
|
390
|
+
Name?: string;
|
|
391
|
+
Type?: string;
|
|
392
|
+
Processes?: Processes;
|
|
393
393
|
}
|
|
394
394
|
|
|
395
395
|
export interface TargetClusterInfoList {
|
|
396
|
-
TargetClusterInfo
|
|
396
|
+
TargetClusterInfo?: TargetClusterInfo[];
|
|
397
397
|
}
|
|
398
398
|
|
|
399
399
|
export interface GetTargetClusterInfoResponse {
|
|
400
|
-
Exceptions
|
|
401
|
-
Columns
|
|
402
|
-
RequestInfo
|
|
403
|
-
TargetClusterInfoList
|
|
404
|
-
TimeStamp
|
|
405
|
-
AcceptLanguage
|
|
400
|
+
Exceptions?: Exceptions;
|
|
401
|
+
Columns?: Columns;
|
|
402
|
+
RequestInfo?: RequestInfo;
|
|
403
|
+
TargetClusterInfoList?: TargetClusterInfoList;
|
|
404
|
+
TimeStamp?: string;
|
|
405
|
+
AcceptLanguage?: string;
|
|
406
406
|
}
|
|
407
407
|
|
|
408
408
|
export interface GetTargetClusterUsageRequest {
|
|
@@ -411,20 +411,20 @@ export namespace WsMachine {
|
|
|
411
411
|
}
|
|
412
412
|
|
|
413
413
|
export interface TargetClusterUsage {
|
|
414
|
-
Name
|
|
415
|
-
Description
|
|
416
|
-
Exception
|
|
417
|
-
ComponentUsages
|
|
414
|
+
Name?: string;
|
|
415
|
+
Description?: string;
|
|
416
|
+
Exception?: string;
|
|
417
|
+
ComponentUsages?: ComponentUsages;
|
|
418
418
|
}
|
|
419
419
|
|
|
420
420
|
export interface TargetClusterUsages {
|
|
421
|
-
TargetClusterUsage
|
|
421
|
+
TargetClusterUsage?: TargetClusterUsage[];
|
|
422
422
|
}
|
|
423
423
|
|
|
424
424
|
export interface GetTargetClusterUsageResponse {
|
|
425
|
-
Exceptions
|
|
426
|
-
TargetClusterUsages
|
|
427
|
-
UsageTime
|
|
425
|
+
Exceptions?: Exceptions;
|
|
426
|
+
TargetClusterUsages?: TargetClusterUsages;
|
|
427
|
+
UsageTime?: string;
|
|
428
428
|
}
|
|
429
429
|
|
|
430
430
|
export interface ws_machinePingRequest {
|
|
@@ -441,9 +441,9 @@ export namespace WsMachine {
|
|
|
441
441
|
}
|
|
442
442
|
|
|
443
443
|
export interface UpdateComponentStatusResponse {
|
|
444
|
-
Exceptions
|
|
445
|
-
StatusCode
|
|
446
|
-
Status
|
|
444
|
+
Exceptions?: Exceptions;
|
|
445
|
+
StatusCode?: int;
|
|
446
|
+
Status?: string;
|
|
447
447
|
}
|
|
448
448
|
|
|
449
449
|
}
|
|
@@ -454,44 +454,44 @@ export class MachineServiceBase extends Service {
|
|
|
454
454
|
super(optsConnection, "ws_machine", "1.19");
|
|
455
455
|
}
|
|
456
456
|
|
|
457
|
-
GetComponentStatus(request: Partial<WsMachine.GetComponentStatusRequest
|
|
458
|
-
return this._connection.send("GetComponentStatus", request, "json", false,
|
|
457
|
+
GetComponentStatus(request: Partial<WsMachine.GetComponentStatusRequest>, abortSignal?: AbortSignal): Promise<WsMachine.GetComponentStatusResponse> {
|
|
458
|
+
return this._connection.send("GetComponentStatus", request, "json", false, abortSignal, "GetComponentStatusResponse");
|
|
459
459
|
}
|
|
460
460
|
|
|
461
|
-
GetComponentUsage(request: Partial<WsMachine.GetComponentUsageRequest
|
|
462
|
-
return this._connection.send("GetComponentUsage", request, "json", false,
|
|
461
|
+
GetComponentUsage(request: Partial<WsMachine.GetComponentUsageRequest>, abortSignal?: AbortSignal): Promise<WsMachine.GetComponentUsageResponse> {
|
|
462
|
+
return this._connection.send("GetComponentUsage", request, "json", false, abortSignal, "GetComponentUsageResponse");
|
|
463
463
|
}
|
|
464
464
|
|
|
465
|
-
GetMachineInfo(request: Partial<WsMachine.GetMachineInfoRequest
|
|
466
|
-
return this._connection.send("GetMachineInfo", request, "json", false,
|
|
465
|
+
GetMachineInfo(request: Partial<WsMachine.GetMachineInfoRequest>, abortSignal?: AbortSignal): Promise<WsMachine.GetMachineInfoResponse> {
|
|
466
|
+
return this._connection.send("GetMachineInfo", request, "json", false, abortSignal, "GetMachineInfoResponse");
|
|
467
467
|
}
|
|
468
468
|
|
|
469
|
-
GetMachineInfoEx(request: Partial<WsMachine.GetMachineInfoRequestEx
|
|
470
|
-
return this._connection.send("GetMachineInfoEx", request, "json", false,
|
|
469
|
+
GetMachineInfoEx(request: Partial<WsMachine.GetMachineInfoRequestEx>, abortSignal?: AbortSignal): Promise<WsMachine.GetMachineInfoResponseEx> {
|
|
470
|
+
return this._connection.send("GetMachineInfoEx", request, "json", false, abortSignal, "GetMachineInfoResponseEx");
|
|
471
471
|
}
|
|
472
472
|
|
|
473
|
-
GetMetrics(request: Partial<WsMachine.MetricsRequest
|
|
474
|
-
return this._connection.send("GetMetrics", request, "json", false,
|
|
473
|
+
GetMetrics(request: Partial<WsMachine.MetricsRequest>, abortSignal?: AbortSignal): Promise<WsMachine.MetricsResponse> {
|
|
474
|
+
return this._connection.send("GetMetrics", request, "json", false, abortSignal, "MetricsResponse");
|
|
475
475
|
}
|
|
476
476
|
|
|
477
|
-
GetNodeGroupUsage(request: Partial<WsMachine.GetNodeGroupUsageRequest
|
|
478
|
-
return this._connection.send("GetNodeGroupUsage", request, "json", false,
|
|
477
|
+
GetNodeGroupUsage(request: Partial<WsMachine.GetNodeGroupUsageRequest>, abortSignal?: AbortSignal): Promise<WsMachine.GetNodeGroupUsageResponse> {
|
|
478
|
+
return this._connection.send("GetNodeGroupUsage", request, "json", false, abortSignal, "GetNodeGroupUsageResponse");
|
|
479
479
|
}
|
|
480
480
|
|
|
481
|
-
GetTargetClusterInfo(request: Partial<WsMachine.GetTargetClusterInfoRequest
|
|
482
|
-
return this._connection.send("GetTargetClusterInfo", request, "json", false,
|
|
481
|
+
GetTargetClusterInfo(request: Partial<WsMachine.GetTargetClusterInfoRequest>, abortSignal?: AbortSignal): Promise<WsMachine.GetTargetClusterInfoResponse> {
|
|
482
|
+
return this._connection.send("GetTargetClusterInfo", request, "json", false, abortSignal, "GetTargetClusterInfoResponse");
|
|
483
483
|
}
|
|
484
484
|
|
|
485
|
-
GetTargetClusterUsage(request: Partial<WsMachine.GetTargetClusterUsageRequest
|
|
486
|
-
return this._connection.send("GetTargetClusterUsage", request, "json", false,
|
|
485
|
+
GetTargetClusterUsage(request: Partial<WsMachine.GetTargetClusterUsageRequest>, abortSignal?: AbortSignal): Promise<WsMachine.GetTargetClusterUsageResponse> {
|
|
486
|
+
return this._connection.send("GetTargetClusterUsage", request, "json", false, abortSignal, "GetTargetClusterUsageResponse");
|
|
487
487
|
}
|
|
488
488
|
|
|
489
|
-
Ping(request: Partial<WsMachine.ws_machinePingRequest
|
|
490
|
-
return this._connection.send("Ping", request, "json", false,
|
|
489
|
+
Ping(request: Partial<WsMachine.ws_machinePingRequest>, abortSignal?: AbortSignal): Promise<WsMachine.ws_machinePingResponse> {
|
|
490
|
+
return this._connection.send("Ping", request, "json", false, abortSignal, "ws_machinePingResponse");
|
|
491
491
|
}
|
|
492
492
|
|
|
493
|
-
UpdateComponentStatus(request: Partial<WsMachine.UpdateComponentStatusRequest
|
|
494
|
-
return this._connection.send("UpdateComponentStatus", request, "json", false,
|
|
493
|
+
UpdateComponentStatus(request: Partial<WsMachine.UpdateComponentStatusRequest>, abortSignal?: AbortSignal): Promise<WsMachine.UpdateComponentStatusResponse> {
|
|
494
|
+
return this._connection.send("UpdateComponentStatus", request, "json", false, abortSignal, "UpdateComponentStatusResponse");
|
|
495
495
|
}
|
|
496
496
|
|
|
497
497
|
}
|
package/types/ecl/workunit.d.ts
CHANGED
|
@@ -174,6 +174,7 @@ export declare class Workunit extends StateObject<UWorkunitState, IWorkunitState
|
|
|
174
174
|
get NoAccess(): boolean;
|
|
175
175
|
get ECLWUProcessList(): WsWorkunits.ECLWUProcessList;
|
|
176
176
|
get CostSavingPotential(): number;
|
|
177
|
+
get FailureDesc(): string;
|
|
177
178
|
static create(optsConnection: IOptions | IConnection): Promise<Workunit>;
|
|
178
179
|
static attach(optsConnection: IOptions | IConnection, wuid: string, state?: IWorkunitState): Workunit;
|
|
179
180
|
static existsLocal(baseUrl: string, wuid: string): boolean;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { FileSprayServiceBase, FileSpray } from "./wsdl/FileSpray/v1.
|
|
1
|
+
import { FileSprayServiceBase, FileSpray } from "./wsdl/FileSpray/v1.29/FileSpray.ts";
|
|
2
2
|
export { FileSpray };
|
|
3
3
|
type UpdateDFUWorkunitMinusWU = Omit<FileSpray.UpdateDFUWorkunit, "wu">;
|
|
4
4
|
type UpdateDFUWorkunitWU = FileSpray.UpdateDFUWorkunit["wu"];
|
|
@@ -14,19 +14,6 @@ export declare enum FileSprayStates {
|
|
|
14
14
|
aborting = 8,
|
|
15
15
|
notfound = 999
|
|
16
16
|
}
|
|
17
|
-
export declare enum DFUWUTypes {
|
|
18
|
-
Copy = "copy",
|
|
19
|
-
Remove = "remove",
|
|
20
|
-
Move = "move",
|
|
21
|
-
Rename = "rename",
|
|
22
|
-
Replicate = "replicate",
|
|
23
|
-
Import = "import",
|
|
24
|
-
Export = "export",
|
|
25
|
-
Monitor = "monitor",
|
|
26
|
-
Copymerge = "copymerge",
|
|
27
|
-
Supercopy = "supercopy",
|
|
28
|
-
Publish = "publish"
|
|
29
|
-
}
|
|
30
17
|
export interface UpdateDFUWorkunitEx extends UpdateDFUWorkunitMinusWU {
|
|
31
18
|
wu?: Partial<UpdateDFUWorkunitWU>;
|
|
32
19
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { XMLNode } from "@hpcc-js/util";
|
|
2
|
-
import { WsWorkunits, WorkunitsServiceBase } from "./wsdl/WsWorkunits/v2.
|
|
2
|
+
import { WsWorkunits, WorkunitsServiceBase } from "./wsdl/WsWorkunits/v2.08/WsWorkunits.ts";
|
|
3
3
|
import { IConnection, IOptions } from "../connection.ts";
|
|
4
4
|
export { WsWorkunits };
|
|
5
5
|
export declare enum WUStateID {
|