@hpcc-js/comms 3.15.5 → 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.
Files changed (53) hide show
  1. package/dist/browser/index.js +1 -1
  2. package/dist/browser/index.js.map +1 -1
  3. package/dist/browser/index.umd.cjs +1 -1
  4. package/dist/browser/index.umd.cjs.map +1 -1
  5. package/dist/node/index.cjs +9 -9
  6. package/dist/node/index.cjs.map +4 -4
  7. package/dist/node/index.js +9 -9
  8. package/dist/node/index.js.map +4 -4
  9. package/package.json +13 -11
  10. package/src/ecl/scope.ts +1 -2
  11. package/src/ecl/workunit.ts +1 -0
  12. package/src/services/fileSpray.ts +1 -26
  13. package/src/services/wsPackageProcess.ts +1 -1
  14. package/src/services/wsWorkunits.ts +1 -1
  15. package/src/services/wsdl/FileSpray/v1.27/FileSpray.ts +538 -538
  16. package/src/services/wsdl/FileSpray/v1.29/FileSpray.ts +946 -0
  17. package/src/services/wsdl/WsCloud/v1.02/WsCloud.ts +21 -21
  18. package/src/services/wsdl/WsDFUXRef/v1.04/WsDFUXRef.ts +70 -69
  19. package/src/services/wsdl/WsDali/v1.07/WsDali.ts +72 -72
  20. package/src/services/wsdl/WsDfu/v1.68/WsDfu.ts +1301 -0
  21. package/src/services/wsdl/WsESDLConfig/v1.5/WsESDLConfig.ts +366 -0
  22. package/src/services/wsdl/WsFileIO/v1.01/WsFileIO.ts +32 -32
  23. package/src/services/wsdl/WsPackageProcess/v1.08/WsPackageProcess.ts +503 -0
  24. package/src/services/wsdl/WsSasha/v1.01/WsSasha.ts +18 -18
  25. package/src/services/wsdl/WsTopology/v1.33/WsTopology.ts +383 -383
  26. package/src/services/wsdl/WsWorkunits/v2.05/WsWorkunits.ts +3177 -0
  27. package/src/services/wsdl/WsWorkunits/v2.08/WsWorkunits.ts +3179 -0
  28. package/src/services/wsdl/ws_access/v1.17/ws_access.ts +319 -319
  29. package/src/services/wsdl/ws_account/v1.07/ws_account.ts +39 -39
  30. package/src/services/wsdl/ws_codesign/v1.1/ws_codesign.ts +26 -26
  31. package/src/services/wsdl/ws_elk/v1/ws_elk.ts +14 -14
  32. package/src/services/wsdl/ws_machine/v1.19/ws_machine.ts +215 -215
  33. package/src/services/wsdl/wsstore/v1.02/wsstore.ts +72 -72
  34. package/types/ecl/workunit.d.ts +1 -0
  35. package/types/services/fileSpray.d.ts +1 -14
  36. package/types/services/wsPackageProcess.d.ts +1 -1
  37. package/types/services/wsWorkunits.d.ts +1 -1
  38. package/types/services/wsdl/FileSpray/v1.29/FileSpray.d.ts +751 -0
  39. package/types/services/wsdl/WsCloud/v1.02/WsCloud.d.ts +18 -18
  40. package/types/services/wsdl/WsDFUXRef/v1.04/WsDFUXRef.d.ts +58 -57
  41. package/types/services/wsdl/WsDali/v1.07/WsDali.d.ts +42 -42
  42. package/types/services/wsdl/WsPackageProcess/{v1.07 → v1.08}/WsPackageProcess.d.ts +121 -118
  43. package/types/services/wsdl/WsSasha/v1.01/WsSasha.d.ts +13 -13
  44. package/types/services/wsdl/WsTopology/v1.33/WsTopology.d.ts +360 -360
  45. package/types/services/wsdl/WsWorkunits/v2.08/WsWorkunits.d.ts +2573 -0
  46. package/types/services/wsdl/ws_access/v1.17/ws_access.d.ts +268 -268
  47. package/types/services/wsdl/ws_account/v1.07/ws_account.d.ts +34 -34
  48. package/types/services/wsdl/ws_codesign/v1.1/ws_codesign.d.ts +22 -22
  49. package/types/services/wsdl/ws_elk/v1/ws_elk.d.ts +12 -12
  50. package/types/services/wsdl/ws_machine/v1.19/ws_machine.d.ts +205 -205
  51. package/types/services/wsdl/wsstore/v1.02/wsstore.d.ts +61 -61
  52. package/types/services/wsdl/FileSpray/v1.27/FileSpray.d.ts +0 -736
  53. package/types/services/wsdl/WsWorkunits/v2.04/WsWorkunits.d.ts +0 -2565
@@ -30,70 +30,70 @@ export namespace WsMachine {
30
30
  }
31
31
 
