@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.
Files changed (43) 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 +10 -10
  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 +4 -4
  10. package/src/services/wsPackageProcess.ts +1 -1
  11. package/src/services/wsWorkunits.ts +1 -1
  12. package/src/services/wsdl/FileSpray/v1.27/FileSpray.ts +538 -538
  13. package/src/services/wsdl/WsCloud/v1.02/WsCloud.ts +21 -21
  14. package/src/services/wsdl/WsDFUXRef/v1.04/WsDFUXRef.ts +70 -69
  15. package/src/services/wsdl/WsDali/v1.07/WsDali.ts +72 -72
  16. package/src/services/wsdl/WsDfu/v1.68/WsDfu.ts +1301 -0
  17. package/src/services/wsdl/WsESDLConfig/v1.5/WsESDLConfig.ts +366 -0
  18. package/src/services/wsdl/WsFileIO/v1.01/WsFileIO.ts +32 -32
  19. package/src/services/wsdl/WsPackageProcess/v1.08/WsPackageProcess.ts +503 -0
  20. package/src/services/wsdl/WsSasha/v1.01/WsSasha.ts +18 -18
  21. package/src/services/wsdl/WsTopology/v1.33/WsTopology.ts +383 -383
  22. package/src/services/wsdl/WsWorkunits/v2.05/WsWorkunits.ts +3177 -0
  23. package/src/services/wsdl/ws_access/v1.17/ws_access.ts +319 -319
  24. package/src/services/wsdl/ws_account/v1.07/ws_account.ts +39 -39
  25. package/src/services/wsdl/ws_codesign/v1.1/ws_codesign.ts +26 -26
  26. package/src/services/wsdl/ws_elk/v1/ws_elk.ts +14 -14
  27. package/src/services/wsdl/wsstore/v1.02/wsstore.ts +72 -72
  28. package/types/services/wsPackageProcess.d.ts +1 -1
  29. package/types/services/wsWorkunits.d.ts +1 -1
  30. package/types/services/wsdl/FileSpray/v1.27/FileSpray.d.ts +506 -506
  31. package/types/services/wsdl/WsCloud/v1.02/WsCloud.d.ts +18 -18
  32. package/types/services/wsdl/WsDFUXRef/v1.04/WsDFUXRef.d.ts +58 -57
  33. package/types/services/wsdl/WsDali/v1.07/WsDali.d.ts +42 -42
  34. package/types/services/wsdl/WsPackageProcess/{v1.07 → v1.08}/WsPackageProcess.d.ts +121 -118
  35. package/types/services/wsdl/WsSasha/v1.01/WsSasha.d.ts +13 -13
  36. package/types/services/wsdl/WsTopology/v1.33/WsTopology.d.ts +360 -360
  37. package/types/services/wsdl/WsWorkunits/v2.05/WsWorkunits.d.ts +2571 -0
  38. package/types/services/wsdl/ws_access/v1.17/ws_access.d.ts +268 -268
  39. package/types/services/wsdl/ws_account/v1.07/ws_account.d.ts +34 -34
  40. package/types/services/wsdl/ws_codesign/v1.1/ws_codesign.d.ts +22 -22
  41. package/types/services/wsdl/ws_elk/v1/ws_elk.d.ts +12 -12
  42. package/types/services/wsdl/wsstore/v1.02/wsstore.d.ts +61 -61
  43. 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: string;
51
- Audience: string;
52
- Source: string;
53
- Message: string;
50
+ Code?: string;
51
+ Audience?: string;
52
+ Source?: string;
53
+ Message?: string;
54
54
  }
55
55
 
56
56
  export interface Exceptions {
57
- Source: string;
58
- Exception: Exception[];
57
+ Source?: string;
58
+ Exception?: Exception[];
59
59
  }
60
60
 
