@hpcc-js/comms 3.14.4 → 3.15.0
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/LICENSE +43 -43
- package/README.md +50 -50
- package/dist/browser/index.js +1 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/browser/index.umd.cjs +1 -1
- package/dist/browser/index.umd.cjs.map +1 -1
- package/dist/node/index.cjs +8 -8
- package/dist/node/index.cjs.map +3 -3
- package/dist/node/index.js +7 -7
- package/dist/node/index.js.map +3 -3
- package/package.json +6 -6
- package/src/__package__.ts +3 -3
- package/src/clienttools/eclMeta.ts +506 -506
- package/src/clienttools/eclcc.ts +628 -628
- package/src/connection.ts +288 -288
- package/src/ecl/activity.ts +82 -82
- package/src/ecl/dfuWorkunit.ts +363 -363
- package/src/ecl/graph.ts +196 -196
- package/src/ecl/logicalFile.ts +196 -196
- package/src/ecl/machine.ts +63 -63
- package/src/ecl/query.ts +265 -265
- package/src/ecl/queryGraph.ts +813 -813
- package/src/ecl/resource.ts +39 -39
- package/src/ecl/result.ts +245 -245
- package/src/ecl/scope.ts +188 -188
- package/src/ecl/sourceFile.ts +34 -34
- package/src/ecl/store.ts +154 -154
- package/src/ecl/targetCluster.ts +149 -149
- package/src/ecl/timer.ts +42 -42
- package/src/ecl/topology.ts +131 -131
- package/src/ecl/workunit.ts +1340 -1340
- package/src/ecl/xsdParser.ts +267 -267
- package/src/espConnection.ts +164 -164
- package/src/index.browser.ts +1 -1
- package/src/index.common.ts +40 -40
- package/src/index.node.ts +48 -48
- package/src/pem/trustwave.ts +909 -909
- package/src/services/fileSpray.ts +73 -48
- package/src/services/wsAccess.ts +8 -8
- package/src/services/wsAccount.ts +27 -27
- package/src/services/wsCloud.ts +73 -73
- package/src/services/wsCodesign.ts +18 -18
- package/src/services/wsDFU.ts +34 -34
- package/src/services/wsDFUXRef.ts +121 -121
- package/src/services/wsDali.ts +8 -8
- package/src/services/wsEcl.ts +123 -123
- package/src/services/wsElk.ts +8 -8
- package/src/services/wsLogaccess.ts +267 -267
- package/src/services/wsMachine.ts +89 -89
- package/src/services/wsPackageProcess.ts +8 -8
- package/src/services/wsResources.ts +8 -8
- package/src/services/wsSMC.ts +80 -80
- package/src/services/wsSasha.ts +7 -7
- package/src/services/wsStore.ts +32 -32
- package/src/services/wsTopology.ts +45 -45
- package/src/services/wsWorkunits.ts +151 -151
- package/src/services/wsdl/FileSpray/v1.23/FileSpray.ts +1008 -1008
- package/src/services/wsdl/FileSpray/v1.25/FileSpray.ts +1040 -1040
- package/src/services/wsdl/FileSpray/v1.26/FileSpray.ts +929 -929
- package/src/services/wsdl/FileSpray/v1.27/FileSpray.ts +930 -930
- package/src/services/wsdl/WsCloud/v1/WsCloud.ts +38 -38
- package/src/services/wsdl/WsCloud/v1.02/WsCloud.ts +77 -77
- package/src/services/wsdl/WsDFUXRef/v1.02/WsDFUXRef.ts +224 -224
- package/src/services/wsdl/WsDFUXRef/v1.04/WsDFUXRef.ts +227 -227
- package/src/services/wsdl/WsDali/v1.04/WsDali.ts +216 -216
- package/src/services/wsdl/WsDfu/v1.62/WsDfu.ts +1455 -1455
- package/src/services/wsdl/WsDfu/v1.63/WsDfu.ts +1465 -1465
- package/src/services/wsdl/WsDfu/v1.65/WsDfu.ts +1244 -1244
- package/src/services/wsdl/WsDfu/v1.66/WsDfu.ts +1267 -1267
- package/src/services/wsdl/WsDfu/v1.67/WsDfu.ts +1268 -1268
- package/src/services/wsdl/WsFileIO/v1.01/WsFileIO.ts +104 -104
- package/src/services/wsdl/WsPackageProcess/v1.04/WsPackageProcess.ts +519 -519
- package/src/services/wsdl/WsPackageProcess/v1.07/WsPackageProcess.ts +500 -500
- package/src/services/wsdl/WsResources/v1.01/WsResources.ts +119 -119
- package/src/services/wsdl/WsSMC/v1.24/WsSMC.ts +665 -665
- package/src/services/wsdl/WsSMC/v1.27/WsSMC.ts +591 -591
- package/src/services/wsdl/WsSMC/v1.28/WsSMC.ts +645 -645
- package/src/services/wsdl/WsSMC/v1.29/WsSMC.ts +660 -660
- package/src/services/wsdl/WsTopology/v1.31/WsTopology.ts +856 -856
- package/src/services/wsdl/WsTopology/v1.32/WsTopology.ts +786 -786
- package/src/services/wsdl/WsTopology/v1.33/WsTopology.ts +835 -835
- package/src/services/wsdl/WsWorkunits/v1.88/WsWorkunits.ts +2944 -2944
- package/src/services/wsdl/WsWorkunits/v1.94/WsWorkunits.ts +3072 -3072
- package/src/services/wsdl/WsWorkunits/v1.95/WsWorkunits.ts +3073 -3073
- package/src/services/wsdl/WsWorkunits/v1.97/WsWorkunits.ts +3134 -3134
- package/src/services/wsdl/WsWorkunits/v1.98/WsWorkunits.ts +3182 -3182
- package/src/services/wsdl/WsWorkunits/v1.99/WsWorkunits.ts +3162 -3162
- package/src/services/wsdl/WsWorkunits/v2/WsWorkunits.ts +3153 -3153
- package/src/services/wsdl/WsWorkunits/v2.02/WsWorkunits.ts +3162 -3162
- package/src/services/wsdl/WsWorkunits/v2.03/WsWorkunits.ts +3164 -3164
- package/src/services/wsdl/WsWorkunits/v2.04/WsWorkunits.ts +3171 -3171
- package/src/services/wsdl/ws_access/v1.16/ws_access.ts +1086 -1086
- package/src/services/wsdl/ws_access/v1.17/ws_access.ts +1023 -1023
- package/src/services/wsdl/ws_account/v1.05/ws_account.ts +111 -111
- package/src/services/wsdl/ws_account/v1.06/ws_account.ts +109 -109
- package/src/services/wsdl/ws_account/v1.07/ws_account.ts +114 -114
- package/src/services/wsdl/ws_codesign/v1.1/ws_codesign.ts +95 -95
- package/src/services/wsdl/ws_elk/v1/ws_elk.ts +47 -47
- package/src/services/wsdl/ws_logaccess/v1/ws_logaccess.ts +83 -83
- package/src/services/wsdl/ws_logaccess/v1.02/ws_logaccess.ts +161 -161
- package/src/services/wsdl/ws_logaccess/v1.03/ws_logaccess.ts +190 -190
- package/src/services/wsdl/ws_logaccess/v1.04/ws_logaccess.ts +215 -215
- package/src/services/wsdl/ws_logaccess/v1.05/ws_logaccess.ts +219 -219
- package/src/services/wsdl/ws_logaccess/v1.08/ws_logaccess.ts +267 -267
- package/src/services/wsdl/ws_machine/v1.17/ws_machine.ts +567 -567
- package/src/services/wsdl/ws_machine/v1.18/ws_machine.ts +497 -497
- package/src/services/wsdl/ws_machine/v1.19/ws_machine.ts +497 -497
- package/src/services/wsdl/wsstore/v1.02/wsstore.ts +239 -239
- package/types/services/fileSpray.d.ts +13 -0
|
@@ -1,1040 +1,1040 @@
|
|
|
1
|
-
import { IConnection, IOptions } from "../../../../connection.ts";
|
|
2
|
-
import { Service } from "../../../../espConnection.ts";
|
|
3
|
-
|
|
4
|
-
export namespace FileSpray {
|
|
5
|
-
|
|
6
|
-
export type int = number;
|
|
7
|
-
export type double = number;
|
|
8
|
-
export type base64Binary = string;
|
|
9
|
-
export type long = number;
|
|
10
|
-
export type dateTime = string;
|
|
11
|
-
|
|
12
|
-
export enum DFUWUActions {
|
|
13
|
-
Delete = "Delete",
|
|
14
|
-
Protect = "Protect",
|
|
15
|
-
Unprotect = "Unprotect",
|
|
16
|
-
Restore = "Restore",
|
|
17
|
-
SetToFailed = "SetToFailed",
|
|
18
|
-
Archive = "Archive"
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
export interface AbortDFUWorkunit {
|
|
22
|
-
wuid: string;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
export interface Exception {
|
|
26
|
-
Code: string;
|
|
27
|
-
Audience: string;
|
|
28
|
-
Source: string;
|
|
29
|
-
Message: string;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
export interface Exceptions {
|
|
33
|
-
Source: string;
|
|
34
|
-
Exception: Exception[];
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
export interface AbortDFUWorkunitResponse {
|
|
38
|
-
Exceptions: {
|
|
39
|
-
Source: string;
|
|
40
|
-
Exception: Exception[];
|
|
41
|
-
};
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
export interface Copy {
|
|
45
|
-
sourceLogicalName: string;
|
|
46
|
-
destGroup: string;
|
|
47
|
-
destGroupRoxie: string;
|
|
48
|
-
destLogicalName: string;
|
|
49
|
-
sourceDali: string;
|
|
50
|
-
srcusername: string;
|
|
51
|
-
srcpassword: string;
|
|
52
|
-
overwrite: boolean;
|
|
53
|
-
replicate: boolean;
|
|
54
|
-
ReplicateOffset: int;
|
|
55
|
-
maxConnections: int;
|
|
56
|
-
throttle: int;
|
|
57
|
-
transferBufferSize: int;
|
|
58
|
-
nosplit: boolean;
|
|
59
|
-
norecover: boolean;
|
|
60
|
-
compress: boolean;
|
|
61
|
-
Wrap: boolean;
|
|
62
|
-
Multicopy: boolean;
|
|
63
|
-
SourceDiffKeyName: string;
|
|
64
|
-
DestDiffKeyName: string;
|
|
65
|
-
superCopy: boolean;
|
|
66
|
-
push: boolean;
|
|
67
|
-
pull: boolean;
|
|
68
|
-
ifnewer: boolean;
|
|
69
|
-
noCommon: boolean;
|
|
70
|
-
encrypt: string;
|
|
71
|
-
decrypt: string;
|
|
72
|
-
preserveCompression: boolean;
|
|
73
|
-
DFUServerQueue: string;
|
|
74
|
-
ExpireDays: int;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
export interface CopyResponse {
|
|
78
|
-
Exceptions: Exceptions;
|
|
79
|
-
result: string;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
export interface CreateDFUPublisherWorkunit {
|
|
83
|
-
DFUServerQueue: string;
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
export interface result {
|
|
87
|
-
ID: string;
|
|
88
|
-
DFUServerName: string;
|
|
89
|
-
ClusterName: string;
|
|
90
|
-
JobName: string;
|
|
91
|
-
Queue: string;
|
|
92
|
-
User: string;
|
|
93
|
-
isProtected: boolean;
|
|
94
|
-
Command: int;
|
|
95
|
-
CommandMessage: string;
|
|
96
|
-
PercentDone: int;
|
|
97
|
-
SecsLeft: int;
|
|
98
|
-
ProgressMessage: string;
|
|
99
|
-
SummaryMessage: string;
|
|
100
|
-
State: int;
|
|
101
|
-
SourceLogicalName: string;
|
|
102
|
-
SourceIP: string;
|
|
103
|
-
SourceFilePath: string;
|
|
104
|
-
SourceDali: string;
|
|
105
|
-
SourceRecordSize: int;
|
|
106
|
-
SourceFormat: int;
|
|
107
|
-
RowTag: string;
|
|
108
|
-
SourceNumParts: int;
|
|
109
|
-
SourceDirectory: string;
|
|
110
|
-
DestLogicalName: string;
|
|
111
|
-
DestGroupName: string;
|
|
112
|
-
DestDirectory: string;
|
|
113
|
-
DestIP: string;
|
|
114
|
-
DestFilePath: string;
|
|
115
|
-
DestFormat: int;
|
|
116
|
-
DestNumParts: int;
|
|
117
|
-
DestRecordSize: int;
|
|
118
|
-
Replicate: boolean;
|
|
119
|
-
Overwrite: boolean;
|
|
120
|
-
Compress: boolean;
|
|
121
|
-
SourceCsvSeparate: string;
|
|
122
|
-
SourceCsvQuote: string;
|
|
123
|
-
SourceCsvTerminate: string;
|
|
124
|
-
SourceCsvEscape: string;
|
|
125
|
-
TimeStarted: string;
|
|
126
|
-
TimeStopped: string;
|
|
127
|
-
StateMessage: string;
|
|
128
|
-
MonitorEventName: string;
|
|
129
|
-
MonitorSub: boolean;
|
|
130
|
-
MonitorShotLimit: int;
|
|
131
|
-
SourceDiffKeyName: string;
|
|
132
|
-
DestDiffKeyName: string;
|
|
133
|
-
Archived: boolean;
|
|
134
|
-
encrypt: string;
|
|
135
|
-
decrypt: string;
|
|
136
|
-
failIfNoSourceFile: boolean;
|
|
137
|
-
recordStructurePresent: boolean;
|
|
138
|
-
quotedTerminator: boolean;
|
|
139
|
-
preserveCompression: boolean;
|
|
140
|
-
expireDays: int;
|
|
141
|
-
PreserveFileParts: boolean;
|
|
142
|
-
FileAccessCost: double;
|
|
143
|
-
KbPerSecAve: int;
|
|
144
|
-
KbPerSec: int;
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
export interface CreateDFUPublisherWorkunitResponse {
|
|
148
|
-
Exceptions: Exceptions;
|
|
149
|
-
result: {
|
|
150
|
-
ID: string;
|
|
151
|
-
DFUServerName: string;
|
|
152
|
-
ClusterName: string;
|
|
153
|
-
JobName: string;
|
|
154
|
-
Queue: string;
|
|
155
|
-
User: string;
|
|
156
|
-
isProtected: boolean;
|
|
157
|
-
Command: int;
|
|
158
|
-
CommandMessage: string;
|
|
159
|
-
PercentDone: int;
|
|
160
|
-
SecsLeft: int;
|
|
161
|
-
ProgressMessage: string;
|
|
162
|
-
SummaryMessage: string;
|
|
163
|
-
State: int;
|
|
164
|
-
SourceLogicalName: string;
|
|
165
|
-
SourceIP: string;
|
|
166
|
-
SourceFilePath: string;
|
|
167
|
-
SourceDali: string;
|
|
168
|
-
SourceRecordSize: int;
|
|
169
|
-
SourceFormat: int;
|
|
170
|
-
RowTag: string;
|
|
171
|
-
SourceNumParts: int;
|
|
172
|
-
SourceDirectory: string;
|
|
173
|
-
DestLogicalName: string;
|
|
174
|
-
DestGroupName: string;
|
|
175
|
-
DestDirectory: string;
|
|
176
|
-
DestIP: string;
|
|
177
|
-
DestFilePath: string;
|
|
178
|
-
DestFormat: int;
|
|
179
|
-
DestNumParts: int;
|
|
180
|
-
DestRecordSize: int;
|
|
181
|
-
Replicate: boolean;
|
|
182
|
-
Overwrite: boolean;
|
|
183
|
-
Compress: boolean;
|
|
184
|
-
SourceCsvSeparate: string;
|
|
185
|
-
SourceCsvQuote: string;
|
|
186
|
-
SourceCsvTerminate: string;
|
|
187
|
-
SourceCsvEscape: string;
|
|
188
|
-
TimeStarted: string;
|
|
189
|
-
TimeStopped: string;
|
|
190
|
-
StateMessage: string;
|
|
191
|
-
MonitorEventName: string;
|
|
192
|
-
MonitorSub: boolean;
|
|
193
|
-
MonitorShotLimit: int;
|
|
194
|
-
SourceDiffKeyName: string;
|
|
195
|
-
DestDiffKeyName: string;
|
|
196
|
-
Archived: boolean;
|
|
197
|
-
encrypt: string;
|
|
198
|
-
decrypt: string;
|
|
199
|
-
failIfNoSourceFile: boolean;
|
|
200
|
-
recordStructurePresent: boolean;
|
|
201
|
-
quotedTerminator: boolean;
|
|
202
|
-
preserveCompression: boolean;
|
|
203
|
-
expireDays: int;
|
|
204
|
-
PreserveFileParts: boolean;
|
|
205
|
-
FileAccessCost: double;
|
|
206
|
-
KbPerSecAve: int;
|
|
207
|
-
KbPerSec: int;
|
|
208
|
-
};
|
|
209
|
-
}
|
|
210
|
-
|
|
211
|
-
export interface CreateDFUWorkunit {
|
|
212
|
-
DFUServerQueue: string;
|
|
213
|
-
}
|
|
214
|
-
|
|
215
|
-
export interface CreateDFUWorkunitResponse {
|
|
216
|
-
Exceptions: Exceptions;
|
|
217
|
-
result: result;
|
|
218
|
-
}
|
|
219
|
-
|
|
220
|
-
export interface DFUWUFileRequest {
|
|
221
|
-
Wuid?: string;
|
|
222
|
-
Type?: string;
|
|
223
|
-
PlainText?: string;
|
|
224
|
-
}
|
|
225
|
-
|
|
226
|
-
export interface DFUWUFileResponse {
|
|
227
|
-
Exceptions: Exceptions;
|
|
228
|
-
file: string;
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
export interface DFUWUSearchRequest {
|
|
232
|
-
|
|
233
|
-
}
|
|
234
|
-
|
|
235
|
-
export interface ClusterNames {
|
|
236
|
-
ClusterName: string[];
|
|
237
|
-
}
|
|
238
|
-
|
|
239
|
-
export interface DFUWUSearchResponse {
|
|
240
|
-
Exceptions: Exceptions;
|
|
241
|
-
ClusterNames: {
|
|
242
|
-
ClusterName: string[];
|
|
243
|
-
};
|
|
244
|
-
}
|
|
245
|
-
|
|
246
|
-
export interface wuids {
|
|
247
|
-
Item: string[];
|
|
248
|
-
}
|
|
249
|
-
|
|
250
|
-
export interface DFUWorkunitsActionRequest {
|
|
251
|
-
wuids?: {
|
|
252
|
-
Item?: string[];
|
|
253
|
-
};
|
|
254
|
-
Type?: DFUWUActions;
|
|
255
|
-
}
|
|
256
|
-
|
|
257
|
-
export interface DFUActionResult {
|
|
258
|
-
ID: string;
|
|
259
|
-
Action: string;
|
|
260
|
-
Result: string;
|
|
261
|
-
}
|
|
262
|
-
|
|
263
|
-
export interface DFUActionResults {
|
|
264
|
-
DFUActionResult: DFUActionResult[];
|
|
265
|
-
}
|
|
266
|
-
|
|
267
|
-
export interface DFUWorkunitsActionResponse {
|
|
268
|
-
Exceptions: Exceptions;
|
|
269
|
-
FirstColumn: string;
|
|
270
|
-
DFUActionResults: {
|
|
271
|
-
DFUActionResult: DFUActionResult[];
|
|
272
|
-
};
|
|
273
|
-
}
|
|
274
|
-
|
|
275
|
-
export interface DeleteDFUWorkunit {
|
|
276
|
-
wuid: string;
|
|
277
|
-
}
|
|
278
|
-
|
|
279
|
-
export interface DeleteDFUWorkunitResponse {
|
|
280
|
-
Exceptions: Exceptions;
|
|
281
|
-
result: boolean;
|
|
282
|
-
}
|
|
283
|
-
|
|
284
|
-
export interface DeleteDFUWorkunits {
|
|
285
|
-
wuids: wuids;
|
|
286
|
-
}
|
|
287
|
-
|
|
288
|
-
export interface DeleteDFUWorkunitsResponse {
|
|
289
|
-
Exceptions: Exceptions;
|
|
290
|
-
}
|
|
291
|
-
|
|
292
|
-
export interface Names {
|
|
293
|
-
Item: string[];
|
|
294
|
-
}
|
|
295
|
-
|
|
296
|
-
export interface DeleteDropZoneFilesRequest {
|
|
297
|
-
DropZoneName?: string;
|
|
298
|
-
NetAddress?: string;
|
|
299
|
-
Path?: string;
|
|
300
|
-
OS?: string;
|
|
301
|
-
Names?: {
|
|
302
|
-
Item?: string[];
|
|
303
|
-
};
|
|
304
|
-
}
|
|
305
|
-
|
|
306
|
-
export interface Despray {
|
|
307
|
-
destGroup: string;
|
|
308
|
-
sourceLogicalName: string;
|
|
309
|
-
destIP: string;
|
|
310
|
-
destPath: string;
|
|
311
|
-
destPlane: string;
|
|
312
|
-
dstxml: base64Binary;
|
|
313
|
-
overwrite: boolean;
|
|
314
|
-
maxConnections: int;
|
|
315
|
-
throttle: int;
|
|
316
|
-
transferBufferSize: int;
|
|
317
|
-
splitprefix: string;
|
|
318
|
-
norecover: boolean;
|
|
319
|
-
wrap: boolean;
|
|
320
|
-
multiCopy: boolean;
|
|
321
|
-
SingleConnection: boolean;
|
|
322
|
-
DFUServerQueue: string;
|
|
323
|
-
compress: boolean;
|
|
324
|
-
encrypt: string;
|
|
325
|
-
decrypt: string;
|
|
326
|
-
}
|
|
327
|
-
|
|
328
|
-
export interface DesprayResponse {
|
|
329
|
-
Exceptions: Exceptions;
|
|
330
|
-
wuid: string;
|
|
331
|
-
}
|
|
332
|
-
|
|
333
|
-
export interface DfuMonitorRequest {
|
|
334
|
-
EventName?: string;
|
|
335
|
-
LogicalName?: string;
|
|
336
|
-
Ip?: string;
|
|
337
|
-
Filename?: string;
|
|
338
|
-
Sub?: boolean;
|
|
339
|
-
ShotLimit?: int;
|
|
340
|
-
}
|
|
341
|
-
|
|
342
|
-
export interface DfuMonitorResponse {
|
|
343
|
-
Exceptions: Exceptions;
|
|
344
|
-
wuid: string;
|
|
345
|
-
}
|
|
346
|
-
|
|
347
|
-
export interface DropZoneFileSearchRequest {
|
|
348
|
-
DropZoneName?: string;
|
|
349
|
-
Server?: string;
|
|
350
|
-
ECLWatchVisibleOnly?: boolean;
|
|
351
|
-
NameFilter?: string;
|
|
352
|
-
}
|
|
353
|
-
|
|
354
|
-
export interface PhysicalFileStruct {
|
|
355
|
-
name: string;
|
|
356
|
-
Server: string;
|
|
357
|
-
isDir: boolean;
|
|
358
|
-
filesize: long;
|
|
359
|
-
modifiedtime: string;
|
|
360
|
-
Path: string;
|
|
361
|
-
Files: Files;
|
|
362
|
-
}
|
|
363
|
-
|
|
364
|
-
export interface Files {
|
|
365
|
-
PhysicalFileStruct: PhysicalFileStruct[];
|
|
366
|
-
}
|
|
367
|
-
|
|
368
|
-
export interface DropZoneFileSearchResponse {
|
|
369
|
-
Exceptions: Exceptions;
|
|
370
|
-
Files: {
|
|
371
|
-
PhysicalFileStruct: PhysicalFileStruct[];
|
|
372
|
-
};
|
|
373
|
-
Warning: string;
|
|
374
|
-
}
|
|
375
|
-
|
|
376
|
-
export interface DropZoneFilesRequest {
|
|
377
|
-
DropZoneName?: string;
|
|
378
|
-
NetAddress?: string;
|
|
379
|
-
Path?: string;
|
|
380
|
-
OS?: string;
|
|
381
|
-
Subfolder?: string;
|
|
382
|
-
ECLWatchVisibleOnly?: boolean;
|
|
383
|
-
DirectoryOnly?: boolean;
|
|
384
|
-
}
|
|
385
|
-
|
|
386
|
-
export interface DropZone {
|
|
387
|
-
Name: string;
|
|
388
|
-
NetAddress: string;
|
|
389
|
-
Path: string;
|
|
390
|
-
Computer: string;
|
|
391
|
-
Linux: string;
|
|
392
|
-
}
|
|
393
|
-
|
|
394
|
-
export interface DropZones {
|
|
395
|
-
DropZone: DropZone[];
|
|
396
|
-
}
|
|
397
|
-
|
|
398
|
-
export interface DropZoneFilesResponse {
|
|
399
|
-
Exceptions: Exceptions;
|
|
400
|
-
DropZoneName: string;
|
|
401
|
-
NetAddress: string;
|
|
402
|
-
Path: string;
|
|
403
|
-
OS: int;
|
|
404
|
-
ECLWatchVisibleOnly: boolean;
|
|
405
|
-
DropZones: {
|
|
406
|
-
DropZone: DropZone[];
|
|
407
|
-
};
|
|
408
|
-
Files: Files;
|
|
409
|
-
}
|
|
410
|
-
|
|
411
|
-
export interface EchoDateTime {
|
|
412
|
-
dt: dateTime;
|
|
413
|
-
}
|
|
414
|
-
|
|
415
|
-
export interface EchoDateTimeResponse {
|
|
416
|
-
result: dateTime;
|
|
417
|
-
}
|
|
418
|
-
|
|
419
|
-
export interface FileListRequest {
|
|
420
|
-
DropZoneName?: string;
|
|
421
|
-
Netaddr?: string;
|
|
422
|
-
Path?: string;
|
|
423
|
-
Mask?: string;
|
|
424
|
-
OS?: string;
|
|
425
|
-
DirectoryOnly?: boolean;
|
|
426
|
-
}
|
|
427
|
-
|
|
428
|
-
export interface files {
|
|
429
|
-
PhysicalFileStruct: PhysicalFileStruct[];
|
|
430
|
-
}
|
|
431
|
-
|
|
432
|
-
export interface FileListResponse {
|
|
433
|
-
Exceptions: Exceptions;
|
|
434
|
-
Netaddr: string;
|
|
435
|
-
Path: string;
|
|
436
|
-
Mask: string;
|
|
437
|
-
OS: int;
|
|
438
|
-
DirectoryOnly: boolean;
|
|
439
|
-
AcceptLanguage: string;
|
|
440
|
-
files: {
|
|
441
|
-
PhysicalFileStruct: PhysicalFileStruct[];
|
|
442
|
-
};
|
|
443
|
-
}
|
|
444
|
-
|
|
445
|
-
export interface GetDFUExceptions {
|
|
446
|
-
wuid: string;
|
|
447
|
-
}
|
|
448
|
-
|
|
449
|
-
export interface GetDFUExceptionsResponse {
|
|
450
|
-
Exceptions: Exceptions;
|
|
451
|
-
result: result;
|
|
452
|
-
}
|
|
453
|
-
|
|
454
|
-
export interface ProgressRequest {
|
|
455
|
-
wuid?: string;
|
|
456
|
-
}
|
|
457
|
-
|
|
458
|
-
export interface ProgressResponse {
|
|
459
|
-
Exceptions: Exceptions;
|
|
460
|
-
wuid: string;
|
|
461
|
-
PercentDone: int;
|
|
462
|
-
SecsLeft: int;
|
|
463
|
-
KbPerSecAve: int;
|
|
464
|
-
KbPerSec: int;
|
|
465
|
-
SlavesDone: int;
|
|
466
|
-
TimeTaken: string;
|
|
467
|
-
ProgressMessage: string;
|
|
468
|
-
SummaryMessage: string;
|
|
469
|
-
State: string;
|
|
470
|
-
}
|
|
471
|
-
|
|
472
|
-
export interface GetDFUServerQueuesRequest {
|
|
473
|
-
DFUServerName?: string;
|
|
474
|
-
}
|
|
475
|
-
|
|
476
|
-
export interface GetDFUServerQueuesResponse {
|
|
477
|
-
Exceptions: Exceptions;
|
|
478
|
-
Names: Names;
|
|
479
|
-
}
|
|
480
|
-
|
|
481
|
-
export interface GetDFUWorkunit {
|
|
482
|
-
wuid: string;
|
|
483
|
-
}
|
|
484
|
-
|
|
485
|
-
export interface GetDFUWorkunitResponse {
|
|
486
|
-
Exceptions: Exceptions;
|
|
487
|
-
result: result;
|
|
488
|
-
AutoRefresh: int;
|
|
489
|
-
}
|
|
490
|
-
|
|
491
|
-
export interface GetDFUWorkunits {
|
|
492
|
-
Wuid: string;
|
|
493
|
-
Owner: string;
|
|
494
|
-
Cluster: string;
|
|
495
|
-
StateReq: string;
|
|
496
|
-
Type: string;
|
|
497
|
-
Jobname: string;
|
|
498
|
-
PageSize: long;
|
|
499
|
-
CurrentPage: int;
|
|
500
|
-
PageStartFrom: long;
|
|
501
|
-
Sortby: string;
|
|
502
|
-
Descending: boolean;
|
|
503
|
-
CacheHint: long;
|
|
504
|
-
ParentWuid: string;
|
|
505
|
-
PublisherWuid: string;
|
|
506
|
-
includeProgressMessages: boolean;
|
|
507
|
-
includeTimings: boolean;
|
|
508
|
-
includeTransferRate: boolean;
|
|
509
|
-
}
|
|
510
|
-
|
|
511
|
-
export interface DFUWorkunit {
|
|
512
|
-
ID: string;
|
|
513
|
-
DFUServerName: string;
|
|
514
|
-
ClusterName: string;
|
|
515
|
-
JobName: string;
|
|
516
|
-
Queue: string;
|
|
517
|
-
User: string;
|
|
518
|
-
isProtected: boolean;
|
|
519
|
-
Command: int;
|
|
520
|
-
CommandMessage: string;
|
|
521
|
-
PercentDone: int;
|
|
522
|
-
SecsLeft: int;
|
|
523
|
-
ProgressMessage: string;
|
|
524
|
-
SummaryMessage: string;
|
|
525
|
-
State: int;
|
|
526
|
-
SourceLogicalName: string;
|
|
527
|
-
SourceIP: string;
|
|
528
|
-
SourceFilePath: string;
|
|
529
|
-
SourceDali: string;
|
|
530
|
-
SourceRecordSize: int;
|
|
531
|
-
SourceFormat: int;
|
|
532
|
-
RowTag: string;
|
|
533
|
-
SourceNumParts: int;
|
|
534
|
-
SourceDirectory: string;
|
|
535
|
-
DestLogicalName: string;
|
|
536
|
-
DestGroupName: string;
|
|
537
|
-
DestDirectory: string;
|
|
538
|
-
DestIP: string;
|
|
539
|
-
DestFilePath: string;
|
|
540
|
-
DestFormat: int;
|
|
541
|
-
DestNumParts: int;
|
|
542
|
-
DestRecordSize: int;
|
|
543
|
-
Replicate: boolean;
|
|
544
|
-
Overwrite: boolean;
|
|
545
|
-
Compress: boolean;
|
|
546
|
-
SourceCsvSeparate: string;
|
|
547
|
-
SourceCsvQuote: string;
|
|
548
|
-
SourceCsvTerminate: string;
|
|
549
|
-
SourceCsvEscape: string;
|
|
550
|
-
TimeStarted: string;
|
|
551
|
-
TimeStopped: string;
|
|
552
|
-
StateMessage: string;
|
|
553
|
-
MonitorEventName: string;
|
|
554
|
-
MonitorSub: boolean;
|
|
555
|
-
MonitorShotLimit: int;
|
|
556
|
-
SourceDiffKeyName: string;
|
|
557
|
-
DestDiffKeyName: string;
|
|
558
|
-
Archived: boolean;
|
|
559
|
-
encrypt: string;
|
|
560
|
-
decrypt: string;
|
|
561
|
-
failIfNoSourceFile: boolean;
|
|
562
|
-
recordStructurePresent: boolean;
|
|
563
|
-
quotedTerminator: boolean;
|
|
564
|
-
preserveCompression: boolean;
|
|
565
|
-
expireDays: int;
|
|
566
|
-
PreserveFileParts: boolean;
|
|
567
|
-
FileAccessCost: double;
|
|
568
|
-
KbPerSecAve: int;
|
|
569
|
-
KbPerSec: int;
|
|
570
|
-
}
|
|
571
|
-
|
|
572
|
-
export interface results {
|
|
573
|
-
DFUWorkunit: DFUWorkunit[];
|
|
574
|
-
}
|
|
575
|
-
|
|
576
|
-
export interface GetDFUWorkunitsResponse {
|
|
577
|
-
Exceptions: Exceptions;
|
|
578
|
-
results: {
|
|
579
|
-
DFUWorkunit: DFUWorkunit[];
|
|
580
|
-
};
|
|
581
|
-
Type: string;
|
|
582
|
-
Owner: string;
|
|
583
|
-
Cluster: string;
|
|
584
|
-
StateReq: string;
|
|
585
|
-
PageSize: long;
|
|
586
|
-
PrevPage: long;
|
|
587
|
-
NextPage: long;
|
|
588
|
-
LastPage: long;
|
|
589
|
-
NumWUs: long;
|
|
590
|
-
PageStartFrom: long;
|
|
591
|
-
PageEndAt: long;
|
|
592
|
-
First: boolean;
|
|
593
|
-
Sortby: string;
|
|
594
|
-
Descending: boolean;
|
|
595
|
-
BasicQuery: string;
|
|
596
|
-
Filters: string;
|
|
597
|
-
CacheHint: long;
|
|
598
|
-
}
|
|
599
|
-
|
|
600
|
-
export interface GetSprayTargetsRequest {
|
|
601
|
-
|
|
602
|
-
}
|
|
603
|
-
|
|
604
|
-
export interface GroupNode {
|
|
605
|
-
Name: string;
|
|
606
|
-
ClusterType: string;
|
|
607
|
-
ReplicateOutputs: boolean;
|
|
608
|
-
}
|
|
609
|
-
|
|
610
|
-
export interface GroupNodes {
|
|
611
|
-
GroupNode: GroupNode[];
|
|
612
|
-
}
|
|
613
|
-
|
|
614
|
-
export interface GetSprayTargetsResponse {
|
|
615
|
-
Exceptions: Exceptions;
|
|
616
|
-
GroupNodes: {
|
|
617
|
-
GroupNode: GroupNode[];
|
|
618
|
-
};
|
|
619
|
-
}
|
|
620
|
-
|
|
621
|
-
export interface OpenSaveRequest {
|
|
622
|
-
Location?: string;
|
|
623
|
-
Path?: string;
|
|
624
|
-
Name?: string;
|
|
625
|
-
Type?: string;
|
|
626
|
-
DateTime?: string;
|
|
627
|
-
BinaryFile?: boolean;
|
|
628
|
-
}
|
|
629
|
-
|
|
630
|
-
export interface OpenSaveResponse {
|
|
631
|
-
Exceptions: Exceptions;
|
|
632
|
-
Location: string;
|
|
633
|
-
Path: string;
|
|
634
|
-
Name: string;
|
|
635
|
-
Type: string;
|
|
636
|
-
DateTime: string;
|
|
637
|
-
Viewable: boolean;
|
|
638
|
-
}
|
|
639
|
-
|
|
640
|
-
export interface FileSprayPingRequest {
|
|
641
|
-
|
|
642
|
-
}
|
|
643
|
-
|
|
644
|
-
export interface FileSprayPingResponse {
|
|
645
|
-
|
|
646
|
-
}
|
|
647
|
-
|
|
648
|
-
export interface Rename {
|
|
649
|
-
srcname: string;
|
|
650
|
-
dstname: string;
|
|
651
|
-
overwrite: boolean;
|
|
652
|
-
DFUServerQueue: string;
|
|
653
|
-
}
|
|
654
|
-
|
|
655
|
-
export interface RenameResponse {
|
|
656
|
-
Exceptions: Exceptions;
|
|
657
|
-
wuid: string;
|
|
658
|
-
}
|
|
659
|
-
|
|
660
|
-
export interface Replicate {
|
|
661
|
-
sourceLogicalName: string;
|
|
662
|
-
replicateOffset: int;
|
|
663
|
-
cluster: string;
|
|
664
|
-
repeatLast: boolean;
|
|
665
|
-
onlyRepeated: boolean;
|
|
666
|
-
DFUServerQueue: string;
|
|
667
|
-
}
|
|
668
|
-
|
|
669
|
-
export interface ReplicateResponse {
|
|
670
|
-
Exceptions: Exceptions;
|
|
671
|
-
wuid: string;
|
|
672
|
-
}
|
|
673
|
-
|
|
674
|
-
export interface ShowResultRequest {
|
|
675
|
-
Result?: string;
|
|
676
|
-
}
|
|
677
|
-
|
|
678
|
-
export interface ShowResultResponse {
|
|
679
|
-
Exceptions: Exceptions;
|
|
680
|
-
Result: string;
|
|
681
|
-
}
|
|
682
|
-
|
|
683
|
-
export interface SprayFixed {
|
|
684
|
-
sourceIP: string;
|
|
685
|
-
sourcePlane: string;
|
|
686
|
-
sourcePath: string;
|
|
687
|
-
srcxml: base64Binary;
|
|
688
|
-
sourceFormat: string;
|
|
689
|
-
sourceRecordSize: int;
|
|
690
|
-
destGroup: string;
|
|
691
|
-
destLogicalName: string;
|
|
692
|
-
destNumParts: int;
|
|
693
|
-
overwrite: boolean;
|
|
694
|
-
replicate: boolean;
|
|
695
|
-
ReplicateOffset: int;
|
|
696
|
-
maxConnections: int;
|
|
697
|
-
throttle: int;
|
|
698
|
-
transferBufferSize: int;
|
|
699
|
-
prefix: string;
|
|
700
|
-
nosplit: boolean;
|
|
701
|
-
norecover: boolean;
|
|
702
|
-
compress: boolean;
|
|
703
|
-
push: boolean;
|
|
704
|
-
pull: boolean;
|
|
705
|
-
noCommon: boolean;
|
|
706
|
-
encrypt: string;
|
|
707
|
-
decrypt: string;
|
|
708
|
-
wrap: boolean;
|
|
709
|
-
failIfNoSourceFile: boolean;
|
|
710
|
-
recordStructurePresent: boolean;
|
|
711
|
-
quotedTerminator: boolean;
|
|
712
|
-
expireDays: int;
|
|
713
|
-
DFUServerQueue: string;
|
|
714
|
-
}
|
|
715
|
-
|
|
716
|
-
export interface SprayFixedResponse {
|
|
717
|
-
Exceptions: Exceptions;
|
|
718
|
-
wuid: string;
|
|
719
|
-
}
|
|
720
|
-
|
|
721
|
-
export interface SprayVariable {
|
|
722
|
-
sourceIP: string;
|
|
723
|
-
sourcePlane: string;
|
|
724
|
-
sourcePath: string;
|
|
725
|
-
srcxml: base64Binary;
|
|
726
|
-
sourceMaxRecordSize: int;
|
|
727
|
-
sourceFormat: int;
|
|
728
|
-
NoSourceCsvSeparator: boolean;
|
|
729
|
-
sourceCsvSeparate: string;
|
|
730
|
-
sourceCsvTerminate: string;
|
|
731
|
-
sourceCsvQuote: string;
|
|
732
|
-
sourceCsvEscape: string;
|
|
733
|
-
sourceRowTag: string;
|
|
734
|
-
destGroup: string;
|
|
735
|
-
destLogicalName: string;
|
|
736
|
-
destNumParts: int;
|
|
737
|
-
overwrite: boolean;
|
|
738
|
-
replicate: boolean;
|
|
739
|
-
ReplicateOffset: int;
|
|
740
|
-
maxConnections: int;
|
|
741
|
-
throttle: int;
|
|
742
|
-
transferBufferSize: int;
|
|
743
|
-
prefix: string;
|
|
744
|
-
nosplit: boolean;
|
|
745
|
-
norecover: boolean;
|
|
746
|
-
compress: boolean;
|
|
747
|
-
push: boolean;
|
|
748
|
-
pull: boolean;
|
|
749
|
-
noCommon: boolean;
|
|
750
|
-
encrypt: string;
|
|
751
|
-
decrypt: string;
|
|
752
|
-
failIfNoSourceFile: boolean;
|
|
753
|
-
recordStructurePresent: boolean;
|
|
754
|
-
quotedTerminator: boolean;
|
|
755
|
-
sourceRowPath: string;
|
|
756
|
-
isJSON: boolean;
|
|
757
|
-
expireDays: int;
|
|
758
|
-
DFUServerQueue: string;
|
|
759
|
-
srcUsername: string;
|
|
760
|
-
srcPassword: string;
|
|
761
|
-
}
|
|
762
|
-
|
|
763
|
-
export interface SprayResponse {
|
|
764
|
-
Exceptions: Exceptions;
|
|
765
|
-
wuid: string;
|
|
766
|
-
}
|
|
767
|
-
|
|
768
|
-
export interface SubmitDFUWorkunit {
|
|
769
|
-
wuid: string;
|
|
770
|
-
}
|
|
771
|
-
|
|
772
|
-
export interface SubmitDFUWorkunitResponse {
|
|
773
|
-
Exceptions: Exceptions;
|
|
774
|
-
}
|
|
775
|
-
|
|
776
|
-
export interface wu {
|
|
777
|
-
ID: string;
|
|
778
|
-
DFUServerName: string;
|
|
779
|
-
ClusterName: string;
|
|
780
|
-
JobName: string;
|
|
781
|
-
Queue: string;
|
|
782
|
-
User: string;
|
|
783
|
-
isProtected: boolean;
|
|
784
|
-
Command: int;
|
|
785
|
-
CommandMessage: string;
|
|
786
|
-
PercentDone: int;
|
|
787
|
-
SecsLeft: int;
|
|
788
|
-
ProgressMessage: string;
|
|
789
|
-
SummaryMessage: string;
|
|
790
|
-
State: int;
|
|
791
|
-
SourceLogicalName: string;
|
|
792
|
-
SourceIP: string;
|
|
793
|
-
SourceFilePath: string;
|
|
794
|
-
SourceDali: string;
|
|
795
|
-
SourceRecordSize: int;
|
|
796
|
-
SourceFormat: int;
|
|
797
|
-
RowTag: string;
|
|
798
|
-
SourceNumParts: int;
|
|
799
|
-
SourceDirectory: string;
|
|
800
|
-
DestLogicalName: string;
|
|
801
|
-
DestGroupName: string;
|
|
802
|
-
DestDirectory: string;
|
|
803
|
-
DestIP: string;
|
|
804
|
-
DestFilePath: string;
|
|
805
|
-
DestFormat: int;
|
|
806
|
-
DestNumParts: int;
|
|
807
|
-
DestRecordSize: int;
|
|
808
|
-
Replicate: boolean;
|
|
809
|
-
Overwrite: boolean;
|
|
810
|
-
Compress: boolean;
|
|
811
|
-
SourceCsvSeparate: string;
|
|
812
|
-
SourceCsvQuote: string;
|
|
813
|
-
SourceCsvTerminate: string;
|
|
814
|
-
SourceCsvEscape: string;
|
|
815
|
-
TimeStarted: string;
|
|
816
|
-
TimeStopped: string;
|
|
817
|
-
StateMessage: string;
|
|
818
|
-
MonitorEventName: string;
|
|
819
|
-
MonitorSub: boolean;
|
|
820
|
-
MonitorShotLimit: int;
|
|
821
|
-
SourceDiffKeyName: string;
|
|
822
|
-
DestDiffKeyName: string;
|
|
823
|
-
Archived: boolean;
|
|
824
|
-
encrypt: string;
|
|
825
|
-
decrypt: string;
|
|
826
|
-
failIfNoSourceFile: boolean;
|
|
827
|
-
recordStructurePresent: boolean;
|
|
828
|
-
quotedTerminator: boolean;
|
|
829
|
-
preserveCompression: boolean;
|
|
830
|
-
expireDays: int;
|
|
831
|
-
PreserveFileParts: boolean;
|
|
832
|
-
FileAccessCost: double;
|
|
833
|
-
KbPerSecAve: int;
|
|
834
|
-
KbPerSec: int;
|
|
835
|
-
}
|
|
836
|
-
|
|
837
|
-
export interface UpdateDFUWorkunit {
|
|
838
|
-
wu: {
|
|
839
|
-
ID: string;
|
|
840
|
-
DFUServerName: string;
|
|
841
|
-
ClusterName: string;
|
|
842
|
-
JobName: string;
|
|
843
|
-
Queue: string;
|
|
844
|
-
User: string;
|
|
845
|
-
isProtected: boolean;
|
|
846
|
-
Command: int;
|
|
847
|
-
CommandMessage: string;
|
|
848
|
-
PercentDone: int;
|
|
849
|
-
SecsLeft: int;
|
|
850
|
-
ProgressMessage: string;
|
|
851
|
-
SummaryMessage: string;
|
|
852
|
-
State: int;
|
|
853
|
-
SourceLogicalName: string;
|
|
854
|
-
SourceIP: string;
|
|
855
|
-
SourceFilePath: string;
|
|
856
|
-
SourceDali: string;
|
|
857
|
-
SourceRecordSize: int;
|
|
858
|
-
SourceFormat: int;
|
|
859
|
-
RowTag: string;
|
|
860
|
-
SourceNumParts: int;
|
|
861
|
-
SourceDirectory: string;
|
|
862
|
-
DestLogicalName: string;
|
|
863
|
-
DestGroupName: string;
|
|
864
|
-
DestDirectory: string;
|
|
865
|
-
DestIP: string;
|
|
866
|
-
DestFilePath: string;
|
|
867
|
-
DestFormat: int;
|
|
868
|
-
DestNumParts: int;
|
|
869
|
-
DestRecordSize: int;
|
|
870
|
-
Replicate: boolean;
|
|
871
|
-
Overwrite: boolean;
|
|
872
|
-
Compress: boolean;
|
|
873
|
-
SourceCsvSeparate: string;
|
|
874
|
-
SourceCsvQuote: string;
|
|
875
|
-
SourceCsvTerminate: string;
|
|
876
|
-
SourceCsvEscape: string;
|
|
877
|
-
TimeStarted: string;
|
|
878
|
-
TimeStopped: string;
|
|
879
|
-
StateMessage: string;
|
|
880
|
-
MonitorEventName: string;
|
|
881
|
-
MonitorSub: boolean;
|
|
882
|
-
MonitorShotLimit: int;
|
|
883
|
-
SourceDiffKeyName: string;
|
|
884
|
-
DestDiffKeyName: string;
|
|
885
|
-
Archived: boolean;
|
|
886
|
-
encrypt: string;
|
|
887
|
-
decrypt: string;
|
|
888
|
-
failIfNoSourceFile: boolean;
|
|
889
|
-
recordStructurePresent: boolean;
|
|
890
|
-
quotedTerminator: boolean;
|
|
891
|
-
preserveCompression: boolean;
|
|
892
|
-
expireDays: int;
|
|
893
|
-
PreserveFileParts: boolean;
|
|
894
|
-
FileAccessCost: double;
|
|
895
|
-
KbPerSecAve: int;
|
|
896
|
-
KbPerSec: int;
|
|
897
|
-
};
|
|
898
|
-
ClusterOrig: string;
|
|
899
|
-
JobNameOrig: string;
|
|
900
|
-
isProtectedOrig: boolean;
|
|
901
|
-
StateOrig: int;
|
|
902
|
-
}
|
|
903
|
-
|
|
904
|
-
export interface UpdateDFUWorkunitResponse {
|
|
905
|
-
Exceptions: Exceptions;
|
|
906
|
-
}
|
|
907
|
-
|
|
908
|
-
}
|
|
909
|
-
|
|
910
|
-
export class FileSprayServiceBase extends Service {
|
|
911
|
-
|
|
912
|
-
constructor(optsConnection: IOptions | IConnection) {
|
|
913
|
-
super(optsConnection, "FileSpray", "1.25");
|
|
914
|
-
}
|
|
915
|
-
|
|
916
|
-
AbortDFUWorkunit(request: FileSpray.AbortDFUWorkunit): Promise<FileSpray.AbortDFUWorkunitResponse> {
|
|
917
|
-
return this._connection.send("AbortDFUWorkunit", request, "json", false, undefined, "AbortDFUWorkunitResponse");
|
|
918
|
-
}
|
|
919
|
-
|
|
920
|
-
Copy(request: FileSpray.Copy): Promise<FileSpray.CopyResponse> {
|
|
921
|
-
return this._connection.send("Copy", request, "json", false, undefined, "CopyResponse");
|
|
922
|
-
}
|
|
923
|
-
|
|
924
|
-
CreateDFUPublisherWorkunit(request: FileSpray.CreateDFUPublisherWorkunit): Promise<FileSpray.CreateDFUPublisherWorkunitResponse> {
|
|
925
|
-
return this._connection.send("CreateDFUPublisherWorkunit", request, "json", false, undefined, "CreateDFUPublisherWorkunitResponse");
|
|
926
|
-
}
|
|
927
|
-
|
|
928
|
-
CreateDFUWorkunit(request: FileSpray.CreateDFUWorkunit): Promise<FileSpray.CreateDFUWorkunitResponse> {
|
|
929
|
-
return this._connection.send("CreateDFUWorkunit", request, "json", false, undefined, "CreateDFUWorkunitResponse");
|
|
930
|
-
}
|
|
931
|
-
|
|
932
|
-
DFUWUFile(request: FileSpray.DFUWUFileRequest): Promise<FileSpray.DFUWUFileResponse> {
|
|
933
|
-
return this._connection.send("DFUWUFile", request, "json", false, undefined, "DFUWUFileResponse");
|
|
934
|
-
}
|
|
935
|
-
|
|
936
|
-
DFUWUSearch(request: FileSpray.DFUWUSearchRequest): Promise<FileSpray.DFUWUSearchResponse> {
|
|
937
|
-
return this._connection.send("DFUWUSearch", request, "json", false, undefined, "DFUWUSearchResponse");
|
|
938
|
-
}
|
|
939
|
-
|
|
940
|
-
DFUWorkunitsAction(request: FileSpray.DFUWorkunitsActionRequest): Promise<FileSpray.DFUWorkunitsActionResponse> {
|
|
941
|
-
return this._connection.send("DFUWorkunitsAction", request, "json", false, undefined, "DFUWorkunitsActionResponse");
|
|
942
|
-
}
|
|
943
|
-
|
|
944
|
-
DeleteDFUWorkunit(request: FileSpray.DeleteDFUWorkunit): Promise<FileSpray.DeleteDFUWorkunitResponse> {
|
|
945
|
-
return this._connection.send("DeleteDFUWorkunit", request, "json", false, undefined, "DeleteDFUWorkunitResponse");
|
|
946
|
-
}
|
|
947
|
-
|
|
948
|
-
DeleteDFUWorkunits(request: FileSpray.DeleteDFUWorkunits): Promise<FileSpray.DeleteDFUWorkunitsResponse> {
|
|
949
|
-
return this._connection.send("DeleteDFUWorkunits", request, "json", false, undefined, "DeleteDFUWorkunitsResponse");
|
|
950
|
-
}
|
|
951
|
-
|
|
952
|
-
DeleteDropZoneFiles(request: FileSpray.DeleteDropZoneFilesRequest): Promise<FileSpray.DFUWorkunitsActionResponse> {
|
|
953
|
-
return this._connection.send("DeleteDropZoneFiles", request, "json", false, undefined, "DFUWorkunitsActionResponse");
|
|
954
|
-
}
|
|
955
|
-
|
|
956
|
-
Despray(request: FileSpray.Despray): Promise<FileSpray.DesprayResponse> {
|
|
957
|
-
return this._connection.send("Despray", request, "json", false, undefined, "DesprayResponse");
|
|
958
|
-
}
|
|
959
|
-
|
|
960
|
-
DfuMonitor(request: FileSpray.DfuMonitorRequest): Promise<FileSpray.DfuMonitorResponse> {
|
|
961
|
-
return this._connection.send("DfuMonitor", request, "json", false, undefined, "DfuMonitorResponse");
|
|
962
|
-
}
|
|
963
|
-
|
|
964
|
-
DropZoneFileSearch(request: FileSpray.DropZoneFileSearchRequest): Promise<FileSpray.DropZoneFileSearchResponse> {
|
|
965
|
-
return this._connection.send("DropZoneFileSearch", request, "json", false, undefined, "DropZoneFileSearchResponse");
|
|
966
|
-
}
|
|
967
|
-
|
|
968
|
-
DropZoneFiles(request: FileSpray.DropZoneFilesRequest): Promise<FileSpray.DropZoneFilesResponse> {
|
|
969
|
-
return this._connection.send("DropZoneFiles", request, "json", false, undefined, "DropZoneFilesResponse");
|
|
970
|
-
}
|
|
971
|
-
|
|
972
|
-
EchoDateTime(request: FileSpray.EchoDateTime): Promise<FileSpray.EchoDateTimeResponse> {
|
|
973
|
-
return this._connection.send("EchoDateTime", request, "json", false, undefined, "EchoDateTimeResponse");
|
|
974
|
-
}
|
|
975
|
-
|
|
976
|
-
FileList(request: FileSpray.FileListRequest): Promise<FileSpray.FileListResponse> {
|
|
977
|
-
return this._connection.send("FileList", request, "json", false, undefined, "FileListResponse");
|
|
978
|
-
}
|
|
979
|
-
|
|
980
|
-
GetDFUExceptions(request: FileSpray.GetDFUExceptions): Promise<FileSpray.GetDFUExceptionsResponse> {
|
|
981
|
-
return this._connection.send("GetDFUExceptions", request, "json", false, undefined, "GetDFUExceptionsResponse");
|
|
982
|
-
}
|
|
983
|
-
|
|
984
|
-
GetDFUProgress(request: FileSpray.ProgressRequest): Promise<FileSpray.ProgressResponse> {
|
|
985
|
-
return this._connection.send("GetDFUProgress", request, "json", false, undefined, "ProgressResponse");
|
|
986
|
-
}
|
|
987
|
-
|
|
988
|
-
GetDFUServerQueues(request: FileSpray.GetDFUServerQueuesRequest): Promise<FileSpray.GetDFUServerQueuesResponse> {
|
|
989
|
-
return this._connection.send("GetDFUServerQueues", request, "json", false, undefined, "GetDFUServerQueuesResponse");
|
|
990
|
-
}
|
|
991
|
-
|
|
992
|
-
GetDFUWorkunit(request: FileSpray.GetDFUWorkunit): Promise<FileSpray.GetDFUWorkunitResponse> {
|
|
993
|
-
return this._connection.send("GetDFUWorkunit", request, "json", false, undefined, "GetDFUWorkunitResponse");
|
|
994
|
-
}
|
|
995
|
-
|
|
996
|
-
GetDFUWorkunits(request: FileSpray.GetDFUWorkunits): Promise<FileSpray.GetDFUWorkunitsResponse> {
|
|
997
|
-
return this._connection.send("GetDFUWorkunits", request, "json", false, undefined, "GetDFUWorkunitsResponse");
|
|
998
|
-
}
|
|
999
|
-
|
|
1000
|
-
GetSprayTargets(request: FileSpray.GetSprayTargetsRequest): Promise<FileSpray.GetSprayTargetsResponse> {
|
|
1001
|
-
return this._connection.send("GetSprayTargets", request, "json", false, undefined, "GetSprayTargetsResponse");
|
|
1002
|
-
}
|
|
1003
|
-
|
|
1004
|
-
OpenSave(request: FileSpray.OpenSaveRequest): Promise<FileSpray.OpenSaveResponse> {
|
|
1005
|
-
return this._connection.send("OpenSave", request, "json", false, undefined, "OpenSaveResponse");
|
|
1006
|
-
}
|
|
1007
|
-
|
|
1008
|
-
Ping(request: FileSpray.FileSprayPingRequest): Promise<FileSpray.FileSprayPingResponse> {
|
|
1009
|
-
return this._connection.send("Ping", request, "json", false, undefined, "FileSprayPingResponse");
|
|
1010
|
-
}
|
|
1011
|
-
|
|
1012
|
-
Rename(request: FileSpray.Rename): Promise<FileSpray.RenameResponse> {
|
|
1013
|
-
return this._connection.send("Rename", request, "json", false, undefined, "RenameResponse");
|
|
1014
|
-
}
|
|
1015
|
-
|
|
1016
|
-
Replicate(request: FileSpray.Replicate): Promise<FileSpray.ReplicateResponse> {
|
|
1017
|
-
return this._connection.send("Replicate", request, "json", false, undefined, "ReplicateResponse");
|
|
1018
|
-
}
|
|
1019
|
-
|
|
1020
|
-
ShowResult(request: FileSpray.ShowResultRequest): Promise<FileSpray.ShowResultResponse> {
|
|
1021
|
-
return this._connection.send("ShowResult", request, "json", false, undefined, "ShowResultResponse");
|
|
1022
|
-
}
|
|
1023
|
-
|
|
1024
|
-
SprayFixed(request: FileSpray.SprayFixed): Promise<FileSpray.SprayFixedResponse> {
|
|
1025
|
-
return this._connection.send("SprayFixed", request, "json", false, undefined, "SprayFixedResponse");
|
|
1026
|
-
}
|
|
1027
|
-
|
|
1028
|
-
SprayVariable(request: FileSpray.SprayVariable): Promise<FileSpray.SprayResponse> {
|
|
1029
|
-
return this._connection.send("SprayVariable", request, "json", false, undefined, "SprayResponse");
|
|
1030
|
-
}
|
|
1031
|
-
|
|
1032
|
-
SubmitDFUWorkunit(request: FileSpray.SubmitDFUWorkunit): Promise<FileSpray.SubmitDFUWorkunitResponse> {
|
|
1033
|
-
return this._connection.send("SubmitDFUWorkunit", request, "json", false, undefined, "SubmitDFUWorkunitResponse");
|
|
1034
|
-
}
|
|
1035
|
-
|
|
1036
|
-
UpdateDFUWorkunit(request: FileSpray.UpdateDFUWorkunit): Promise<FileSpray.UpdateDFUWorkunitResponse> {
|
|
1037
|
-
return this._connection.send("UpdateDFUWorkunit", request, "json", false, undefined, "UpdateDFUWorkunitResponse");
|
|
1038
|
-
}
|
|
1039
|
-
|
|
1040
|
-
}
|
|
1
|
+
import { IConnection, IOptions } from "../../../../connection.ts";
|
|
2
|
+
import { Service } from "../../../../espConnection.ts";
|
|
3
|
+
|
|
4
|
+
export namespace FileSpray {
|
|
5
|
+
|
|
6
|
+
export type int = number;
|
|
7
|
+
export type double = number;
|
|
8
|
+
export type base64Binary = string;
|
|
9
|
+
export type long = number;
|
|
10
|
+
export type dateTime = string;
|
|
11
|
+
|
|
12
|
+
export enum DFUWUActions {
|
|
13
|
+
Delete = "Delete",
|
|
14
|
+
Protect = "Protect",
|
|
15
|
+
Unprotect = "Unprotect",
|
|
16
|
+
Restore = "Restore",
|
|
17
|
+
SetToFailed = "SetToFailed",
|
|
18
|
+
Archive = "Archive"
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export interface AbortDFUWorkunit {
|
|
22
|
+
wuid: string;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export interface Exception {
|
|
26
|
+
Code: string;
|
|
27
|
+
Audience: string;
|
|
28
|
+
Source: string;
|
|
29
|
+
Message: string;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export interface Exceptions {
|
|
33
|
+
Source: string;
|
|
34
|
+
Exception: Exception[];
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export interface AbortDFUWorkunitResponse {
|
|
38
|
+
Exceptions: {
|
|
39
|
+
Source: string;
|
|
40
|
+
Exception: Exception[];
|
|
41
|
+
};
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
export interface Copy {
|
|
45
|
+
sourceLogicalName: string;
|
|
46
|
+
destGroup: string;
|
|
47
|
+
destGroupRoxie: string;
|
|
48
|
+
destLogicalName: string;
|
|
49
|
+
sourceDali: string;
|
|
50
|
+
srcusername: string;
|
|
51
|
+
srcpassword: string;
|
|
52
|
+
overwrite: boolean;
|
|
53
|
+
replicate: boolean;
|
|
54
|
+
ReplicateOffset: int;
|
|
55
|
+
maxConnections: int;
|
|
56
|
+
throttle: int;
|
|
57
|
+
transferBufferSize: int;
|
|
58
|
+
nosplit: boolean;
|
|
59
|
+
norecover: boolean;
|
|
60
|
+
compress: boolean;
|
|
61
|
+
Wrap: boolean;
|
|
62
|
+
Multicopy: boolean;
|
|
63
|
+
SourceDiffKeyName: string;
|
|
64
|
+
DestDiffKeyName: string;
|
|
65
|
+
superCopy: boolean;
|
|
66
|
+
push: boolean;
|
|
67
|
+
pull: boolean;
|
|
68
|
+
ifnewer: boolean;
|
|
69
|
+
noCommon: boolean;
|
|
70
|
+
encrypt: string;
|
|
71
|
+
decrypt: string;
|
|
72
|
+
preserveCompression: boolean;
|
|
73
|
+
DFUServerQueue: string;
|
|
74
|
+
ExpireDays: int;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
export interface CopyResponse {
|
|
78
|
+
Exceptions: Exceptions;
|
|
79
|
+
result: string;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
export interface CreateDFUPublisherWorkunit {
|
|
83
|
+
DFUServerQueue: string;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
export interface result {
|
|
87
|
+
ID: string;
|
|
88
|
+
DFUServerName: string;
|
|
89
|
+
ClusterName: string;
|
|
90
|
+
JobName: string;
|
|
91
|
+
Queue: string;
|
|
92
|
+
User: string;
|
|
93
|
+
isProtected: boolean;
|
|
94
|
+
Command: int;
|
|
95
|
+
CommandMessage: string;
|
|
96
|
+
PercentDone: int;
|
|
97
|
+
SecsLeft: int;
|
|
98
|
+
ProgressMessage: string;
|
|
99
|
+
SummaryMessage: string;
|
|
100
|
+
State: int;
|
|
101
|
+
SourceLogicalName: string;
|
|
102
|
+
SourceIP: string;
|
|
103
|
+
SourceFilePath: string;
|
|
104
|
+
SourceDali: string;
|
|
105
|
+
SourceRecordSize: int;
|
|
106
|
+
SourceFormat: int;
|
|
107
|
+
RowTag: string;
|
|
108
|
+
SourceNumParts: int;
|
|
109
|
+
SourceDirectory: string;
|
|
110
|
+
DestLogicalName: string;
|
|
111
|
+
DestGroupName: string;
|
|
112
|
+
DestDirectory: string;
|
|
113
|
+
DestIP: string;
|
|
114
|
+
DestFilePath: string;
|
|
115
|
+
DestFormat: int;
|
|
116
|
+
DestNumParts: int;
|
|
117
|
+
DestRecordSize: int;
|
|
118
|
+
Replicate: boolean;
|
|
119
|
+
Overwrite: boolean;
|
|
120
|
+
Compress: boolean;
|
|
121
|
+
SourceCsvSeparate: string;
|
|
122
|
+
SourceCsvQuote: string;
|
|
123
|
+
SourceCsvTerminate: string;
|
|
124
|
+
SourceCsvEscape: string;
|
|
125
|
+
TimeStarted: string;
|
|
126
|
+
TimeStopped: string;
|
|
127
|
+
StateMessage: string;
|
|
128
|
+
MonitorEventName: string;
|
|
129
|
+
MonitorSub: boolean;
|
|
130
|
+
MonitorShotLimit: int;
|
|
131
|
+
SourceDiffKeyName: string;
|
|
132
|
+
DestDiffKeyName: string;
|
|
133
|
+
Archived: boolean;
|
|
134
|
+
encrypt: string;
|
|
135
|
+
decrypt: string;
|
|
136
|
+
failIfNoSourceFile: boolean;
|
|
137
|
+
recordStructurePresent: boolean;
|
|
138
|
+
quotedTerminator: boolean;
|
|
139
|
+
preserveCompression: boolean;
|
|
140
|
+
expireDays: int;
|
|
141
|
+
PreserveFileParts: boolean;
|
|
142
|
+
FileAccessCost: double;
|
|
143
|
+
KbPerSecAve: int;
|
|
144
|
+
KbPerSec: int;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
export interface CreateDFUPublisherWorkunitResponse {
|
|
148
|
+
Exceptions: Exceptions;
|
|
149
|
+
result: {
|
|
150
|
+
ID: string;
|
|
151
|
+
DFUServerName: string;
|
|
152
|
+
ClusterName: string;
|
|
153
|
+
JobName: string;
|
|
154
|
+
Queue: string;
|
|
155
|
+
User: string;
|
|
156
|
+
isProtected: boolean;
|
|
157
|
+
Command: int;
|
|
158
|
+
CommandMessage: string;
|
|
159
|
+
PercentDone: int;
|
|
160
|
+
SecsLeft: int;
|
|
161
|
+
ProgressMessage: string;
|
|
162
|
+
SummaryMessage: string;
|
|
163
|
+
State: int;
|
|
164
|
+
SourceLogicalName: string;
|
|
165
|
+
SourceIP: string;
|
|
166
|
+
SourceFilePath: string;
|
|
167
|
+
SourceDali: string;
|
|
168
|
+
SourceRecordSize: int;
|
|
169
|
+
SourceFormat: int;
|
|
170
|
+
RowTag: string;
|
|
171
|
+
SourceNumParts: int;
|
|
172
|
+
SourceDirectory: string;
|
|
173
|
+
DestLogicalName: string;
|
|
174
|
+
DestGroupName: string;
|
|
175
|
+
DestDirectory: string;
|
|
176
|
+
DestIP: string;
|
|
177
|
+
DestFilePath: string;
|
|
178
|
+
DestFormat: int;
|
|
179
|
+
DestNumParts: int;
|
|
180
|
+
DestRecordSize: int;
|
|
181
|
+
Replicate: boolean;
|
|
182
|
+
Overwrite: boolean;
|
|
183
|
+
Compress: boolean;
|
|
184
|
+
SourceCsvSeparate: string;
|
|
185
|
+
SourceCsvQuote: string;
|
|
186
|
+
SourceCsvTerminate: string;
|
|
187
|
+
SourceCsvEscape: string;
|
|
188
|
+
TimeStarted: string;
|
|
189
|
+
TimeStopped: string;
|
|
190
|
+
StateMessage: string;
|
|
191
|
+
MonitorEventName: string;
|
|
192
|
+
MonitorSub: boolean;
|
|
193
|
+
MonitorShotLimit: int;
|
|
194
|
+
SourceDiffKeyName: string;
|
|
195
|
+
DestDiffKeyName: string;
|
|
196
|
+
Archived: boolean;
|
|
197
|
+
encrypt: string;
|
|
198
|
+
decrypt: string;
|
|
199
|
+
failIfNoSourceFile: boolean;
|
|
200
|
+
recordStructurePresent: boolean;
|
|
201
|
+
quotedTerminator: boolean;
|
|
202
|
+
preserveCompression: boolean;
|
|
203
|
+
expireDays: int;
|
|
204
|
+
PreserveFileParts: boolean;
|
|
205
|
+
FileAccessCost: double;
|
|
206
|
+
KbPerSecAve: int;
|
|
207
|
+
KbPerSec: int;
|
|
208
|
+
};
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
export interface CreateDFUWorkunit {
|
|
212
|
+
DFUServerQueue: string;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
export interface CreateDFUWorkunitResponse {
|
|
216
|
+
Exceptions: Exceptions;
|
|
217
|
+
result: result;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
export interface DFUWUFileRequest {
|
|
221
|
+
Wuid?: string;
|
|
222
|
+
Type?: string;
|
|
223
|
+
PlainText?: string;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
export interface DFUWUFileResponse {
|
|
227
|
+
Exceptions: Exceptions;
|
|
228
|
+
file: string;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
export interface DFUWUSearchRequest {
|
|
232
|
+
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
export interface ClusterNames {
|
|
236
|
+
ClusterName: string[];
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
export interface DFUWUSearchResponse {
|
|
240
|
+
Exceptions: Exceptions;
|
|
241
|
+
ClusterNames: {
|
|
242
|
+
ClusterName: string[];
|
|
243
|
+
};
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
export interface wuids {
|
|
247
|
+
Item: string[];
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
export interface DFUWorkunitsActionRequest {
|
|
251
|
+
wuids?: {
|
|
252
|
+
Item?: string[];
|
|
253
|
+
};
|
|
254
|
+
Type?: DFUWUActions;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
export interface DFUActionResult {
|
|
258
|
+
ID: string;
|
|
259
|
+
Action: string;
|
|
260
|
+
Result: string;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
export interface DFUActionResults {
|
|
264
|
+
DFUActionResult: DFUActionResult[];
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
export interface DFUWorkunitsActionResponse {
|
|
268
|
+
Exceptions: Exceptions;
|
|
269
|
+
FirstColumn: string;
|
|
270
|
+
DFUActionResults: {
|
|
271
|
+
DFUActionResult: DFUActionResult[];
|
|
272
|
+
};
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
export interface DeleteDFUWorkunit {
|
|
276
|
+
wuid: string;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
export interface DeleteDFUWorkunitResponse {
|
|
280
|
+
Exceptions: Exceptions;
|
|
281
|
+
result: boolean;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
export interface DeleteDFUWorkunits {
|
|
285
|
+
wuids: wuids;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
export interface DeleteDFUWorkunitsResponse {
|
|
289
|
+
Exceptions: Exceptions;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
export interface Names {
|
|
293
|
+
Item: string[];
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
export interface DeleteDropZoneFilesRequest {
|
|
297
|
+
DropZoneName?: string;
|
|
298
|
+
NetAddress?: string;
|
|
299
|
+
Path?: string;
|
|
300
|
+
OS?: string;
|
|
301
|
+
Names?: {
|
|
302
|
+
Item?: string[];
|
|
303
|
+
};
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
export interface Despray {
|
|
307
|
+
destGroup: string;
|
|
308
|
+
sourceLogicalName: string;
|
|
309
|
+
destIP: string;
|
|
310
|
+
destPath: string;
|
|
311
|
+
destPlane: string;
|
|
312
|
+
dstxml: base64Binary;
|
|
313
|
+
overwrite: boolean;
|
|
314
|
+
maxConnections: int;
|
|
315
|
+
throttle: int;
|
|
316
|
+
transferBufferSize: int;
|
|
317
|
+
splitprefix: string;
|
|
318
|
+
norecover: boolean;
|
|
319
|
+
wrap: boolean;
|
|
320
|
+
multiCopy: boolean;
|
|
321
|
+
SingleConnection: boolean;
|
|
322
|
+
DFUServerQueue: string;
|
|
323
|
+
compress: boolean;
|
|
324
|
+
encrypt: string;
|
|
325
|
+
decrypt: string;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
export interface DesprayResponse {
|
|
329
|
+
Exceptions: Exceptions;
|
|
330
|
+
wuid: string;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
export interface DfuMonitorRequest {
|
|
334
|
+
EventName?: string;
|
|
335
|
+
LogicalName?: string;
|
|
336
|
+
Ip?: string;
|
|
337
|
+
Filename?: string;
|
|
338
|
+
Sub?: boolean;
|
|
339
|
+
ShotLimit?: int;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
export interface DfuMonitorResponse {
|
|
343
|
+
Exceptions: Exceptions;
|
|
344
|
+
wuid: string;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
export interface DropZoneFileSearchRequest {
|
|
348
|
+
DropZoneName?: string;
|
|
349
|
+
Server?: string;
|
|
350
|
+
ECLWatchVisibleOnly?: boolean;
|
|
351
|
+
NameFilter?: string;
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
export interface PhysicalFileStruct {
|
|
355
|
+
name: string;
|
|
356
|
+
Server: string;
|
|
357
|
+
isDir: boolean;
|
|
358
|
+
filesize: long;
|
|
359
|
+
modifiedtime: string;
|
|
360
|
+
Path: string;
|
|
361
|
+
Files: Files;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
export interface Files {
|
|
365
|
+
PhysicalFileStruct: PhysicalFileStruct[];
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
export interface DropZoneFileSearchResponse {
|
|
369
|
+
Exceptions: Exceptions;
|
|
370
|
+
Files: {
|
|
371
|
+
PhysicalFileStruct: PhysicalFileStruct[];
|
|
372
|
+
};
|
|
373
|
+
Warning: string;
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
export interface DropZoneFilesRequest {
|
|
377
|
+
DropZoneName?: string;
|
|
378
|
+
NetAddress?: string;
|
|
379
|
+
Path?: string;
|
|
380
|
+
OS?: string;
|
|
381
|
+
Subfolder?: string;
|
|
382
|
+
ECLWatchVisibleOnly?: boolean;
|
|
383
|
+
DirectoryOnly?: boolean;
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
export interface DropZone {
|
|
387
|
+
Name: string;
|
|
388
|
+
NetAddress: string;
|
|
389
|
+
Path: string;
|
|
390
|
+
Computer: string;
|
|
391
|
+
Linux: string;
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
export interface DropZones {
|
|
395
|
+
DropZone: DropZone[];
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
export interface DropZoneFilesResponse {
|
|
399
|
+
Exceptions: Exceptions;
|
|
400
|
+
DropZoneName: string;
|
|
401
|
+
NetAddress: string;
|
|
402
|
+
Path: string;
|
|
403
|
+
OS: int;
|
|
404
|
+
ECLWatchVisibleOnly: boolean;
|
|
405
|
+
DropZones: {
|
|
406
|
+
DropZone: DropZone[];
|
|
407
|
+
};
|
|
408
|
+
Files: Files;
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
export interface EchoDateTime {
|
|
412
|
+
dt: dateTime;
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
export interface EchoDateTimeResponse {
|
|
416
|
+
result: dateTime;
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
export interface FileListRequest {
|
|
420
|
+
DropZoneName?: string;
|
|
421
|
+
Netaddr?: string;
|
|
422
|
+
Path?: string;
|
|
423
|
+
Mask?: string;
|
|
424
|
+
OS?: string;
|
|
425
|
+
DirectoryOnly?: boolean;
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
export interface files {
|
|
429
|
+
PhysicalFileStruct: PhysicalFileStruct[];
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
export interface FileListResponse {
|
|
433
|
+
Exceptions: Exceptions;
|
|
434
|
+
Netaddr: string;
|
|
435
|
+
Path: string;
|
|
436
|
+
Mask: string;
|
|
437
|
+
OS: int;
|
|
438
|
+
DirectoryOnly: boolean;
|
|
439
|
+
AcceptLanguage: string;
|
|
440
|
+
files: {
|
|
441
|
+
PhysicalFileStruct: PhysicalFileStruct[];
|
|
442
|
+
};
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
export interface GetDFUExceptions {
|
|
446
|
+
wuid: string;
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
export interface GetDFUExceptionsResponse {
|
|
450
|
+
Exceptions: Exceptions;
|
|
451
|
+
result: result;
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
export interface ProgressRequest {
|
|
455
|
+
wuid?: string;
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
export interface ProgressResponse {
|
|
459
|
+
Exceptions: Exceptions;
|
|
460
|
+
wuid: string;
|
|
461
|
+
PercentDone: int;
|
|
462
|
+
SecsLeft: int;
|
|
463
|
+
KbPerSecAve: int;
|
|
464
|
+
KbPerSec: int;
|
|
465
|
+
SlavesDone: int;
|
|
466
|
+
TimeTaken: string;
|
|
467
|
+
ProgressMessage: string;
|
|
468
|
+
SummaryMessage: string;
|
|
469
|
+
State: string;
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
export interface GetDFUServerQueuesRequest {
|
|
473
|
+
DFUServerName?: string;
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
export interface GetDFUServerQueuesResponse {
|
|
477
|
+
Exceptions: Exceptions;
|
|
478
|
+
Names: Names;
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
export interface GetDFUWorkunit {
|
|
482
|
+
wuid: string;
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
export interface GetDFUWorkunitResponse {
|
|
486
|
+
Exceptions: Exceptions;
|
|
487
|
+
result: result;
|
|
488
|
+
AutoRefresh: int;
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
export interface GetDFUWorkunits {
|
|
492
|
+
Wuid: string;
|
|
493
|
+
Owner: string;
|
|
494
|
+
Cluster: string;
|
|
495
|
+
StateReq: string;
|
|
496
|
+
Type: string;
|
|
497
|
+
Jobname: string;
|
|
498
|
+
PageSize: long;
|
|
499
|
+
CurrentPage: int;
|
|
500
|
+
PageStartFrom: long;
|
|
501
|
+
Sortby: string;
|
|
502
|
+
Descending: boolean;
|
|
503
|
+
CacheHint: long;
|
|
504
|
+
ParentWuid: string;
|
|
505
|
+
PublisherWuid: string;
|
|
506
|
+
includeProgressMessages: boolean;
|
|
507
|
+
includeTimings: boolean;
|
|
508
|
+
includeTransferRate: boolean;
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
export interface DFUWorkunit {
|
|
512
|
+
ID: string;
|
|
513
|
+
DFUServerName: string;
|
|
514
|
+
ClusterName: string;
|
|
515
|
+
JobName: string;
|
|
516
|
+
Queue: string;
|
|
517
|
+
User: string;
|
|
518
|
+
isProtected: boolean;
|
|
519
|
+
Command: int;
|
|
520
|
+
CommandMessage: string;
|
|
521
|
+
PercentDone: int;
|
|
522
|
+
SecsLeft: int;
|
|
523
|
+
ProgressMessage: string;
|
|
524
|
+
SummaryMessage: string;
|
|
525
|
+
State: int;
|
|
526
|
+
SourceLogicalName: string;
|
|
527
|
+
SourceIP: string;
|
|
528
|
+
SourceFilePath: string;
|
|
529
|
+
SourceDali: string;
|
|
530
|
+
SourceRecordSize: int;
|
|
531
|
+
SourceFormat: int;
|
|
532
|
+
RowTag: string;
|
|
533
|
+
SourceNumParts: int;
|
|
534
|
+
SourceDirectory: string;
|
|
535
|
+
DestLogicalName: string;
|
|
536
|
+
DestGroupName: string;
|
|
537
|
+
DestDirectory: string;
|
|
538
|
+
DestIP: string;
|
|
539
|
+
DestFilePath: string;
|
|
540
|
+
DestFormat: int;
|
|
541
|
+
DestNumParts: int;
|
|
542
|
+
DestRecordSize: int;
|
|
543
|
+
Replicate: boolean;
|
|
544
|
+
Overwrite: boolean;
|
|
545
|
+
Compress: boolean;
|
|
546
|
+
SourceCsvSeparate: string;
|
|
547
|
+
SourceCsvQuote: string;
|
|
548
|
+
SourceCsvTerminate: string;
|
|
549
|
+
SourceCsvEscape: string;
|
|
550
|
+
TimeStarted: string;
|
|
551
|
+
TimeStopped: string;
|
|
552
|
+
StateMessage: string;
|
|
553
|
+
MonitorEventName: string;
|
|
554
|
+
MonitorSub: boolean;
|
|
555
|
+
MonitorShotLimit: int;
|
|
556
|
+
SourceDiffKeyName: string;
|
|
557
|
+
DestDiffKeyName: string;
|
|
558
|
+
Archived: boolean;
|
|
559
|
+
encrypt: string;
|
|
560
|
+
decrypt: string;
|
|
561
|
+
failIfNoSourceFile: boolean;
|
|
562
|
+
recordStructurePresent: boolean;
|
|
563
|
+
quotedTerminator: boolean;
|
|
564
|
+
preserveCompression: boolean;
|
|
565
|
+
expireDays: int;
|
|
566
|
+
PreserveFileParts: boolean;
|
|
567
|
+
FileAccessCost: double;
|
|
568
|
+
KbPerSecAve: int;
|
|
569
|
+
KbPerSec: int;
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
export interface results {
|
|
573
|
+
DFUWorkunit: DFUWorkunit[];
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
export interface GetDFUWorkunitsResponse {
|
|
577
|
+
Exceptions: Exceptions;
|
|
578
|
+
results: {
|
|
579
|
+
DFUWorkunit: DFUWorkunit[];
|
|
580
|
+
};
|
|
581
|
+
Type: string;
|
|
582
|
+
Owner: string;
|
|
583
|
+
Cluster: string;
|
|
584
|
+
StateReq: string;
|
|
585
|
+
PageSize: long;
|
|
586
|
+
PrevPage: long;
|
|
587
|
+
NextPage: long;
|
|
588
|
+
LastPage: long;
|
|
589
|
+
NumWUs: long;
|
|
590
|
+
PageStartFrom: long;
|
|
591
|
+
PageEndAt: long;
|
|
592
|
+
First: boolean;
|
|
593
|
+
Sortby: string;
|
|
594
|
+
Descending: boolean;
|
|
595
|
+
BasicQuery: string;
|
|
596
|
+
Filters: string;
|
|
597
|
+
CacheHint: long;
|
|
598
|
+
}
|
|
599
|
+
|
|
600
|
+
export interface GetSprayTargetsRequest {
|
|
601
|
+
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
export interface GroupNode {
|
|
605
|
+
Name: string;
|
|
606
|
+
ClusterType: string;
|
|
607
|
+
ReplicateOutputs: boolean;
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
export interface GroupNodes {
|
|
611
|
+
GroupNode: GroupNode[];
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
export interface GetSprayTargetsResponse {
|
|
615
|
+
Exceptions: Exceptions;
|
|
616
|
+
GroupNodes: {
|
|
617
|
+
GroupNode: GroupNode[];
|
|
618
|
+
};
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
export interface OpenSaveRequest {
|
|
622
|
+
Location?: string;
|
|
623
|
+
Path?: string;
|
|
624
|
+
Name?: string;
|
|
625
|
+
Type?: string;
|
|
626
|
+
DateTime?: string;
|
|
627
|
+
BinaryFile?: boolean;
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
export interface OpenSaveResponse {
|
|
631
|
+
Exceptions: Exceptions;
|
|
632
|
+
Location: string;
|
|
633
|
+
Path: string;
|
|
634
|
+
Name: string;
|
|
635
|
+
Type: string;
|
|
636
|
+
DateTime: string;
|
|
637
|
+
Viewable: boolean;
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
export interface FileSprayPingRequest {
|
|
641
|
+
|
|
642
|
+
}
|
|
643
|
+
|
|
644
|
+
export interface FileSprayPingResponse {
|
|
645
|
+
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
export interface Rename {
|
|
649
|
+
srcname: string;
|
|
650
|
+
dstname: string;
|
|
651
|
+
overwrite: boolean;
|
|
652
|
+
DFUServerQueue: string;
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
export interface RenameResponse {
|
|
656
|
+
Exceptions: Exceptions;
|
|
657
|
+
wuid: string;
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
export interface Replicate {
|
|
661
|
+
sourceLogicalName: string;
|
|
662
|
+
replicateOffset: int;
|
|
663
|
+
cluster: string;
|
|
664
|
+
repeatLast: boolean;
|
|
665
|
+
onlyRepeated: boolean;
|
|
666
|
+
DFUServerQueue: string;
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
export interface ReplicateResponse {
|
|
670
|
+
Exceptions: Exceptions;
|
|
671
|
+
wuid: string;
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
export interface ShowResultRequest {
|
|
675
|
+
Result?: string;
|
|
676
|
+
}
|
|
677
|
+
|
|
678
|
+
export interface ShowResultResponse {
|
|
679
|
+
Exceptions: Exceptions;
|
|
680
|
+
Result: string;
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
export interface SprayFixed {
|
|
684
|
+
sourceIP: string;
|
|
685
|
+
sourcePlane: string;
|
|
686
|
+
sourcePath: string;
|
|
687
|
+
srcxml: base64Binary;
|
|
688
|
+
sourceFormat: string;
|
|
689
|
+
sourceRecordSize: int;
|
|
690
|
+
destGroup: string;
|
|
691
|
+
destLogicalName: string;
|
|
692
|
+
destNumParts: int;
|
|
693
|
+
overwrite: boolean;
|
|
694
|
+
replicate: boolean;
|
|
695
|
+
ReplicateOffset: int;
|
|
696
|
+
maxConnections: int;
|
|
697
|
+
throttle: int;
|
|
698
|
+
transferBufferSize: int;
|
|
699
|
+
prefix: string;
|
|
700
|
+
nosplit: boolean;
|
|
701
|
+
norecover: boolean;
|
|
702
|
+
compress: boolean;
|
|
703
|
+
push: boolean;
|
|
704
|
+
pull: boolean;
|
|
705
|
+
noCommon: boolean;
|
|
706
|
+
encrypt: string;
|
|
707
|
+
decrypt: string;
|
|
708
|
+
wrap: boolean;
|
|
709
|
+
failIfNoSourceFile: boolean;
|
|
710
|
+
recordStructurePresent: boolean;
|
|
711
|
+
quotedTerminator: boolean;
|
|
712
|
+
expireDays: int;
|
|
713
|
+
DFUServerQueue: string;
|
|
714
|
+
}
|
|
715
|
+
|
|
716
|
+
export interface SprayFixedResponse {
|
|
717
|
+
Exceptions: Exceptions;
|
|
718
|
+
wuid: string;
|
|
719
|
+
}
|
|
720
|
+
|
|
721
|
+
export interface SprayVariable {
|
|
722
|
+
sourceIP: string;
|
|
723
|
+
sourcePlane: string;
|
|
724
|
+
sourcePath: string;
|
|
725
|
+
srcxml: base64Binary;
|
|
726
|
+
sourceMaxRecordSize: int;
|
|
727
|
+
sourceFormat: int;
|
|
728
|
+
NoSourceCsvSeparator: boolean;
|
|
729
|
+
sourceCsvSeparate: string;
|
|
730
|
+
sourceCsvTerminate: string;
|
|
731
|
+
sourceCsvQuote: string;
|
|
732
|
+
sourceCsvEscape: string;
|
|
733
|
+
sourceRowTag: string;
|
|
734
|
+
destGroup: string;
|
|
735
|
+
destLogicalName: string;
|
|
736
|
+
destNumParts: int;
|
|
737
|
+
overwrite: boolean;
|
|
738
|
+
replicate: boolean;
|
|
739
|
+
ReplicateOffset: int;
|
|
740
|
+
maxConnections: int;
|
|
741
|
+
throttle: int;
|
|
742
|
+
transferBufferSize: int;
|
|
743
|
+
prefix: string;
|
|
744
|
+
nosplit: boolean;
|
|
745
|
+
norecover: boolean;
|
|
746
|
+
compress: boolean;
|
|
747
|
+
push: boolean;
|
|
748
|
+
pull: boolean;
|
|
749
|
+
noCommon: boolean;
|
|
750
|
+
encrypt: string;
|
|
751
|
+
decrypt: string;
|
|
752
|
+
failIfNoSourceFile: boolean;
|
|
753
|
+
recordStructurePresent: boolean;
|
|
754
|
+
quotedTerminator: boolean;
|
|
755
|
+
sourceRowPath: string;
|
|
756
|
+
isJSON: boolean;
|
|
757
|
+
expireDays: int;
|
|
758
|
+
DFUServerQueue: string;
|
|
759
|
+
srcUsername: string;
|
|
760
|
+
srcPassword: string;
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
export interface SprayResponse {
|
|
764
|
+
Exceptions: Exceptions;
|
|
765
|
+
wuid: string;
|
|
766
|
+
}
|
|
767
|
+
|
|
768
|
+
export interface SubmitDFUWorkunit {
|
|
769
|
+
wuid: string;
|
|
770
|
+
}
|
|
771
|
+
|
|
772
|
+
export interface SubmitDFUWorkunitResponse {
|
|
773
|
+
Exceptions: Exceptions;
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
export interface wu {
|
|
777
|
+
ID: string;
|
|
778
|
+
DFUServerName: string;
|
|
779
|
+
ClusterName: string;
|
|
780
|
+
JobName: string;
|
|
781
|
+
Queue: string;
|
|
782
|
+
User: string;
|
|
783
|
+
isProtected: boolean;
|
|
784
|
+
Command: int;
|
|
785
|
+
CommandMessage: string;
|
|
786
|
+
PercentDone: int;
|
|
787
|
+
SecsLeft: int;
|
|
788
|
+
ProgressMessage: string;
|
|
789
|
+
SummaryMessage: string;
|
|
790
|
+
State: int;
|
|
791
|
+
SourceLogicalName: string;
|
|
792
|
+
SourceIP: string;
|
|
793
|
+
SourceFilePath: string;
|
|
794
|
+
SourceDali: string;
|
|
795
|
+
SourceRecordSize: int;
|
|
796
|
+
SourceFormat: int;
|
|
797
|
+
RowTag: string;
|
|
798
|
+
SourceNumParts: int;
|
|
799
|
+
SourceDirectory: string;
|
|
800
|
+
DestLogicalName: string;
|
|
801
|
+
DestGroupName: string;
|
|
802
|
+
DestDirectory: string;
|
|
803
|
+
DestIP: string;
|
|
804
|
+
DestFilePath: string;
|
|
805
|
+
DestFormat: int;
|
|
806
|
+
DestNumParts: int;
|
|
807
|
+
DestRecordSize: int;
|
|
808
|
+
Replicate: boolean;
|
|
809
|
+
Overwrite: boolean;
|
|
810
|
+
Compress: boolean;
|
|
811
|
+
SourceCsvSeparate: string;
|
|
812
|
+
SourceCsvQuote: string;
|
|
813
|
+
SourceCsvTerminate: string;
|
|
814
|
+
SourceCsvEscape: string;
|
|
815
|
+
TimeStarted: string;
|
|
816
|
+
TimeStopped: string;
|
|
817
|
+
StateMessage: string;
|
|
818
|
+
MonitorEventName: string;
|
|
819
|
+
MonitorSub: boolean;
|
|
820
|
+
MonitorShotLimit: int;
|
|
821
|
+
SourceDiffKeyName: string;
|
|
822
|
+
DestDiffKeyName: string;
|
|
823
|
+
Archived: boolean;
|
|
824
|
+
encrypt: string;
|
|
825
|
+
decrypt: string;
|
|
826
|
+
failIfNoSourceFile: boolean;
|
|
827
|
+
recordStructurePresent: boolean;
|
|
828
|
+
quotedTerminator: boolean;
|
|
829
|
+
preserveCompression: boolean;
|
|
830
|
+
expireDays: int;
|
|
831
|
+
PreserveFileParts: boolean;
|
|
832
|
+
FileAccessCost: double;
|
|
833
|
+
KbPerSecAve: int;
|
|
834
|
+
KbPerSec: int;
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
export interface UpdateDFUWorkunit {
|
|
838
|
+
wu: {
|
|
839
|
+
ID: string;
|
|
840
|
+
DFUServerName: string;
|
|
841
|
+
ClusterName: string;
|
|
842
|
+
JobName: string;
|
|
843
|
+
Queue: string;
|
|
844
|
+
User: string;
|
|
845
|
+
isProtected: boolean;
|
|
846
|
+
Command: int;
|
|
847
|
+
CommandMessage: string;
|
|
848
|
+
PercentDone: int;
|
|
849
|
+
SecsLeft: int;
|
|
850
|
+
ProgressMessage: string;
|
|
851
|
+
SummaryMessage: string;
|
|
852
|
+
State: int;
|
|
853
|
+
SourceLogicalName: string;
|
|
854
|
+
SourceIP: string;
|
|
855
|
+
SourceFilePath: string;
|
|
856
|
+
SourceDali: string;
|
|
857
|
+
SourceRecordSize: int;
|
|
858
|
+
SourceFormat: int;
|
|
859
|
+
RowTag: string;
|
|
860
|
+
SourceNumParts: int;
|
|
861
|
+
SourceDirectory: string;
|
|
862
|
+
DestLogicalName: string;
|
|
863
|
+
DestGroupName: string;
|
|
864
|
+
DestDirectory: string;
|
|
865
|
+
DestIP: string;
|
|
866
|
+
DestFilePath: string;
|
|
867
|
+
DestFormat: int;
|
|
868
|
+
DestNumParts: int;
|
|
869
|
+
DestRecordSize: int;
|
|
870
|
+
Replicate: boolean;
|
|
871
|
+
Overwrite: boolean;
|
|
872
|
+
Compress: boolean;
|
|
873
|
+
SourceCsvSeparate: string;
|
|
874
|
+
SourceCsvQuote: string;
|
|
875
|
+
SourceCsvTerminate: string;
|
|
876
|
+
SourceCsvEscape: string;
|
|
877
|
+
TimeStarted: string;
|
|
878
|
+
TimeStopped: string;
|
|
879
|
+
StateMessage: string;
|
|
880
|
+
MonitorEventName: string;
|
|
881
|
+
MonitorSub: boolean;
|
|
882
|
+
MonitorShotLimit: int;
|
|
883
|
+
SourceDiffKeyName: string;
|
|
884
|
+
DestDiffKeyName: string;
|
|
885
|
+
Archived: boolean;
|
|
886
|
+
encrypt: string;
|
|
887
|
+
decrypt: string;
|
|
888
|
+
failIfNoSourceFile: boolean;
|
|
889
|
+
recordStructurePresent: boolean;
|
|
890
|
+
quotedTerminator: boolean;
|
|
891
|
+
preserveCompression: boolean;
|
|
892
|
+
expireDays: int;
|
|
893
|
+
PreserveFileParts: boolean;
|
|
894
|
+
FileAccessCost: double;
|
|
895
|
+
KbPerSecAve: int;
|
|
896
|
+
KbPerSec: int;
|
|
897
|
+
};
|
|
898
|
+
ClusterOrig: string;
|
|
899
|
+
JobNameOrig: string;
|
|
900
|
+
isProtectedOrig: boolean;
|
|
901
|
+
StateOrig: int;
|
|
902
|
+
}
|
|
903
|
+
|
|
904
|
+
export interface UpdateDFUWorkunitResponse {
|
|
905
|
+
Exceptions: Exceptions;
|
|
906
|
+
}
|
|
907
|
+
|
|
908
|
+
}
|
|
909
|
+
|
|
910
|
+
export class FileSprayServiceBase extends Service {
|
|
911
|
+
|
|
912
|
+
constructor(optsConnection: IOptions | IConnection) {
|
|
913
|
+
super(optsConnection, "FileSpray", "1.25");
|
|
914
|
+
}
|
|
915
|
+
|
|
916
|
+
AbortDFUWorkunit(request: FileSpray.AbortDFUWorkunit): Promise<FileSpray.AbortDFUWorkunitResponse> {
|
|
917
|
+
return this._connection.send("AbortDFUWorkunit", request, "json", false, undefined, "AbortDFUWorkunitResponse");
|
|
918
|
+
}
|
|
919
|
+
|
|
920
|
+
Copy(request: FileSpray.Copy): Promise<FileSpray.CopyResponse> {
|
|
921
|
+
return this._connection.send("Copy", request, "json", false, undefined, "CopyResponse");
|
|
922
|
+
}
|
|
923
|
+
|
|
924
|
+
CreateDFUPublisherWorkunit(request: FileSpray.CreateDFUPublisherWorkunit): Promise<FileSpray.CreateDFUPublisherWorkunitResponse> {
|
|
925
|
+
return this._connection.send("CreateDFUPublisherWorkunit", request, "json", false, undefined, "CreateDFUPublisherWorkunitResponse");
|
|
926
|
+
}
|
|
927
|
+
|
|
928
|
+
CreateDFUWorkunit(request: FileSpray.CreateDFUWorkunit): Promise<FileSpray.CreateDFUWorkunitResponse> {
|
|
929
|
+
return this._connection.send("CreateDFUWorkunit", request, "json", false, undefined, "CreateDFUWorkunitResponse");
|
|
930
|
+
}
|
|
931
|
+
|
|
932
|
+
DFUWUFile(request: FileSpray.DFUWUFileRequest): Promise<FileSpray.DFUWUFileResponse> {
|
|
933
|
+
return this._connection.send("DFUWUFile", request, "json", false, undefined, "DFUWUFileResponse");
|
|
934
|
+
}
|
|
935
|
+
|
|
936
|
+
DFUWUSearch(request: FileSpray.DFUWUSearchRequest): Promise<FileSpray.DFUWUSearchResponse> {
|
|
937
|
+
return this._connection.send("DFUWUSearch", request, "json", false, undefined, "DFUWUSearchResponse");
|
|
938
|
+
}
|
|
939
|
+
|
|
940
|
+
DFUWorkunitsAction(request: FileSpray.DFUWorkunitsActionRequest): Promise<FileSpray.DFUWorkunitsActionResponse> {
|
|
941
|
+
return this._connection.send("DFUWorkunitsAction", request, "json", false, undefined, "DFUWorkunitsActionResponse");
|
|
942
|
+
}
|
|
943
|
+
|
|
944
|
+
DeleteDFUWorkunit(request: FileSpray.DeleteDFUWorkunit): Promise<FileSpray.DeleteDFUWorkunitResponse> {
|
|
945
|
+
return this._connection.send("DeleteDFUWorkunit", request, "json", false, undefined, "DeleteDFUWorkunitResponse");
|
|
946
|
+
}
|
|
947
|
+
|
|
948
|
+
DeleteDFUWorkunits(request: FileSpray.DeleteDFUWorkunits): Promise<FileSpray.DeleteDFUWorkunitsResponse> {
|
|
949
|
+
return this._connection.send("DeleteDFUWorkunits", request, "json", false, undefined, "DeleteDFUWorkunitsResponse");
|
|
950
|
+
}
|
|
951
|
+
|
|
952
|
+
DeleteDropZoneFiles(request: FileSpray.DeleteDropZoneFilesRequest): Promise<FileSpray.DFUWorkunitsActionResponse> {
|
|
953
|
+
return this._connection.send("DeleteDropZoneFiles", request, "json", false, undefined, "DFUWorkunitsActionResponse");
|
|
954
|
+
}
|
|
955
|
+
|
|
956
|
+
Despray(request: FileSpray.Despray): Promise<FileSpray.DesprayResponse> {
|
|
957
|
+
return this._connection.send("Despray", request, "json", false, undefined, "DesprayResponse");
|
|
958
|
+
}
|
|
959
|
+
|
|
960
|
+
DfuMonitor(request: FileSpray.DfuMonitorRequest): Promise<FileSpray.DfuMonitorResponse> {
|
|
961
|
+
return this._connection.send("DfuMonitor", request, "json", false, undefined, "DfuMonitorResponse");
|
|
962
|
+
}
|
|
963
|
+
|
|
964
|
+
DropZoneFileSearch(request: FileSpray.DropZoneFileSearchRequest): Promise<FileSpray.DropZoneFileSearchResponse> {
|
|
965
|
+
return this._connection.send("DropZoneFileSearch", request, "json", false, undefined, "DropZoneFileSearchResponse");
|
|
966
|
+
}
|
|
967
|
+
|
|
968
|
+
DropZoneFiles(request: FileSpray.DropZoneFilesRequest): Promise<FileSpray.DropZoneFilesResponse> {
|
|
969
|
+
return this._connection.send("DropZoneFiles", request, "json", false, undefined, "DropZoneFilesResponse");
|
|
970
|
+
}
|
|
971
|
+
|
|
972
|
+
EchoDateTime(request: FileSpray.EchoDateTime): Promise<FileSpray.EchoDateTimeResponse> {
|
|
973
|
+
return this._connection.send("EchoDateTime", request, "json", false, undefined, "EchoDateTimeResponse");
|
|
974
|
+
}
|
|
975
|
+
|
|
976
|
+
FileList(request: FileSpray.FileListRequest): Promise<FileSpray.FileListResponse> {
|
|
977
|
+
return this._connection.send("FileList", request, "json", false, undefined, "FileListResponse");
|
|
978
|
+
}
|
|
979
|
+
|
|
980
|
+
GetDFUExceptions(request: FileSpray.GetDFUExceptions): Promise<FileSpray.GetDFUExceptionsResponse> {
|
|
981
|
+
return this._connection.send("GetDFUExceptions", request, "json", false, undefined, "GetDFUExceptionsResponse");
|
|
982
|
+
}
|
|
983
|
+
|
|
984
|
+
GetDFUProgress(request: FileSpray.ProgressRequest): Promise<FileSpray.ProgressResponse> {
|
|
985
|
+
return this._connection.send("GetDFUProgress", request, "json", false, undefined, "ProgressResponse");
|
|
986
|
+
}
|
|
987
|
+
|
|
988
|
+
GetDFUServerQueues(request: FileSpray.GetDFUServerQueuesRequest): Promise<FileSpray.GetDFUServerQueuesResponse> {
|
|
989
|
+
return this._connection.send("GetDFUServerQueues", request, "json", false, undefined, "GetDFUServerQueuesResponse");
|
|
990
|
+
}
|
|
991
|
+
|
|
992
|
+
GetDFUWorkunit(request: FileSpray.GetDFUWorkunit): Promise<FileSpray.GetDFUWorkunitResponse> {
|
|
993
|
+
return this._connection.send("GetDFUWorkunit", request, "json", false, undefined, "GetDFUWorkunitResponse");
|
|
994
|
+
}
|
|
995
|
+
|
|
996
|
+
GetDFUWorkunits(request: FileSpray.GetDFUWorkunits): Promise<FileSpray.GetDFUWorkunitsResponse> {
|
|
997
|
+
return this._connection.send("GetDFUWorkunits", request, "json", false, undefined, "GetDFUWorkunitsResponse");
|
|
998
|
+
}
|
|
999
|
+
|
|
1000
|
+
GetSprayTargets(request: FileSpray.GetSprayTargetsRequest): Promise<FileSpray.GetSprayTargetsResponse> {
|
|
1001
|
+
return this._connection.send("GetSprayTargets", request, "json", false, undefined, "GetSprayTargetsResponse");
|
|
1002
|
+
}
|
|
1003
|
+
|
|
1004
|
+
OpenSave(request: FileSpray.OpenSaveRequest): Promise<FileSpray.OpenSaveResponse> {
|
|
1005
|
+
return this._connection.send("OpenSave", request, "json", false, undefined, "OpenSaveResponse");
|
|
1006
|
+
}
|
|
1007
|
+
|
|
1008
|
+
Ping(request: FileSpray.FileSprayPingRequest): Promise<FileSpray.FileSprayPingResponse> {
|
|
1009
|
+
return this._connection.send("Ping", request, "json", false, undefined, "FileSprayPingResponse");
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
Rename(request: FileSpray.Rename): Promise<FileSpray.RenameResponse> {
|
|
1013
|
+
return this._connection.send("Rename", request, "json", false, undefined, "RenameResponse");
|
|
1014
|
+
}
|
|
1015
|
+
|
|
1016
|
+
Replicate(request: FileSpray.Replicate): Promise<FileSpray.ReplicateResponse> {
|
|
1017
|
+
return this._connection.send("Replicate", request, "json", false, undefined, "ReplicateResponse");
|
|
1018
|
+
}
|
|
1019
|
+
|
|
1020
|
+
ShowResult(request: FileSpray.ShowResultRequest): Promise<FileSpray.ShowResultResponse> {
|
|
1021
|
+
return this._connection.send("ShowResult", request, "json", false, undefined, "ShowResultResponse");
|
|
1022
|
+
}
|
|
1023
|
+
|
|
1024
|
+
SprayFixed(request: FileSpray.SprayFixed): Promise<FileSpray.SprayFixedResponse> {
|
|
1025
|
+
return this._connection.send("SprayFixed", request, "json", false, undefined, "SprayFixedResponse");
|
|
1026
|
+
}
|
|
1027
|
+
|
|
1028
|
+
SprayVariable(request: FileSpray.SprayVariable): Promise<FileSpray.SprayResponse> {
|
|
1029
|
+
return this._connection.send("SprayVariable", request, "json", false, undefined, "SprayResponse");
|
|
1030
|
+
}
|
|
1031
|
+
|
|
1032
|
+
SubmitDFUWorkunit(request: FileSpray.SubmitDFUWorkunit): Promise<FileSpray.SubmitDFUWorkunitResponse> {
|
|
1033
|
+
return this._connection.send("SubmitDFUWorkunit", request, "json", false, undefined, "SubmitDFUWorkunitResponse");
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
UpdateDFUWorkunit(request: FileSpray.UpdateDFUWorkunit): Promise<FileSpray.UpdateDFUWorkunitResponse> {
|
|
1037
|
+
return this._connection.send("UpdateDFUWorkunit", request, "json", false, undefined, "UpdateDFUWorkunitResponse");
|
|
1038
|
+
}
|
|
1039
|
+
|
|
1040
|
+
}
|