@hpcc-js/comms 3.15.5 → 3.15.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/index.js +1 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/browser/index.umd.cjs +1 -1
- package/dist/browser/index.umd.cjs.map +1 -1
- package/dist/node/index.cjs +9 -9
- package/dist/node/index.cjs.map +4 -4
- package/dist/node/index.js +9 -9
- package/dist/node/index.js.map +4 -4
- package/package.json +13 -11
- package/src/ecl/scope.ts +1 -2
- package/src/ecl/workunit.ts +1 -0
- package/src/services/fileSpray.ts +1 -26
- package/src/services/wsPackageProcess.ts +1 -1
- package/src/services/wsWorkunits.ts +1 -1
- package/src/services/wsdl/FileSpray/v1.27/FileSpray.ts +538 -538
- package/src/services/wsdl/FileSpray/v1.29/FileSpray.ts +946 -0
- package/src/services/wsdl/WsCloud/v1.02/WsCloud.ts +21 -21
- package/src/services/wsdl/WsDFUXRef/v1.04/WsDFUXRef.ts +70 -69
- package/src/services/wsdl/WsDali/v1.07/WsDali.ts +72 -72
- package/src/services/wsdl/WsDfu/v1.68/WsDfu.ts +1301 -0
- package/src/services/wsdl/WsESDLConfig/v1.5/WsESDLConfig.ts +366 -0
- package/src/services/wsdl/WsFileIO/v1.01/WsFileIO.ts +32 -32
- package/src/services/wsdl/WsPackageProcess/v1.08/WsPackageProcess.ts +503 -0
- package/src/services/wsdl/WsSasha/v1.01/WsSasha.ts +18 -18
- package/src/services/wsdl/WsTopology/v1.33/WsTopology.ts +383 -383
- package/src/services/wsdl/WsWorkunits/v2.05/WsWorkunits.ts +3177 -0
- package/src/services/wsdl/WsWorkunits/v2.08/WsWorkunits.ts +3179 -0
- package/src/services/wsdl/ws_access/v1.17/ws_access.ts +319 -319
- package/src/services/wsdl/ws_account/v1.07/ws_account.ts +39 -39
- package/src/services/wsdl/ws_codesign/v1.1/ws_codesign.ts +26 -26
- package/src/services/wsdl/ws_elk/v1/ws_elk.ts +14 -14
- package/src/services/wsdl/ws_machine/v1.19/ws_machine.ts +215 -215
- package/src/services/wsdl/wsstore/v1.02/wsstore.ts +72 -72
- package/types/ecl/workunit.d.ts +1 -0
- package/types/services/fileSpray.d.ts +1 -14
- package/types/services/wsPackageProcess.d.ts +1 -1
- package/types/services/wsWorkunits.d.ts +1 -1
- package/types/services/wsdl/FileSpray/v1.29/FileSpray.d.ts +751 -0
- package/types/services/wsdl/WsCloud/v1.02/WsCloud.d.ts +18 -18
- package/types/services/wsdl/WsDFUXRef/v1.04/WsDFUXRef.d.ts +58 -57
- package/types/services/wsdl/WsDali/v1.07/WsDali.d.ts +42 -42
- package/types/services/wsdl/WsPackageProcess/{v1.07 → v1.08}/WsPackageProcess.d.ts +121 -118
- package/types/services/wsdl/WsSasha/v1.01/WsSasha.d.ts +13 -13
- package/types/services/wsdl/WsTopology/v1.33/WsTopology.d.ts +360 -360
- package/types/services/wsdl/WsWorkunits/v2.08/WsWorkunits.d.ts +2573 -0
- package/types/services/wsdl/ws_access/v1.17/ws_access.d.ts +268 -268
- package/types/services/wsdl/ws_account/v1.07/ws_account.d.ts +34 -34
- package/types/services/wsdl/ws_codesign/v1.1/ws_codesign.d.ts +22 -22
- package/types/services/wsdl/ws_elk/v1/ws_elk.d.ts +12 -12
- package/types/services/wsdl/ws_machine/v1.19/ws_machine.d.ts +205 -205
- package/types/services/wsdl/wsstore/v1.02/wsstore.d.ts +61 -61
- package/types/services/wsdl/FileSpray/v1.27/FileSpray.d.ts +0 -736
- package/types/services/wsdl/WsWorkunits/v2.04/WsWorkunits.d.ts +0 -2565
|
@@ -0,0 +1,751 @@
|
|
|
1
|
+
import { IConnection, IOptions } from "../../../../connection.ts";
|
|
2
|
+
import { Service } from "../../../../espConnection.ts";
|
|
3
|
+
export declare namespace FileSpray {
|
|
4
|
+
type int = number;
|
|
5
|
+
type double = number;
|
|
6
|
+
type base64Binary = string;
|
|
7
|
+
type long = number;
|
|
8
|
+
type dateTime = string;
|
|
9
|
+
enum DFUWUActions {
|
|
10
|
+
Delete = "Delete",
|
|
11
|
+
Protect = "Protect",
|
|
12
|
+
Unprotect = "Unprotect",
|
|
13
|
+
Restore = "Restore",
|
|
14
|
+
SetToFailed = "SetToFailed",
|
|
15
|
+
Archive = "Archive"
|
|
16
|
+
}
|
|
17
|
+
enum DFUCommand {
|
|
18
|
+
copy = "copy",
|
|
19
|
+
remove = "remove",
|
|
20
|
+
move = "move",
|
|
21
|
+
rename = "rename",
|
|
22
|
+
replicate = "replicate",
|
|
23
|
+
import = "import",
|
|
24
|
+
export = "export",
|
|
25
|
+
monitor = "monitor",
|
|
26
|
+
copymerge = "copymerge",
|
|
27
|
+
supercopy = "supercopy",
|
|
28
|
+
publish = "publish"
|
|
29
|
+
}
|
|
30
|
+
interface AbortDFUWorkunit {
|
|
31
|
+
wuid?: string;
|
|
32
|
+
}
|
|
33
|
+
interface Exception {
|
|
34
|
+
Code?: string;
|
|
35
|
+
Audience?: string;
|
|
36
|
+
Source?: string;
|
|
37
|
+
Message?: string;
|
|
38
|
+
}
|
|
39
|
+
interface Exceptions {
|
|
40
|
+
Source?: string;
|
|
41
|
+
Exception?: Exception[];
|
|
42
|
+
}
|
|
43
|
+
interface AbortDFUWorkunitResponse {
|
|
44
|
+
Exceptions?: Exceptions;
|
|
45
|
+
}
|
|
46
|
+
interface Copy {
|
|
47
|
+
sourceLogicalName?: string;
|
|
48
|
+
destGroup?: string;
|
|
49
|
+
destGroupRoxie?: string;
|
|
50
|
+
destLogicalName?: string;
|
|
51
|
+
sourceDali?: string;
|
|
52
|
+
srcusername?: string;
|
|
53
|
+
srcpassword?: string;
|
|
54
|
+
overwrite?: boolean;
|
|
55
|
+
ensure?: boolean;
|
|
56
|
+
replicate?: boolean;
|
|
57
|
+
ReplicateOffset?: int;
|
|
58
|
+
maxConnections?: int;
|
|
59
|
+
throttle?: int;
|
|
60
|
+
transferBufferSize?: int;
|
|
61
|
+
nosplit?: boolean;
|
|
62
|
+
norecover?: boolean;
|
|
63
|
+
compress?: boolean;
|
|
64
|
+
Wrap?: boolean;
|
|
65
|
+
Multicopy?: boolean;
|
|
66
|
+
SourceDiffKeyName?: string;
|
|
67
|
+
DestDiffKeyName?: string;
|
|
68
|
+
superCopy?: boolean;
|
|
69
|
+
push?: boolean;
|
|
70
|
+
pull?: boolean;
|
|
71
|
+
ifnewer?: boolean;
|
|
72
|
+
noCommon?: boolean;
|
|
73
|
+
encrypt?: string;
|
|
74
|
+
decrypt?: string;
|
|
75
|
+
preserveCompression?: boolean;
|
|
76
|
+
DFUServerQueue?: string;
|
|
77
|
+
ExpireDays?: int;
|
|
78
|
+
KeyCompression?: string;
|
|
79
|
+
DestNumParts?: int;
|
|
80
|
+
}
|
|
81
|
+
interface CopyResponse {
|
|
82
|
+
Exceptions?: Exceptions;
|
|
83
|
+
result?: string;
|
|
84
|
+
}
|
|
85
|
+
interface CreateDFUPublisherWorkunit {
|
|
86
|
+
DFUServerQueue?: string;
|
|
87
|
+
}
|
|
88
|
+
interface result {
|
|
89
|
+
ID?: string;
|
|
90
|
+
DFUServerName?: string;
|
|
91
|
+
ClusterName?: string;
|
|
92
|
+
JobName?: string;
|
|
93
|
+
Queue?: string;
|
|
94
|
+
User?: string;
|
|
95
|
+
isProtected?: boolean;
|
|
96
|
+
Command?: int;
|
|
97
|
+
CommandMessage?: string;
|
|
98
|
+
PercentDone?: int;
|
|
99
|
+
SecsLeft?: int;
|
|
100
|
+
ProgressMessage?: string;
|
|
101
|
+
SummaryMessage?: string;
|
|
102
|
+
State?: int;
|
|
103
|
+
SourceLogicalName?: string;
|
|
104
|
+
SourceIP?: string;
|
|
105
|
+
SourceFilePath?: string;
|
|
106
|
+
SourceDali?: string;
|
|
107
|
+
SourceRecordSize?: int;
|
|
108
|
+
SourceFormat?: int;
|
|
109
|
+
RowTag?: string;
|
|
110
|
+
SourceNumParts?: int;
|
|
111
|
+
SourceDirectory?: string;
|
|
112
|
+
DestLogicalName?: string;
|
|
113
|
+
DestGroupName?: string;
|
|
114
|
+
DestDirectory?: string;
|
|
115
|
+
DestIP?: string;
|
|
116
|
+
DestFilePath?: string;
|
|
117
|
+
DestFormat?: int;
|
|
118
|
+
DestNumParts?: int;
|
|
119
|
+
DestRecordSize?: int;
|
|
120
|
+
Replicate?: boolean;
|
|
121
|
+
Overwrite?: boolean;
|
|
122
|
+
Compress?: boolean;
|
|
123
|
+
SourceCsvSeparate?: string;
|
|
124
|
+
SourceCsvQuote?: string;
|
|
125
|
+
SourceCsvTerminate?: string;
|
|
126
|
+
SourceCsvEscape?: string;
|
|
127
|
+
TimeStarted?: string;
|
|
128
|
+
TimeStopped?: string;
|
|
129
|
+
StateMessage?: string;
|
|
130
|
+
MonitorEventName?: string;
|
|
131
|
+
MonitorSub?: boolean;
|
|
132
|
+
MonitorShotLimit?: int;
|
|
133
|
+
SourceDiffKeyName?: string;
|
|
134
|
+
DestDiffKeyName?: string;
|
|
135
|
+
Archived?: boolean;
|
|
136
|
+
encrypt?: string;
|
|
137
|
+
decrypt?: string;
|
|
138
|
+
failIfNoSourceFile?: boolean;
|
|
139
|
+
recordStructurePresent?: boolean;
|
|
140
|
+
quotedTerminator?: boolean;
|
|
141
|
+
preserveCompression?: boolean;
|
|
142
|
+
expireDays?: int;
|
|
143
|
+
PreserveFileParts?: boolean;
|
|
144
|
+
FileAccessCost?: double;
|
|
145
|
+
KbPerSecAve?: int;
|
|
146
|
+
KbPerSec?: int;
|
|
147
|
+
}
|
|
148
|
+
interface CreateDFUPublisherWorkunitResponse {
|
|
149
|
+
Exceptions?: Exceptions;
|
|
150
|
+
result?: result;
|
|
151
|
+
}
|
|
152
|
+
interface CreateDFUWorkunit {
|
|
153
|
+
DFUServerQueue?: string;
|
|
154
|
+
}
|
|
155
|
+
interface CreateDFUWorkunitResponse {
|
|
156
|
+
Exceptions?: Exceptions;
|
|
157
|
+
result?: result;
|
|
158
|
+
}
|
|
159
|
+
interface DFUWUFileRequest {
|
|
160
|
+
Wuid?: string;
|
|
161
|
+
Type?: string;
|
|
162
|
+
PlainText?: string;
|
|
163
|
+
}
|
|
164
|
+
interface DFUWUFileResponse {
|
|
165
|
+
Exceptions?: Exceptions;
|
|
166
|
+
file?: string;
|
|
167
|
+
}
|
|
168
|
+
interface DFUWUSearchRequest {
|
|
169
|
+
}
|
|
170
|
+
interface ClusterNames {
|
|
171
|
+
ClusterName?: string[];
|
|
172
|
+
}
|
|
173
|
+
interface DFUWUSearchResponse {
|
|
174
|
+
Exceptions?: Exceptions;
|
|
175
|
+
ClusterNames?: ClusterNames;
|
|
176
|
+
}
|
|
177
|
+
interface wuids {
|
|
178
|
+
Item?: string[];
|
|
179
|
+
}
|
|
180
|
+
interface DFUWorkunitsActionRequest {
|
|
181
|
+
wuids?: wuids;
|
|
182
|
+
Type?: DFUWUActions;
|
|
183
|
+
}
|
|
184
|
+
interface DFUActionResult {
|
|
185
|
+
ID?: string;
|
|
186
|
+
Action?: string;
|
|
187
|
+
Result?: string;
|
|
188
|
+
}
|
|
189
|
+
interface DFUActionResults {
|
|
190
|
+
DFUActionResult?: DFUActionResult[];
|
|
191
|
+
}
|
|
192
|
+
interface DFUWorkunitsActionResponse {
|
|
193
|
+
Exceptions?: Exceptions;
|
|
194
|
+
FirstColumn?: string;
|
|
195
|
+
DFUActionResults?: DFUActionResults;
|
|
196
|
+
}
|
|
197
|
+
interface DeleteDFUWorkunit {
|
|
198
|
+
wuid?: string;
|
|
199
|
+
}
|
|
200
|
+
interface DeleteDFUWorkunitResponse {
|
|
201
|
+
Exceptions?: Exceptions;
|
|
202
|
+
result?: boolean;
|
|
203
|
+
}
|
|
204
|
+
interface DeleteDFUWorkunits {
|
|
205
|
+
wuids?: wuids;
|
|
206
|
+
}
|
|
207
|
+
interface DeleteDFUWorkunitsResponse {
|
|
208
|
+
Exceptions?: Exceptions;
|
|
209
|
+
}
|
|
210
|
+
interface Names {
|
|
211
|
+
Item?: string[];
|
|
212
|
+
}
|
|
213
|
+
interface DeleteDropZoneFilesRequest {
|
|
214
|
+
DropZoneName?: string;
|
|
215
|
+
NetAddress?: string;
|
|
216
|
+
Path?: string;
|
|
217
|
+
OS?: string;
|
|
218
|
+
Names?: Names;
|
|
219
|
+
}
|
|
220
|
+
interface Despray {
|
|
221
|
+
destGroup?: string;
|
|
222
|
+
sourceLogicalName?: string;
|
|
223
|
+
destIP?: string;
|
|
224
|
+
destPath?: string;
|
|
225
|
+
destPlane?: string;
|
|
226
|
+
dstxml?: base64Binary;
|
|
227
|
+
overwrite?: boolean;
|
|
228
|
+
maxConnections?: int;
|
|
229
|
+
throttle?: int;
|
|
230
|
+
transferBufferSize?: int;
|
|
231
|
+
splitprefix?: string;
|
|
232
|
+
norecover?: boolean;
|
|
233
|
+
wrap?: boolean;
|
|
234
|
+
multiCopy?: boolean;
|
|
235
|
+
SingleConnection?: boolean;
|
|
236
|
+
DFUServerQueue?: string;
|
|
237
|
+
compress?: boolean;
|
|
238
|
+
encrypt?: string;
|
|
239
|
+
decrypt?: string;
|
|
240
|
+
}
|
|
241
|
+
interface DesprayResponse {
|
|
242
|
+
Exceptions?: Exceptions;
|
|
243
|
+
wuid?: string;
|
|
244
|
+
}
|
|
245
|
+
interface DfuMonitorRequest {
|
|
246
|
+
EventName?: string;
|
|
247
|
+
LogicalName?: string;
|
|
248
|
+
Ip?: string;
|
|
249
|
+
Filename?: string;
|
|
250
|
+
Sub?: boolean;
|
|
251
|
+
ShotLimit?: int;
|
|
252
|
+
}
|
|
253
|
+
interface DfuMonitorResponse {
|
|
254
|
+
Exceptions?: Exceptions;
|
|
255
|
+
wuid?: string;
|
|
256
|
+
}
|
|
257
|
+
interface DropZoneFileSearchRequest {
|
|
258
|
+
DropZoneName?: string;
|
|
259
|
+
Server?: string;
|
|
260
|
+
ECLWatchVisibleOnly?: boolean;
|
|
261
|
+
NameFilter?: string;
|
|
262
|
+
}
|
|
263
|
+
interface PhysicalFileStruct {
|
|
264
|
+
name?: string;
|
|
265
|
+
Server?: string;
|
|
266
|
+
isDir?: boolean;
|
|
267
|
+
filesize?: long;
|
|
268
|
+
modifiedtime?: string;
|
|
269
|
+
Path?: string;
|
|
270
|
+
Files?: Files;
|
|
271
|
+
}
|
|
272
|
+
interface Files {
|
|
273
|
+
PhysicalFileStruct?: PhysicalFileStruct[];
|
|
274
|
+
}
|
|
275
|
+
interface DropZoneFileSearchResponse {
|
|
276
|
+
Exceptions?: Exceptions;
|
|
277
|
+
Files?: Files;
|
|
278
|
+
Warning?: string;
|
|
279
|
+
}
|
|
280
|
+
interface DropZoneFilesRequest {
|
|
281
|
+
DropZoneName?: string;
|
|
282
|
+
NetAddress?: string;
|
|
283
|
+
Path?: string;
|
|
284
|
+
OS?: string;
|
|
285
|
+
Subfolder?: string;
|
|
286
|
+
ECLWatchVisibleOnly?: boolean;
|
|
287
|
+
DirectoryOnly?: boolean;
|
|
288
|
+
}
|
|
289
|
+
interface DropZone {
|
|
290
|
+
Name?: string;
|
|
291
|
+
NetAddress?: string;
|
|
292
|
+
Path?: string;
|
|
293
|
+
Computer?: string;
|
|
294
|
+
Linux?: string;
|
|
295
|
+
}
|
|
296
|
+
interface DropZones {
|
|
297
|
+
DropZone?: DropZone[];
|
|
298
|
+
}
|
|
299
|
+
interface DropZoneFilesResponse {
|
|
300
|
+
Exceptions?: Exceptions;
|
|
301
|
+
DropZoneName?: string;
|
|
302
|
+
NetAddress?: string;
|
|
303
|
+
Path?: string;
|
|
304
|
+
OS?: int;
|
|
305
|
+
ECLWatchVisibleOnly?: boolean;
|
|
306
|
+
DropZones?: DropZones;
|
|
307
|
+
Files?: Files;
|
|
308
|
+
}
|
|
309
|
+
interface EchoDateTime {
|
|
310
|
+
dt?: dateTime;
|
|
311
|
+
}
|
|
312
|
+
interface EchoDateTimeResponse {
|
|
313
|
+
result?: dateTime;
|
|
314
|
+
}
|
|
315
|
+
interface FileListRequest {
|
|
316
|
+
DropZoneName?: string;
|
|
317
|
+
Netaddr?: string;
|
|
318
|
+
Path?: string;
|
|
319
|
+
Mask?: string;
|
|
320
|
+
OS?: string;
|
|
321
|
+
DirectoryOnly?: boolean;
|
|
322
|
+
}
|
|
323
|
+
interface files {
|
|
324
|
+
PhysicalFileStruct?: PhysicalFileStruct[];
|
|
325
|
+
}
|
|
326
|
+
interface FileListResponse {
|
|
327
|
+
Exceptions?: Exceptions;
|
|
328
|
+
Netaddr?: string;
|
|
329
|
+
Path?: string;
|
|
330
|
+
Mask?: string;
|
|
331
|
+
OS?: int;
|
|
332
|
+
DirectoryOnly?: boolean;
|
|
333
|
+
AcceptLanguage?: string;
|
|
334
|
+
files?: files;
|
|
335
|
+
}
|
|
336
|
+
interface GetDFUExceptions {
|
|
337
|
+
wuid?: string;
|
|
338
|
+
}
|
|
339
|
+
interface DFUException {
|
|
340
|
+
Code?: int;
|
|
341
|
+
Message?: string;
|
|
342
|
+
}
|
|
343
|
+
interface result2 {
|
|
344
|
+
DFUException?: DFUException[];
|
|
345
|
+
}
|
|
346
|
+
interface GetDFUExceptionsResponse {
|
|
347
|
+
Exceptions?: Exceptions;
|
|
348
|
+
result?: result2;
|
|
349
|
+
}
|
|
350
|
+
interface ProgressRequest {
|
|
351
|
+
wuid?: string;
|
|
352
|
+
}
|
|
353
|
+
interface ProgressResponse {
|
|
354
|
+
Exceptions?: Exceptions;
|
|
355
|
+
wuid?: string;
|
|
356
|
+
PercentDone?: int;
|
|
357
|
+
SecsLeft?: int;
|
|
358
|
+
KbPerSecAve?: int;
|
|
359
|
+
KbPerSec?: int;
|
|
360
|
+
SlavesDone?: int;
|
|
361
|
+
TimeTaken?: string;
|
|
362
|
+
ProgressMessage?: string;
|
|
363
|
+
SummaryMessage?: string;
|
|
364
|
+
State?: string;
|
|
365
|
+
}
|
|
366
|
+
interface GetDFUServerQueuesRequest {
|
|
367
|
+
DFUServerName?: string;
|
|
368
|
+
}
|
|
369
|
+
interface GetDFUServerQueuesResponse {
|
|
370
|
+
Exceptions?: Exceptions;
|
|
371
|
+
Names?: Names;
|
|
372
|
+
}
|
|
373
|
+
interface GetDFUWorkunit {
|
|
374
|
+
wuid?: string;
|
|
375
|
+
}
|
|
376
|
+
interface GetDFUWorkunitResponse {
|
|
377
|
+
Exceptions?: Exceptions;
|
|
378
|
+
result?: result;
|
|
379
|
+
AutoRefresh?: int;
|
|
380
|
+
}
|
|
381
|
+
interface GetDFUWorkunits {
|
|
382
|
+
Wuid?: string;
|
|
383
|
+
Owner?: string;
|
|
384
|
+
Cluster?: string;
|
|
385
|
+
StateReq?: string;
|
|
386
|
+
Command?: DFUCommand;
|
|
387
|
+
Archived?: boolean;
|
|
388
|
+
Jobname?: string;
|
|
389
|
+
PageSize?: long;
|
|
390
|
+
CurrentPage?: int;
|
|
391
|
+
PageStartFrom?: long;
|
|
392
|
+
Sortby?: string;
|
|
393
|
+
Descending?: boolean;
|
|
394
|
+
CacheHint?: long;
|
|
395
|
+
ParentWuid?: string;
|
|
396
|
+
PublisherWuid?: string;
|
|
397
|
+
includeProgressMessages?: boolean;
|
|
398
|
+
includeTimings?: boolean;
|
|
399
|
+
includeTransferRate?: boolean;
|
|
400
|
+
}
|
|
401
|
+
interface DFUWorkunit {
|
|
402
|
+
ID?: string;
|
|
403
|
+
DFUServerName?: string;
|
|
404
|
+
ClusterName?: string;
|
|
405
|
+
JobName?: string;
|
|
406
|
+
Queue?: string;
|
|
407
|
+
User?: string;
|
|
408
|
+
isProtected?: boolean;
|
|
409
|
+
Command?: int;
|
|
410
|
+
CommandMessage?: string;
|
|
411
|
+
PercentDone?: int;
|
|
412
|
+
SecsLeft?: int;
|
|
413
|
+
ProgressMessage?: string;
|
|
414
|
+
SummaryMessage?: string;
|
|
415
|
+
State?: int;
|
|
416
|
+
SourceLogicalName?: string;
|
|
417
|
+
SourceIP?: string;
|
|
418
|
+
SourceFilePath?: string;
|
|
419
|
+
SourceDali?: string;
|
|
420
|
+
SourceRecordSize?: int;
|
|
421
|
+
SourceFormat?: int;
|
|
422
|
+
RowTag?: string;
|
|
423
|
+
SourceNumParts?: int;
|
|
424
|
+
SourceDirectory?: string;
|
|
425
|
+
DestLogicalName?: string;
|
|
426
|
+
DestGroupName?: string;
|
|
427
|
+
DestDirectory?: string;
|
|
428
|
+
DestIP?: string;
|
|
429
|
+
DestFilePath?: string;
|
|
430
|
+
DestFormat?: int;
|
|
431
|
+
DestNumParts?: int;
|
|
432
|
+
DestRecordSize?: int;
|
|
433
|
+
Replicate?: boolean;
|
|
434
|
+
Overwrite?: boolean;
|
|
435
|
+
Compress?: boolean;
|
|
436
|
+
SourceCsvSeparate?: string;
|
|
437
|
+
SourceCsvQuote?: string;
|
|
438
|
+
SourceCsvTerminate?: string;
|
|
439
|
+
SourceCsvEscape?: string;
|
|
440
|
+
TimeStarted?: string;
|
|
441
|
+
TimeStopped?: string;
|
|
442
|
+
StateMessage?: string;
|
|
443
|
+
MonitorEventName?: string;
|
|
444
|
+
MonitorSub?: boolean;
|
|
445
|
+
MonitorShotLimit?: int;
|
|
446
|
+
SourceDiffKeyName?: string;
|
|
447
|
+
DestDiffKeyName?: string;
|
|
448
|
+
Archived?: boolean;
|
|
449
|
+
encrypt?: string;
|
|
450
|
+
decrypt?: string;
|
|
451
|
+
failIfNoSourceFile?: boolean;
|
|
452
|
+
recordStructurePresent?: boolean;
|
|
453
|
+
quotedTerminator?: boolean;
|
|
454
|
+
preserveCompression?: boolean;
|
|
455
|
+
expireDays?: int;
|
|
456
|
+
PreserveFileParts?: boolean;
|
|
457
|
+
FileAccessCost?: double;
|
|
458
|
+
KbPerSecAve?: int;
|
|
459
|
+
KbPerSec?: int;
|
|
460
|
+
}
|
|
461
|
+
interface results {
|
|
462
|
+
DFUWorkunit?: DFUWorkunit[];
|
|
463
|
+
}
|
|
464
|
+
interface GetDFUWorkunitsResponse {
|
|
465
|
+
Exceptions?: Exceptions;
|
|
466
|
+
results?: results;
|
|
467
|
+
Command?: DFUCommand;
|
|
468
|
+
Owner?: string;
|
|
469
|
+
Cluster?: string;
|
|
470
|
+
StateReq?: string;
|
|
471
|
+
PageSize?: long;
|
|
472
|
+
PrevPage?: long;
|
|
473
|
+
NextPage?: long;
|
|
474
|
+
LastPage?: long;
|
|
475
|
+
NumWUs?: long;
|
|
476
|
+
PageStartFrom?: long;
|
|
477
|
+
PageEndAt?: long;
|
|
478
|
+
First?: boolean;
|
|
479
|
+
Sortby?: string;
|
|
480
|
+
Descending?: boolean;
|
|
481
|
+
BasicQuery?: string;
|
|
482
|
+
Filters?: string;
|
|
483
|
+
CacheHint?: long;
|
|
484
|
+
}
|
|
485
|
+
interface GetRemoteTargetsRequest {
|
|
486
|
+
}
|
|
487
|
+
interface TargetNames {
|
|
488
|
+
Item?: string[];
|
|
489
|
+
}
|
|
490
|
+
interface GetRemoteTargetsResponse {
|
|
491
|
+
Exceptions?: Exceptions;
|
|
492
|
+
TargetNames?: TargetNames;
|
|
493
|
+
AllowForeign?: boolean;
|
|
494
|
+
}
|
|
495
|
+
interface GetSprayTargetsRequest {
|
|
496
|
+
}
|
|
497
|
+
interface GroupNode {
|
|
498
|
+
Name?: string;
|
|
499
|
+
ClusterType?: string;
|
|
500
|
+
ReplicateOutputs?: boolean;
|
|
501
|
+
}
|
|
502
|
+
interface GroupNodes {
|
|
503
|
+
GroupNode?: GroupNode[];
|
|
504
|
+
}
|
|
505
|
+
interface GetSprayTargetsResponse {
|
|
506
|
+
Exceptions?: Exceptions;
|
|
507
|
+
GroupNodes?: GroupNodes;
|
|
508
|
+
}
|
|
509
|
+
interface OpenSaveRequest {
|
|
510
|
+
Location?: string;
|
|
511
|
+
Path?: string;
|
|
512
|
+
Name?: string;
|
|
513
|
+
Type?: string;
|
|
514
|
+
DateTime?: string;
|
|
515
|
+
BinaryFile?: boolean;
|
|
516
|
+
}
|
|
517
|
+
interface OpenSaveResponse {
|
|
518
|
+
Exceptions?: Exceptions;
|
|
519
|
+
Location?: string;
|
|
520
|
+
Path?: string;
|
|
521
|
+
Name?: string;
|
|
522
|
+
Type?: string;
|
|
523
|
+
DateTime?: string;
|
|
524
|
+
Viewable?: boolean;
|
|
525
|
+
}
|
|
526
|
+
interface FileSprayPingRequest {
|
|
527
|
+
}
|
|
528
|
+
interface FileSprayPingResponse {
|
|
529
|
+
}
|
|
530
|
+
interface Rename {
|
|
531
|
+
srcname?: string;
|
|
532
|
+
dstname?: string;
|
|
533
|
+
overwrite?: boolean;
|
|
534
|
+
DFUServerQueue?: string;
|
|
535
|
+
}
|
|
536
|
+
interface RenameResponse {
|
|
537
|
+
Exceptions?: Exceptions;
|
|
538
|
+
wuid?: string;
|
|
539
|
+
}
|
|
540
|
+
interface Replicate {
|
|
541
|
+
sourceLogicalName?: string;
|
|
542
|
+
replicateOffset?: int;
|
|
543
|
+
cluster?: string;
|
|
544
|
+
repeatLast?: boolean;
|
|
545
|
+
onlyRepeated?: boolean;
|
|
546
|
+
DFUServerQueue?: string;
|
|
547
|
+
}
|
|
548
|
+
interface ReplicateResponse {
|
|
549
|
+
Exceptions?: Exceptions;
|
|
550
|
+
wuid?: string;
|
|
551
|
+
}
|
|
552
|
+
interface ShowResultRequest {
|
|
553
|
+
Result?: string;
|
|
554
|
+
}
|
|
555
|
+
interface ShowResultResponse {
|
|
556
|
+
Exceptions?: Exceptions;
|
|
557
|
+
Result?: string;
|
|
558
|
+
}
|
|
559
|
+
interface SprayFixed {
|
|
560
|
+
sourceIP?: string;
|
|
561
|
+
sourcePlane?: string;
|
|
562
|
+
sourcePath?: string;
|
|
563
|
+
srcxml?: base64Binary;
|
|
564
|
+
sourceFormat?: string;
|
|
565
|
+
sourceRecordSize?: int;
|
|
566
|
+
destGroup?: string;
|
|
567
|
+
destLogicalName?: string;
|
|
568
|
+
destNumParts?: int;
|
|
569
|
+
overwrite?: boolean;
|
|
570
|
+
replicate?: boolean;
|
|
571
|
+
ReplicateOffset?: int;
|
|
572
|
+
maxConnections?: int;
|
|
573
|
+
throttle?: int;
|
|
574
|
+
transferBufferSize?: int;
|
|
575
|
+
prefix?: string;
|
|
576
|
+
nosplit?: boolean;
|
|
577
|
+
norecover?: boolean;
|
|
578
|
+
compress?: boolean;
|
|
579
|
+
push?: boolean;
|
|
580
|
+
pull?: boolean;
|
|
581
|
+
noCommon?: boolean;
|
|
582
|
+
encrypt?: string;
|
|
583
|
+
decrypt?: string;
|
|
584
|
+
wrap?: boolean;
|
|
585
|
+
failIfNoSourceFile?: boolean;
|
|
586
|
+
recordStructurePresent?: boolean;
|
|
587
|
+
quotedTerminator?: boolean;
|
|
588
|
+
expireDays?: int;
|
|
589
|
+
DFUServerQueue?: string;
|
|
590
|
+
}
|
|
591
|
+
interface SprayFixedResponse {
|
|
592
|
+
Exceptions?: Exceptions;
|
|
593
|
+
wuid?: string;
|
|
594
|
+
}
|
|
595
|
+
interface SprayVariable {
|
|
596
|
+
sourceIP?: string;
|
|
597
|
+
sourcePlane?: string;
|
|
598
|
+
sourcePath?: string;
|
|
599
|
+
srcxml?: base64Binary;
|
|
600
|
+
sourceMaxRecordSize?: int;
|
|
601
|
+
sourceFormat?: int;
|
|
602
|
+
NoSourceCsvSeparator?: boolean;
|
|
603
|
+
sourceCsvSeparate?: string;
|
|
604
|
+
sourceCsvTerminate?: string;
|
|
605
|
+
sourceCsvQuote?: string;
|
|
606
|
+
sourceCsvEscape?: string;
|
|
607
|
+
sourceRowTag?: string;
|
|
608
|
+
destGroup?: string;
|
|
609
|
+
destLogicalName?: string;
|
|
610
|
+
destNumParts?: int;
|
|
611
|
+
overwrite?: boolean;
|
|
612
|
+
replicate?: boolean;
|
|
613
|
+
ReplicateOffset?: int;
|
|
614
|
+
maxConnections?: int;
|
|
615
|
+
throttle?: int;
|
|
616
|
+
transferBufferSize?: int;
|
|
617
|
+
prefix?: string;
|
|
618
|
+
nosplit?: boolean;
|
|
619
|
+
norecover?: boolean;
|
|
620
|
+
compress?: boolean;
|
|
621
|
+
push?: boolean;
|
|
622
|
+
pull?: boolean;
|
|
623
|
+
noCommon?: boolean;
|
|
624
|
+
encrypt?: string;
|
|
625
|
+
decrypt?: string;
|
|
626
|
+
failIfNoSourceFile?: boolean;
|
|
627
|
+
recordStructurePresent?: boolean;
|
|
628
|
+
quotedTerminator?: boolean;
|
|
629
|
+
sourceRowPath?: string;
|
|
630
|
+
isJSON?: boolean;
|
|
631
|
+
expireDays?: int;
|
|
632
|
+
DFUServerQueue?: string;
|
|
633
|
+
srcUsername?: string;
|
|
634
|
+
srcPassword?: string;
|
|
635
|
+
}
|
|
636
|
+
interface SprayResponse {
|
|
637
|
+
Exceptions?: Exceptions;
|
|
638
|
+
wuid?: string;
|
|
639
|
+
}
|
|
640
|
+
interface SubmitDFUWorkunit {
|
|
641
|
+
wuid?: string;
|
|
642
|
+
}
|
|
643
|
+
interface SubmitDFUWorkunitResponse {
|
|
644
|
+
Exceptions?: Exceptions;
|
|
645
|
+
}
|
|
646
|
+
interface wu {
|
|
647
|
+
ID?: string;
|
|
648
|
+
DFUServerName?: string;
|
|
649
|
+
ClusterName?: string;
|
|
650
|
+
JobName?: string;
|
|
651
|
+
Queue?: string;
|
|
652
|
+
User?: string;
|
|
653
|
+
isProtected?: boolean;
|
|
654
|
+
Command?: int;
|
|
655
|
+
CommandMessage?: string;
|
|
656
|
+
PercentDone?: int;
|
|
657
|
+
SecsLeft?: int;
|
|
658
|
+
ProgressMessage?: string;
|
|
659
|
+
SummaryMessage?: string;
|
|
660
|
+
State?: int;
|
|
661
|
+
SourceLogicalName?: string;
|
|
662
|
+
SourceIP?: string;
|
|
663
|
+
SourceFilePath?: string;
|
|
664
|
+
SourceDali?: string;
|
|
665
|
+
SourceRecordSize?: int;
|
|
666
|
+
SourceFormat?: int;
|
|
667
|
+
RowTag?: string;
|
|
668
|
+
SourceNumParts?: int;
|
|
669
|
+
SourceDirectory?: string;
|
|
670
|
+
DestLogicalName?: string;
|
|
671
|
+
DestGroupName?: string;
|
|
672
|
+
DestDirectory?: string;
|
|
673
|
+
DestIP?: string;
|
|
674
|
+
DestFilePath?: string;
|
|
675
|
+
DestFormat?: int;
|
|
676
|
+
DestNumParts?: int;
|
|
677
|
+
DestRecordSize?: int;
|
|
678
|
+
Replicate?: boolean;
|
|
679
|
+
Overwrite?: boolean;
|
|
680
|
+
Compress?: boolean;
|
|
681
|
+
SourceCsvSeparate?: string;
|
|
682
|
+
SourceCsvQuote?: string;
|
|
683
|
+
SourceCsvTerminate?: string;
|
|
684
|
+
SourceCsvEscape?: string;
|
|
685
|
+
TimeStarted?: string;
|
|
686
|
+
TimeStopped?: string;
|
|
687
|
+
StateMessage?: string;
|
|
688
|
+
MonitorEventName?: string;
|
|
689
|
+
MonitorSub?: boolean;
|
|
690
|
+
MonitorShotLimit?: int;
|
|
691
|
+
SourceDiffKeyName?: string;
|
|
692
|
+
DestDiffKeyName?: string;
|
|
693
|
+
Archived?: boolean;
|
|
694
|
+
encrypt?: string;
|
|
695
|
+
decrypt?: string;
|
|
696
|
+
failIfNoSourceFile?: boolean;
|
|
697
|
+
recordStructurePresent?: boolean;
|
|
698
|
+
quotedTerminator?: boolean;
|
|
699
|
+
preserveCompression?: boolean;
|
|
700
|
+
expireDays?: int;
|
|
701
|
+
PreserveFileParts?: boolean;
|
|
702
|
+
FileAccessCost?: double;
|
|
703
|
+
KbPerSecAve?: int;
|
|
704
|
+
KbPerSec?: int;
|
|
705
|
+
}
|
|
706
|
+
interface UpdateDFUWorkunit {
|
|
707
|
+
wu?: wu;
|
|
708
|
+
ClusterOrig?: string;
|
|
709
|
+
JobNameOrig?: string;
|
|
710
|
+
isProtectedOrig?: boolean;
|
|
711
|
+
StateOrig?: int;
|
|
712
|
+
}
|
|
713
|
+
interface UpdateDFUWorkunitResponse {
|
|
714
|
+
Exceptions?: Exceptions;
|
|
715
|
+
}
|
|
716
|
+
}
|
|
717
|
+
export declare class FileSprayServiceBase extends Service {
|
|
718
|
+
constructor(optsConnection: IOptions | IConnection);
|
|
719
|
+
AbortDFUWorkunit(request: FileSpray.AbortDFUWorkunit, abortSignal?: AbortSignal): Promise<FileSpray.AbortDFUWorkunitResponse>;
|
|
720
|
+
Copy(request: FileSpray.Copy, abortSignal?: AbortSignal): Promise<FileSpray.CopyResponse>;
|
|
721
|
+
CreateDFUPublisherWorkunit(request: FileSpray.CreateDFUPublisherWorkunit, abortSignal?: AbortSignal): Promise<FileSpray.CreateDFUPublisherWorkunitResponse>;
|
|
722
|
+
CreateDFUWorkunit(request: FileSpray.CreateDFUWorkunit, abortSignal?: AbortSignal): Promise<FileSpray.CreateDFUWorkunitResponse>;
|
|
723
|
+
DFUWUFile(request: FileSpray.DFUWUFileRequest, abortSignal?: AbortSignal): Promise<FileSpray.DFUWUFileResponse>;
|
|
724
|
+
DFUWUSearch(request: FileSpray.DFUWUSearchRequest, abortSignal?: AbortSignal): Promise<FileSpray.DFUWUSearchResponse>;
|
|
725
|
+
DFUWorkunitsAction(request: FileSpray.DFUWorkunitsActionRequest, abortSignal?: AbortSignal): Promise<FileSpray.DFUWorkunitsActionResponse>;
|
|
726
|
+
DeleteDFUWorkunit(request: FileSpray.DeleteDFUWorkunit, abortSignal?: AbortSignal): Promise<FileSpray.DeleteDFUWorkunitResponse>;
|
|
727
|
+
DeleteDFUWorkunits(request: FileSpray.DeleteDFUWorkunits, abortSignal?: AbortSignal): Promise<FileSpray.DeleteDFUWorkunitsResponse>;
|
|
728
|
+
DeleteDropZoneFiles(request: FileSpray.DeleteDropZoneFilesRequest, abortSignal?: AbortSignal): Promise<FileSpray.DFUWorkunitsActionResponse>;
|
|
729
|
+
Despray(request: FileSpray.Despray, abortSignal?: AbortSignal): Promise<FileSpray.DesprayResponse>;
|
|
730
|
+
DfuMonitor(request: FileSpray.DfuMonitorRequest, abortSignal?: AbortSignal): Promise<FileSpray.DfuMonitorResponse>;
|
|
731
|
+
DropZoneFileSearch(request: FileSpray.DropZoneFileSearchRequest, abortSignal?: AbortSignal): Promise<FileSpray.DropZoneFileSearchResponse>;
|
|
732
|
+
DropZoneFiles(request: FileSpray.DropZoneFilesRequest, abortSignal?: AbortSignal): Promise<FileSpray.DropZoneFilesResponse>;
|
|
733
|
+
EchoDateTime(request: FileSpray.EchoDateTime, abortSignal?: AbortSignal): Promise<FileSpray.EchoDateTimeResponse>;
|
|
734
|
+
FileList(request: FileSpray.FileListRequest, abortSignal?: AbortSignal): Promise<FileSpray.FileListResponse>;
|
|
735
|
+
GetDFUExceptions(request: FileSpray.GetDFUExceptions, abortSignal?: AbortSignal): Promise<FileSpray.GetDFUExceptionsResponse>;
|
|
736
|
+
GetDFUProgress(request: FileSpray.ProgressRequest, abortSignal?: AbortSignal): Promise<FileSpray.ProgressResponse>;
|
|
737
|
+
GetDFUServerQueues(request: FileSpray.GetDFUServerQueuesRequest, abortSignal?: AbortSignal): Promise<FileSpray.GetDFUServerQueuesResponse>;
|
|
738
|
+
GetDFUWorkunit(request: FileSpray.GetDFUWorkunit, abortSignal?: AbortSignal): Promise<FileSpray.GetDFUWorkunitResponse>;
|
|
739
|
+
GetDFUWorkunits(request: FileSpray.GetDFUWorkunits, abortSignal?: AbortSignal): Promise<FileSpray.GetDFUWorkunitsResponse>;
|
|
740
|
+
GetRemoteTargets(request: FileSpray.GetRemoteTargetsRequest, abortSignal?: AbortSignal): Promise<FileSpray.GetRemoteTargetsResponse>;
|
|
741
|
+
GetSprayTargets(request: FileSpray.GetSprayTargetsRequest, abortSignal?: AbortSignal): Promise<FileSpray.GetSprayTargetsResponse>;
|
|
742
|
+
OpenSave(request: FileSpray.OpenSaveRequest, abortSignal?: AbortSignal): Promise<FileSpray.OpenSaveResponse>;
|
|
743
|
+
Ping(request: FileSpray.FileSprayPingRequest, abortSignal?: AbortSignal): Promise<FileSpray.FileSprayPingResponse>;
|
|
744
|
+
Rename(request: FileSpray.Rename, abortSignal?: AbortSignal): Promise<FileSpray.RenameResponse>;
|
|
745
|
+
Replicate(request: FileSpray.Replicate, abortSignal?: AbortSignal): Promise<FileSpray.ReplicateResponse>;
|
|
746
|
+
ShowResult(request: FileSpray.ShowResultRequest, abortSignal?: AbortSignal): Promise<FileSpray.ShowResultResponse>;
|
|
747
|
+
SprayFixed(request: FileSpray.SprayFixed, abortSignal?: AbortSignal): Promise<FileSpray.SprayFixedResponse>;
|
|
748
|
+
SprayVariable(request: FileSpray.SprayVariable, abortSignal?: AbortSignal): Promise<FileSpray.SprayResponse>;
|
|
749
|
+
SubmitDFUWorkunit(request: FileSpray.SubmitDFUWorkunit, abortSignal?: AbortSignal): Promise<FileSpray.SubmitDFUWorkunitResponse>;
|
|
750
|
+
UpdateDFUWorkunit(request: FileSpray.UpdateDFUWorkunit, abortSignal?: AbortSignal): Promise<FileSpray.UpdateDFUWorkunitResponse>;
|
|
751
|
+
}
|