32
32
  export interface Exception {
33
- Code: string;
34
- Audience: string;
35
- Source: string;
36
- Message: string;
33
+ Code?: string;
34
+ Audience?: string;
35
+ Source?: string;
36
+ Message?: string;
37
37
  }
38
38
 
39
39
  export interface Exceptions {
40
- Source: string;
41
- Exception: Exception[];
40
+ Source?: string;
41
+ Exception?: Exception[];
42
42
  }
43
43
 
44
44
  export interface StatusReport {
45
- StatusID: int;
46
- Status: string;
47
- StatusDetails: string;
48
- Reporter: string;
49
- TimeReported: long;
50
- TimeReportedStr: string;
51
- TimeCached: string;
52
- URL: string;
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: StatusReport[];
56
+ StatusReport?: StatusReport[];
57
57
  }
58
58
 
59
59
  export interface ComponentStatus {
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;
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: ComponentStatus[];
72
+ ComponentStatus?: ComponentStatus[];
73
73
  }
74
74
 
75
75
  export interface GetComponentStatusResponse {
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;
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: string;
92
- Name: string;
91
+ Type?: string;
92
+ Name?: string;
93
93
  }
94
94
 
95
95
  export interface Components {
96
- Component: 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: string;
106
- Path: string;
107
- Description: string;
108
- InUse: long;
109
- Available: long;
110
- PercentAvailable: int;
111
- Exception: string;
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: DiskUsage[];
115
+ DiskUsage?: DiskUsage[];
116
116
  }
117
117
 
118
118
  export interface MachineUsage {
119
- Name: string;
120
- NetAddress: string;
121
- Description: string;
122
- Exception: string;
123
- DiskUsages: 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: MachineUsage[];
127
+ MachineUsage?: MachineUsage[];
128
128
  }
129
129
 
130
130
  export interface ComponentUsage {
131
- Type: string;
132
- Name: string;
133
- Description: string;
134
- Exception: string;
135
- MachineUsages: 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: ComponentUsage[];
139
+ ComponentUsage?: ComponentUsage[];
140
140
  }
141
141
 
142
142
  export interface GetComponentUsageResponse {
143
- Exceptions: Exceptions;
144
- ComponentUsages: ComponentUsages;
145
- UsageTime: string;
143
+ Exceptions?: Exceptions;
144
+ ComponentUsages?: ComponentUsages;
145
+ UsageTime?: string;
146
146
  }
147
147
 
148
148
  export interface Addresses {
149
- Item: string[];
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: 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;
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: string[];
202
+ Item?: string[];
203
203
  }
204
204
 
205
205
  export interface ProcessorInfo {
206
- Type: string;
207
- Load: int;
206
+ Type?: string;
207
+ Load?: int;
208
208
  }
209
209
 
210
210
  export interface Processors {
211
- ProcessorInfo: ProcessorInfo[];
211
+ ProcessorInfo?: ProcessorInfo[];
212
212
  }
213
213
 
214
214
  export interface StorageInfo {
215
- Description: string;
216
- Type: string;
217
- Available: long;
218
- PercentAvail: int;
219
- Total: long;
220
- Failures: int;
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: StorageInfo[];
224
+ StorageInfo?: StorageInfo[];
225
225
  }
226
226
 
227
227
  export interface SWRunInfo {
228
- Name: string;
229
- Instances: int;
230
- State: int;
228
+ Name?: string;
229
+ Instances?: int;
230
+ State?: int;
231
231
  }
232
232
 
233
233
  export interface Running {
234
- SWRunInfo: SWRunInfo[];
234
+ SWRunInfo?: SWRunInfo[];
235
235
  }
236
236
 
237
237
  export interface PhysicalMemory {
238
- Description: string;
239
- Type: string;
240
- Available: long;
241
- PercentAvail: int;
242
- Total: long;
243
- Failures: int;
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: string;
248
- Type: string;
249
- Available: long;
250
- PercentAvail: int;
251
- Total: long;
252
- Failures: int;
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: int;
257
- State: int;
258
- UpTime: string;
256
+ Condition?: int;
257
+ State?: int;
258
+ UpTime?: string;
259
259
  }
260
260
 
261
261
  export interface MachineInfoEx {
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;
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: MachineInfoEx[];
289
+ MachineInfoEx?: MachineInfoEx[];
290
290
  }
291
291
 
292
292
  export interface GetMachineInfoResponse {
293
- Exceptions: Exceptions;
294
- RequestInfo: RequestInfo;
295
- Columns: Columns;
296
- Machines: Machines;
297
- TimeStamp: string;
298
- UserName: string;
299
- Password: string;
300
- AcceptLanguage: string;
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: Addresses;
305
- ClusterType: TpMachineType;
304
+ Addresses?: Addresses;
305
+ ClusterType?: TpMachineType;
306
306
  }
307
307
 
308
308
  export interface GetMachineInfoResponseEx {
309
- Exceptions: Exceptions;
310
- AcceptLanguage: string;
311
- Machines: Machines;
309
+ Exceptions?: Exceptions;
310
+ AcceptLanguage?: string;
311
+ Machines?: Machines;
312
312
  }
