@hpcc-js/comms 2.102.2 → 2.102.3

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