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