61
61
  export interface SystemLogResponse {
62
- Exceptions: Exceptions;
63
- thefile: base64Binary;
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: string;
72
- WorkUnit: string;
71
+ Name?: string;
72
+ WorkUnit?: string;
73
73
  }
74
74
 
75
75
  export interface TpQueues {
76
- TpQueue: TpQueue[];
76
+ TpQueue?: TpQueue[];
77
77
  }
78
78
 
79
79
  export interface TpClusterInfoResponse {
80
- Exceptions: Exceptions;
81
- Name: string;
82
- WorkUnit: string;
83
- TpQueues: 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: 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;
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: TpMachine[];
106
+ TpMachine?: TpMachine[];
107
107
  }
108
108
 
109
109
  export interface TpCluster {
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;
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: TpCluster[];
125
+ TpCluster?: TpCluster[];
126
126
  }
127
127
 
128
128
  export interface TpClusterQueryResponse {
129
- Exceptions: Exceptions;
130
- EnableSNMP: boolean;
131
- AcceptLanguage: string;
132
- TpClusters: TpClusters;
129
+ Exceptions?: Exceptions;
130
+ EnableSNMP?: boolean;
131
+ AcceptLanguage?: string;
132
+ TpClusters?: TpClusters;
133
133
  }
134
134
 
135
135
  export interface ComponentNames {
136
- Item: string[];
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: string;
145
- Configuration: string;
144
+ ComponentName?: string;
145
+ Configuration?: string;
146
146
  }
147
147
 
148
148
  export interface Results {
149
- Result: Result[];
149
+ Result?: Result[];
150
150
  }
151
151
 
152
152
  export interface TpComponentConfigurationResponse {
153
- Exceptions: Exceptions;
154
- ConfigFormat: TpConfigResponseFormat;
155
- Results: 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: string[];
163
+ Item?: string[];
164
164
  }
165
165
 
166
166
  export interface TpConfiguredComponentsResponse {
167
- Exceptions: Exceptions;
168
- ConfiguredComponents: 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: string;
178
- Description: string;
179
- Build: string;
180
- Path: string;
181
- ECLWatchVisible: boolean;
182
- UMask: string;
183
- TpMachines: 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: TpDropZone[];
187
+ TpDropZone?: TpDropZone[];
188
188
  }
189
189
 
190
190
  export interface TpDropZoneQueryResponse {
191
- Exceptions: Exceptions;
192
- TpDropZones: 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: Exceptions;
207
- FileContents: base64Binary;
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: string;
216
- LongName: string;
217
- FolderName: string;
218
- WidgetName: string;
215
+ ShortName?: string;
216
+ LongName?: string;
217
+ FolderName?: string;
218
+ WidgetName?: string;
219
219
  }
220
220
 
221
221
  export interface Plugins {
222
- Plugin: Plugin[];
222
+ Plugin?: Plugin[];
223
223
  }
224
224
 
225
225
  export interface TpGetServicePluginsResponse {
226
- Exceptions: Exceptions;
227
- Plugins: 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: string;
236
- Kind: string;
237
- ReplicateOutputs: boolean;
235
+ Name?: string;
236
+ Kind?: string;
237
+ ReplicateOutputs?: boolean;
238
238
  }
239
239
 
240
240
  export interface TpGroups {
241
- TpGroup: TpGroup[];
241
+ TpGroup?: TpGroup[];
242
242
  }
243
243
 
244
244
  export interface TpGroupQueryResponse {
245
- Exceptions: Exceptions;
246
- TpGroups: 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: string;
256
- Path: string;
257
- Host: string;
258
- IsDir: boolean;
259
- FileSize: long;
260
- Modifiedtime: string;
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: LogFileStruct[];
264
+ LogFileStruct?: LogFileStruct[];
265
265
  }
266
266
 
267
267
  export interface TpListLogFilesResponse {
268
- Exceptions: Exceptions;
269
- Files: 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: string;
278
- Type: string;
279
- IsDefault: boolean;
277
+ Name?: string;
278
+ Type?: string;
279
+ IsDefault?: boolean;
280
280
  }
