@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
@@ -19,142 +19,142 @@ export namespace FileSpray {
19
19
  }
20
20
 
21
21
  export interface AbortDFUWorkunit {
22
- wuid: string;
22
+ wuid?: string;
23
23
  }
24
24
 
25
25
  export interface Exception {
26
- Code: string;
27
- Audience: string;
28
- Source: string;
29
- Message: string;
26
+ Code?: string;
27
+ Audience?: string;
28
+ Source?: string;
29
+ Message?: string;
30
30
  }
31
31
 
32
32
  export interface Exceptions {
33
- Source: string;
34
- Exception: Exception[];
33
+ Source?: string;
34
+ Exception?: Exception[];
35
35
  }
36
36
 
37
37
  export interface AbortDFUWorkunitResponse {
38
- Exceptions: Exceptions;
38
+ Exceptions?: Exceptions;
39
39
  }
40
40
 
41
41
  export interface Copy {
42
- sourceLogicalName: string;
43
- destGroup: string;
44
- destGroupRoxie: string;
45
- destLogicalName: string;
46
- sourceDali: string;
47
- srcusername: string;
48
- srcpassword: string;
49
- overwrite: boolean;
50
- ensure: boolean;
51
- replicate: boolean;
52
- ReplicateOffset: int;
53
- maxConnections: int;
54
- throttle: int;
55
- transferBufferSize: int;
56
- nosplit: boolean;
57
- norecover: boolean;
58
- compress: boolean;
59
- Wrap: boolean;
60
- Multicopy: boolean;
61
- SourceDiffKeyName: string;
62
- DestDiffKeyName: string;
63
- superCopy: boolean;
64
- push: boolean;
65
- pull: boolean;
66
- ifnewer: boolean;
67
- noCommon: boolean;
68
- encrypt: string;
69
- decrypt: string;
70
- preserveCompression: boolean;
71
- DFUServerQueue: string;
72
- ExpireDays: int;
73
- KeyCompression: string;
42
+ sourceLogicalName?: string;
43
+ destGroup?: string;
44
+ destGroupRoxie?: string;
45
+ destLogicalName?: string;
46
+ sourceDali?: string;
47
+ srcusername?: string;
48
+ srcpassword?: string;
49
+ overwrite?: boolean;
50
+ ensure?: boolean;
51
+ replicate?: boolean;
52
+ ReplicateOffset?: int;
53
+ maxConnections?: int;
54
+ throttle?: int;
55
+ transferBufferSize?: int;
56
+ nosplit?: boolean;
57
+ norecover?: boolean;
58
+ compress?: boolean;
59
+ Wrap?: boolean;
60
+ Multicopy?: boolean;
61
+ SourceDiffKeyName?: string;
62
+ DestDiffKeyName?: string;
63
+ superCopy?: boolean;
64
+ push?: boolean;
65
+ pull?: boolean;
66
+ ifnewer?: boolean;
67
+ noCommon?: boolean;
68
+ encrypt?: string;
69
+ decrypt?: string;
70
+ preserveCompression?: boolean;
71
+ DFUServerQueue?: string;
72
+ ExpireDays?: int;
73
+ KeyCompression?: string;
74
74
  }
75
75
 
76
76
  export interface CopyResponse {
77
- Exceptions: Exceptions;
78
- result: string;
77
+ Exceptions?: Exceptions;
78
+ result?: string;
79
79
  }
80
80
 
81
81
  export interface CreateDFUPublisherWorkunit {
82
- DFUServerQueue: string;
82
+ DFUServerQueue?: string;
83
83
  }
84
84
 
85
85
  export interface result {
86
- ID: string;
87
- DFUServerName: string;
88
- ClusterName: string;
89
- JobName: string;
90
- Queue: string;
91
- User: string;
92
- isProtected: boolean;
93
- Command: int;
94
- CommandMessage: string;
95
- PercentDone: int;
96
- SecsLeft: int;
97
- ProgressMessage: string;
98
- SummaryMessage: string;
99
- State: int;
100
- SourceLogicalName: string;
101
- SourceIP: string;
102
- SourceFilePath: string;
103
- SourceDali: string;
104
- SourceRecordSize: int;
105
- SourceFormat: int;
106
- RowTag: string;
107
- SourceNumParts: int;
108
- SourceDirectory: string;
109
- DestLogicalName: string;
110
- DestGroupName: string;
111
- DestDirectory: string;
112
- DestIP: string;
113
- DestFilePath: string;
114
- DestFormat: int;
115
- DestNumParts: int;
116
- DestRecordSize: int;
117
- Replicate: boolean;
118
- Overwrite: boolean;
119
- Compress: boolean;
120
- SourceCsvSeparate: string;
121
- SourceCsvQuote: string;
122
- SourceCsvTerminate: string;
123
- SourceCsvEscape: string;
124
- TimeStarted: string;
125
- TimeStopped: string;
126
- StateMessage: string;
127
- MonitorEventName: string;
128
- MonitorSub: boolean;
129
- MonitorShotLimit: int;
130
- SourceDiffKeyName: string;
131
- DestDiffKeyName: string;
132
- Archived: boolean;
133
- encrypt: string;
134
- decrypt: string;
135
- failIfNoSourceFile: boolean;
136
- recordStructurePresent: boolean;
137
- quotedTerminator: boolean;
138
- preserveCompression: boolean;
139
- expireDays: int;
140
- PreserveFileParts: boolean;
141
- FileAccessCost: double;
142
- KbPerSecAve: int;
143
- KbPerSec: int;
86
+ ID?: string;
87
+ DFUServerName?: string;
88
+ ClusterName?: string;
89
+ JobName?: string;
90
+ Queue?: string;
91
+ User?: string;
92
+ isProtected?: boolean;
93
+ Command?: int;
94
+ CommandMessage?: string;
95
+ PercentDone?: int;
96
+ SecsLeft?: int;
97
+ ProgressMessage?: string;
98
+ SummaryMessage?: string;
99
+ State?: int;
100
+ SourceLogicalName?: string;
101
+ SourceIP?: string;
102
+ SourceFilePath?: string;
103
+ SourceDali?: string;
104
+ SourceRecordSize?: int;
105
+ SourceFormat?: int;
106
+ RowTag?: string;
107
+ SourceNumParts?: int;
108
+ SourceDirectory?: string;
109
+ DestLogicalName?: string;
110
+ DestGroupName?: string;
111
+ DestDirectory?: string;
112
+ DestIP?: string;
113
+ DestFilePath?: string;
114
+ DestFormat?: int;
115
+ DestNumParts?: int;
116
+ DestRecordSize?: int;
117
+ Replicate?: boolean;
118
+ Overwrite?: boolean;
119
+ Compress?: boolean;
120
+ SourceCsvSeparate?: string;
121
+ SourceCsvQuote?: string;
122
+ SourceCsvTerminate?: string;
123
+ SourceCsvEscape?: string;
124
+ TimeStarted?: string;
125
+ TimeStopped?: string;
126
+ StateMessage?: string;
127
+ MonitorEventName?: string;
128
+ MonitorSub?: boolean;
129
+ MonitorShotLimit?: int;
130
+ SourceDiffKeyName?: string;
131
+ DestDiffKeyName?: string;
132
+ Archived?: boolean;
133
+ encrypt?: string;
134
+ decrypt?: string;
135
+ failIfNoSourceFile?: boolean;
136
+ recordStructurePresent?: boolean;
137
+ quotedTerminator?: boolean;
138
+ preserveCompression?: boolean;
139
+ expireDays?: int;
140
+ PreserveFileParts?: boolean;
141
+ FileAccessCost?: double;
142
+ KbPerSecAve?: int;
143
+ KbPerSec?: int;
144
144
  }
