@hpcc-js/comms 2.74.0 → 2.75.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/dist/index.es6.js +149 -17
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +148 -16
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist/index.node.js +148 -16
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.min.js +1 -1
- package/dist/index.node.min.js.map +1 -1
- package/lib-es6/__package__.js +2 -2
- package/lib-es6/__package__.js.map +1 -1
- package/lib-es6/ecl/logicalFile.js +7 -2
- package/lib-es6/ecl/logicalFile.js.map +1 -1
- package/lib-es6/services/wsDFU.js +5 -16
- package/lib-es6/services/wsDFU.js.map +1 -1
- package/lib-es6/services/wsdl/WsDfu/v1.62/WsDfu.js +142 -0
- package/lib-es6/services/wsdl/WsDfu/v1.62/WsDfu.js.map +1 -0
- package/package.json +3 -3
- package/src/__package__.ts +2 -2
- package/src/ecl/logicalFile.ts +7 -6
- package/src/services/wsDFU.ts +11 -2839
- package/src/services/wsdl/WsDfu/v1.62/WsDfu.ts +1455 -0
- package/types/__package__.d.ts +2 -2
- package/types/__package__.d.ts.map +1 -1
- package/types/ecl/logicalFile.d.ts +7 -6
- package/types/ecl/logicalFile.d.ts.map +1 -1
- package/types/services/wsDFU.d.ts +3 -2463
- package/types/services/wsDFU.d.ts.map +1 -1
- package/types/services/wsdl/WsDfu/v1.62/WsDfu.d.ts +1224 -0
- package/types/services/wsdl/WsDfu/v1.62/WsDfu.d.ts.map +1 -0
- package/types-3.4/__package__.d.ts +2 -2
- package/types-3.4/ecl/logicalFile.d.ts +7 -6
- package/types-3.4/services/wsDFU.d.ts +3 -2463
- package/types-3.4/services/wsdl/WsDfu/v1.62/WsDfu.d.ts +1224 -0
|
@@ -0,0 +1,1224 @@
|
|
|
1
|
+
import { IConnection, IOptions } from "../../../../connection";
|
|
2
|
+
import { Service } from "../../../../espConnection";
|
|
3
|
+
export declare type base64Binary = string;
|
|
4
|
+
declare type long = number;
|
|
5
|
+
declare type int = number;
|
|
6
|
+
declare type double = number;
|
|
7
|
+
export declare enum DFUArrayActions {
|
|
8
|
+
Delete = "Delete",
|
|
9
|
+
AddToSuperfile = "AddToSuperfile",
|
|
10
|
+
ChangeProtection = "ChangeProtection",
|
|
11
|
+
ChangeRestriction = "ChangeRestriction"
|
|
12
|
+
}
|
|
13
|
+
export declare enum DFUChangeProtection {
|
|
14
|
+
NoChange = 0,
|
|
15
|
+
Protect = 1,
|
|
16
|
+
Unprotect = 2,
|
|
17
|
+
UnprotectAll = 3
|
|
18
|
+
}
|
|
19
|
+
export declare enum DFUChangeRestriction {
|
|
20
|
+
NoChange = 0,
|
|
21
|
+
Restrict = 1,
|
|
22
|
+
Unrestricted = 2
|
|
23
|
+
}
|
|
24
|
+
export declare enum DFUDefFileFormat {
|
|
25
|
+
Xml = "xml",
|
|
26
|
+
Def = "def"
|
|
27
|
+
}
|
|
28
|
+
export declare enum FileAccessRole {
|
|
29
|
+
Token = "Token",
|
|
30
|
+
Engine = "Engine",
|
|
31
|
+
External = "External"
|
|
32
|
+
}
|
|
33
|
+
export declare enum SecAccessType {
|
|
34
|
+
None = "None",
|
|
35
|
+
Access = "Access",
|
|
36
|
+
Read = "Read",
|
|
37
|
+
Write = "Write",
|
|
38
|
+
Full = "Full"
|
|
39
|
+
}
|
|
40
|
+
export declare enum DFUFileType {
|
|
41
|
+
Flat = "Flat",
|
|
42
|
+
Index = "Index",
|
|
43
|
+
Xml = "Xml",
|
|
44
|
+
Csv = "Csv",
|
|
45
|
+
Json = "Json",
|
|
46
|
+
IndexLocal = "IndexLocal",
|
|
47
|
+
IndexPartitioned = "IndexPartitioned",
|
|
48
|
+
Unset = "Unset"
|
|
49
|
+
}
|
|
50
|
+
export declare namespace WsDfu {
|
|
51
|
+
interface AddRequest {
|
|
52
|
+
dstname?: string;
|
|
53
|
+
xmlmap?: base64Binary;
|
|
54
|
+
dstcluster?: string;
|
|
55
|
+
}
|
|
56
|
+
interface Exception {
|
|
57
|
+
Code: string;
|
|
58
|
+
Audience: string;
|
|
59
|
+
Source: string;
|
|
60
|
+
Message: string;
|
|
61
|
+
}
|
|
62
|
+
interface Exceptions {
|
|
63
|
+
Source: string;
|
|
64
|
+
Exception: Exception[];
|
|
65
|
+
}
|
|
66
|
+
interface AddResponse {
|
|
67
|
+
Exceptions: {
|
|
68
|
+
Source: string;
|
|
69
|
+
Exception: Exception[];
|
|
70
|
+
};
|
|
71
|
+
}
|
|
72
|
+
interface AddRemoteRequest {
|
|
73
|
+
dstname?: string;
|
|
74
|
+
srcname?: string;
|
|
75
|
+
srcdali?: string;
|
|
76
|
+
srcusername?: string;
|
|
77
|
+
srcpassword?: string;
|
|
78
|
+
}
|
|
79
|
+
interface AddRemoteResponse {
|
|
80
|
+
Exceptions: Exceptions;
|
|
81
|
+
}
|
|
82
|
+
interface names {
|
|
83
|
+
Item: string[];
|
|
84
|
+
}
|
|
85
|
+
interface AddtoSuperfileRequest {
|
|
86
|
+
Superfile?: string;
|
|
87
|
+
Subfiles?: string;
|
|
88
|
+
names?: {
|
|
89
|
+
Item?: string[];
|
|
90
|
+
};
|
|
91
|
+
ExistingFile?: boolean;
|
|
92
|
+
BackToPage?: string;
|
|
93
|
+
}
|
|
94
|
+
interface SubfileNames {
|
|
95
|
+
SubfileName: string[];
|
|
96
|
+
}
|
|
97
|
+
interface AddtoSuperfileResponse {
|
|
98
|
+
Exceptions: Exceptions;
|
|
99
|
+
Subfiles: string;
|
|
100
|
+
BackToPage: string;
|
|
101
|
+
SubfileNames: {
|
|
102
|
+
SubfileName: string[];
|
|
103
|
+
};
|
|
104
|
+
}
|
|
105
|
+
interface LogicalFiles {
|
|
106
|
+
Item: string[];
|
|
107
|
+
}
|
|
108
|
+
interface DFUArrayActionRequest {
|
|
109
|
+
Type?: DFUArrayActions;
|
|
110
|
+
NoDelete?: boolean;
|
|
111
|
+
BackToPage?: string;
|
|
112
|
+
LogicalFiles?: {
|
|
113
|
+
Item?: string[];
|
|
114
|
+
};
|
|
115
|
+
removeFromSuperfiles?: boolean;
|
|
116
|
+
removeRecursively?: boolean;
|
|
117
|
+
Protect?: DFUChangeProtection;
|
|
118
|
+
Restrict?: DFUChangeRestriction;
|
|
119
|
+
}
|
|
120
|
+
interface DFUActionInfo {
|
|
121
|
+
FileName: string;
|
|
122
|
+
NodeGroup: string;
|
|
123
|
+
ActionResult: string;
|
|
124
|
+
Failed: boolean;
|
|
125
|
+
}
|
|
126
|
+
interface ActionResults {
|
|
127
|
+
DFUActionInfo: DFUActionInfo[];
|
|
128
|
+
}
|
|
129
|
+
interface DFUArrayActionResponse {
|
|
130
|
+
Exceptions: Exceptions;
|
|
131
|
+
BackToPage: string;
|
|
132
|
+
RedirectTo: string;
|
|
133
|
+
ActionResults: {
|
|
134
|
+
DFUActionInfo: DFUActionInfo[];
|
|
135
|
+
};
|
|
136
|
+
}
|
|
137
|
+
interface DFUBrowseDataRequest {
|
|
138
|
+
LogicalName?: string;
|
|
139
|
+
FilterBy?: string;
|
|
140
|
+
ShowColumns?: string;
|
|
141
|
+
SchemaOnly?: boolean;
|
|
142
|
+
StartForGoback?: long;
|
|
143
|
+
CountForGoback?: int;
|
|
144
|
+
ChooseFile?: int;
|
|
145
|
+
Cluster?: string;
|
|
146
|
+
ClusterType?: string;
|
|
147
|
+
ParentName?: string;
|
|
148
|
+
Start?: long;
|
|
149
|
+
Count?: int;
|
|
150
|
+
DisableUppercaseTranslation?: boolean;
|
|
151
|
+
}
|
|
152
|
+
interface DFUDataColumn {
|
|
153
|
+
ColumnID: int;
|
|
154
|
+
ColumnLabel: string;
|
|
155
|
+
ColumnType: string;
|
|
156
|
+
ColumnValue: string;
|
|
157
|
+
ColumnSize: int;
|
|
158
|
+
MaxSize: int;
|
|
159
|
+
ColumnEclType: string;
|
|
160
|
+
ColumnRawSize: int;
|
|
161
|
+
IsNaturalColumn: boolean;
|
|
162
|
+
IsKeyedColumn: boolean;
|
|
163
|
+
DataColumns: DataColumns;
|
|
164
|
+
}
|
|
165
|
+
interface DataColumns {
|
|
166
|
+
DFUDataColumn: DFUDataColumn[];
|
|
167
|
+
}
|
|
168
|
+
interface ColumnHidden {
|
|
169
|
+
ColumnID: int;
|
|
170
|
+
ColumnLabel: string;
|
|
171
|
+
ColumnType: string;
|
|
172
|
+
ColumnValue: string;
|
|
173
|
+
ColumnSize: int;
|
|
174
|
+
MaxSize: int;
|
|
175
|
+
ColumnEclType: string;
|
|
176
|
+
ColumnRawSize: int;
|
|
177
|
+
IsNaturalColumn: boolean;
|
|
178
|
+
IsKeyedColumn: boolean;
|
|
179
|
+
DataColumns: {
|
|
180
|
+
DFUDataColumn: DFUDataColumn[];
|
|
181
|
+
};
|
|
182
|
+
}
|
|
183
|
+
interface ColumnsHidden {
|
|
184
|
+
ColumnHidden: ColumnHidden[];
|
|
185
|
+
}
|
|
186
|
+
interface DFUBrowseDataResponse {
|
|
187
|
+
Exceptions: Exceptions;
|
|
188
|
+
Name: string;
|
|
189
|
+
LogicalName: string;
|
|
190
|
+
FilterBy: string;
|
|
191
|
+
FilterForGoBack: string;
|
|
192
|
+
ColumnsHidden: {
|
|
193
|
+
ColumnHidden: ColumnHidden[];
|
|
194
|
+
};
|
|
195
|
+
ColumnCount: int;
|
|
196
|
+
StartForGoback: long;
|
|
197
|
+
CountForGoback: int;
|
|
198
|
+
ChooseFile: int;
|
|
199
|
+
SchemaOnly: boolean;
|
|
200
|
+
Cluster: string;
|
|
201
|
+
ClusterType: string;
|
|
202
|
+
ParentName: string;
|
|
203
|
+
Start: long;
|
|
204
|
+
Count: long;
|
|
205
|
+
PageSize: long;
|
|
206
|
+
Total: long;
|
|
207
|
+
Result: string;
|
|
208
|
+
MsgToDisplay: string;
|
|
209
|
+
DisableUppercaseTranslation: boolean;
|
|
210
|
+
}
|
|
211
|
+
interface DFUDefFileRequest {
|
|
212
|
+
Name?: string;
|
|
213
|
+
Format?: DFUDefFileFormat;
|
|
214
|
+
}
|
|
215
|
+
interface DFUDefFileResponse {
|
|
216
|
+
Exceptions: Exceptions;
|
|
217
|
+
defFile: base64Binary;
|
|
218
|
+
}
|
|
219
|
+
interface RequestBase {
|
|
220
|
+
Name: string;
|
|
221
|
+
Cluster: string;
|
|
222
|
+
JobId: string;
|
|
223
|
+
ExpirySeconds: int;
|
|
224
|
+
AccessRole: FileAccessRole;
|
|
225
|
+
AccessType: SecAccessType;
|
|
226
|
+
ReturnJsonTypeInfo: boolean;
|
|
227
|
+
ReturnBinTypeInfo: boolean;
|
|
228
|
+
}
|
|
229
|
+
interface DFUFileAccessRequest {
|
|
230
|
+
RequestBase?: {
|
|
231
|
+
Name?: string;
|
|
232
|
+
Cluster?: string;
|
|
233
|
+
JobId?: string;
|
|
234
|
+
ExpirySeconds?: int;
|
|
235
|
+
AccessRole?: FileAccessRole;
|
|
236
|
+
AccessType?: SecAccessType;
|
|
237
|
+
ReturnJsonTypeInfo?: boolean;
|
|
238
|
+
ReturnBinTypeInfo?: boolean;
|
|
239
|
+
};
|
|
240
|
+
}
|
|
241
|
+
interface DFUPartLocation {
|
|
242
|
+
LocationIndex: int;
|
|
243
|
+
Host: string;
|
|
244
|
+
}
|
|
245
|
+
interface FileLocations {
|
|
246
|
+
DFUPartLocation: DFUPartLocation[];
|
|
247
|
+
}
|
|
248
|
+
interface DFUFileCopy {
|
|
249
|
+
CopyIndex: int;
|
|
250
|
+
LocationIndex: int;
|
|
251
|
+
Path: string;
|
|
252
|
+
}
|
|
253
|
+
interface Copies {
|
|
254
|
+
DFUFileCopy: DFUFileCopy[];
|
|
255
|
+
}
|
|
256
|
+
interface DFUFilePart {
|
|
257
|
+
PartIndex: int;
|
|
258
|
+
Copies: {
|
|
259
|
+
DFUFileCopy: DFUFileCopy[];
|
|
260
|
+
};
|
|
261
|
+
TopLevelKey: boolean;
|
|
262
|
+
}
|
|
263
|
+
interface FileParts {
|
|
264
|
+
DFUFilePart: DFUFilePart[];
|
|
265
|
+
}
|
|
266
|
+
interface AccessInfo {
|
|
267
|
+
MetaInfoBlob: string;
|
|
268
|
+
ExpiryTime: string;
|
|
269
|
+
NumParts: int;
|
|
270
|
+
FileLocations: {
|
|
271
|
+
DFUPartLocation: DFUPartLocation[];
|
|
272
|
+
};
|
|
273
|
+
FileParts: {
|
|
274
|
+
DFUFilePart: DFUFilePart[];
|
|
275
|
+
};
|
|
276
|
+
RecordTypeInfoJson: string;
|
|
277
|
+
fileAccessPort: int;
|
|
278
|
+
fileAccessSSL: boolean;
|
|
279
|
+
}
|
|
280
|
+
interface DFUFileAccessResponse {
|
|
281
|
+
Exceptions: Exceptions;
|
|
282
|
+
AccessInfo: {
|
|
283
|
+
MetaInfoBlob: string;
|
|
284
|
+
ExpiryTime: string;
|
|
285
|
+
NumParts: int;
|
|
286
|
+
FileLocations: {
|
|
287
|
+
DFUPartLocation: DFUPartLocation[];
|
|
288
|
+
};
|
|
289
|
+
FileParts: {
|
|
290
|
+
DFUFilePart: DFUFilePart[];
|
|
291
|
+
};
|
|
292
|
+
RecordTypeInfoJson: string;
|
|
293
|
+
fileAccessPort: int;
|
|
294
|
+
fileAccessSSL: boolean;
|
|
295
|
+
};
|
|
296
|
+
Type: DFUFileType;
|
|
297
|
+
}
|
|
298
|
+
interface DFUFileAccessV2Request {
|
|
299
|
+
Name?: string;
|
|
300
|
+
Cluster?: string;
|
|
301
|
+
RequestId?: string;
|
|
302
|
+
ExpirySeconds?: int;
|
|
303
|
+
ReturnTextResponse?: boolean;
|
|
304
|
+
SessionId?: long;
|
|
305
|
+
LockTimeoutMs?: int;
|
|
306
|
+
}
|
|
307
|
+
interface PartLocations {
|
|
308
|
+
Item: string[];
|
|
309
|
+
}
|
|
310
|
+
interface DFUFileCreateRequest {
|
|
311
|
+
ECLRecordDefinition?: string;
|
|
312
|
+
PartLocations?: {
|
|
313
|
+
Item?: string[];
|
|
314
|
+
};
|
|
315
|
+
RequestBase?: RequestBase;
|
|
316
|
+
}
|
|
317
|
+
interface DFUFileCreateResponse {
|
|
318
|
+
Exceptions: Exceptions;
|
|
319
|
+
FileId: string;
|
|
320
|
+
Warning: string;
|
|
321
|
+
AccessInfo: AccessInfo;
|
|
322
|
+
}
|
|
323
|
+
interface DFUFileCreateV2Request {
|
|
324
|
+
Name?: string;
|
|
325
|
+
Cluster?: string;
|
|
326
|
+
Type?: DFUFileType;
|
|
327
|
+
ECLRecordDefinition?: string;
|
|
328
|
+
RequestId?: string;
|
|
329
|
+
ExpirySeconds?: int;
|
|
330
|
+
ReturnTextResponse?: boolean;
|
|
331
|
+
Compressed?: boolean;
|
|
332
|
+
SessionId?: long;
|
|
333
|
+
LockTimeoutMs?: int;
|
|
334
|
+
}
|
|
335
|
+
interface DFUFilePublishRequest {
|
|
336
|
+
FileId?: string;
|
|
337
|
+
Overwrite?: boolean;
|
|
338
|
+
FileDescriptorBlob?: base64Binary;
|
|
339
|
+
SessionId?: long;
|
|
340
|
+
LockTimeoutMs?: int;
|
|
341
|
+
ECLRecordDefinition?: string;
|
|
342
|
+
RecordCount?: long;
|
|
343
|
+
FileSize?: long;
|
|
344
|
+
}
|
|
345
|
+
interface DFUFilePublishResponse {
|
|
346
|
+
Exceptions: Exceptions;
|
|
347
|
+
}
|
|
348
|
+
interface DFUFileViewRequest {
|
|
349
|
+
Scope?: string;
|
|
350
|
+
IncludeSuperOwner?: boolean;
|
|
351
|
+
}
|
|
352
|
+
interface DFULogicalFile {
|
|
353
|
+
Prefix: string;
|
|
354
|
+
NodeGroup: string;
|
|
355
|
+
Directory: string;
|
|
356
|
+
Description: string;
|
|
357
|
+
Parts: string;
|
|
358
|
+
Name: string;
|
|
359
|
+
Owner: string;
|
|
360
|
+
Totalsize: string;
|
|
361
|
+
RecordCount: string;
|
|
362
|
+
Modified: string;
|
|
363
|
+
LongSize: string;
|
|
364
|
+
LongRecordCount: string;
|
|
365
|
+
isSuperfile: boolean;
|
|
366
|
+
isDirectory: boolean;
|
|
367
|
+
Replicate: boolean;
|
|
368
|
+
IntSize: long;
|
|
369
|
+
IntRecordCount: long;
|
|
370
|
+
FromRoxieCluster: boolean;
|
|
371
|
+
BrowseData: boolean;
|
|
372
|
+
IsCompressed: boolean;
|
|
373
|
+
ContentType: string;
|
|
374
|
+
CompressedFileSize: long;
|
|
375
|
+
SuperOwners: string;
|
|
376
|
+
Persistent: boolean;
|
|
377
|
+
IsProtected: boolean;
|
|
378
|
+
KeyType: string;
|
|
379
|
+
NumOfSubfiles: int;
|
|
380
|
+
Accessed: string;
|
|
381
|
+
AtRestCost: double;
|
|
382
|
+
AccessCost: double;
|
|
383
|
+
}
|
|
384
|
+
interface DFULogicalFiles {
|
|
385
|
+
DFULogicalFile: DFULogicalFile[];
|
|
386
|
+
}
|
|
387
|
+
interface DFUFileViewResponse {
|
|
388
|
+
Exceptions: Exceptions;
|
|
389
|
+
Scope: string;
|
|
390
|
+
NumFiles: int;
|
|
391
|
+
DFULogicalFiles: {
|
|
392
|
+
DFULogicalFile: DFULogicalFile[];
|
|
393
|
+
};
|
|
394
|
+
}
|
|
395
|
+
interface DFUGetDataColumnsRequest {
|
|
396
|
+
OpenLogicalName?: string;
|
|
397
|
+
LogicalName?: string;
|
|
398
|
+
FilterBy?: string;
|
|
399
|
+
ShowColumns?: string;
|
|
400
|
+
ChooseFile?: int;
|
|
401
|
+
Cluster?: string;
|
|
402
|
+
ClusterType?: string;
|
|
403
|
+
StartIndex?: long;
|
|
404
|
+
EndIndex?: long;
|
|
405
|
+
}
|
|
406
|
+
interface DFUDataKeyedColumns1 {
|
|
407
|
+
DFUDataColumn: DFUDataColumn[];
|
|
408
|
+
}
|
|
409
|
+
interface DFUDataKeyedColumns2 {
|
|
410
|
+
DFUDataColumn: DFUDataColumn[];
|
|
411
|
+
}
|
|
412
|
+
interface DFUDataKeyedColumns3 {
|
|
413
|
+
DFUDataColumn: DFUDataColumn[];
|
|
414
|
+
}
|
|
415
|
+
interface DFUDataKeyedColumns4 {
|
|
416
|
+
DFUDataColumn: DFUDataColumn[];
|
|
417
|
+
}
|
|
418
|
+
interface DFUDataKeyedColumns5 {
|
|
419
|
+
DFUDataColumn: DFUDataColumn[];
|
|
420
|
+
}
|
|
421
|
+
interface DFUDataKeyedColumns6 {
|
|
422
|
+
DFUDataColumn: DFUDataColumn[];
|
|
423
|
+
}
|
|
424
|
+
interface DFUDataKeyedColumns7 {
|
|
425
|
+
DFUDataColumn: DFUDataColumn[];
|
|
426
|
+
}
|
|
427
|
+
interface DFUDataKeyedColumns8 {
|
|
428
|
+
DFUDataColumn: DFUDataColumn[];
|
|
429
|
+
}
|
|
430
|
+
interface DFUDataKeyedColumns9 {
|
|
431
|
+
DFUDataColumn: DFUDataColumn[];
|
|
432
|
+
}
|
|
433
|
+
interface DFUDataKeyedColumns10 {
|
|
434
|
+
DFUDataColumn: DFUDataColumn[];
|
|
435
|
+
}
|
|
436
|
+
interface DFUDataKeyedColumns11 {
|
|
437
|
+
DFUDataColumn: DFUDataColumn[];
|
|
438
|
+
}
|
|
439
|
+
interface DFUDataKeyedColumns12 {
|
|
440
|
+
DFUDataColumn: DFUDataColumn[];
|
|
441
|
+
}
|
|
442
|
+
interface DFUDataKeyedColumns13 {
|
|
443
|
+
DFUDataColumn: DFUDataColumn[];
|
|
444
|
+
}
|
|
445
|
+
interface DFUDataKeyedColumns14 {
|
|
446
|
+
DFUDataColumn: DFUDataColumn[];
|
|
447
|
+
}
|
|
448
|
+
interface DFUDataKeyedColumns15 {
|
|
449
|
+
DFUDataColumn: DFUDataColumn[];
|
|
450
|
+
}
|
|
451
|
+
interface DFUDataKeyedColumns16 {
|
|
452
|
+
DFUDataColumn: DFUDataColumn[];
|
|
453
|
+
}
|
|
454
|
+
interface DFUDataKeyedColumns17 {
|
|
455
|
+
DFUDataColumn: DFUDataColumn[];
|
|
456
|
+
}
|
|
457
|
+
interface DFUDataKeyedColumns18 {
|
|
458
|
+
DFUDataColumn: DFUDataColumn[];
|
|
459
|
+
}
|
|
460
|
+
interface DFUDataKeyedColumns19 {
|
|
461
|
+
DFUDataColumn: DFUDataColumn[];
|
|
462
|
+
}
|
|
463
|
+
interface DFUDataKeyedColumns20 {
|
|
464
|
+
DFUDataColumn: DFUDataColumn[];
|
|
465
|
+
}
|
|
466
|
+
interface DFUDataNonKeyedColumns1 {
|
|
467
|
+
DFUDataColumn: DFUDataColumn[];
|
|
468
|
+
}
|
|
469
|
+
interface DFUDataNonKeyedColumns2 {
|
|
470
|
+
DFUDataColumn: DFUDataColumn[];
|
|
471
|
+
}
|
|
472
|
+
interface DFUDataNonKeyedColumns3 {
|
|
473
|
+
DFUDataColumn: DFUDataColumn[];
|
|
474
|
+
}
|
|
475
|
+
interface DFUDataNonKeyedColumns4 {
|
|
476
|
+
DFUDataColumn: DFUDataColumn[];
|
|
477
|
+
}
|
|
478
|
+
interface DFUDataNonKeyedColumns5 {
|
|
479
|
+
DFUDataColumn: DFUDataColumn[];
|
|
480
|
+
}
|
|
481
|
+
interface DFUDataNonKeyedColumns6 {
|
|
482
|
+
DFUDataColumn: DFUDataColumn[];
|
|
483
|
+
}
|
|
484
|
+
interface DFUDataNonKeyedColumns7 {
|
|
485
|
+
DFUDataColumn: DFUDataColumn[];
|
|
486
|
+
}
|
|
487
|
+
interface DFUDataNonKeyedColumns8 {
|
|
488
|
+
DFUDataColumn: DFUDataColumn[];
|
|
489
|
+
}
|
|
490
|
+
interface DFUDataNonKeyedColumns9 {
|
|
491
|
+
DFUDataColumn: DFUDataColumn[];
|
|
492
|
+
}
|
|
493
|
+
interface DFUDataNonKeyedColumns10 {
|
|
494
|
+
DFUDataColumn: DFUDataColumn[];
|
|
495
|
+
}
|
|
496
|
+
interface DFUDataNonKeyedColumns11 {
|
|
497
|
+
DFUDataColumn: DFUDataColumn[];
|
|
498
|
+
}
|
|
499
|
+
interface DFUDataNonKeyedColumns12 {
|
|
500
|
+
DFUDataColumn: DFUDataColumn[];
|
|
501
|
+
}
|
|
502
|
+
interface DFUDataNonKeyedColumns13 {
|
|
503
|
+
DFUDataColumn: DFUDataColumn[];
|
|
504
|
+
}
|
|
505
|
+
interface DFUDataNonKeyedColumns14 {
|
|
506
|
+
DFUDataColumn: DFUDataColumn[];
|
|
507
|
+
}
|
|
508
|
+
interface DFUDataNonKeyedColumns15 {
|
|
509
|
+
DFUDataColumn: DFUDataColumn[];
|
|
510
|
+
}
|
|
511
|
+
interface DFUDataNonKeyedColumns16 {
|
|
512
|
+
DFUDataColumn: DFUDataColumn[];
|
|
513
|
+
}
|
|
514
|
+
interface DFUDataNonKeyedColumns17 {
|
|
515
|
+
DFUDataColumn: DFUDataColumn[];
|
|
516
|
+
}
|
|
517
|
+
interface DFUDataNonKeyedColumns18 {
|
|
518
|
+
DFUDataColumn: DFUDataColumn[];
|
|
519
|
+
}
|
|
520
|
+
interface DFUDataNonKeyedColumns19 {
|
|
521
|
+
DFUDataColumn: DFUDataColumn[];
|
|
522
|
+
}
|
|
523
|
+
interface DFUDataNonKeyedColumns20 {
|
|
524
|
+
DFUDataColumn: DFUDataColumn[];
|
|
525
|
+
}
|
|
526
|
+
interface DFUGetDataColumnsResponse {
|
|
527
|
+
Exceptions: Exceptions;
|
|
528
|
+
LogicalName: string;
|
|
529
|
+
StartIndex: long;
|
|
530
|
+
EndIndex: long;
|
|
531
|
+
DFUDataKeyedColumns1: {
|
|
532
|
+
DFUDataColumn: DFUDataColumn[];
|
|
533
|
+
};
|
|
534
|
+
DFUDataKeyedColumns2: {
|
|
535
|
+
DFUDataColumn: DFUDataColumn[];
|
|
536
|
+
};
|
|
537
|
+
DFUDataKeyedColumns3: {
|
|
538
|
+
DFUDataColumn: DFUDataColumn[];
|
|
539
|
+
};
|
|
540
|
+
DFUDataKeyedColumns4: {
|
|
541
|
+
DFUDataColumn: DFUDataColumn[];
|
|
542
|
+
};
|
|
543
|
+
DFUDataKeyedColumns5: {
|
|
544
|
+
DFUDataColumn: DFUDataColumn[];
|
|
545
|
+
};
|
|
546
|
+
DFUDataKeyedColumns6: {
|
|
547
|
+
DFUDataColumn: DFUDataColumn[];
|
|
548
|
+
};
|
|
549
|
+
DFUDataKeyedColumns7: {
|
|
550
|
+
DFUDataColumn: DFUDataColumn[];
|
|
551
|
+
};
|
|
552
|
+
DFUDataKeyedColumns8: {
|
|
553
|
+
DFUDataColumn: DFUDataColumn[];
|
|
554
|
+
};
|
|
555
|
+
DFUDataKeyedColumns9: {
|
|
556
|
+
DFUDataColumn: DFUDataColumn[];
|
|
557
|
+
};
|
|
558
|
+
DFUDataKeyedColumns10: {
|
|
559
|
+
DFUDataColumn: DFUDataColumn[];
|
|
560
|
+
};
|
|
561
|
+
DFUDataKeyedColumns11: {
|
|
562
|
+
DFUDataColumn: DFUDataColumn[];
|
|
563
|
+
};
|
|
564
|
+
DFUDataKeyedColumns12: {
|
|
565
|
+
DFUDataColumn: DFUDataColumn[];
|
|
566
|
+
};
|
|
567
|
+
DFUDataKeyedColumns13: {
|
|
568
|
+
DFUDataColumn: DFUDataColumn[];
|
|
569
|
+
};
|
|
570
|
+
DFUDataKeyedColumns14: {
|
|
571
|
+
DFUDataColumn: DFUDataColumn[];
|
|
572
|
+
};
|
|
573
|
+
DFUDataKeyedColumns15: {
|
|
574
|
+
DFUDataColumn: DFUDataColumn[];
|
|
575
|
+
};
|
|
576
|
+
DFUDataKeyedColumns16: {
|
|
577
|
+
DFUDataColumn: DFUDataColumn[];
|
|
578
|
+
};
|
|
579
|
+
DFUDataKeyedColumns17: {
|
|
580
|
+
DFUDataColumn: DFUDataColumn[];
|
|
581
|
+
};
|
|
582
|
+
DFUDataKeyedColumns18: {
|
|
583
|
+
DFUDataColumn: DFUDataColumn[];
|
|
584
|
+
};
|
|
585
|
+
DFUDataKeyedColumns19: {
|
|
586
|
+
DFUDataColumn: DFUDataColumn[];
|
|
587
|
+
};
|
|
588
|
+
DFUDataKeyedColumns20: {
|
|
589
|
+
DFUDataColumn: DFUDataColumn[];
|
|
590
|
+
};
|
|
591
|
+
DFUDataNonKeyedColumns1: {
|
|
592
|
+
DFUDataColumn: DFUDataColumn[];
|
|
593
|
+
};
|
|
594
|
+
DFUDataNonKeyedColumns2: {
|
|
595
|
+
DFUDataColumn: DFUDataColumn[];
|
|
596
|
+
};
|
|
597
|
+
DFUDataNonKeyedColumns3: {
|
|
598
|
+
DFUDataColumn: DFUDataColumn[];
|
|
599
|
+
};
|
|
600
|
+
DFUDataNonKeyedColumns4: {
|
|
601
|
+
DFUDataColumn: DFUDataColumn[];
|
|
602
|
+
};
|
|
603
|
+
DFUDataNonKeyedColumns5: {
|
|
604
|
+
DFUDataColumn: DFUDataColumn[];
|
|
605
|
+
};
|
|
606
|
+
DFUDataNonKeyedColumns6: {
|
|
607
|
+
DFUDataColumn: DFUDataColumn[];
|
|
608
|
+
};
|
|
609
|
+
DFUDataNonKeyedColumns7: {
|
|
610
|
+
DFUDataColumn: DFUDataColumn[];
|
|
611
|
+
};
|
|
612
|
+
DFUDataNonKeyedColumns8: {
|
|
613
|
+
DFUDataColumn: DFUDataColumn[];
|
|
614
|
+
};
|
|
615
|
+
DFUDataNonKeyedColumns9: {
|
|
616
|
+
DFUDataColumn: DFUDataColumn[];
|
|
617
|
+
};
|
|
618
|
+
DFUDataNonKeyedColumns10: {
|
|
619
|
+
DFUDataColumn: DFUDataColumn[];
|
|
620
|
+
};
|
|
621
|
+
DFUDataNonKeyedColumns11: {
|
|
622
|
+
DFUDataColumn: DFUDataColumn[];
|
|
623
|
+
};
|
|
624
|
+
DFUDataNonKeyedColumns12: {
|
|
625
|
+
DFUDataColumn: DFUDataColumn[];
|
|
626
|
+
};
|
|
627
|
+
DFUDataNonKeyedColumns13: {
|
|
628
|
+
DFUDataColumn: DFUDataColumn[];
|
|
629
|
+
};
|
|
630
|
+
DFUDataNonKeyedColumns14: {
|
|
631
|
+
DFUDataColumn: DFUDataColumn[];
|
|
632
|
+
};
|
|
633
|
+
DFUDataNonKeyedColumns15: {
|
|
634
|
+
DFUDataColumn: DFUDataColumn[];
|
|
635
|
+
};
|
|
636
|
+
DFUDataNonKeyedColumns16: {
|
|
637
|
+
DFUDataColumn: DFUDataColumn[];
|
|
638
|
+
};
|
|
639
|
+
DFUDataNonKeyedColumns17: {
|
|
640
|
+
DFUDataColumn: DFUDataColumn[];
|
|
641
|
+
};
|
|
642
|
+
DFUDataNonKeyedColumns18: {
|
|
643
|
+
DFUDataColumn: DFUDataColumn[];
|
|
644
|
+
};
|
|
645
|
+
DFUDataNonKeyedColumns19: {
|
|
646
|
+
DFUDataColumn: DFUDataColumn[];
|
|
647
|
+
};
|
|
648
|
+
DFUDataNonKeyedColumns20: {
|
|
649
|
+
DFUDataColumn: DFUDataColumn[];
|
|
650
|
+
};
|
|
651
|
+
RowCount: long;
|
|
652
|
+
ShowColumns: string;
|
|
653
|
+
ChooseFile: int;
|
|
654
|
+
Cluster: string;
|
|
655
|
+
ClusterType: string;
|
|
656
|
+
}
|
|
657
|
+
interface DFUGetFileMetaDataRequest {
|
|
658
|
+
LogicalFileName?: string;
|
|
659
|
+
ClusterName?: string;
|
|
660
|
+
IncludeXmlSchema?: boolean;
|
|
661
|
+
AddHeaderInXmlSchema?: boolean;
|
|
662
|
+
IncludeXmlXPathSchema?: boolean;
|
|
663
|
+
AddHeaderInXmlXPathSchema?: boolean;
|
|
664
|
+
}
|
|
665
|
+
interface DFUGetFileMetaDataResponse {
|
|
666
|
+
Exceptions: Exceptions;
|
|
667
|
+
TotalColumnCount: int;
|
|
668
|
+
KeyedColumnCount: int;
|
|
669
|
+
DataColumns: DataColumns;
|
|
670
|
+
XmlSchema: string;
|
|
671
|
+
XmlXPathSchema: string;
|
|
672
|
+
TotalResultRows: long;
|
|
673
|
+
}
|
|
674
|
+
interface DFUInfoRequest {
|
|
675
|
+
Name?: string;
|
|
676
|
+
Cluster?: string;
|
|
677
|
+
UpdateDescription?: boolean;
|
|
678
|
+
QuerySet?: string;
|
|
679
|
+
Query?: string;
|
|
680
|
+
FileDesc?: string;
|
|
681
|
+
IncludeJsonTypeInfo?: boolean;
|
|
682
|
+
IncludeBinTypeInfo?: boolean;
|
|
683
|
+
Protect?: DFUChangeProtection;
|
|
684
|
+
Restrict?: DFUChangeRestriction;
|
|
685
|
+
}
|
|
686
|
+
interface Stat {
|
|
687
|
+
MinSkew: string;
|
|
688
|
+
MaxSkew: string;
|
|
689
|
+
MinSkewInt64: long;
|
|
690
|
+
MaxSkewInt64: long;
|
|
691
|
+
MinSkewPart: long;
|
|
692
|
+
MaxSkewPart: long;
|
|
693
|
+
}
|
|
694
|
+
interface DFUPart {
|
|
695
|
+
Id: int;
|
|
696
|
+
Copy: int;
|
|
697
|
+
Ip: string;
|
|
698
|
+
Partsize: string;
|
|
699
|
+
PartSizeInt64: long;
|
|
700
|
+
CompressedSize: long;
|
|
701
|
+
}
|
|
702
|
+
interface DFUFileParts {
|
|
703
|
+
DFUPart: DFUPart[];
|
|
704
|
+
}
|
|
705
|
+
interface DFUFilePartsOnCluster {
|
|
706
|
+
Cluster: string;
|
|
707
|
+
BaseDir: string;
|
|
708
|
+
ReplicateDir: string;
|
|
709
|
+
Replicate: boolean;
|
|
710
|
+
CanReplicate: boolean;
|
|
711
|
+
DFUFileParts: {
|
|
712
|
+
DFUPart: DFUPart[];
|
|
713
|
+
};
|
|
714
|
+
}
|
|
715
|
+
interface DFUFilePartsOnClusters {
|
|
716
|
+
DFUFilePartsOnCluster: DFUFilePartsOnCluster[];
|
|
717
|
+
}
|
|
718
|
+
interface subfiles {
|
|
719
|
+
Item: string[];
|
|
720
|
+
}
|
|
721
|
+
interface Superfiles {
|
|
722
|
+
DFULogicalFile: DFULogicalFile[];
|
|
723
|
+
}
|
|
724
|
+
interface DFUFileProtect {
|
|
725
|
+
Owner: string;
|
|
726
|
+
Modified: string;
|
|
727
|
+
}
|
|
728
|
+
interface ProtectList {
|
|
729
|
+
DFUFileProtect: DFUFileProtect[];
|
|
730
|
+
}
|
|
731
|
+
interface Graphs {
|
|
732
|
+
ECLGraph: string[];
|
|
733
|
+
}
|
|
734
|
+
interface FieldNames {
|
|
735
|
+
Item: string[];
|
|
736
|
+
}
|
|
737
|
+
interface Partition {
|
|
738
|
+
FieldMask: long;
|
|
739
|
+
FieldNames: {
|
|
740
|
+
Item: string[];
|
|
741
|
+
};
|
|
742
|
+
}
|
|
743
|
+
interface DFUFileBloom {
|
|
744
|
+
FieldMask: long;
|
|
745
|
+
FieldNames: FieldNames;
|
|
746
|
+
Limit: long;
|
|
747
|
+
Probability: string;
|
|
748
|
+
}
|
|
749
|
+
interface Blooms {
|
|
750
|
+
DFUFileBloom: DFUFileBloom[];
|
|
751
|
+
}
|
|
752
|
+
interface FileDetail {
|
|
753
|
+
Name: string;
|
|
754
|
+
Filename: string;
|
|
755
|
+
Prefix: string;
|
|
756
|
+
NodeGroup: string;
|
|
757
|
+
NumParts: int;
|
|
758
|
+
Description: string;
|
|
759
|
+
Dir: string;
|
|
760
|
+
PathMask: string;
|
|
761
|
+
Filesize: string;
|
|
762
|
+
FileSizeInt64: long;
|
|
763
|
+
RecordSize: string;
|
|
764
|
+
RecordCount: string;
|
|
765
|
+
RecordSizeInt64: long;
|
|
766
|
+
RecordCountInt64: long;
|
|
767
|
+
Wuid: string;
|
|
768
|
+
Owner: string;
|
|
769
|
+
JobName: string;
|
|
770
|
+
Persistent: string;
|
|
771
|
+
Format: string;
|
|
772
|
+
MaxRecordSize: string;
|
|
773
|
+
CsvSeparate: string;
|
|
774
|
+
CsvQuote: string;
|
|
775
|
+
CsvTerminate: string;
|
|
776
|
+
CsvEscape: string;
|
|
777
|
+
Modified: string;
|
|
778
|
+
Ecl: string;
|
|
779
|
+
Stat: {
|
|
780
|
+
MinSkew: string;
|
|
781
|
+
MaxSkew: string;
|
|
782
|
+
MinSkewInt64: long;
|
|
783
|
+
MaxSkewInt64: long;
|
|
784
|
+
MinSkewPart: long;
|
|
785
|
+
MaxSkewPart: long;
|
|
786
|
+
};
|
|
787
|
+
DFUFilePartsOnClusters: {
|
|
788
|
+
DFUFilePartsOnCluster: DFUFilePartsOnCluster[];
|
|
789
|
+
};
|
|
790
|
+
isSuperfile: boolean;
|
|
791
|
+
ShowFileContent: boolean;
|
|
792
|
+
subfiles: {
|
|
793
|
+
Item: string[];
|
|
794
|
+
};
|
|
795
|
+
Superfiles: {
|
|
796
|
+
DFULogicalFile: DFULogicalFile[];
|
|
797
|
+
};
|
|
798
|
+
ProtectList: {
|
|
799
|
+
DFUFileProtect: DFUFileProtect[];
|
|
800
|
+
};
|
|
801
|
+
FromRoxieCluster: boolean;
|
|
802
|
+
Graphs: {
|
|
803
|
+
ECLGraph: string[];
|
|
804
|
+
};
|
|
805
|
+
UserPermission: string;
|
|
806
|
+
ContentType: string;
|
|
807
|
+
CompressedFileSize: long;
|
|
808
|
+
PercentCompressed: string;
|
|
809
|
+
IsCompressed: boolean;
|
|
810
|
+
IsRestricted: boolean;
|
|
811
|
+
BrowseData: boolean;
|
|
812
|
+
jsonInfo: string;
|
|
813
|
+
binInfo: base64Binary;
|
|
814
|
+
PackageID: string;
|
|
815
|
+
Partition: {
|
|
816
|
+
FieldMask: long;
|
|
817
|
+
FieldNames: {
|
|
818
|
+
Item: string[];
|
|
819
|
+
};
|
|
820
|
+
};
|
|
821
|
+
Blooms: {
|
|
822
|
+
DFUFileBloom: DFUFileBloom[];
|
|
823
|
+
};
|
|
824
|
+
ExpireDays: int;
|
|
825
|
+
KeyType: string;
|
|
826
|
+
AtRestCost: double;
|
|
827
|
+
AccessCost: double;
|
|
828
|
+
}
|
|
829
|
+
interface DFUInfoResponse {
|
|
830
|
+
Exceptions: Exceptions;
|
|
831
|
+
FileDetail: {
|
|
832
|
+
Name: string;
|
|
833
|
+
Filename: string;
|
|
834
|
+
Prefix: string;
|
|
835
|
+
NodeGroup: string;
|
|
836
|
+
NumParts: int;
|
|
837
|
+
Description: string;
|
|
838
|
+
Dir: string;
|
|
839
|
+
PathMask: string;
|
|
840
|
+
Filesize: string;
|
|
841
|
+
FileSizeInt64: long;
|
|
842
|
+
RecordSize: string;
|
|
843
|
+
RecordCount: string;
|
|
844
|
+
RecordSizeInt64: long;
|
|
845
|
+
RecordCountInt64: long;
|
|
846
|
+
Wuid: string;
|
|
847
|
+
Owner: string;
|
|
848
|
+
JobName: string;
|
|
849
|
+
Persistent: string;
|
|
850
|
+
Format: string;
|
|
851
|
+
MaxRecordSize: string;
|
|
852
|
+
CsvSeparate: string;
|
|
853
|
+
CsvQuote: string;
|
|
854
|
+
CsvTerminate: string;
|
|
855
|
+
CsvEscape: string;
|
|
856
|
+
Modified: string;
|
|
857
|
+
Ecl: string;
|
|
858
|
+
Stat: {
|
|
859
|
+
MinSkew: string;
|
|
860
|
+
MaxSkew: string;
|
|
861
|
+
MinSkewInt64: long;
|
|
862
|
+
MaxSkewInt64: long;
|
|
863
|
+
MinSkewPart: long;
|
|
864
|
+
MaxSkewPart: long;
|
|
865
|
+
};
|
|
866
|
+
DFUFilePartsOnClusters: {
|
|
867
|
+
DFUFilePartsOnCluster: DFUFilePartsOnCluster[];
|
|
868
|
+
};
|
|
869
|
+
isSuperfile: boolean;
|
|
870
|
+
ShowFileContent: boolean;
|
|
871
|
+
subfiles: {
|
|
872
|
+
Item: string[];
|
|
873
|
+
};
|
|
874
|
+
Superfiles: {
|
|
875
|
+
DFULogicalFile: DFULogicalFile[];
|
|
876
|
+
};
|
|
877
|
+
ProtectList: {
|
|
878
|
+
DFUFileProtect: DFUFileProtect[];
|
|
879
|
+
};
|
|
880
|
+
FromRoxieCluster: boolean;
|
|
881
|
+
Graphs: {
|
|
882
|
+
ECLGraph: string[];
|
|
883
|
+
};
|
|
884
|
+
UserPermission: string;
|
|
885
|
+
ContentType: string;
|
|
886
|
+
CompressedFileSize: long;
|
|
887
|
+
PercentCompressed: string;
|
|
888
|
+
IsCompressed: boolean;
|
|
889
|
+
IsRestricted: boolean;
|
|
890
|
+
BrowseData: boolean;
|
|
891
|
+
jsonInfo: string;
|
|
892
|
+
binInfo: base64Binary;
|
|
893
|
+
PackageID: string;
|
|
894
|
+
Partition: {
|
|
895
|
+
FieldMask: long;
|
|
896
|
+
FieldNames: {
|
|
897
|
+
Item: string[];
|
|
898
|
+
};
|
|
899
|
+
};
|
|
900
|
+
Blooms: {
|
|
901
|
+
DFUFileBloom: DFUFileBloom[];
|
|
902
|
+
};
|
|
903
|
+
ExpireDays: int;
|
|
904
|
+
KeyType: string;
|
|
905
|
+
AtRestCost: double;
|
|
906
|
+
AccessCost: double;
|
|
907
|
+
};
|
|
908
|
+
}
|
|
909
|
+
interface DFUQueryRequest {
|
|
910
|
+
Prefix?: string;
|
|
911
|
+
NodeGroup?: string;
|
|
912
|
+
ContentType?: string;
|
|
913
|
+
LogicalName?: string;
|
|
914
|
+
Owner?: string;
|
|
915
|
+
StartDate?: string;
|
|
916
|
+
EndDate?: string;
|
|
917
|
+
FileType?: string;
|
|
918
|
+
FileSizeFrom?: long;
|
|
919
|
+
FileSizeTo?: long;
|
|
920
|
+
FirstN?: int;
|
|
921
|
+
PageSize?: int;
|
|
922
|
+
PageStartFrom?: int;
|
|
923
|
+
Sortby?: string;
|
|
924
|
+
Descending?: boolean;
|
|
925
|
+
OneLevelDirFileReturn?: boolean;
|
|
926
|
+
CacheHint?: long;
|
|
927
|
+
MaxNumberOfFiles?: int;
|
|
928
|
+
IncludeSuperOwner?: boolean;
|
|
929
|
+
StartAccessedTime?: string;
|
|
930
|
+
EndAccessedTime?: string;
|
|
931
|
+
}
|
|
932
|
+
interface DFUQueryResponse {
|
|
933
|
+
Exceptions: Exceptions;
|
|
934
|
+
DFULogicalFiles: DFULogicalFiles;
|
|
935
|
+
Prefix: string;
|
|
936
|
+
NodeGroup: string;
|
|
937
|
+
LogicalName: string;
|
|
938
|
+
Description: string;
|
|
939
|
+
Owner: string;
|
|
940
|
+
StartDate: string;
|
|
941
|
+
EndDate: string;
|
|
942
|
+
FileType: string;
|
|
943
|
+
FileSizeFrom: long;
|
|
944
|
+
FileSizeTo: long;
|
|
945
|
+
FirstN: int;
|
|
946
|
+
PageSize: int;
|
|
947
|
+
PageStartFrom: long;
|
|
948
|
+
LastPageFrom: long;
|
|
949
|
+
PageEndAt: long;
|
|
950
|
+
PrevPageFrom: long;
|
|
951
|
+
NextPageFrom: long;
|
|
952
|
+
NumFiles: long;
|
|
953
|
+
Sortby: string;
|
|
954
|
+
Descending: boolean;
|
|
955
|
+
BasicQuery: string;
|
|
956
|
+
ParametersForPaging: string;
|
|
957
|
+
Filters: string;
|
|
958
|
+
CacheHint: long;
|
|
959
|
+
IsSubsetOfFiles: boolean;
|
|
960
|
+
Warning: string;
|
|
961
|
+
}
|
|
962
|
+
interface DFURecordTypeInfoRequest {
|
|
963
|
+
Name?: string;
|
|
964
|
+
IncludeJsonTypeInfo?: boolean;
|
|
965
|
+
IncludeBinTypeInfo?: boolean;
|
|
966
|
+
}
|
|
967
|
+
interface DFURecordTypeInfoResponse {
|
|
968
|
+
jsonInfo: string;
|
|
969
|
+
binInfo: base64Binary;
|
|
970
|
+
}
|
|
971
|
+
interface DFUSearchRequest {
|
|
972
|
+
ShowExample?: string;
|
|
973
|
+
}
|
|
974
|
+
interface ClusterNames {
|
|
975
|
+
ClusterName: string[];
|
|
976
|
+
}
|
|
977
|
+
interface FileTypes {
|
|
978
|
+
FileType: string[];
|
|
979
|
+
}
|
|
980
|
+
interface DFUSearchResponse {
|
|
981
|
+
Exceptions: Exceptions;
|
|
982
|
+
ShowExample: string;
|
|
983
|
+
ClusterNames: {
|
|
984
|
+
ClusterName: string[];
|
|
985
|
+
};
|
|
986
|
+
FileTypes: {
|
|
987
|
+
FileType: string[];
|
|
988
|
+
};
|
|
989
|
+
}
|
|
990
|
+
interface DFUSearchDataRequest {
|
|
991
|
+
Cluster?: string;
|
|
992
|
+
ClusterType?: string;
|
|
993
|
+
OpenLogicalName?: string;
|
|
994
|
+
FilterBy?: string;
|
|
995
|
+
ShowColumns?: string;
|
|
996
|
+
ChooseFile?: int;
|
|
997
|
+
StartIndex?: long;
|
|
998
|
+
EndIndex?: long;
|
|
999
|
+
LogicalName?: string;
|
|
1000
|
+
ParentName?: string;
|
|
1001
|
+
StartForGoback?: long;
|
|
1002
|
+
CountForGoback?: int;
|
|
1003
|
+
Start?: long;
|
|
1004
|
+
Count?: int;
|
|
1005
|
+
File?: string;
|
|
1006
|
+
Key?: string;
|
|
1007
|
+
SchemaOnly?: boolean;
|
|
1008
|
+
RoxieSelections?: boolean;
|
|
1009
|
+
DisableUppercaseTranslation?: boolean;
|
|
1010
|
+
SelectedKey?: string;
|
|
1011
|
+
}
|
|
1012
|
+
interface DFUSearchDataResponse {
|
|
1013
|
+
Exceptions: Exceptions;
|
|
1014
|
+
OpenLogicalName: string;
|
|
1015
|
+
LogicalName: string;
|
|
1016
|
+
ParentName: string;
|
|
1017
|
+
StartIndex: long;
|
|
1018
|
+
EndIndex: long;
|
|
1019
|
+
DFUDataKeyedColumns1: DFUDataKeyedColumns1;
|
|
1020
|
+
DFUDataKeyedColumns2: DFUDataKeyedColumns2;
|
|
1021
|
+
DFUDataKeyedColumns3: DFUDataKeyedColumns3;
|
|
1022
|
+
DFUDataKeyedColumns4: DFUDataKeyedColumns4;
|
|
1023
|
+
DFUDataKeyedColumns5: DFUDataKeyedColumns5;
|
|
1024
|
+
DFUDataKeyedColumns6: DFUDataKeyedColumns6;
|
|
1025
|
+
DFUDataKeyedColumns7: DFUDataKeyedColumns7;
|
|
1026
|
+
DFUDataKeyedColumns8: DFUDataKeyedColumns8;
|
|
1027
|
+
DFUDataKeyedColumns9: DFUDataKeyedColumns9;
|
|
1028
|
+
DFUDataKeyedColumns10: DFUDataKeyedColumns10;
|
|
1029
|
+
DFUDataKeyedColumns11: DFUDataKeyedColumns11;
|
|
1030
|
+
DFUDataKeyedColumns12: DFUDataKeyedColumns12;
|
|
1031
|
+
DFUDataKeyedColumns13: DFUDataKeyedColumns13;
|
|
1032
|
+
DFUDataKeyedColumns14: DFUDataKeyedColumns14;
|
|
1033
|
+
DFUDataKeyedColumns15: DFUDataKeyedColumns15;
|
|
1034
|
+
DFUDataKeyedColumns16: DFUDataKeyedColumns16;
|
|
1035
|
+
DFUDataKeyedColumns17: DFUDataKeyedColumns17;
|
|
1036
|
+
DFUDataKeyedColumns18: DFUDataKeyedColumns18;
|
|
1037
|
+
DFUDataKeyedColumns19: DFUDataKeyedColumns19;
|
|
1038
|
+
DFUDataKeyedColumns20: DFUDataKeyedColumns20;
|
|
1039
|
+
DFUDataNonKeyedColumns1: DFUDataNonKeyedColumns1;
|
|
1040
|
+
DFUDataNonKeyedColumns2: DFUDataNonKeyedColumns2;
|
|
1041
|
+
DFUDataNonKeyedColumns3: DFUDataNonKeyedColumns3;
|
|
1042
|
+
DFUDataNonKeyedColumns4: DFUDataNonKeyedColumns4;
|
|
1043
|
+
DFUDataNonKeyedColumns5: DFUDataNonKeyedColumns5;
|
|
1044
|
+
DFUDataNonKeyedColumns6: DFUDataNonKeyedColumns6;
|
|
1045
|
+
DFUDataNonKeyedColumns7: DFUDataNonKeyedColumns7;
|
|
1046
|
+
DFUDataNonKeyedColumns8: DFUDataNonKeyedColumns8;
|
|
1047
|
+
DFUDataNonKeyedColumns9: DFUDataNonKeyedColumns9;
|
|
1048
|
+
DFUDataNonKeyedColumns10: DFUDataNonKeyedColumns10;
|
|
1049
|
+
DFUDataNonKeyedColumns11: DFUDataNonKeyedColumns11;
|
|
1050
|
+
DFUDataNonKeyedColumns12: DFUDataNonKeyedColumns12;
|
|
1051
|
+
DFUDataNonKeyedColumns13: DFUDataNonKeyedColumns13;
|
|
1052
|
+
DFUDataNonKeyedColumns14: DFUDataNonKeyedColumns14;
|
|
1053
|
+
DFUDataNonKeyedColumns15: DFUDataNonKeyedColumns15;
|
|
1054
|
+
DFUDataNonKeyedColumns16: DFUDataNonKeyedColumns16;
|
|
1055
|
+
DFUDataNonKeyedColumns17: DFUDataNonKeyedColumns17;
|
|
1056
|
+
DFUDataNonKeyedColumns18: DFUDataNonKeyedColumns18;
|
|
1057
|
+
DFUDataNonKeyedColumns19: DFUDataNonKeyedColumns19;
|
|
1058
|
+
DFUDataNonKeyedColumns20: DFUDataNonKeyedColumns20;
|
|
1059
|
+
RowCount: long;
|
|
1060
|
+
ShowColumns: string;
|
|
1061
|
+
ChooseFile: int;
|
|
1062
|
+
Name: string;
|
|
1063
|
+
FilterBy: string;
|
|
1064
|
+
FilterForGoBack: string;
|
|
1065
|
+
ColumnsHidden: ColumnsHidden;
|
|
1066
|
+
ColumnCount: int;
|
|
1067
|
+
StartForGoback: long;
|
|
1068
|
+
CountForGoback: int;
|
|
1069
|
+
Start: long;
|
|
1070
|
+
Count: long;
|
|
1071
|
+
PageSize: long;
|
|
1072
|
+
Total: long;
|
|
1073
|
+
Result: string;
|
|
1074
|
+
MsgToDisplay: string;
|
|
1075
|
+
Cluster: string;
|
|
1076
|
+
ClusterType: string;
|
|
1077
|
+
File: string;
|
|
1078
|
+
Key: string;
|
|
1079
|
+
SchemaOnly: boolean;
|
|
1080
|
+
RoxieSelections: boolean;
|
|
1081
|
+
DisableUppercaseTranslation: boolean;
|
|
1082
|
+
AutoUppercaseTranslation: boolean;
|
|
1083
|
+
SelectedKey: string;
|
|
1084
|
+
}
|
|
1085
|
+
interface DFUSpaceRequest {
|
|
1086
|
+
CountBy?: string;
|
|
1087
|
+
ScopeUnder?: string;
|
|
1088
|
+
OwnerUnder?: string;
|
|
1089
|
+
Interval?: string;
|
|
1090
|
+
StartDate?: string;
|
|
1091
|
+
EndDate?: string;
|
|
1092
|
+
}
|
|
1093
|
+
interface DFUSpaceItem {
|
|
1094
|
+
Name: string;
|
|
1095
|
+
NumOfFiles: string;
|
|
1096
|
+
NumOfFilesUnknown: string;
|
|
1097
|
+
TotalSize: string;
|
|
1098
|
+
LargestFile: string;
|
|
1099
|
+
LargestSize: string;
|
|
1100
|
+
SmallestFile: string;
|
|
1101
|
+
SmallestSize: string;
|
|
1102
|
+
NumOfFilesInt64: long;
|
|
1103
|
+
NumOfFilesUnknownInt64: long;
|
|
1104
|
+
TotalSizeInt64: long;
|
|
1105
|
+
LargestSizeInt64: long;
|
|
1106
|
+
SmallestSizeInt64: long;
|
|
1107
|
+
}
|
|
1108
|
+
interface DFUSpaceItems {
|
|
1109
|
+
DFUSpaceItem: DFUSpaceItem[];
|
|
1110
|
+
}
|
|
1111
|
+
interface DFUSpaceResponse {
|
|
1112
|
+
Exceptions: Exceptions;
|
|
1113
|
+
CountBy: string;
|
|
1114
|
+
ScopeUnder: string;
|
|
1115
|
+
OwnerUnder: string;
|
|
1116
|
+
Interval: string;
|
|
1117
|
+
StartDate: string;
|
|
1118
|
+
EndDate: string;
|
|
1119
|
+
DFUSpaceItems: {
|
|
1120
|
+
DFUSpaceItem: DFUSpaceItem[];
|
|
1121
|
+
};
|
|
1122
|
+
}
|
|
1123
|
+
interface EclRecordTypeInfoRequest {
|
|
1124
|
+
Ecl?: string;
|
|
1125
|
+
IncludeJsonTypeInfo?: boolean;
|
|
1126
|
+
IncludeBinTypeInfo?: boolean;
|
|
1127
|
+
}
|
|
1128
|
+
interface EclRecordTypeInfoResponse {
|
|
1129
|
+
jsonInfo: string;
|
|
1130
|
+
binInfo: base64Binary;
|
|
1131
|
+
}
|
|
1132
|
+
interface EraseHistoryRequest {
|
|
1133
|
+
Name?: string;
|
|
1134
|
+
}
|
|
1135
|
+
interface Origin {
|
|
1136
|
+
Name: string;
|
|
1137
|
+
Operation: string;
|
|
1138
|
+
Timestamp: string;
|
|
1139
|
+
IP: string;
|
|
1140
|
+
Path: string;
|
|
1141
|
+
Owner: string;
|
|
1142
|
+
Workunit: string;
|
|
1143
|
+
}
|
|
1144
|
+
interface History {
|
|
1145
|
+
Origin: Origin[];
|
|
1146
|
+
}
|
|
1147
|
+
interface EraseHistoryResponse {
|
|
1148
|
+
Exceptions: Exceptions;
|
|
1149
|
+
History: {
|
|
1150
|
+
Origin: Origin[];
|
|
1151
|
+
};
|
|
1152
|
+
}
|
|
1153
|
+
interface ListHistoryRequest {
|
|
1154
|
+
Name?: string;
|
|
1155
|
+
}
|
|
1156
|
+
interface ListHistoryResponse {
|
|
1157
|
+
Exceptions: Exceptions;
|
|
1158
|
+
History: History;
|
|
1159
|
+
}
|
|
1160
|
+
interface WsDfuPingRequest {
|
|
1161
|
+
}
|
|
1162
|
+
interface WsDfuPingResponse {
|
|
1163
|
+
}
|
|
1164
|
+
interface SavexmlRequest {
|
|
1165
|
+
name?: string;
|
|
1166
|
+
}
|
|
1167
|
+
interface SavexmlResponse {
|
|
1168
|
+
Exceptions: Exceptions;
|
|
1169
|
+
xmlmap: base64Binary;
|
|
1170
|
+
}
|
|
1171
|
+
interface SuperfileActionRequest {
|
|
1172
|
+
action?: string;
|
|
1173
|
+
superfile?: string;
|
|
1174
|
+
subfiles?: subfiles;
|
|
1175
|
+
before?: string;
|
|
1176
|
+
delete?: boolean;
|
|
1177
|
+
removeSuperfile?: boolean;
|
|
1178
|
+
}
|
|
1179
|
+
interface SuperfileActionResponse {
|
|
1180
|
+
Exceptions: Exceptions;
|
|
1181
|
+
superfile: string;
|
|
1182
|
+
retcode: int;
|
|
1183
|
+
}
|
|
1184
|
+
interface SuperfileListRequest {
|
|
1185
|
+
superfile?: string;
|
|
1186
|
+
}
|
|
1187
|
+
interface SuperfileListResponse {
|
|
1188
|
+
Exceptions: Exceptions;
|
|
1189
|
+
superfile: string;
|
|
1190
|
+
subfiles: subfiles;
|
|
1191
|
+
}
|
|
1192
|
+
}
|
|
1193
|
+
export declare class DfuServiceBase extends Service {
|
|
1194
|
+
constructor(optsConnection: IOptions | IConnection);
|
|
1195
|
+
Add(request: WsDfu.AddRequest): Promise<WsDfu.AddResponse>;
|
|
1196
|
+
AddRemote(request: WsDfu.AddRemoteRequest): Promise<WsDfu.AddRemoteResponse>;
|
|
1197
|
+
AddtoSuperfile(request: WsDfu.AddtoSuperfileRequest): Promise<WsDfu.AddtoSuperfileResponse>;
|
|
1198
|
+
DFUArrayAction(request: WsDfu.DFUArrayActionRequest): Promise<WsDfu.DFUArrayActionResponse>;
|
|
1199
|
+
DFUBrowseData(request: WsDfu.DFUBrowseDataRequest): Promise<WsDfu.DFUBrowseDataResponse>;
|
|
1200
|
+
DFUDefFile(request: WsDfu.DFUDefFileRequest): Promise<WsDfu.DFUDefFileResponse>;
|
|
1201
|
+
DFUFileAccess(request: WsDfu.DFUFileAccessRequest): Promise<WsDfu.DFUFileAccessResponse>;
|
|
1202
|
+
DFUFileAccessV2(request: WsDfu.DFUFileAccessV2Request): Promise<WsDfu.DFUFileAccessResponse>;
|
|
1203
|
+
DFUFileCreate(request: WsDfu.DFUFileCreateRequest): Promise<WsDfu.DFUFileCreateResponse>;
|
|
1204
|
+
DFUFileCreateV2(request: WsDfu.DFUFileCreateV2Request): Promise<WsDfu.DFUFileCreateResponse>;
|
|
1205
|
+
DFUFilePublish(request: WsDfu.DFUFilePublishRequest): Promise<WsDfu.DFUFilePublishResponse>;
|
|
1206
|
+
DFUFileView(request: WsDfu.DFUFileViewRequest): Promise<WsDfu.DFUFileViewResponse>;
|
|
1207
|
+
DFUGetDataColumns(request: WsDfu.DFUGetDataColumnsRequest): Promise<WsDfu.DFUGetDataColumnsResponse>;
|
|
1208
|
+
DFUGetFileMetaData(request: WsDfu.DFUGetFileMetaDataRequest): Promise<WsDfu.DFUGetFileMetaDataResponse>;
|
|
1209
|
+
DFUInfo(request: WsDfu.DFUInfoRequest): Promise<WsDfu.DFUInfoResponse>;
|
|
1210
|
+
DFUQuery(request: WsDfu.DFUQueryRequest): Promise<WsDfu.DFUQueryResponse>;
|
|
1211
|
+
DFURecordTypeInfo(request: WsDfu.DFURecordTypeInfoRequest): Promise<WsDfu.DFURecordTypeInfoResponse>;
|
|
1212
|
+
DFUSearch(request: WsDfu.DFUSearchRequest): Promise<WsDfu.DFUSearchResponse>;
|
|
1213
|
+
DFUSearchData(request: WsDfu.DFUSearchDataRequest): Promise<WsDfu.DFUSearchDataResponse>;
|
|
1214
|
+
DFUSpace(request: WsDfu.DFUSpaceRequest): Promise<WsDfu.DFUSpaceResponse>;
|
|
1215
|
+
EclRecordTypeInfo(request: WsDfu.EclRecordTypeInfoRequest): Promise<WsDfu.EclRecordTypeInfoResponse>;
|
|
1216
|
+
EraseHistory(request: WsDfu.EraseHistoryRequest): Promise<WsDfu.EraseHistoryResponse>;
|
|
1217
|
+
ListHistory(request: WsDfu.ListHistoryRequest): Promise<WsDfu.ListHistoryResponse>;
|
|
1218
|
+
Ping(request: WsDfu.WsDfuPingRequest): Promise<WsDfu.WsDfuPingResponse>;
|
|
1219
|
+
Savexml(request: WsDfu.SavexmlRequest): Promise<WsDfu.SavexmlResponse>;
|
|
1220
|
+
SuperfileAction(request: WsDfu.SuperfileActionRequest): Promise<WsDfu.SuperfileActionResponse>;
|
|
1221
|
+
SuperfileList(request: WsDfu.SuperfileListRequest): Promise<WsDfu.SuperfileListResponse>;
|
|
1222
|
+
}
|
|
1223
|
+
export {};
|
|
1224
|
+
//# sourceMappingURL=WsDfu.d.ts.map
|