281
281
 
282
282
  export interface TargetClusters {
283
- TpClusterNameType: TpClusterNameType[];
283
+ TpClusterNameType?: TpClusterNameType[];
284
284
  }
285
285
 
286
286
  export interface TpListTargetClustersResponse {
287
- Exceptions: Exceptions;
288
- TargetClusters: 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: string[];
308
+ Item?: string[];
309
309
  }
310
310
 
311
311
  export interface TpLogFileResponse {
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;
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: string;
343
- Queue: string;
344
- LanguageVersion: string;
345
- Process: string;
346
- Type: string;
347
- QueriesOnly: boolean;
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: TpLogicalCluster[];
351
+ TpLogicalCluster?: TpLogicalCluster[];
352
352
  }
353
353
 
354
354
  export interface TpLogicalClusterQueryResponse {
355
- Exceptions: Exceptions;
356
- TpLogicalClusters: 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: 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;
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: Exceptions;
381
- MachineInfo: 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: 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;
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: 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;
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: TpDali[];
431
+ TpDali?: TpDali[];
432
432
  }
433
433
 
434
434
  export interface TpDfuServer {
435
- Name: string;
436
- Description: string;
437
- Build: string;
438
- Queue: string;
439
- Type: string;
440
- Path: string;
441
- LogDirectory: string;
442
- TpMachines: 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: TpDfuServer[];
446
+ TpDfuServer?: TpDfuServer[];
447
447
  }
448
448
 
449
449
  export interface TpDkcSlave {
450
- Name: string;
451
- Description: string;
452
- Build: string;
453
- Path: string;
454
- TpMachines: 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: TpDkcSlave[];
458
+ TpDkcSlave?: TpDkcSlave[];
459
459
  }
460
460
 
461
461
  export interface TpEclAgent {
462
- Name: string;
463
- Description: string;
464
- Build: string;
465
- Type: string;
466
- Path: string;
467
- DaliServer: string;
468
- LogDir: string;
469
- TpMachines: 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: TpEclAgent[];
473
+ TpEclAgent?: TpEclAgent[];
474
474
  }
475
475
 
476
476
  export interface TpEclServer {
477
- Name: string;
478
- Description: string;
479
- Build: string;
480
- LogDirectory: string;
481
- Type: string;
482
- Path: string;
483
- TpMachines: 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: TpEclServer[];
487
+ TpEclServer?: TpEclServer[];
488
488
  }
489
489
 
490
490
  export interface TpEclCCServers {
491
- TpEclServer: TpEclServer[];
491
+ TpEclServer?: TpEclServer[];
492
492
  }
493
493
 
494
494
  export interface TpEclScheduler {
495
- Name: string;
496
- Description: string;
497
- Build: string;
498
- LogDirectory: string;
499
- Type: string;
500
- Path: string;
501
- TpMachines: 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: TpEclScheduler[];
505
+ TpEclScheduler?: TpEclScheduler[];
506
506
  }
507
507
 
508
508
  export interface TpBinding {
509
- Name: string;
510
- Service: string;
511
- ServiceType: string;
512
- BindingType: string;
513
- ServiceBuildSet: string;
514
- Port: string;
515
- Protocol: string;
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: TpBinding[];
519
+ TpBinding?: TpBinding[];
520
520
  }
521
521
 
522
522
  export interface TpEspServer {
523
- Name: string;
524
- Description: string;
525
- Build: string;
526
- Type: string;
527
- Path: string;
528
- LogDirectory: string;
529
- TpMachines: TpMachines;
530
- TpBindings: 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: TpEspServer[];
534
+ TpEspServer?: TpEspServer[];
535
535
  }
536
536
 
537
537
  export interface TpFTSlave {
538
- Name: string;
539
- Description: string;
540
- Build: string;
541
- Path: string;
542
- TpMachines: 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: TpFTSlave[];
546
+ TpFTSlave?: TpFTSlave[];
547
547
  }