145
145
 
146
146
  export interface CreateDFUPublisherWorkunitResponse {
147
- Exceptions: Exceptions;
148
- result: result;
147
+ Exceptions?: Exceptions;
148
+ result?: result;
149
149
  }
150
150
 
151
151
  export interface CreateDFUWorkunit {
152
- DFUServerQueue: string;
152
+ DFUServerQueue?: string;
153
153
  }
154
154
 
155
155
  export interface CreateDFUWorkunitResponse {
156
- Exceptions: Exceptions;
157
- result: result;
156
+ Exceptions?: Exceptions;
157
+ result?: result;
158
158
  }
159
159
 
160
160
  export interface DFUWUFileRequest {
@@ -164,8 +164,8 @@ export namespace FileSpray {
164
164
  }
165
165
 
166
166
  export interface DFUWUFileResponse {
167
- Exceptions: Exceptions;
168
- file: string;
167
+ Exceptions?: Exceptions;
168
+ file?: string;
169
169
  }
170
170
 
171
171
  export interface DFUWUSearchRequest {
@@ -173,16 +173,16 @@ export namespace FileSpray {
173
173
  }
174
174
 
175
175
  export interface ClusterNames {
176
- ClusterName: string[];
176
+ ClusterName?: string[];
177
177
  }
178
178
 
179
179
  export interface DFUWUSearchResponse {
180
- Exceptions: Exceptions;
181
- ClusterNames: ClusterNames;
180
+ Exceptions?: Exceptions;
181
+ ClusterNames?: ClusterNames;
182
182
  }
183
183
 
184
184
  export interface wuids {
185
- Item: string[];
185
+ Item?: string[];
186
186
  }
187
187
 
188
188
  export interface DFUWorkunitsActionRequest {
@@ -191,40 +191,40 @@ export namespace FileSpray {
191
191
  }
192
192
 
193
193
  export interface DFUActionResult {
194
- ID: string;
195
- Action: string;
196
- Result: string;
194
+ ID?: string;
195
+ Action?: string;
196
+ Result?: string;
197
197
  }
198
198
 
199
199
  export interface DFUActionResults {
200
- DFUActionResult: DFUActionResult[];
200
+ DFUActionResult?: DFUActionResult[];
201
201
  }
202
202
 
203
203
  export interface DFUWorkunitsActionResponse {
204
- Exceptions: Exceptions;
205
- FirstColumn: string;
206
- DFUActionResults: DFUActionResults;
204
+ Exceptions?: Exceptions;
205
+ FirstColumn?: string;
206
+ DFUActionResults?: DFUActionResults;
207
207
  }
208
208
 
209
209
  export interface DeleteDFUWorkunit {
210
- wuid: string;
210
+ wuid?: string;
211
211
  }
212
212
 
213
213
  export interface DeleteDFUWorkunitResponse {
214
- Exceptions: Exceptions;
215
- result: boolean;
214
+ Exceptions?: Exceptions;
215
+ result?: boolean;
216
216
  }
217
217
 
218
218
  export interface DeleteDFUWorkunits {
219
- wuids: wuids;
219
+ wuids?: wuids;
220
220
  }
221
221
 
222
222
  export interface DeleteDFUWorkunitsResponse {
223
- Exceptions: Exceptions;
223
+ Exceptions?: Exceptions;
224
224
  }
225
225
 
226
226
  export interface Names {
227
- Item: string[];
227
+ Item?: string[];
228
228
  }
229
229
 
230
230
  export interface DeleteDropZoneFilesRequest {
@@ -236,30 +236,30 @@ export namespace FileSpray {
236
236
  }
237
237
 
238
238
  export interface Despray {
239
- destGroup: string;
240
- sourceLogicalName: string;
241
- destIP: string;
242
- destPath: string;
243
- destPlane: string;
244
- dstxml: base64Binary;
245
- overwrite: boolean;
246
- maxConnections: int;
247
- throttle: int;
248
- transferBufferSize: int;
249
- splitprefix: string;
250
- norecover: boolean;
251
- wrap: boolean;
252
- multiCopy: boolean;
253
- SingleConnection: boolean;
254
- DFUServerQueue: string;
255
- compress: boolean;
256
- encrypt: string;
257
- decrypt: string;
239
+ destGroup?: string;
240
+ sourceLogicalName?: string;
241
+ destIP?: string;
242
+ destPath?: string;
243
+ destPlane?: string;
244
+ dstxml?: base64Binary;
245
+ overwrite?: boolean;
246
+ maxConnections?: int;
247
+ throttle?: int;
248
+ transferBufferSize?: int;
249
+ splitprefix?: string;
250
+ norecover?: boolean;
251
+ wrap?: boolean;
252
+ multiCopy?: boolean;
253
+ SingleConnection?: boolean;
254
+ DFUServerQueue?: string;
255
+ compress?: boolean;
256
+ encrypt?: string;
257
+ decrypt?: string;
258
258
  }
259
259
 
260
260
  export interface DesprayResponse {
261
- Exceptions: Exceptions;
262
- wuid: string;
261
+ Exceptions?: Exceptions;
262
+ wuid?: string;
263
263
  }
264
264
 
265
265
  export interface DfuMonitorRequest {
@@ -272,8 +272,8 @@ export namespace FileSpray {
272
272
  }
273
273
 
274
274
  export interface DfuMonitorResponse {
275
- Exceptions: Exceptions;
276
- wuid: string;
275
+ Exceptions?: Exceptions;
276
+ wuid?: string;
277
277
  }
278
278
 
279
279
  export interface DropZoneFileSearchRequest {
@@ -284,23 +284,23 @@ export namespace FileSpray {
284
284
  }
285
285
 
286
286
  export interface PhysicalFileStruct {
287
- name: string;
288
- Server: string;
289
- isDir: boolean;
290
- filesize: long;
291
- modifiedtime: string;
292
- Path: string;
293
- Files: Files;
287
+ name?: string;
288
+ Server?: string;
289
+ isDir?: boolean;
290
+ filesize?: long;
291
+ modifiedtime?: string;
292
+ Path?: string;
293
+ Files?: Files;
294
294
  }
295
295
 
296
296
  export interface Files {
297
- PhysicalFileStruct: PhysicalFileStruct[];
297
+ PhysicalFileStruct?: PhysicalFileStruct[];
298
298
  }
299
299
 
300
300
  export interface DropZoneFileSearchResponse {
301
- Exceptions: Exceptions;
302
- Files: Files;
303
- Warning: string;
301
+ Exceptions?: Exceptions;
302
+ Files?: Files;
303
+ Warning?: string;
304
304
  }
305
305
 
306
306
  export interface DropZoneFilesRequest {
@@ -314,34 +314,34 @@ export namespace FileSpray {
314
314
  }
315
315
 
316
316
  export interface DropZone {
317
- Name: string;
318
- NetAddress: string;
319
- Path: string;
320
- Computer: string;
321
- Linux: string;
317
+ Name?: string;
318
+ NetAddress?: string;
319
+ Path?: string;
320
+ Computer?: string;
321
+ Linux?: string;
322
322
  }
323
323
 
324
324
  export interface DropZones {
325
- DropZone: DropZone[];
325
+ DropZone?: DropZone[];
326
326
  }
327
327
 
328
328
  export interface DropZoneFilesResponse {
329
- Exceptions: Exceptions;
330
- DropZoneName: string;
331
- NetAddress: string;
332
- Path: string;
333
- OS: int;
334
- ECLWatchVisibleOnly: boolean;
335
- DropZones: DropZones;
336
- Files: Files;
329
+ Exceptions?: Exceptions;
330
+ DropZoneName?: string;
331
+ NetAddress?: string;
332
+ Path?: string;
333
+ OS?: int;
334
+ ECLWatchVisibleOnly?: boolean;
335
+ DropZones?: DropZones;
336
+ Files?: Files;
337
337
  }
338
338
 
339
339
  export interface EchoDateTime {
340
- dt: dateTime;
340
+ dt?: dateTime;
341
341
  }
342
342
 
343
343
  export interface EchoDateTimeResponse {
344
- result: dateTime;
344
+ result?: dateTime;
345
345
  }
346
346
 
347
347
  export interface FileListRequest {
@@ -354,36 +354,36 @@ export namespace FileSpray {
354
354
  }
355
355
 
356
356
  export interface files {
357
- PhysicalFileStruct: PhysicalFileStruct[];
357
+ PhysicalFileStruct?: PhysicalFileStruct[];
358
358
  }
359
359
 
360
360
  export interface FileListResponse {
361
- Exceptions: Exceptions;
362
- Netaddr: string;
363
- Path: string;
364
- Mask: string;
365
- OS: int;
366
- DirectoryOnly: boolean;
367
- AcceptLanguage: string;
368
- files: files;
361
+ Exceptions?: Exceptions;
362
+ Netaddr?: string;
363
+ Path?: string;
364
+ Mask?: string;
365
+ OS?: int;
366
+ DirectoryOnly?: boolean;
367
+ AcceptLanguage?: string;
368
+ files?: files;
369
369
  }
370
370
 
371
371
  export interface GetDFUExceptions {
372
- wuid: string;
372
+ wuid?: string;
373
373
  }
374
374
 
375
375
  export interface DFUException {
376
- Code: int;
377
- Message: string;
376
+ Code?: int;
377
+ Message?: string;
378
378
  }
379
379
 
380
380
  export interface result2 {
381
- DFUException: DFUException[];
381
+ DFUException?: DFUException[];
382
382
  }
383
383
 
384
384
  export interface GetDFUExceptionsResponse {
385
- Exceptions: Exceptions;
386
- result: result2;
385
+ Exceptions?: Exceptions;
386
+ result?: result2;
387
387
  }
388
388
 
389
389
  export interface ProgressRequest {
@@ -391,17 +391,17 @@ export namespace FileSpray {
391
391
  }
392
392
 
393
393
  export interface ProgressResponse {
394
- Exceptions: Exceptions;
395
- wuid: string;
396
- PercentDone: int;
397
- SecsLeft: int;
398
- KbPerSecAve: int;
399
- KbPerSec: int;
400
- SlavesDone: int;
401
- TimeTaken: string;
402
- ProgressMessage: string;
403
- SummaryMessage: string;
404
- State: string;
394
+ Exceptions?: Exceptions;
395
+ wuid?: string;
396
+ PercentDone?: int;
397
+ SecsLeft?: int;
398
+ KbPerSecAve?: int;
399
+ KbPerSec?: int;
400
+ SlavesDone?: int;
401
+ TimeTaken?: string;
402
+ ProgressMessage?: string;
403
+ SummaryMessage?: string;
404
+ State?: string;
405
405
  }
406
406
 
407
407
  export interface GetDFUServerQueuesRequest {
@@ -409,125 +409,125 @@ export namespace FileSpray {
409
409
  }
410
410
 
411
411
  export interface GetDFUServerQueuesResponse {
412
- Exceptions: Exceptions;
413
- Names: Names;
412
+ Exceptions?: Exceptions;
413
+ Names?: Names;
414
414
  }
415
415
 
416
416
  export interface GetDFUWorkunit {
417
- wuid: string;
417
+ wuid?: string;
418
418
  }
419
419
 
420
420
  export interface GetDFUWorkunitResponse {
421
- Exceptions: Exceptions;
422
- result: result;
423
- AutoRefresh: int;
421
+ Exceptions?: Exceptions;
422
+ result?: result;
423
+ AutoRefresh?: int;
424
424
  }
425
425
 
426
426
  export interface GetDFUWorkunits {
427
- Wuid: string;
428
- Owner: string;
429
- Cluster: string;
430
- StateReq: string;
431
- Type: string;
432
- Jobname: string;
433
- PageSize: long;
434
- CurrentPage: int;
435
- PageStartFrom: long;
436
- Sortby: string;
437
- Descending: boolean;
438
- CacheHint: long;
439
- ParentWuid: string;
440
- PublisherWuid: string;
441
- includeProgressMessages: boolean;
442
- includeTimings: boolean;
443
- includeTransferRate: boolean;
427
+ Wuid?: string;
428
+ Owner?: string;
429
+ Cluster?: string;
430
+ StateReq?: string;
431
+ Type?: string;
432
+ Jobname?: string;
433
+ PageSize?: long;
434
+ CurrentPage?: int;
435
+ PageStartFrom?: long;
436
+ Sortby?: string;
437
+ Descending?: boolean;
438
+ CacheHint?: long;
439
+ ParentWuid?: string;
440
+ PublisherWuid?: string;
441
+ includeProgressMessages?: boolean;
442
+ includeTimings?: boolean;
443
+ includeTransferRate?: boolean;
444
444
  }
445
445
 
446
446
  export interface DFUWorkunit {
447
- ID: string;
448
- DFUServerName: string;
449
- ClusterName: string;
450
- JobName: string;
451
- Queue: string;
452
- User: string;
453
- isProtected: boolean;
454
- Command: int;
455
- CommandMessage: string;
456
- PercentDone: int;
457
- SecsLeft: int;
458
- ProgressMessage: string;
459
- SummaryMessage: string;
460
- State: int;
461
- SourceLogicalName: string;
462
- SourceIP: string;
463
- SourceFilePath: string;
464
- SourceDali: string;
465
- SourceRecordSize: int;
466
- SourceFormat: int;
467
- RowTag: string;
468
- SourceNumParts: int;
469
- SourceDirectory: string;
470
- DestLogicalName: string;
471
- DestGroupName: string;
472
- DestDirectory: string;
473
- DestIP: string;
474
- DestFilePath: string;
475
- DestFormat: int;
476
- DestNumParts: int;
477
- DestRecordSize: int;
478
- Replicate: boolean;
479
- Overwrite: boolean;
480
- Compress: boolean;
481
- SourceCsvSeparate: string;
482
- SourceCsvQuote: string;
483
- SourceCsvTerminate: string;
484
- SourceCsvEscape: string;
485
- TimeStarted: string;
486
- TimeStopped: string;
487
- StateMessage: string;
488
- MonitorEventName: string;
489
- MonitorSub: boolean;
490
- MonitorShotLimit: int;
491
- SourceDiffKeyName: string;
492
- DestDiffKeyName: string;
493
- Archived: boolean;
494
- encrypt: string;
495
- decrypt: string;
496
- failIfNoSourceFile: boolean;
497
- recordStructurePresent: boolean;
498
- quotedTerminator: boolean;
499
- preserveCompression: boolean;
500
- expireDays: int;
501
- PreserveFileParts: boolean;
502
- FileAccessCost: double;
503
- KbPerSecAve: int;
504
- KbPerSec: int;
447
+ ID?: string;
448
+ DFUServerName?: string;
449
+ ClusterName?: string;
450
+ JobName?: string;
451
+ Queue?: string;
452
+ User?: string;
453
+ isProtected?: boolean;
454
+ Command?: int;
455
+ CommandMessage?: string;
456
+ PercentDone?: int;
457
+ SecsLeft?: int;
458
+ ProgressMessage?: string;
459
+ SummaryMessage?: string;
460
+ State?: int;
461
+ SourceLogicalName?: string;
462
+ SourceIP?: string;
463
+ SourceFilePath?: string;
464
+ SourceDali?: string;
465
+ SourceRecordSize?: int;
466
+ SourceFormat?: int;
467
+ RowTag?: string;
468
+ SourceNumParts?: int;
469
+ SourceDirectory?: string;
470
+ DestLogicalName?: string;
471
+ DestGroupName?: string;
472
+ DestDirectory?: string;
473
+ DestIP?: string;
474
+ DestFilePath?: string;
475
+ DestFormat?: int;
476
+ DestNumParts?: int;
477
+ DestRecordSize?: int;
478
+ Replicate?: boolean;
479
+ Overwrite?: boolean;
480
+ Compress?: boolean;
481
+ SourceCsvSeparate?: string;
482
+ SourceCsvQuote?: string;
483
+ SourceCsvTerminate?: string;
484
+ SourceCsvEscape?: string;
485
+ TimeStarted?: string;
486
+ TimeStopped?: string;
487
+ StateMessage?: string;
488
+ MonitorEventName?: string;
489
+ MonitorSub?: boolean;
490
+ MonitorShotLimit?: int;
491
+ SourceDiffKeyName?: string;
492
+ DestDiffKeyName?: string;
493
+ Archived?: boolean;
494
+ encrypt?: string;
495
+ decrypt?: string;
496
+ failIfNoSourceFile?: boolean;
497
+ recordStructurePresent?: boolean;
498
+ quotedTerminator?: boolean;
499
+ preserveCompression?: boolean;
500
+ expireDays?: int;
501
+ PreserveFileParts?: boolean;
502
+ FileAccessCost?: double;
503
+ KbPerSecAve?: int;
504
+ KbPerSec?: int;
505
505
  }
506
506
 
507
507
  export interface results {
508
- DFUWorkunit: DFUWorkunit[];
508
+ DFUWorkunit?: DFUWorkunit[];
509
509
  }
510
510
 
511
511
  export interface GetDFUWorkunitsResponse {
512
- Exceptions: Exceptions;
513
- results: results;
514
- Type: string;
515
- Owner: string;
516
- Cluster: string;
517
- StateReq: string;
518
- PageSize: long;
519
- PrevPage: long;
520
- NextPage: long;
521
- LastPage: long;
522
- NumWUs: long;
523
- PageStartFrom: long;
524
- PageEndAt: long;
525
- First: boolean;
526
- Sortby: string;
527
- Descending: boolean;
528
- BasicQuery: string;
529
- Filters: string;
530
- CacheHint: long;
512
+ Exceptions?: Exceptions;
513
+ results?: results;
514
+ Type?: string;
515
+ Owner?: string;
516
+ Cluster?: string;
517
+ StateReq?: string;
518
+ PageSize?: long;
519
+ PrevPage?: long;
520
+ NextPage?: long;
521
+ LastPage?: long;
522
+ NumWUs?: long;
523
+ PageStartFrom?: long;
524
+ PageEndAt?: long;
525
+ First?: boolean;
526
+ Sortby?: string;
527
+ Descending?: boolean;
528
+ BasicQuery?: string;
529
+ Filters?: string;
530
+ CacheHint?: long;
531
531
  }
532
532
 
533
533
  export interface GetRemoteTargetsRequest {
@@ -535,13 +535,13 @@ export namespace FileSpray {
535
535
  }
536
536
 
537
537
  export interface TargetNames {
538
- Item: string[];
538
+ Item?: string[];
539
539
  }
540
540
 
541
541
  export interface GetRemoteTargetsResponse {
542
- Exceptions: Exceptions;
543
- TargetNames: TargetNames;
544
- AllowForeign: boolean;
542
+ Exceptions?: Exceptions;
543
+ TargetNames?: TargetNames;
544
+ AllowForeign?: boolean;
545
545
  }
546
546
 
547
547
  export interface GetSprayTargetsRequest {
@@ -549,18 +549,18 @@ export namespace FileSpray {
549
549
  }
550
550
 
551
551
  export interface GroupNode {
552
- Name: string;
553
- ClusterType: string;
554
- ReplicateOutputs: boolean;
552
+ Name?: string;
553
+ ClusterType?: string;
554
+ ReplicateOutputs?: boolean;
555
555
  }
556
556
 
557
557
  export interface GroupNodes {
558
- GroupNode: GroupNode[];
558
+ GroupNode?: GroupNode[];
559
559
  }
560
560
 
561
561
  export interface GetSprayTargetsResponse {
562
- Exceptions: Exceptions;
563
- GroupNodes: GroupNodes;
562
+ Exceptions?: Exceptions;
563
+ GroupNodes?: GroupNodes;
564
564
  }
565
565
 
566
566
  export interface OpenSaveRequest {
@@ -573,13 +573,13 @@ export namespace FileSpray {
573
573
  }
574
574
 
575
575
  export interface OpenSaveResponse {
576
- Exceptions: Exceptions;
577
- Location: string;
578
- Path: string;
579
- Name: string;
580
- Type: string;
581
- DateTime: string;
582
- Viewable: boolean;
576
+ Exceptions?: Exceptions;
577
+ Location?: string;
578
+ Path?: string;
579
+ Name?: string;
580
+ Type?: string;
581
+ DateTime?: string;
582
+ Viewable?: boolean;
583
583
  }
584
584
 
585
585
  export interface FileSprayPingRequest {
@@ -591,29 +591,29 @@ export namespace FileSpray {
591
591
  }
592
592
 
593
593
  export interface Rename {
594
- srcname: string;
595
- dstname: string;
596
- overwrite: boolean;
597
- DFUServerQueue: string;
594
+ srcname?: string;
595
+ dstname?: string;
596
+ overwrite?: boolean;
597
+ DFUServerQueue?: string;
598
598
  }
599
599
 
600
600
  export interface RenameResponse {
601
- Exceptions: Exceptions;
602
- wuid: string;
601
+ Exceptions?: Exceptions;
602
+ wuid?: string;
603
603
  }
604
604
 
605
605
  export interface Replicate {
606
- sourceLogicalName: string;
607
- replicateOffset: int;
608
- cluster: string;
609
- repeatLast: boolean;
610
- onlyRepeated: boolean;
611
- DFUServerQueue: string;
606
+ sourceLogicalName?: string;
607
+ replicateOffset?: int;
608
+ cluster?: string;
609
+ repeatLast?: boolean;
610
+ onlyRepeated?: boolean;
611
+ DFUServerQueue?: string;
612
612
  }
613
613
 
614
614
  export interface ReplicateResponse {
615
- Exceptions: Exceptions;
616
- wuid: string;
615
+ Exceptions?: Exceptions;
616
+ wuid?: string;
617
617
  }
618
618
 
619
619
  export interface ShowResultRequest {
@@ -621,174 +621,174 @@ export namespace FileSpray {
621
621
  }
622
622
 
623
623
  export interface ShowResultResponse {
624
- Exceptions: Exceptions;
625
- Result: string;
624
+ Exceptions?: Exceptions;
625
+ Result?: string;
626
626
  }
627
627
 
628
628
  export interface SprayFixed {
629
- sourceIP: string;
630
- sourcePlane: string;
631
- sourcePath: string;
632
- srcxml: base64Binary;
633
- sourceFormat: string;
634
- sourceRecordSize: int;
635
- destGroup: string;
636
- destLogicalName: string;
637
- destNumParts: int;
638
- overwrite: boolean;
639
- replicate: boolean;
640
- ReplicateOffset: int;
641
- maxConnections: int;
642
- throttle: int;
643
- transferBufferSize: int;
644
- prefix: string;
645
- nosplit: boolean;
646
- norecover: boolean;
647
- compress: boolean;
648
- push: boolean;
649
- pull: boolean;
650
- noCommon: boolean;
651
- encrypt: string;
652
- decrypt: string;
653
- wrap: boolean;
654
- failIfNoSourceFile: boolean;
655
- recordStructurePresent: boolean;
656
- quotedTerminator: boolean;
657
- expireDays: int;
658
- DFUServerQueue: string;
629
+ sourceIP?: string;
630
+ sourcePlane?: string;
631
+ sourcePath?: string;
632
+ srcxml?: base64Binary;
633
+ sourceFormat?: string;
634
+ sourceRecordSize?: int;
635
+ destGroup?: string;
636
+ destLogicalName?: string;
637
+ destNumParts?: int;
638
+ overwrite?: boolean;
639
+ replicate?: boolean;
640
+ ReplicateOffset?: int;
641
+ maxConnections?: int;
642
+ throttle?: int;
643
+ transferBufferSize?: int;
644
+ prefix?: string;
645
+ nosplit?: boolean;
646
+ norecover?: boolean;
647
+ compress?: boolean;
648
+ push?: boolean;
649
+ pull?: boolean;
650
+ noCommon?: boolean;
651
+ encrypt?: string;
652
+ decrypt?: string;
653
+ wrap?: boolean;
654
+ failIfNoSourceFile?: boolean;
655
+ recordStructurePresent?: boolean;
656
+ quotedTerminator?: boolean;
657
+ expireDays?: int;
658
+ DFUServerQueue?: string;
659
659
  }
660
660
 
661
661
  export interface SprayFixedResponse {
662
- Exceptions: Exceptions;
663
- wuid: string;
662
+ Exceptions?: Exceptions;
663
+ wuid?: string;
664
664
  }
665
665
 
666
666
  export interface SprayVariable {
667
- sourceIP: string;
668
- sourcePlane: string;
669
- sourcePath: string;
670
- srcxml: base64Binary;
671
- sourceMaxRecordSize: int;
672
- sourceFormat: int;
673
- NoSourceCsvSeparator: boolean;
674
- sourceCsvSeparate: string;
675
- sourceCsvTerminate: string;
676
- sourceCsvQuote: string;
677
- sourceCsvEscape: string;
678
- sourceRowTag: string;
679
- destGroup: string;
680
- destLogicalName: string;
681
- destNumParts: int;
682
- overwrite: boolean;
683
- replicate: boolean;
684
- ReplicateOffset: int;
685
- maxConnections: int;
686
- throttle: int;
687
- transferBufferSize: int;
688
- prefix: string;
689
- nosplit: boolean;
690
- norecover: boolean;
691
- compress: boolean;
692
- push: boolean;
693
- pull: boolean;
694
- noCommon: boolean;
695
- encrypt: string;
696
- decrypt: string;
697
- failIfNoSourceFile: boolean;
698
- recordStructurePresent: boolean;
699
- quotedTerminator: boolean;
700
- sourceRowPath: string;
701
- isJSON: boolean;
702
- expireDays: int;
703
- DFUServerQueue: string;
704
- srcUsername: string;
705
- srcPassword: string;
667
+ sourceIP?: string;
668
+ sourcePlane?: string;
669
+ sourcePath?: string;
670
+ srcxml?: base64Binary;
671
+ sourceMaxRecordSize?: int;
672
+ sourceFormat?: int;
673
+ NoSourceCsvSeparator?: boolean;
674
+ sourceCsvSeparate?: string;
675
+ sourceCsvTerminate?: string;
676
+ sourceCsvQuote?: string;
677
+ sourceCsvEscape?: string;
678
+ sourceRowTag?: string;
679
+ destGroup?: string;
680
+ destLogicalName?: string;
681
+ destNumParts?: int;
682
+ overwrite?: boolean;
683
+ replicate?: boolean;
684
+ ReplicateOffset?: int;
685
+ maxConnections?: int;
686
+ throttle?: int;
687
+ transferBufferSize?: int;
688
+ prefix?: string;
689
+ nosplit?: boolean;
690
+ norecover?: boolean;
691
+ compress?: boolean;
692
+ push?: boolean;
693
+ pull?: boolean;
694
+ noCommon?: boolean;
695
+ encrypt?: string;
696
+ decrypt?: string;
697
+ failIfNoSourceFile?: boolean;
698
+ recordStructurePresent?: boolean;
699
+ quotedTerminator?: boolean;
700
+ sourceRowPath?: string;
701
+ isJSON?: boolean;
702
+ expireDays?: int;
703
+ DFUServerQueue?: string;
704
+ srcUsername?: string;
705
+ srcPassword?: string;
706
706
  }
707
707
 
708
708
  export interface SprayResponse {
709
- Exceptions: Exceptions;
710
- wuid: string;
709
+ Exceptions?: Exceptions;
710
+ wuid?: string;
711
711
  }
712
712
 
713
713
  export interface SubmitDFUWorkunit {
714
- wuid: string;
714
+ wuid?: string;
715
715
  }
716
716
 
717
717
  export interface SubmitDFUWorkunitResponse {
718
- Exceptions: Exceptions;
718
+ Exceptions?: Exceptions;
719
719
  }
720
720
 
721
721
  export interface wu {
722
- ID: string;
723
- DFUServerName: string;
724
- ClusterName: string;
725
- JobName: string;
726
- Queue: string;
727
- User: string;
728
- isProtected: boolean;
729
- Command: int;
730
- CommandMessage: string;
731
- PercentDone: int;
732
- SecsLeft: int;
733
- ProgressMessage: string;
734
- SummaryMessage: string;
735
- State: int;
736
- SourceLogicalName: string;
737
- SourceIP: string;
738
- SourceFilePath: string;
739
- SourceDali: string;
740
- SourceRecordSize: int;
741
- SourceFormat: int;
742
- RowTag: string;
743
- SourceNumParts: int;
744
- SourceDirectory: string;
745
- DestLogicalName: string;
746
- DestGroupName: string;
747
- DestDirectory: string;
748
- DestIP: string;
749
- DestFilePath: string;
750
- DestFormat: int;
751
- DestNumParts: int;
752
- DestRecordSize: int;
753
- Replicate: boolean;
754
- Overwrite: boolean;
755
- Compress: boolean;
756
- SourceCsvSeparate: string;
757
- SourceCsvQuote: string;
758
- SourceCsvTerminate: string;
759
- SourceCsvEscape: string;
760
- TimeStarted: string;
761
- TimeStopped: string;
762
- StateMessage: string;
763
- MonitorEventName: string;
764
- MonitorSub: boolean;
765
- MonitorShotLimit: int;
766
- SourceDiffKeyName: string;
767
- DestDiffKeyName: string;
768
- Archived: boolean;
769
- encrypt: string;
770
- decrypt: string;
771
- failIfNoSourceFile: boolean;
772
- recordStructurePresent: boolean;
773
- quotedTerminator: boolean;
774
- preserveCompression: boolean;
775
- expireDays: int;
776
- PreserveFileParts: boolean;
777
- FileAccessCost: double;
778
- KbPerSecAve: int;
779
- KbPerSec: int;
722
+ ID?: string;
723
+ DFUServerName?: string;
724
+ ClusterName?: string;
725
+ JobName?: string;
726
+ Queue?: string;
727
+ User?: string;
728
+ isProtected?: boolean;
729
+ Command?: int;
730
+ CommandMessage?: string;
731
+ PercentDone?: int;
732
+ SecsLeft?: int;
733
+ ProgressMessage?: string;
734
+ SummaryMessage?: string;
735
+ State?: int;
736
+ SourceLogicalName?: string;
737
+ SourceIP?: string;
738
+ SourceFilePath?: string;
739
+ SourceDali?: string;
740
+ SourceRecordSize?: int;
741
+ SourceFormat?: int;
742
+ RowTag?: string;
743
+ SourceNumParts?: int;
744
+ SourceDirectory?: string;
745
+ DestLogicalName?: string;
746
+ DestGroupName?: string;
747
+ DestDirectory?: string;
748
+ DestIP?: string;
749
+ DestFilePath?: string;
750
+ DestFormat?: int;
751
+ DestNumParts?: int;
752
+ DestRecordSize?: int;
753
+ Replicate?: boolean;
754
+ Overwrite?: boolean;
755
+ Compress?: boolean;
756
+ SourceCsvSeparate?: string;
757
+ SourceCsvQuote?: string;
758
+ SourceCsvTerminate?: string;
759
+ SourceCsvEscape?: string;
760
+ TimeStarted?: string;
761
+ TimeStopped?: string;
762
+ StateMessage?: string;
763
+ MonitorEventName?: string;
764
+ MonitorSub?: boolean;
765
+ MonitorShotLimit?: int;
766
+ SourceDiffKeyName?: string;
767
+ DestDiffKeyName?: string;
768
+ Archived?: boolean;
769
+ encrypt?: string;
770
+ decrypt?: string;
771
+ failIfNoSourceFile?: boolean;
772
+ recordStructurePresent?: boolean;
773
+ quotedTerminator?: boolean;
774
+ preserveCompression?: boolean;
775
+ expireDays?: int;
776
+ PreserveFileParts?: boolean;
777
+ FileAccessCost?: double;
778
+ KbPerSecAve?: int;
779
+ KbPerSec?: int;
780
780
  }
781
781
 
782
782
  export interface UpdateDFUWorkunit {
783
- wu: wu;
784
- ClusterOrig: string;
785
- JobNameOrig: string;
786
- isProtectedOrig: boolean;
787
- StateOrig: int;
783
+ wu?: wu;
784
+ ClusterOrig?: string;
785
+ JobNameOrig?: string;
786
+ isProtectedOrig?: boolean;
787
+ StateOrig?: int;
788
788
  }
789
789
 
790
790
  export interface UpdateDFUWorkunitResponse {
791
- Exceptions: Exceptions;
791
+ Exceptions?: Exceptions;
792
792
  }
793
793
 
794
794
  }
@@ -799,132 +799,132 @@ export class FileSprayServiceBase extends Service {
799
799
  super(optsConnection, "FileSpray", "1.27");
800
800
  }
801
801
 
802
- AbortDFUWorkunit(request: Partial<FileSpray.AbortDFUWorkunit>): Promise<FileSpray.AbortDFUWorkunitResponse> {
803
- return this._connection.send("AbortDFUWorkunit", request, "json", false, undefined, "AbortDFUWorkunitResponse");
802
+ AbortDFUWorkunit(request: FileSpray.AbortDFUWorkunit, abortSignal?: AbortSignal): Promise<FileSpray.AbortDFUWorkunitResponse> {
803
+ return this._connection.send("AbortDFUWorkunit", request, "json", false, abortSignal, "AbortDFUWorkunitResponse");
804
804
  }
805
805
 
806
- Copy(request: Partial<FileSpray.Copy>): Promise<FileSpray.CopyResponse> {
807
- return this._connection.send("Copy", request, "json", false, undefined, "CopyResponse");
806
+ Copy(request: FileSpray.Copy, abortSignal?: AbortSignal): Promise<FileSpray.CopyResponse> {
807
+ return this._connection.send("Copy", request, "json", false, abortSignal, "CopyResponse");
808
808
  }
809
809
 
810
- CreateDFUPublisherWorkunit(request: Partial<FileSpray.CreateDFUPublisherWorkunit>): Promise<FileSpray.CreateDFUPublisherWorkunitResponse> {
811
- return this._connection.send("CreateDFUPublisherWorkunit", request, "json", false, undefined, "CreateDFUPublisherWorkunitResponse");
810
+ CreateDFUPublisherWorkunit(request: FileSpray.CreateDFUPublisherWorkunit, abortSignal?: AbortSignal): Promise<FileSpray.CreateDFUPublisherWorkunitResponse> {
811
+ return this._connection.send("CreateDFUPublisherWorkunit", request, "json", false, abortSignal, "CreateDFUPublisherWorkunitResponse");
812
812
  }
813
813
 
814
- CreateDFUWorkunit(request: Partial<FileSpray.CreateDFUWorkunit>): Promise<FileSpray.CreateDFUWorkunitResponse> {
815
- return this._connection.send("CreateDFUWorkunit", request, "json", false, undefined, "CreateDFUWorkunitResponse");
814
+ CreateDFUWorkunit(request: FileSpray.CreateDFUWorkunit, abortSignal?: AbortSignal): Promise<FileSpray.CreateDFUWorkunitResponse> {
815
+ return this._connection.send("CreateDFUWorkunit", request, "json", false, abortSignal, "CreateDFUWorkunitResponse");
816
816
  }
817
817
 
818
- DFUWUFile(request: Partial<FileSpray.DFUWUFileRequest>): Promise<FileSpray.DFUWUFileResponse> {
819
- return this._connection.send("DFUWUFile", request, "json", false, undefined, "DFUWUFileResponse");
818
+ DFUWUFile(request: FileSpray.DFUWUFileRequest, abortSignal?: AbortSignal): Promise<FileSpray.DFUWUFileResponse> {
819
+ return this._connection.send("DFUWUFile", request, "json", false, abortSignal, "DFUWUFileResponse");
820
820
  }
821
821
 
822
- DFUWUSearch(request: Partial<FileSpray.DFUWUSearchRequest>): Promise<FileSpray.DFUWUSearchResponse> {
823
- return this._connection.send("DFUWUSearch", request, "json", false, undefined, "DFUWUSearchResponse");
822
+ DFUWUSearch(request: FileSpray.DFUWUSearchRequest, abortSignal?: AbortSignal): Promise<FileSpray.DFUWUSearchResponse> {
823
+ return this._connection.send("DFUWUSearch", request, "json", false, abortSignal, "DFUWUSearchResponse");
824
824
  }
825
825
 
826
- DFUWorkunitsAction(request: Partial<FileSpray.DFUWorkunitsActionRequest>): Promise<FileSpray.DFUWorkunitsActionResponse> {
827
- return this._connection.send("DFUWorkunitsAction", request, "json", false, undefined, "DFUWorkunitsActionResponse");
826
+ DFUWorkunitsAction(request: FileSpray.DFUWorkunitsActionRequest, abortSignal?: AbortSignal): Promise<FileSpray.DFUWorkunitsActionResponse> {
827
+ return this._connection.send("DFUWorkunitsAction", request, "json", false, abortSignal, "DFUWorkunitsActionResponse");
828
828
  }
829
829
 
830
- DeleteDFUWorkunit(request: Partial<FileSpray.DeleteDFUWorkunit>): Promise<FileSpray.DeleteDFUWorkunitResponse> {
831
- return this._connection.send("DeleteDFUWorkunit", request, "json", false, undefined, "DeleteDFUWorkunitResponse");
830
+ DeleteDFUWorkunit(request: FileSpray.DeleteDFUWorkunit, abortSignal?: AbortSignal): Promise<FileSpray.DeleteDFUWorkunitResponse> {
831
+ return this._connection.send("DeleteDFUWorkunit", request, "json", false, abortSignal, "DeleteDFUWorkunitResponse");
832
832
  }
833
833
 
834
- DeleteDFUWorkunits(request: Partial<FileSpray.DeleteDFUWorkunits>): Promise<FileSpray.DeleteDFUWorkunitsResponse> {
835
- return this._connection.send("DeleteDFUWorkunits", request, "json", false, undefined, "DeleteDFUWorkunitsResponse");
834
+ DeleteDFUWorkunits(request: FileSpray.DeleteDFUWorkunits, abortSignal?: AbortSignal): Promise<FileSpray.DeleteDFUWorkunitsResponse> {
835
+ return this._connection.send("DeleteDFUWorkunits", request, "json", false, abortSignal, "DeleteDFUWorkunitsResponse");
836
836
  }
837
837
 
838
- DeleteDropZoneFiles(request: Partial<FileSpray.DeleteDropZoneFilesRequest>): Promise<FileSpray.DFUWorkunitsActionResponse> {
839
- return this._connection.send("DeleteDropZoneFiles", request, "json", false, undefined, "DFUWorkunitsActionResponse");
838
+ DeleteDropZoneFiles(request: FileSpray.DeleteDropZoneFilesRequest, abortSignal?: AbortSignal): Promise<FileSpray.DFUWorkunitsActionResponse> {
839
+ return this._connection.send("DeleteDropZoneFiles", request, "json", false, abortSignal, "DFUWorkunitsActionResponse");
840
840
  }
841
841
 
842
- Despray(request: Partial<FileSpray.Despray>): Promise<FileSpray.DesprayResponse> {
843
- return this._connection.send("Despray", request, "json", false, undefined, "DesprayResponse");
842
+ Despray(request: FileSpray.Despray, abortSignal?: AbortSignal): Promise<FileSpray.DesprayResponse> {
843
+ return this._connection.send("Despray", request, "json", false, abortSignal, "DesprayResponse");
844
844
  }
845
845
 
846
- DfuMonitor(request: Partial<FileSpray.DfuMonitorRequest>): Promise<FileSpray.DfuMonitorResponse> {
847
- return this._connection.send("DfuMonitor", request, "json", false, undefined, "DfuMonitorResponse");
846
+ DfuMonitor(request: FileSpray.DfuMonitorRequest, abortSignal?: AbortSignal): Promise<FileSpray.DfuMonitorResponse> {
847
+ return this._connection.send("DfuMonitor", request, "json", false, abortSignal, "DfuMonitorResponse");
848
848
  }
849
849
 
850
- DropZoneFileSearch(request: Partial<FileSpray.DropZoneFileSearchRequest>): Promise<FileSpray.DropZoneFileSearchResponse> {
851
- return this._connection.send("DropZoneFileSearch", request, "json", false, undefined, "DropZoneFileSearchResponse");
850
+ DropZoneFileSearch(request: FileSpray.DropZoneFileSearchRequest, abortSignal?: AbortSignal): Promise<FileSpray.DropZoneFileSearchResponse> {
851
+ return this._connection.send("DropZoneFileSearch", request, "json", false, abortSignal, "DropZoneFileSearchResponse");
852
852
  }
853
853
 
854
- DropZoneFiles(request: Partial<FileSpray.DropZoneFilesRequest>): Promise<FileSpray.DropZoneFilesResponse> {
855
- return this._connection.send("DropZoneFiles", request, "json", false, undefined, "DropZoneFilesResponse");
854
+ DropZoneFiles(request: FileSpray.DropZoneFilesRequest, abortSignal?: AbortSignal): Promise<FileSpray.DropZoneFilesResponse> {
855
+ return this._connection.send("DropZoneFiles", request, "json", false, abortSignal, "DropZoneFilesResponse");
856
856
  }
857
857
 
858
- EchoDateTime(request: Partial<FileSpray.EchoDateTime>): Promise<FileSpray.EchoDateTimeResponse> {
859
- return this._connection.send("EchoDateTime", request, "json", false, undefined, "EchoDateTimeResponse");
858
+ EchoDateTime(request: FileSpray.EchoDateTime, abortSignal?: AbortSignal): Promise<FileSpray.EchoDateTimeResponse> {
859
+ return this._connection.send("EchoDateTime", request, "json", false, abortSignal, "EchoDateTimeResponse");
860
860
  }
861
861
 
862
- FileList(request: Partial<FileSpray.FileListRequest>): Promise<FileSpray.FileListResponse> {
863
- return this._connection.send("FileList", request, "json", false, undefined, "FileListResponse");
862
+ FileList(request: FileSpray.FileListRequest, abortSignal?: AbortSignal): Promise<FileSpray.FileListResponse> {
863
+ return this._connection.send("FileList", request, "json", false, abortSignal, "FileListResponse");
864
864
  }
865
865
 
866
- GetDFUExceptions(request: Partial<FileSpray.GetDFUExceptions>): Promise<FileSpray.GetDFUExceptionsResponse> {
867
- return this._connection.send("GetDFUExceptions", request, "json", false, undefined, "GetDFUExceptionsResponse");
866
+ GetDFUExceptions(request: FileSpray.GetDFUExceptions, abortSignal?: AbortSignal): Promise<FileSpray.GetDFUExceptionsResponse> {
867
+ return this._connection.send("GetDFUExceptions", request, "json", false, abortSignal, "GetDFUExceptionsResponse");
868
868
  }
869
869
 
870
- GetDFUProgress(request: Partial<FileSpray.ProgressRequest>): Promise<FileSpray.ProgressResponse> {
871
- return this._connection.send("GetDFUProgress", request, "json", false, undefined, "ProgressResponse");
870
+ GetDFUProgress(request: FileSpray.ProgressRequest, abortSignal?: AbortSignal): Promise<FileSpray.ProgressResponse> {
871
+ return this._connection.send("GetDFUProgress", request, "json", false, abortSignal, "ProgressResponse");
872
872
  }
873
873
 
874
- GetDFUServerQueues(request: Partial<FileSpray.GetDFUServerQueuesRequest>): Promise<FileSpray.GetDFUServerQueuesResponse> {
875
- return this._connection.send("GetDFUServerQueues", request, "json", false, undefined, "GetDFUServerQueuesResponse");
874
+ GetDFUServerQueues(request: FileSpray.GetDFUServerQueuesRequest, abortSignal?: AbortSignal): Promise<FileSpray.GetDFUServerQueuesResponse> {
875
+ return this._connection.send("GetDFUServerQueues", request, "json", false, abortSignal, "GetDFUServerQueuesResponse");
876
876
  }
877
877
 
878
- GetDFUWorkunit(request: Partial<FileSpray.GetDFUWorkunit>): Promise<FileSpray.GetDFUWorkunitResponse> {
879
- return this._connection.send("GetDFUWorkunit", request, "json", false, undefined, "GetDFUWorkunitResponse");
878
+ GetDFUWorkunit(request: FileSpray.GetDFUWorkunit, abortSignal?: AbortSignal): Promise<FileSpray.GetDFUWorkunitResponse> {
879
+ return this._connection.send("GetDFUWorkunit", request, "json", false, abortSignal, "GetDFUWorkunitResponse");
880
880
  }
881
881
 
882
- GetDFUWorkunits(request: Partial<FileSpray.GetDFUWorkunits>): Promise<FileSpray.GetDFUWorkunitsResponse> {
883
- return this._connection.send("GetDFUWorkunits", request, "json", false, undefined, "GetDFUWorkunitsResponse");
882
+ GetDFUWorkunits(request: FileSpray.GetDFUWorkunits, abortSignal?: AbortSignal): Promise<FileSpray.GetDFUWorkunitsResponse> {
883
+ return this._connection.send("GetDFUWorkunits", request, "json", false, abortSignal, "GetDFUWorkunitsResponse");
884
884
  }
885
885
 
886
- GetRemoteTargets(request: Partial<FileSpray.GetRemoteTargetsRequest>): Promise<FileSpray.GetRemoteTargetsResponse> {
887
- return this._connection.send("GetRemoteTargets", request, "json", false, undefined, "GetRemoteTargetsResponse");
886
+ GetRemoteTargets(request: FileSpray.GetRemoteTargetsRequest, abortSignal?: AbortSignal): Promise<FileSpray.GetRemoteTargetsResponse> {
887
+ return this._connection.send("GetRemoteTargets", request, "json", false, abortSignal, "GetRemoteTargetsResponse");
888
888
  }
889
889
 
890
- GetSprayTargets(request: Partial<FileSpray.GetSprayTargetsRequest>): Promise<FileSpray.GetSprayTargetsResponse> {
891
- return this._connection.send("GetSprayTargets", request, "json", false, undefined, "GetSprayTargetsResponse");
890
+ GetSprayTargets(request: FileSpray.GetSprayTargetsRequest, abortSignal?: AbortSignal): Promise<FileSpray.GetSprayTargetsResponse> {
891
+ return this._connection.send("GetSprayTargets", request, "json", false, abortSignal, "GetSprayTargetsResponse");
892
892
  }
893
893
 
894
- OpenSave(request: Partial<FileSpray.OpenSaveRequest>): Promise<FileSpray.OpenSaveResponse> {
895
- return this._connection.send("OpenSave", request, "json", false, undefined, "OpenSaveResponse");
894
+ OpenSave(request: FileSpray.OpenSaveRequest, abortSignal?: AbortSignal): Promise<FileSpray.OpenSaveResponse> {
895
+ return this._connection.send("OpenSave", request, "json", false, abortSignal, "OpenSaveResponse");
896
896
  }
897
897
 
898
- Ping(request: Partial<FileSpray.FileSprayPingRequest>): Promise<FileSpray.FileSprayPingResponse> {
899
- return this._connection.send("Ping", request, "json", false, undefined, "FileSprayPingResponse");
898
+ Ping(request: FileSpray.FileSprayPingRequest, abortSignal?: AbortSignal): Promise<FileSpray.FileSprayPingResponse> {
899
+ return this._connection.send("Ping", request, "json", false, abortSignal, "FileSprayPingResponse");
900
900
  }
901
901
 
902
- Rename(request: Partial<FileSpray.Rename>): Promise<FileSpray.RenameResponse> {
903
- return this._connection.send("Rename", request, "json", false, undefined, "RenameResponse");
902
+ Rename(request: FileSpray.Rename, abortSignal?: AbortSignal): Promise<FileSpray.RenameResponse> {
903
+ return this._connection.send("Rename", request, "json", false, abortSignal, "RenameResponse");
904
904
  }
905
905
 
906
- Replicate(request: Partial<FileSpray.Replicate>): Promise<FileSpray.ReplicateResponse> {
907
- return this._connection.send("Replicate", request, "json", false, undefined, "ReplicateResponse");
906
+ Replicate(request: FileSpray.Replicate, abortSignal?: AbortSignal): Promise<FileSpray.ReplicateResponse> {
907
+ return this._connection.send("Replicate", request, "json", false, abortSignal, "ReplicateResponse");
908
908
  }
909
909
 
910
- ShowResult(request: Partial<FileSpray.ShowResultRequest>): Promise<FileSpray.ShowResultResponse> {
911
- return this._connection.send("ShowResult", request, "json", false, undefined, "ShowResultResponse");
910
+ ShowResult(request: FileSpray.ShowResultRequest, abortSignal?: AbortSignal): Promise<FileSpray.ShowResultResponse> {
911
+ return this._connection.send("ShowResult", request, "json", false, abortSignal, "ShowResultResponse");
912
912
  }
913
913
 
914
- SprayFixed(request: Partial<FileSpray.SprayFixed>): Promise<FileSpray.SprayFixedResponse> {
915
- return this._connection.send("SprayFixed", request, "json", false, undefined, "SprayFixedResponse");
914
+ SprayFixed(request: FileSpray.SprayFixed, abortSignal?: AbortSignal): Promise<FileSpray.SprayFixedResponse> {
915
+ return this._connection.send("SprayFixed", request, "json", false, abortSignal, "SprayFixedResponse");
916
916
  }
917
917
 
918
- SprayVariable(request: Partial<FileSpray.SprayVariable>): Promise<FileSpray.SprayResponse> {
919
- return this._connection.send("SprayVariable", request, "json", false, undefined, "SprayResponse");
918
+ SprayVariable(request: FileSpray.SprayVariable, abortSignal?: AbortSignal): Promise<FileSpray.SprayResponse> {
919
+ return this._connection.send("SprayVariable", request, "json", false, abortSignal, "SprayResponse");
920
920
  }
921
921
 
922
- SubmitDFUWorkunit(request: Partial<FileSpray.SubmitDFUWorkunit>): Promise<FileSpray.SubmitDFUWorkunitResponse> {
923
- return this._connection.send("SubmitDFUWorkunit", request, "json", false, undefined, "SubmitDFUWorkunitResponse");
922
+ SubmitDFUWorkunit(request: FileSpray.SubmitDFUWorkunit, abortSignal?: AbortSignal): Promise<FileSpray.SubmitDFUWorkunitResponse> {
923
+ return this._connection.send("SubmitDFUWorkunit", request, "json", false, abortSignal, "SubmitDFUWorkunitResponse");
924
924
  }
925
925
 
926
- UpdateDFUWorkunit(request: Partial<FileSpray.UpdateDFUWorkunit>): Promise<FileSpray.UpdateDFUWorkunitResponse> {
927
- return this._connection.send("UpdateDFUWorkunit", request, "json", false, undefined, "UpdateDFUWorkunitResponse");
926
+ UpdateDFUWorkunit(request: FileSpray.UpdateDFUWorkunit, abortSignal?: AbortSignal): Promise<FileSpray.UpdateDFUWorkunitResponse> {
927
+ return this._connection.send("UpdateDFUWorkunit", request, "json", false, abortSignal, "UpdateDFUWorkunitResponse");
928
928
  }
929
929
 
930
930
  }