313
313
 
314
314
  export interface ShowColumns {
315
- Item: string[];
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: Exceptions;
330
- FieldInformation: string;
331
- Metrics: string;
332
- AutoRefresh: int;
333
- Cluster: string;
334
- SelectAllChecked: boolean;
335
- AutoUpdate: boolean;
336
- AcceptLanguage: string;
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: string[];
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: string;
350
- Description: string;
351
- Exception: string;
352
- ComponentUsages: ComponentUsages;
349
+ Name?: string;
350
+ Description?: string;
351
+ Exception?: string;
352
+ ComponentUsages?: ComponentUsages;
353
353
  }
354
354
 
355
355
  export interface NodeGroupUsages {
356
- NodeGroupUsage: NodeGroupUsage[];
356
+ NodeGroupUsage?: NodeGroupUsage[];
357
357
  }
358
358
 
359
359
  export interface GetNodeGroupUsageResponse {
360
- Exceptions: Exceptions;
361
- NodeGroupUsages: NodeGroupUsages;
362
- UsageTime: string;
360
+ Exceptions?: Exceptions;
361
+ NodeGroupUsages?: NodeGroupUsages;
362
+ UsageTime?: string;
363
363
  }
364
364
 
365
365
  export interface TargetClusters {
366
- Item: string[];
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: MachineInfoEx[];
386
+ MachineInfoEx?: MachineInfoEx[];
387
387
  }
388
388
 
389
389
  export interface TargetClusterInfo {
390
- Name: string;
391
- Type: string;
392
- Processes: Processes;
390
+ Name?: string;
391
+ Type?: string;
392
+ Processes?: Processes;
393
393
  }
394
394
 
395
395
  export interface TargetClusterInfoList {
396
- TargetClusterInfo: TargetClusterInfo[];
396
+ TargetClusterInfo?: TargetClusterInfo[];
397
397
  }
398
398
 
399
399
  export interface GetTargetClusterInfoResponse {
400
- Exceptions: Exceptions;
401
- Columns: Columns;
402
- RequestInfo: RequestInfo;
403
- TargetClusterInfoList: TargetClusterInfoList;
404
- TimeStamp: string;
405
- AcceptLanguage: string;
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: string;
415
- Description: string;
416
- Exception: string;
417
- ComponentUsages: ComponentUsages;
414
+ Name?: string;
415
+ Description?: string;
416
+ Exception?: string;
417
+ ComponentUsages?: ComponentUsages;
418
418
  }
419
419
 
420
420
  export interface TargetClusterUsages {
421
- TargetClusterUsage: TargetClusterUsage[];
421
+ TargetClusterUsage?: TargetClusterUsage[];
422
422
  }
423
423
 
424
424
  export interface GetTargetClusterUsageResponse {
425
- Exceptions: Exceptions;
426
- TargetClusterUsages: TargetClusterUsages;
427
- UsageTime: string;
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: Exceptions;
445
- StatusCode: int;
446
- Status: string;
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>): Promise<WsMachine.GetComponentStatusResponse> {
458
- return this._connection.send("GetComponentStatus", request, "json", false, undefined, "GetComponentStatusResponse");
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>): Promise<WsMachine.GetComponentUsageResponse> {
462
- return this._connection.send("GetComponentUsage", request, "json", false, undefined, "GetComponentUsageResponse");
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>): Promise<WsMachine.GetMachineInfoResponse> {
466
- return this._connection.send("GetMachineInfo", request, "json", false, undefined, "GetMachineInfoResponse");
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>): Promise<WsMachine.GetMachineInfoResponseEx> {
470
- return this._connection.send("GetMachineInfoEx", request, "json", false, undefined, "GetMachineInfoResponseEx");
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>): Promise<WsMachine.MetricsResponse> {
474
- return this._connection.send("GetMetrics", request, "json", false, undefined, "MetricsResponse");
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>): Promise<WsMachine.GetNodeGroupUsageResponse> {
478
- return this._connection.send("GetNodeGroupUsage", request, "json", false, undefined, "GetNodeGroupUsageResponse");
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>): Promise<WsMachine.GetTargetClusterInfoResponse> {
482
- return this._connection.send("GetTargetClusterInfo", request, "json", false, undefined, "GetTargetClusterInfoResponse");
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>): Promise<WsMachine.GetTargetClusterUsageResponse> {
486
- return this._connection.send("GetTargetClusterUsage", request, "json", false, undefined, "GetTargetClusterUsageResponse");
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>): Promise<WsMachine.ws_machinePingResponse> {
490
- return this._connection.send("Ping", request, "json", false, undefined, "ws_machinePingResponse");
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>): Promise<WsMachine.UpdateComponentStatusResponse> {
494
- return this._connection.send("UpdateComponentStatus", request, "json", false, undefined, "UpdateComponentStatusResponse");
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
  }