548
548
 
549
549
  export interface TpGenesisServer {
550
- Name: string;
551
- Description: string;
552
- Build: string;
553
- Path: string;
554
- TpMachines: 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: TpGenesisServer[];
558
+ TpGenesisServer?: TpGenesisServer[];
559
559
  }
560
560
 
561
561
  export interface TpLdapServer {
562
- Name: string;
563
- Description: string;
564
- Build: string;
565
- Path: string;
566
- TpMachines: 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: TpLdapServer[];
570
+ TpLdapServer?: TpLdapServer[];
571
571
  }
572
572
 
573
573
  export interface TpMySqlServer {
574
- Name: string;
575
- Description: string;
576
- Build: string;
577
- Path: string;
578
- TpMachines: 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: TpMySqlServer[];
582
+ TpMySqlServer?: TpMySqlServer[];
583
583
  }
584
584
 
585
585
  export interface TpSashaServer {
586
- Name: string;
587
- Description: string;
588
- Build: string;
589
- Path: string;
590
- LogDirectory: string;
591
- TpMachines: 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: TpSashaServer[];
595
+ TpSashaServer?: TpSashaServer[];
596
596
  }
597
597
 
598
598
  export interface TpSparkThor {
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;
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: TpSparkThor[];
616
+ TpSparkThor?: TpSparkThor[];
617
617
  }
618
618
 
619
619
  export interface ServiceList {
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;
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: 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;
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: Exceptions;
658
- TpSetMachineStatusResult: boolean;
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: Exceptions;
669
- TpSwapNodeResult: boolean;
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: string;
680
- Prefix: string;
681
- Type: string;
682
- TpClusters: TpClusters;
683
- TpEclCCServers: TpEclCCServers;
684
- TpEclServers: TpEclServers;
685
- TpEclAgents: TpEclAgents;
686
- TpEclSchedulers: 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: TpTargetCluster[];
690
+ TpTargetCluster?: TpTargetCluster[];
691
691
  }
692
692
 
693
693
  export interface TpTargetClusterQueryResponse {
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;
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: 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;
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: Exceptions;
732
- thefile: base64Binary;
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: Partial<WsTopology.WsTopologyPingRequest>): Promise<WsTopology.WsTopologyPingResponse> {
744
- return this._connection.send("Ping", request, "json", false, undefined, "WsTopologyPingResponse");
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: Partial<WsTopology.SystemLogRequest>): Promise<WsTopology.SystemLogResponse> {
748
- return this._connection.send("SystemLog", request, "json", false, undefined, "SystemLogResponse");
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: Partial<WsTopology.TpClusterInfoRequest>): Promise<WsTopology.TpClusterInfoResponse> {
752
- return this._connection.send("TpClusterInfo", request, "json", false, undefined, "TpClusterInfoResponse");
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: Partial<WsTopology.TpClusterQueryRequest>): Promise<WsTopology.TpClusterQueryResponse> {
756
- return this._connection.send("TpClusterQuery", request, "json", false, undefined, "TpClusterQueryResponse");
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: Partial<WsTopology.TpComponentConfigurationRequest>): Promise<WsTopology.TpComponentConfigurationResponse> {
760
- return this._connection.send("TpComponentConfiguration", request, "json", false, undefined, "TpComponentConfigurationResponse");
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: Partial<WsTopology.TpConfiguredComponentsRequest>): Promise<WsTopology.TpConfiguredComponentsResponse> {
764
- return this._connection.send("TpConfiguredComponents", request, "json", false, undefined, "TpConfiguredComponentsResponse");
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: Partial<WsTopology.TpDropZoneQueryRequest>): Promise<WsTopology.TpDropZoneQueryResponse> {
768
- return this._connection.send("TpDropZoneQuery", request, "json", false, undefined, "TpDropZoneQueryResponse");
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: Partial<WsTopology.TpGetComponentFileRequest>): Promise<WsTopology.TpGetComponentFileResponse> {
772
- return this._connection.send("TpGetComponentFile", request, "json", false, undefined, "TpGetComponentFileResponse");
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: Partial<WsTopology.TpGetServicePluginsRequest>): Promise<WsTopology.TpGetServicePluginsResponse> {
776
- return this._connection.send("TpGetServicePlugins", request, "json", false, undefined, "TpGetServicePluginsResponse");
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: Partial<WsTopology.TpGroupQueryRequest>): Promise<WsTopology.TpGroupQueryResponse> {
780
- return this._connection.send("TpGroupQuery", request, "json", false, undefined, "TpGroupQueryResponse");
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: Partial<WsTopology.TpListLogFilesRequest>): Promise<WsTopology.TpListLogFilesResponse> {
784
- return this._connection.send("TpListLogFiles", request, "json", false, undefined, "TpListLogFilesResponse");
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: Partial<WsTopology.TpListTargetClustersRequest>): Promise<WsTopology.TpListTargetClustersResponse> {
788
- return this._connection.send("TpListTargetClusters", request, "json", false, undefined, "TpListTargetClustersResponse");
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: Partial<WsTopology.TpLogFileRequest>): Promise<WsTopology.TpLogFileResponse> {
792
- return this._connection.send("TpLogFile", request, "json", false, undefined, "TpLogFileResponse");
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: Partial<WsTopology.TpLogFileRequest>): Promise<WsTopology.TpLogFileResponse> {
796
- return this._connection.send("TpLogFileDisplay", request, "json", false, undefined, "TpLogFileResponse");
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: Partial<WsTopology.TpLogicalClusterQueryRequest>): Promise<WsTopology.TpLogicalClusterQueryResponse> {
800
- return this._connection.send("TpLogicalClusterQuery", request, "json", false, undefined, "TpLogicalClusterQueryResponse");
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: Partial<WsTopology.TpMachineInfoRequest>): Promise<WsTopology.TpMachineInfoResponse> {
804
- return this._connection.send("TpMachineInfo", request, "json", false, undefined, "TpMachineInfoResponse");
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: Partial<WsTopology.TpMachineQueryRequest>): Promise<WsTopology.TpMachineQueryResponse> {
808
- return this._connection.send("TpMachineQuery", request, "json", false, undefined, "TpMachineQueryResponse");
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: Partial<WsTopology.TpServiceQueryRequest>): Promise<WsTopology.TpServiceQueryResponse> {
812
- return this._connection.send("TpServiceQuery", request, "json", false, undefined, "TpServiceQueryResponse");
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: Partial<WsTopology.TpSetMachineStatusRequest>): Promise<WsTopology.TpSetMachineStatusResponse> {
816
- return this._connection.send("TpSetMachineStatus", request, "json", false, undefined, "TpSetMachineStatusResponse");
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: Partial<WsTopology.TpSwapNodeRequest>): Promise<WsTopology.TpSwapNodeResponse> {
820
- return this._connection.send("TpSwapNode", request, "json", false, undefined, "TpSwapNodeResponse");
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: Partial<WsTopology.TpTargetClusterQueryRequest>): Promise<WsTopology.TpTargetClusterQueryResponse> {
824
- return this._connection.send("TpTargetClusterQuery", request, "json", false, undefined, "TpTargetClusterQueryResponse");
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: Partial<WsTopology.TpThorStatusRequest>): Promise<WsTopology.TpThorStatusResponse> {
828
- return this._connection.send("TpThorStatus", request, "json", false, undefined, "TpThorStatusResponse");
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: Partial<WsTopology.TpXMLFileRequest>): Promise<WsTopology.TpXMLFileResponse> {
832
- return this._connection.send("TpXMLFile", request, "json", false, undefined, "TpXMLFileResponse");
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
  }