@hpcc-js/comms 2.90.0 → 2.91.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.
Files changed (33) hide show
  1. package/dist/index.es6.js +32 -16
  2. package/dist/index.es6.js.map +1 -1
  3. package/dist/index.js +33 -17
  4. package/dist/index.js.map +1 -1
  5. package/dist/index.min.js +1 -1
  6. package/dist/index.min.js.map +1 -1
  7. package/dist/index.node.js +33 -17
  8. package/dist/index.node.js.map +1 -1
  9. package/dist/index.node.min.js +1 -1
  10. package/dist/index.node.min.js.map +1 -1
  11. package/lib-es6/__package__.js +2 -2
  12. package/lib-es6/ecl/workunit.js +5 -0
  13. package/lib-es6/ecl/workunit.js.map +1 -1
  14. package/lib-es6/services/wsWorkunits.js +5 -1
  15. package/lib-es6/services/wsWorkunits.js.map +1 -1
  16. package/lib-es6/services/wsdl/WsWorkunits/v1.98/WsWorkunits.js +370 -0
  17. package/lib-es6/services/wsdl/WsWorkunits/v1.98/WsWorkunits.js.map +1 -0
  18. package/package.json +3 -3
  19. package/src/__package__.ts +2 -2
  20. package/src/ecl/workunit.ts +14 -0
  21. package/src/services/wsWorkunits.ts +8 -1
  22. package/src/services/wsdl/WsWorkunits/v1.98/WsWorkunits.ts +3182 -0
  23. package/types/__package__.d.ts +2 -2
  24. package/types/ecl/workunit.d.ts +1 -0
  25. package/types/ecl/workunit.d.ts.map +1 -1
  26. package/types/services/wsWorkunits.d.ts +3 -1
  27. package/types/services/wsWorkunits.d.ts.map +1 -1
  28. package/types/services/wsdl/WsWorkunits/v1.98/WsWorkunits.d.ts +2623 -0
  29. package/types/services/wsdl/WsWorkunits/v1.98/WsWorkunits.d.ts.map +1 -0
  30. package/types-3.4/__package__.d.ts +2 -2
  31. package/types-3.4/ecl/workunit.d.ts +1 -0
  32. package/types-3.4/services/wsWorkunits.d.ts +3 -1
  33. package/types-3.4/services/wsdl/WsWorkunits/v1.98/WsWorkunits.d.ts +2623 -0
@@ -0,0 +1,2623 @@
1
+ import { IConnection, IOptions } from "../../../../connection";
2
+ import { Service } from "../../../../espConnection";
3
+ export declare namespace WsWorkunits {
4
+ type int = number;
5
+ type double = number;
6
+ type long = number;
7
+ type nonNegativeInteger = number;
8
+ type unsignedInt = number;
9
+ type base64Binary = string;
10
+ type dateTime = string;
11
+ type integer = number;
12
+ enum ECLWUActions {
13
+ Abort = "Abort",
14
+ Delete = "Delete",
15
+ Deschedule = "Deschedule",
16
+ Reschedule = "Reschedule",
17
+ Pause = "Pause",
18
+ PauseNow = "PauseNow",
19
+ Protect = "Protect",
20
+ Unprotect = "Unprotect",
21
+ Restore = "Restore",
22
+ Resume = "Resume",
23
+ SetToFailed = "SetToFailed",
24
+ Archive = "Archive"
25
+ }
26
+ enum LogSelectColumnMode {
27
+ MIN = 0,
28
+ DEFAULT = 1,
29
+ ALL = 2,
30
+ CUSTOM = 3
31
+ }
32
+ enum SortDirection {
33
+ ASC = 0,
34
+ DSC = 1
35
+ }
36
+ enum LogEventClass {
37
+ ALL = "ALL",
38
+ DIS = "DIS",
39
+ ERR = "ERR",
40
+ WRN = "WRN",
41
+ INF = "INF",
42
+ PRO = "PRO",
43
+ MET = "MET",
44
+ EVT = "EVT"
45
+ }
46
+ enum EclDefinitionActions {
47
+ SyntaxCheck = "SyntaxCheck",
48
+ Deploy = "Deploy",
49
+ Publish = "Publish"
50
+ }
51
+ enum ErrorMessageFormat {
52
+ xml = "xml",
53
+ json = "json",
54
+ text = "text"
55
+ }
56
+ enum LogAccessLogFormat {
57
+ XML = 0,
58
+ JSON = 1,
59
+ CSV = 2
60
+ }
61
+ enum WUExceptionSeverity {
62
+ info = "info",
63
+ warning = "warning",
64
+ error = "error",
65
+ alert = "alert"
66
+ }
67
+ enum WUQueryFilterSuspendedType {
68
+ Allqueries = "Allqueries",
69
+ Notsuspended = "Notsuspended",
70
+ Suspended = "Suspended",
71
+ Suspendedbyuser = "Suspendedbyuser",
72
+ Suspendedbyfirstnode = "Suspendedbyfirstnode",
73
+ Suspendedbyanynode = "Suspendedbyanynode"
74
+ }
75
+ enum WUQuerySetFilterType {
76
+ All = "All",
77
+ Id = "Id",
78
+ Name = "Name",
79
+ Alias = "Alias",
80
+ Status = "Status"
81
+ }
82
+ enum WUProtectFilter {
83
+ All = "All",
84
+ Protected = "Protected",
85
+ NotProtected = "NotProtected"
86
+ }
87
+ enum QuerySetAliasActionTypes {
88
+ Deactivate = "Deactivate"
89
+ }
90
+ enum QuerysetImportActivation {
91
+ None = "None",
92
+ ActivateImportedActive = "ActivateImportedActive"
93
+ }
94
+ enum QuerySetQueryActionTypes {
95
+ Suspend = "Suspend",
96
+ Unsuspend = "Unsuspend",
97
+ ToggleSuspend = "ToggleSuspend",
98
+ Activate = "Activate",
99
+ Delete = "Delete",
100
+ DeleteQueriesAndWUs = "DeleteQueriesAndWUs",
101
+ RemoveAllAliases = "RemoveAllAliases",
102
+ ResetQueryStats = "ResetQueryStats"
103
+ }
104
+ enum WUQueryActivationMode {
105
+ DoNotActivateQuery = 0,
106
+ ActivateQuery = 1,
107
+ ActivateQuerySuspendPrevious = 2,
108
+ ActivateQueryDeletePrevious = 3
109
+ }
110
+ interface GVCAjaxGraph {
111
+ Name: string;
112
+ GraphName: string;
113
+ SubGraphId: int;
114
+ SubGraphOnly: boolean;
115
+ }
116
+ interface GVCAjaxGraphResponse {
117
+ Name: string;
118
+ GraphName: string;
119
+ GraphType: string;
120
+ SubGraphId: int;
121
+ SubGraphOnly: boolean;
122
+ }
123
+ interface Ping {
124
+ }
125
+ interface WsWorkunitsPingResponse {
126
+ }
127
+ interface Wuids {
128
+ Item: string[];
129
+ }
130
+ interface WUAbort {
131
+ Wuids: {
132
+ Item: string[];
133
+ };
134
+ BlockTillFinishTimer: int;
135
+ }
136
+ interface Exception {
137
+ Code: string;
138
+ Audience: string;
139
+ Source: string;
140
+ Message: string;
141
+ }
142
+ interface Exceptions {
143
+ Source: string;
144
+ Exception: Exception[];
145
+ }
146
+ interface WUActionResult {
147
+ Wuid: string;
148
+ Action: string;
149
+ Result: string;
150
+ }
151
+ interface ActionResults {
152
+ WUActionResult: WUActionResult[];
153
+ }
154
+ interface WUAbortResponse {
155
+ Exceptions: {
156
+ Source: string;
157
+ Exception: Exception[];
158
+ };
159
+ ActionResults: {
160
+ WUActionResult: WUActionResult[];
161
+ };
162
+ }
163
+ interface WUAction {
164
+ Wuids: Wuids;
165
+ WUActionType: ECLWUActions;
166
+ Cluster: string;
167
+ Owner: string;
168
+ State: string;
169
+ StartDate: string;
170
+ EndDate: string;
171
+ ECL: string;
172
+ Jobname: string;
173
+ Test: string;
174
+ CurrentPage: string;
175
+ PageSize: string;
176
+ Sortby: string;
177
+ Descending: boolean;
178
+ EventServer: string;
179
+ EventName: string;
180
+ PageFrom: string;
181
+ BlockTillFinishTimer: int;
182
+ }
183
+ interface WUActionResponse {
184
+ Exceptions: Exceptions;
185
+ ActionResults: ActionResults;
186
+ }
187
+ interface WUAddLocalFileToWorkunit {
188
+ Wuid: string;
189
+ Name: string;
190
+ Val: string;
191
+ DefVal: string;
192
+ Type: int;
193
+ Length: int;
194
+ }
195
+ interface WUAddLocalFileToWorkunitResponse {
196
+ Exceptions: Exceptions;
197
+ Wuid: string;
198
+ Name: string;
199
+ Result: string;
200
+ }
201
+ interface PropertyOptions {
202
+ IncludeName: boolean;
203
+ IncludeRawValue: boolean;
204
+ IncludeFormatted: boolean;
205
+ IncludeMeasure: boolean;
206
+ IncludeCreator: boolean;
207
+ IncludeCreatorType: boolean;
208
+ }
209
+ interface WUAnalyseHotspot {
210
+ Wuid: string;
211
+ RootScope: string;
212
+ OptOnlyActive: boolean;
213
+ OnlyCriticalPath: boolean;
214
+ IncludeProperties: boolean;
215
+ IncludeStatistics: boolean;
216
+ ThresholdPercent: double;
217
+ PropertyOptions: {
218
+ IncludeName: boolean;
219
+ IncludeRawValue: boolean;
220
+ IncludeFormatted: boolean;
221
+ IncludeMeasure: boolean;
222
+ IncludeCreator: boolean;
223
+ IncludeCreatorType: boolean;
224
+ };
225
+ }
226
+ interface Property {
227
+ Name: string;
228
+ RawValue: string;
229
+ Formatted: string;
230
+ Measure: string;
231
+ Creator: string;
232
+ CreatorType: string;
233
+ }
234
+ interface Properties {
235
+ Property: Property[];
236
+ }
237
+ interface Note {
238
+ Source: string;
239
+ Message: string;
240
+ ErrorCode: nonNegativeInteger;
241
+ Severity: string;
242
+ Cost: nonNegativeInteger;
243
+ }
244
+ interface Notes {
245
+ Note: Note[];
246
+ }
247
+ interface Activity {
248
+ ScopeName: string;
249
+ Id: string;
250
+ ScopeType: string;
251
+ Properties: {
252
+ Property: Property[];
253
+ };
254
+ Notes: {
255
+ Note: Note[];
256
+ };
257
+ SinkActivity: string;
258
+ }
259
+ interface Activities {
260
+ Activity: Activity[];
261
+ }
262
+ interface Dependency {
263
+ ScopeName: string;
264
+ Id: string;
265
+ ScopeType: string;
266
+ Properties: Properties;
267
+ Notes: Notes;
268
+ SinkActivity: string;
269
+ }
270
+ interface Dependencies {
271
+ Dependency: Dependency[];
272
+ }
273
+ interface WUAnalyseHotspotResponse {
274
+ Exceptions: Exceptions;
275
+ RootScope: string;
276
+ RootTime: long;
277
+ Activities: {
278
+ Activity: Activity[];
279
+ };
280
+ Dependencies: {
281
+ Dependency: Dependency[];
282
+ };
283
+ }
284
+ interface WUCDebug {
285
+ Wuid: string;
286
+ Command: string;
287
+ }
288
+ interface WUDebugResponse {
289
+ Exceptions: Exceptions;
290
+ Result: string;
291
+ }
292
+ interface WUCheckFeatures {
293
+ IncludeFullVersion: boolean;
294
+ }
295
+ interface Deployment {
296
+ UseCompression: boolean;
297
+ }
298
+ interface WUCheckFeaturesResponse {
299
+ Exceptions: Exceptions;
300
+ BuildVersionMajor: int;
301
+ BuildVersionMinor: int;
302
+ BuildVersionPoint: int;
303
+ maxRequestEntityLength: unsignedInt;
304
+ Deployment: {
305
+ UseCompression: boolean;
306
+ };
307
+ BuildVersion: string;
308
+ BuildMaturity: string;
309
+ BuildTagTimestamp: string;
310
+ }
311
+ interface WUClusterJobQueueLOG {
312
+ Cluster: string;
313
+ StartDate: string;
314
+ EndDate: string;
315
+ }
316
+ interface WUClusterJobQueueLOGResponse {
317
+ Exceptions: Exceptions;
318
+ thefile: base64Binary;
319
+ }
320
+ interface WUClusterJobQueueXLS {
321
+ Cluster: string;
322
+ StartDate: string;
323
+ EndDate: string;
324
+ ShowType: string;
325
+ }
326
+ interface WUClusterJobQueueXLSResponse {
327
+ Exceptions: Exceptions;
328
+ Result: base64Binary;
329
+ }
330
+ interface WUClusterJobSummaryXLS {
331
+ Cluster: string;
332
+ StartDate: string;
333
+ EndDate: string;
334
+ ShowAll: boolean;
335
+ BusinessStartTime: string;
336
+ BusinessEndTime: string;
337
+ }
338
+ interface WUClusterJobSummaryXLSResponse {
339
+ Exceptions: Exceptions;
340
+ Result: base64Binary;
341
+ }
342
+ interface WUClusterJobXLS {
343
+ Cluster: string;
344
+ StartDate: string;
345
+ EndDate: string;
346
+ ShowAll: boolean;
347
+ BusinessStartTime: string;
348
+ BusinessEndTime: string;
349
+ }
350
+ interface WUClusterJobXLSResponse {
351
+ Exceptions: Exceptions;
352
+ Result: base64Binary;
353
+ }
354
+ interface WUCompileECL {
355
+ ECL: string;
356
+ ModuleName: string;
357
+ AttributeName: string;
358
+ Queue: string;
359
+ Cluster: string;
360
+ Snapshot: string;
361
+ IncludeDependencies: boolean;
362
+ IncludeComplexity: boolean;
363
+ TimeToWait: int;
364
+ }
365
+ interface ECLException {
366
+ Source: string;
367
+ Severity: string;
368
+ Code: int;
369
+ Message: string;
370
+ FileName: string;
371
+ LineNo: int;
372
+ Column: int;
373
+ Activity: int;
374
+ Scope: string;
375
+ Priority: int;
376
+ }
377
+ interface Errors {
378
+ ECLException: ECLException[];
379
+ }
380
+ interface WUCompileECLResponse {
381
+ Exceptions: Exceptions;
382
+ Complexity: string;
383
+ Errors: {
384
+ ECLException: ECLException[];
385
+ };
386
+ Dependencies: Dependencies;
387
+ }
388
+ interface WUCopyLogicalFiles {
389
+ Wuid: string;
390
+ Cluster: string;
391
+ CopyLocal: boolean;
392
+ }
393
+ interface Clusters {
394
+ Item: string[];
395
+ }
396
+ interface WULogicalFileCopyInfo {
397
+ IsIndex: boolean;
398
+ LogicalName: string;
399
+ DfuCopyWuid: string;
400
+ DfuCopyError: string;
401
+ Clusters: {
402
+ Item: string[];
403
+ };
404
+ }
405
+ interface OnCluster {
406
+ WULogicalFileCopyInfo: WULogicalFileCopyInfo[];
407
+ }
408
+ interface NotOnCluster {
409
+ WULogicalFileCopyInfo: WULogicalFileCopyInfo[];
410
+ }
411
+ interface Foreign {
412
+ WULogicalFileCopyInfo: WULogicalFileCopyInfo[];
413
+ }
414
+ interface NotFound {
415
+ WULogicalFileCopyInfo: WULogicalFileCopyInfo[];
416
+ }
417
+ interface Cluster {
418
+ ClusterName: string;
419
+ OnCluster: {
420
+ WULogicalFileCopyInfo: WULogicalFileCopyInfo[];
421
+ };
422
+ NotOnCluster: {
423
+ WULogicalFileCopyInfo: WULogicalFileCopyInfo[];
424
+ };
425
+ Foreign: {
426
+ WULogicalFileCopyInfo: WULogicalFileCopyInfo[];
427
+ };
428
+ NotFound: {
429
+ WULogicalFileCopyInfo: WULogicalFileCopyInfo[];
430
+ };
431
+ }
432
+ interface ClusterFiles {
433
+ Cluster: Cluster[];
434
+ }
435
+ interface WUCopyLogicalFilesResponse {
436
+ Exceptions: Exceptions;
437
+ Wuid: string;
438
+ ClusterFiles: {
439
+ Cluster: Cluster[];
440
+ };
441
+ }
442
+ interface WUCopyQuerySet {
443
+ Source: string;
444
+ Target: string;
445
+ ActiveOnly: boolean;
446
+ CloneActiveState: boolean;
447
+ AllowForeignFiles: boolean;
448
+ DfsServer: string;
449
+ CopyFiles: boolean;
450
+ OverwriteDfs: boolean;
451
+ SourceProcess: string;
452
+ UpdateSuperFiles: boolean;
453
+ UpdateCloneFrom: boolean;
454
+ AppendCluster: boolean;
455
+ IncludeFileErrors: boolean;
456
+ SourceSSL: boolean;
457
+ DfuCopyFiles: boolean;
458
+ DfuQueue: string;
459
+ DfuWait: nonNegativeInteger;
460
+ DfuOverwrite: boolean;
461
+ OnlyCopyFiles: boolean;
462
+ StopIfFilesCopied: boolean;
463
+ DfuPublisherWuid: string;
464
+ RemoteStorage: string;
465
+ }
466
+ interface CopiedQueries {
467
+ QueryId: string[];
468
+ }
469
+ interface ExistingQueries {
470
+ QueryId: string[];
471
+ }
472
+ interface File {
473
+ Error: string;
474
+ LogicalName: string;
475
+ }
476
+ interface FileErrors {
477
+ File: File[];
478
+ }
479
+ interface WUCopyQuerySetResponse {
480
+ Exceptions: Exceptions;
481
+ CopiedQueries: {
482
+ QueryId: string[];
483
+ };
484
+ ExistingQueries: {
485
+ QueryId: string[];
486
+ };
487
+ FileErrors: {
488
+ File: File[];
489
+ };
490
+ DfuPublisherWuid: string;
491
+ DfuPublisherState: string;
492
+ }
493
+ interface WUCreate {
494
+ }
495
+ interface Query {
496
+ Text: string;
497
+ Cpp: string;
498
+ ResTxt: string;
499
+ Dll: string;
500
+ ThorLog: string;
501
+ QueryMainDefinition: string;
502
+ }
503
+ interface ECLHelpFile {
504
+ Name: string;
505
+ Type: string;
506
+ IPAddress: string;
507
+ Description: string;
508
+ FileSize: long;
509
+ PID: unsignedInt;
510
+ minActivityId: unsignedInt;
511
+ maxActivityId: unsignedInt;
512
+ IsAvailable: boolean;
513
+ }
514
+ interface Helpers {
515
+ ECLHelpFile: ECLHelpFile[];
516
+ }
517
+ interface ECLGraph {
518
+ Name: string;
519
+ Label: string;
520
+ Type: string;
521
+ Running: boolean;
522
+ Complete: boolean;
523
+ Failed: boolean;
524
+ RunningId: long;
525
+ WhenStarted: string;
526
+ WhenFinished: string;
527
+ }
528
+ interface Graphs {
529
+ ECLGraph: ECLGraph[];
530
+ }
531
+ interface ECLSourceFiles {
532
+ ECLSourceFile: ECLSourceFile[];
533
+ }
534
+ interface ECLSourceFile {
535
+ FileCluster: string;
536
+ Name: string;
537
+ IsSuperFile: boolean;
538
+ Subs: int;
539
+ Count: int;
540
+ ECLSourceFiles: {
541
+ ECLSourceFile: ECLSourceFile[];
542
+ };
543
+ }
544
+ interface SourceFiles {
545
+ ECLSourceFile: ECLSourceFile[];
546
+ }
547
+ interface ECLSchemaItem {
548
+ ColumnName: string;
549
+ ColumnType: string;
550
+ ColumnTypeCode: int;
551
+ isConditional: boolean;
552
+ }
553
+ interface ECLSchemas {
554
+ ECLSchemaItem: ECLSchemaItem[];
555
+ }
556
+ interface ECLResult {
557
+ Name: string;
558
+ Sequence: int;
559
+ Value: string;
560
+ Link: string;
561
+ FileName: string;
562
+ IsSupplied: boolean;
563
+ ShowFileContent: boolean;
564
+ Total: long;
565
+ ECLSchemas: {
566
+ ECLSchemaItem: ECLSchemaItem[];
567
+ };
568
+ XmlSchema: string;
569
+ }
570
+ interface Results {
571
+ ECLResult: ECLResult[];
572
+ }
573
+ interface Variables {
574
+ ECLResult: ECLResult[];
575
+ }
576
+ interface ECLTimer {
577
+ Name: string;
578
+ Value: string;
579
+ count: int;
580
+ GraphName: string;
581
+ SubGraphId: int;
582
+ Timestamp: long;
583
+ When: string;
584
+ }
585
+ interface Timers {
586
+ ECLTimer: ECLTimer[];
587
+ }
588
+ interface DebugValue {
589
+ Name: string;
590
+ Value: string;
591
+ }
592
+ interface DebugValues {
593
+ DebugValue: DebugValue[];
594
+ }
595
+ interface ApplicationValue {
596
+ Application: string;
597
+ Name: string;
598
+ Value: string;
599
+ }
600
+ interface ApplicationValues {
601
+ ApplicationValue: ApplicationValue[];
602
+ }
603
+ interface ECLWorkflow {
604
+ WFID: string;
605
+ EventName: string;
606
+ EventText: string;
607
+ Count: int;
608
+ CountRemaining: int;
609
+ }
610
+ interface Workflows {
611
+ ECLWorkflow: ECLWorkflow[];
612
+ }
613
+ interface ECLTimingData {
614
+ Name: string;
615
+ GraphNum: int;
616
+ SubGraphNum: int;
617
+ GID: int;
618
+ Min: int;
619
+ MS: int;
620
+ }
621
+ interface TimingData {
622
+ ECLTimingData: ECLTimingData[];
623
+ }
624
+ interface AllowedClusters {
625
+ AllowedCluster: string[];
626
+ }
627
+ interface ThorLogInfo {
628
+ ProcessName: string;
629
+ ClusterGroup: string;
630
+ LogDate: string;
631
+ NumberSlaves: int;
632
+ }
633
+ interface ThorLogList {
634
+ ThorLogInfo: ThorLogInfo[];
635
+ }
636
+ interface ResourceURLs {
637
+ URL: string[];
638
+ }
639
+ interface ServiceNames {
640
+ Item: string[];
641
+ }
642
+ interface ECLWUProcess {
643
+ Name: string;
644
+ Type: string;
645
+ PodName: string;
646
+ InstanceNumber: int;
647
+ Log: string;
648
+ PID: string;
649
+ Pattern: string;
650
+ Max: int;
651
+ }
652
+ interface ECLWUProcessList {
653
+ ECLWUProcess: ECLWUProcess[];
654
+ }
655
+ interface Workunit {
656
+ Wuid: string;
657
+ Owner: string;
658
+ Cluster: string;
659
+ RoxieCluster: string;
660
+ Jobname: string;
661
+ Queue: string;
662
+ StateID: int;
663
+ State: string;
664
+ StateEx: string;
665
+ Description: string;
666
+ Protected: boolean;
667
+ Active: boolean;
668
+ Action: int;
669
+ ActionEx: string;
670
+ DateTimeScheduled: dateTime;
671
+ PriorityClass: int;
672
+ PriorityLevel: int;
673
+ Scope: string;
674
+ Snapshot: string;
675
+ ResultLimit: int;
676
+ Archived: boolean;
677
+ IsPausing: boolean;
678
+ ThorLCR: boolean;
679
+ EventSchedule: int;
680
+ TotalClusterTime: string;
681
+ AbortBy: string;
682
+ AbortTime: string;
683
+ Query: {
684
+ Text: string;
685
+ Cpp: string;
686
+ ResTxt: string;
687
+ Dll: string;
688
+ ThorLog: string;
689
+ QueryMainDefinition: string;
690
+ };
691
+ Helpers: {
692
+ ECLHelpFile: ECLHelpFile[];
693
+ };
694
+ Exceptions: Exceptions;
695
+ Graphs: {
696
+ ECLGraph: ECLGraph[];
697
+ };
698
+ SourceFiles: {
699
+ ECLSourceFile: ECLSourceFile[];
700
+ };
701
+ Results: {
702
+ ECLResult: ECLResult[];
703
+ };
704
+ Variables: {
705
+ ECLResult: ECLResult[];
706
+ };
707
+ Timers: {
708
+ ECLTimer: ECLTimer[];
709
+ };
710
+ DebugValues: {
711
+ DebugValue: DebugValue[];
712
+ };
713
+ ApplicationValues: {
714
+ ApplicationValue: ApplicationValue[];
715
+ };
716
+ Workflows: {
717
+ ECLWorkflow: ECLWorkflow[];
718
+ };
719
+ TimingData: {
720
+ ECLTimingData: ECLTimingData[];
721
+ };
722
+ AllowedClusters: {
723
+ AllowedCluster: string[];
724
+ };
725
+ ErrorCount: int;
726
+ WarningCount: int;
727
+ InfoCount: int;
728
+ AlertCount: int;
729
+ GraphCount: int;
730
+ SourceFileCount: int;
731
+ ResultCount: int;
732
+ VariableCount: int;
733
+ TimerCount: int;
734
+ HasDebugValue: boolean;
735
+ ApplicationValueCount: int;
736
+ XmlParams: string;
737
+ AccessFlag: int;
738
+ ClusterFlag: int;
739
+ HelpersDesc: string;
740
+ GraphsDesc: string;
741
+ SourceFilesDesc: string;
742
+ ResultsDesc: string;
743
+ VariablesDesc: string;
744
+ TimersDesc: string;
745
+ DebugValuesDesc: string;
746
+ ApplicationValuesDesc: string;
747
+ WorkflowsDesc: string;
748
+ HasArchiveQuery: boolean;
749
+ ThorLogList: {
750
+ ThorLogInfo: ThorLogInfo[];
751
+ };
752
+ ResourceURLs: {
753
+ URL: string[];
754
+ };
755
+ ResultViewCount: int;
756
+ ResourceURLCount: int;
757
+ DebugValueCount: int;
758
+ WorkflowCount: int;
759
+ HelpersCount: int;
760
+ ServiceNames: {
761
+ Item: string[];
762
+ };
763
+ ExecuteCost: double;
764
+ FileAccessCost: double;
765
+ CompileCost: double;
766
+ NoAccess: boolean;
767
+ ECLWUProcessList: {
768
+ ECLWUProcess: ECLWUProcess[];
769
+ };
770
+ }
771
+ interface WUCreateResponse {
772
+ Exceptions: Exceptions;
773
+ Workunit: {
774
+ Wuid: string;
775
+ Owner: string;
776
+ Cluster: string;
777
+ RoxieCluster: string;
778
+ Jobname: string;
779
+ Queue: string;
780
+ StateID: int;
781
+ State: string;
782
+ StateEx: string;
783
+ Description: string;
784
+ Protected: boolean;
785
+ Active: boolean;
786
+ Action: int;
787
+ ActionEx: string;
788
+ DateTimeScheduled: dateTime;
789
+ PriorityClass: int;
790
+ PriorityLevel: int;
791
+ Scope: string;
792
+ Snapshot: string;
793
+ ResultLimit: int;
794
+ Archived: boolean;
795
+ IsPausing: boolean;
796
+ ThorLCR: boolean;
797
+ EventSchedule: int;
798
+ TotalClusterTime: string;
799
+ AbortBy: string;
800
+ AbortTime: string;
801
+ Query: {
802
+ Text: string;
803
+ Cpp: string;
804
+ ResTxt: string;
805
+ Dll: string;
806
+ ThorLog: string;
807
+ QueryMainDefinition: string;
808
+ };
809
+ Helpers: {
810
+ ECLHelpFile: ECLHelpFile[];
811
+ };
812
+ Exceptions: Exceptions;
813
+ Graphs: {
814
+ ECLGraph: ECLGraph[];
815
+ };
816
+ SourceFiles: {
817
+ ECLSourceFile: ECLSourceFile[];
818
+ };
819
+ Results: {
820
+ ECLResult: ECLResult[];
821
+ };
822
+ Variables: {
823
+ ECLResult: ECLResult[];
824
+ };
825
+ Timers: {
826
+ ECLTimer: ECLTimer[];
827
+ };
828
+ DebugValues: {
829
+ DebugValue: DebugValue[];
830
+ };
831
+ ApplicationValues: {
832
+ ApplicationValue: ApplicationValue[];
833
+ };
834
+ Workflows: {
835
+ ECLWorkflow: ECLWorkflow[];
836
+ };
837
+ TimingData: {
838
+ ECLTimingData: ECLTimingData[];
839
+ };
840
+ AllowedClusters: {
841
+ AllowedCluster: string[];
842
+ };
843
+ ErrorCount: int;
844
+ WarningCount: int;
845
+ InfoCount: int;
846
+ AlertCount: int;
847
+ GraphCount: int;
848
+ SourceFileCount: int;
849
+ ResultCount: int;
850
+ VariableCount: int;
851
+ TimerCount: int;
852
+ HasDebugValue: boolean;
853
+ ApplicationValueCount: int;
854
+ XmlParams: string;
855
+ AccessFlag: int;
856
+ ClusterFlag: int;
857
+ HelpersDesc: string;
858
+ GraphsDesc: string;
859
+ SourceFilesDesc: string;
860
+ ResultsDesc: string;
861
+ VariablesDesc: string;
862
+ TimersDesc: string;
863
+ DebugValuesDesc: string;
864
+ ApplicationValuesDesc: string;
865
+ WorkflowsDesc: string;
866
+ HasArchiveQuery: boolean;
867
+ ThorLogList: {
868
+ ThorLogInfo: ThorLogInfo[];
869
+ };
870
+ ResourceURLs: {
871
+ URL: string[];
872
+ };
873
+ ResultViewCount: int;
874
+ ResourceURLCount: int;
875
+ DebugValueCount: int;
876
+ WorkflowCount: int;
877
+ HelpersCount: int;
878
+ ServiceNames: {
879
+ Item: string[];
880
+ };
881
+ ExecuteCost: double;
882
+ FileAccessCost: double;
883
+ CompileCost: double;
884
+ NoAccess: boolean;
885
+ ECLWUProcessList: {
886
+ ECLWUProcess: ECLWUProcess[];
887
+ };
888
+ };
889
+ }
890
+ interface WUCreateAndUpdate {
891
+ Wuid: string;
892
+ State: int;
893
+ StateOrig: int;
894
+ Jobname: string;
895
+ JobnameOrig: string;
896
+ QueryText: string;
897
+ Action: int;
898
+ Description: string;
899
+ DescriptionOrig: string;
900
+ AddDrilldownFields: boolean;
901
+ ResultLimit: int;
902
+ Protected: boolean;
903
+ ProtectedOrig: boolean;
904
+ PriorityClass: int;
905
+ PriorityLevel: int;
906
+ Scope: string;
907
+ ScopeOrig: string;
908
+ ClusterSelection: string;
909
+ ClusterOrig: string;
910
+ XmlParams: string;
911
+ ThorSlaveIP: string;
912
+ QueryMainDefinition: string;
913
+ DebugValues: DebugValues;
914
+ ApplicationValues: ApplicationValues;
915
+ }
916
+ interface WUUpdateResponse {
917
+ Exceptions: Exceptions;
918
+ Workunit: Workunit;
919
+ }
920
+ interface AbsoluteTimeRange {
921
+ StartDate: dateTime;
922
+ EndDate: dateTime;
923
+ }
924
+ interface CustomColumns {
925
+ Item: string[];
926
+ }
927
+ interface ComponentsFilter {
928
+ Item: string[];
929
+ }
930
+ interface LogFilter {
931
+ WildcardFilter: string;
932
+ AbsoluteTimeRange: {
933
+ StartDate: dateTime;
934
+ EndDate: dateTime;
935
+ };
936
+ RelativeTimeRangeBuffer: unsignedInt;
937
+ LineLimit: unsignedInt;
938
+ LineStartFrom: long;
939
+ SelectColumnMode: LogSelectColumnMode;
940
+ CustomColumns: {
941
+ Item: string[];
942
+ };
943
+ ComponentsFilter: {
944
+ Item: string[];
945
+ };
946
+ Format: LogAccessLogFormat;
947
+ sortByTimeDirection: SortDirection;
948
+ LogEventType: LogEventClass;
949
+ }
950
+ interface WUCreateZAPInfo {
951
+ Wuid: string;
952
+ ESPApplication: string;
953
+ ThorProcesses: string;
954
+ BuildVersion: string;
955
+ ProblemDescription: string;
956
+ WhatChanged: string;
957
+ WhereSlow: string;
958
+ ZAPFileName: string;
959
+ IncludeThorSlaveLog: string;
960
+ ZAPPassword: string;
961
+ SendEmail: boolean;
962
+ AttachZAPReportToEmail: boolean;
963
+ EmailFrom: string;
964
+ EmailSubject: string;
965
+ EmailBody: string;
966
+ LogFilter: {
967
+ WildcardFilter: string;
968
+ AbsoluteTimeRange: {
969
+ StartDate: dateTime;
970
+ EndDate: dateTime;
971
+ };
972
+ RelativeTimeRangeBuffer: unsignedInt;
973
+ LineLimit: unsignedInt;
974
+ LineStartFrom: long;
975
+ SelectColumnMode: LogSelectColumnMode;
976
+ CustomColumns: {
977
+ Item: string[];
978
+ };
979
+ ComponentsFilter: {
980
+ Item: string[];
981
+ };
982
+ Format: LogAccessLogFormat;
983
+ sortByTimeDirection: SortDirection;
984
+ LogEventType: LogEventClass;
985
+ };
986
+ }
987
+ interface WUCreateZAPInfoResponse {
988
+ Exceptions: Exceptions;
989
+ thefile: base64Binary;
990
+ ZAPFileName: string;
991
+ }
992
+ interface WUDelete {
993
+ Wuids: Wuids;
994
+ BlockTillFinishTimer: int;
995
+ }
996
+ interface WUDeleteResponse {
997
+ Exceptions: Exceptions;
998
+ ActionResults: ActionResults;
999
+ }
1000
+ interface WUDeployWorkunit {
1001
+ Cluster: string;
1002
+ Name: string;
1003
+ Wait: int;
1004
+ ObjType: string;
1005
+ FileName: string;
1006
+ Object: base64Binary;
1007
+ ResultLimit: int;
1008
+ QueryMainDefinition: string;
1009
+ Snapshot: string;
1010
+ DebugValues: DebugValues;
1011
+ Protect: boolean;
1012
+ }
1013
+ interface WUDeployWorkunitResponse {
1014
+ Exceptions: Exceptions;
1015
+ Workunit: Workunit;
1016
+ }
1017
+ interface Scopes {
1018
+ Scope: string[];
1019
+ }
1020
+ interface Ids {
1021
+ id: string[];
1022
+ }
1023
+ interface ScopeTypes {
1024
+ ScopeType: string[];
1025
+ }
1026
+ interface PropertyFilter {
1027
+ Name: string;
1028
+ ExactValue: string;
1029
+ MinValue: string;
1030
+ MaxValue: string;
1031
+ }
1032
+ interface PropertyFilters {
1033
+ PropertyFilter: PropertyFilter[];
1034
+ }
1035
+ interface ScopeFilter {
1036
+ MaxDepth: integer;
1037
+ Scopes: {
1038
+ Scope: string[];
1039
+ };
1040
+ Ids: {
1041
+ id: string[];
1042
+ };
1043
+ ScopeTypes: {
1044
+ ScopeType: string[];
1045
+ };
1046
+ PropertyFilters: {
1047
+ PropertyFilter: PropertyFilter[];
1048
+ };
1049
+ }
1050
+ interface NestedFilter {
1051
+ Depth: unsignedInt;
1052
+ ScopeTypes: ScopeTypes;
1053
+ }
1054
+ interface Extra {
1055
+ scopeType: string;
1056
+ Properties: Properties;
1057
+ }
1058
+ interface ExtraProperties {
1059
+ Extra: Extra[];
1060
+ }
1061
+ interface PropertiesToReturn {
1062
+ AllStatistics: boolean;
1063
+ AllAttributes: boolean;
1064
+ AllHints: boolean;
1065
+ AllScopes: boolean;
1066
+ AllProperties: boolean;
1067
+ AllNotes: boolean;
1068
+ MinVersion: unsignedInt;
1069
+ Measure: string;
1070
+ Properties: Properties;
1071
+ ExtraProperties: {
1072
+ Extra: Extra[];
1073
+ };
1074
+ }
1075
+ interface ScopeOptions {
1076
+ IncludeMatchedScopesInResults: boolean;
1077
+ IncludeScope: boolean;
1078
+ IncludeId: boolean;
1079
+ IncludeScopeType: boolean;
1080
+ }
1081
+ interface WUDetails {
1082
+ WUID: string;
1083
+ ScopeFilter: {
1084
+ MaxDepth: integer;
1085
+ Scopes: {
1086
+ Scope: string[];
1087
+ };
1088
+ Ids: {
1089
+ id: string[];
1090
+ };
1091
+ ScopeTypes: {
1092
+ ScopeType: string[];
1093
+ };
1094
+ PropertyFilters: {
1095
+ PropertyFilter: PropertyFilter[];
1096
+ };
1097
+ };
1098
+ NestedFilter: {
1099
+ Depth: unsignedInt;
1100
+ ScopeTypes: ScopeTypes;
1101
+ };
1102
+ PropertiesToReturn: {
1103
+ AllStatistics: boolean;
1104
+ AllAttributes: boolean;
1105
+ AllHints: boolean;
1106
+ AllScopes: boolean;
1107
+ AllProperties: boolean;
1108
+ AllNotes: boolean;
1109
+ MinVersion: unsignedInt;
1110
+ Measure: string;
1111
+ Properties: Properties;
1112
+ ExtraProperties: {
1113
+ Extra: Extra[];
1114
+ };
1115
+ };
1116
+ Filter: string;
1117
+ ScopeOptions: {
1118
+ IncludeMatchedScopesInResults: boolean;
1119
+ IncludeScope: boolean;
1120
+ IncludeId: boolean;
1121
+ IncludeScopeType: boolean;
1122
+ };
1123
+ PropertyOptions: PropertyOptions;
1124
+ }
1125
+ interface WUDetailsResponse {
1126
+ Exceptions: Exceptions;
1127
+ MaxVersion: unsignedInt;
1128
+ WUID: string;
1129
+ Scopes: Scopes;
1130
+ }
1131
+ interface WUDetailsMeta {
1132
+ }
1133
+ interface Measures {
1134
+ Measure: string[];
1135
+ }
1136
+ interface WUDetailsMetaResponse {
1137
+ Exceptions: Exceptions;
1138
+ Properties: Properties;
1139
+ ScopeTypes: ScopeTypes;
1140
+ Measures: {
1141
+ Measure: string[];
1142
+ };
1143
+ Activities: Activities;
1144
+ }
1145
+ interface EclDefinitions {
1146
+ Item: string[];
1147
+ }
1148
+ interface WUEclDefinitionAction {
1149
+ EclDefinitions: {
1150
+ Item: string[];
1151
+ };
1152
+ ActionType: EclDefinitionActions;
1153
+ Target: string;
1154
+ RemoteDali: string;
1155
+ SourceProcess: string;
1156
+ Priority: string;
1157
+ Comment: string;
1158
+ MemoryLimit: string;
1159
+ DeletePrevious: boolean;
1160
+ SuspendPrevious: boolean;
1161
+ NoActivate: boolean;
1162
+ NoReload: boolean;
1163
+ DontCopyFiles: boolean;
1164
+ AllowForeign: boolean;
1165
+ UpdateDfs: boolean;
1166
+ UpdateSuperfiles: boolean;
1167
+ UpdateCloneFrom: boolean;
1168
+ DontAppendCluster: boolean;
1169
+ MsToWait: int;
1170
+ TimeLimit: int;
1171
+ WarnTimeLimit: int;
1172
+ DfuCopyFiles: boolean;
1173
+ DfuOverwrite: boolean;
1174
+ DfuQueue: string;
1175
+ OnlyCopyFiles: boolean;
1176
+ StopIfFilesCopied: boolean;
1177
+ DfuPublisherWuid: string;
1178
+ RemoteStorage: string;
1179
+ }
1180
+ interface WUEclDefinitionActionResponse {
1181
+ Exceptions: Exceptions;
1182
+ ActionResults: ActionResults;
1183
+ DfuPublisherWuid: string;
1184
+ DfuPublisherState: string;
1185
+ }
1186
+ interface WUExport {
1187
+ Cluster: string;
1188
+ Owner: string;
1189
+ State: string;
1190
+ StartDate: string;
1191
+ EndDate: string;
1192
+ Jobname: string;
1193
+ }
1194
+ interface WUExportResponse {
1195
+ Exceptions: Exceptions;
1196
+ ExportData: base64Binary;
1197
+ }
1198
+ interface LogColumns {
1199
+ Item: string[];
1200
+ }
1201
+ interface WUFile {
1202
+ Name: string;
1203
+ Wuid: string;
1204
+ Type: string;
1205
+ Option: int;
1206
+ SlaveIP: string;
1207
+ IPAddress: string;
1208
+ Description: string;
1209
+ QuerySet: string;
1210
+ Query: string;
1211
+ Process: string;
1212
+ ClusterGroup: string;
1213
+ LogDate: string;
1214
+ SlaveNumber: int;
1215
+ SizeLimit: long;
1216
+ ErrorMessageFormat: ErrorMessageFormat;
1217
+ PlainText: string;
1218
+ MaxLogRecords: unsignedInt;
1219
+ LogSelectColumnMode: LogSelectColumnMode;
1220
+ LogFormat: LogAccessLogFormat;
1221
+ LogSearchTimeBuffSecs: unsignedInt;
1222
+ LogColumns: {
1223
+ Item: string[];
1224
+ };
1225
+ }
1226
+ interface WULogFileResponse {
1227
+ Exceptions: Exceptions;
1228
+ Wuid: string;
1229
+ QuerySet: string;
1230
+ QueryName: string;
1231
+ QueryId: string;
1232
+ FileName: string;
1233
+ DaliServer: string;
1234
+ thefile: base64Binary;
1235
+ }
1236
+ interface WUFullResult {
1237
+ Wuid: string;
1238
+ NoRootTag: boolean;
1239
+ ExceptionSeverity: WUExceptionSeverity;
1240
+ }
1241
+ interface WUFullResultResponse {
1242
+ Exceptions: Exceptions;
1243
+ Wuid: string;
1244
+ Results: string;
1245
+ }
1246
+ interface WUGVCGraphInfo {
1247
+ Wuid: string;
1248
+ Name: string;
1249
+ GID: string;
1250
+ BatchWU: int;
1251
+ SubgraphId: int;
1252
+ }
1253
+ interface WUGVCGraphInfoResponse {
1254
+ Exceptions: Exceptions;
1255
+ Wuid: string;
1256
+ Name: string;
1257
+ GID: string;
1258
+ Running: boolean;
1259
+ TheGraph: string;
1260
+ BatchWU: int;
1261
+ }
1262
+ interface WUGetArchiveFile {
1263
+ WUID: string;
1264
+ ModuleName: string;
1265
+ FileName: string;
1266
+ Path: string;
1267
+ }
1268
+ interface WUGetArchiveFileResponse {
1269
+ Exceptions: Exceptions;
1270
+ File: string;
1271
+ Message: string;
1272
+ }
1273
+ interface WUGetDependancyTrees {
1274
+ Cluster: string;
1275
+ Queue: string;
1276
+ Snapshot: string;
1277
+ Items: string;
1278
+ TimeoutMilliSec: string;
1279
+ }
1280
+ interface WUGetDependancyTreesResponse {
1281
+ Exceptions: Exceptions;
1282
+ Errors: Errors;
1283
+ DependancyTrees: base64Binary;
1284
+ }
1285
+ interface WUGetGraph {
1286
+ Wuid: string;
1287
+ GraphName: string;
1288
+ SubGraphId: string;
1289
+ }
1290
+ interface WUGetGraphResponse {
1291
+ Exceptions: Exceptions;
1292
+ Graphs: Graphs;
1293
+ }
1294
+ interface WUGetGraphNameAndTypes {
1295
+ Wuid: string;
1296
+ Type: string;
1297
+ }
1298
+ interface GraphNameAndType {
1299
+ Name: string;
1300
+ Type: string;
1301
+ }
1302
+ interface GraphNameAndTypes {
1303
+ GraphNameAndType: GraphNameAndType[];
1304
+ }
1305
+ interface WUGetGraphNameAndTypesResponse {
1306
+ Exceptions: Exceptions;
1307
+ GraphNameAndTypes: {
1308
+ GraphNameAndType: GraphNameAndType[];
1309
+ };
1310
+ }
1311
+ interface WUGetNumFileToCopy {
1312
+ ClusterName: string;
1313
+ TargetName: string;
1314
+ PageSize: long;
1315
+ PageStartFrom: long;
1316
+ Sortby: string;
1317
+ Descending: boolean;
1318
+ CacheHint: long;
1319
+ }
1320
+ interface Endpoint {
1321
+ URL: string;
1322
+ Status: string;
1323
+ NumQueryFileToCopy: int;
1324
+ }
1325
+ interface Endpoints {
1326
+ Endpoint: Endpoint[];
1327
+ }
1328
+ interface WUGetNumFileToCopyResponse {
1329
+ Exceptions: Exceptions;
1330
+ Endpoints: {
1331
+ Endpoint: Endpoint[];
1332
+ };
1333
+ CacheHint: long;
1334
+ Total: long;
1335
+ }
1336
+ interface WUGetPlugins {
1337
+ }
1338
+ interface WUEclPluginsInFolder {
1339
+ Path: string;
1340
+ Plugins: Plugins;
1341
+ }
1342
+ interface Plugins {
1343
+ WUEclPluginsInFolder: WUEclPluginsInFolder[];
1344
+ }
1345
+ interface WUGetPluginsResponse {
1346
+ Exceptions: Exceptions;
1347
+ Plugins: {
1348
+ WUEclPluginsInFolder: WUEclPluginsInFolder[];
1349
+ };
1350
+ }
1351
+ interface WUGetStats {
1352
+ WUID: string;
1353
+ CreatorType: string;
1354
+ Creator: string;
1355
+ ScopeType: string;
1356
+ Scope: string;
1357
+ Kind: string;
1358
+ Measure: string;
1359
+ MinScopeDepth: unsignedInt;
1360
+ MaxScopeDepth: unsignedInt;
1361
+ IncludeGraphs: boolean;
1362
+ CreateDescriptions: boolean;
1363
+ MinValue: long;
1364
+ MaxValue: long;
1365
+ Filter: string;
1366
+ }
1367
+ interface WUStatisticItem {
1368
+ Creator: string;
1369
+ CreatorType: string;
1370
+ Scope: string;
1371
+ ScopeType: string;
1372
+ Description: string;
1373
+ TimeStamp: string;
1374
+ Measure: string;
1375
+ Kind: string;
1376
+ Value: string;
1377
+ RawValue: long;
1378
+ Count: long;
1379
+ Max: long;
1380
+ Wuid: string;
1381
+ }
1382
+ interface Statistics {
1383
+ WUStatisticItem: WUStatisticItem[];
1384
+ }
1385
+ interface WUGetStatsResponse {
1386
+ Exceptions: Exceptions;
1387
+ WUID: string;
1388
+ Statistics: {
1389
+ WUStatisticItem: WUStatisticItem[];
1390
+ };
1391
+ }
1392
+ interface WUGetThorJobList {
1393
+ Cluster: string;
1394
+ StartDate: string;
1395
+ EndDate: string;
1396
+ MaxJobsToReturn: unsignedInt;
1397
+ }
1398
+ interface ECLJob {
1399
+ Wuid: string;
1400
+ Graph: string;
1401
+ State: string;
1402
+ StartedDate: string;
1403
+ FinishedDate: string;
1404
+ Cluster: string;
1405
+ GraphNum: string;
1406
+ SubGraphNum: string;
1407
+ NumOfRuns: string;
1408
+ Duration: int;
1409
+ }
1410
+ interface JobList {
1411
+ ECLJob: ECLJob[];
1412
+ }
1413
+ interface InProgressJobList {
1414
+ ECLJob: ECLJob[];
1415
+ }
1416
+ interface WUGetThorJobListResponse {
1417
+ Exceptions: Exceptions;
1418
+ JobList: {
1419
+ ECLJob: ECLJob[];
1420
+ };
1421
+ InProgressJobList: {
1422
+ ECLJob: ECLJob[];
1423
+ };
1424
+ Warning: string;
1425
+ }
1426
+ interface WUGetThorJobQueue {
1427
+ Cluster: string;
1428
+ StartDate: string;
1429
+ EndDate: string;
1430
+ MaxJobQueueItemsToReturn: unsignedInt;
1431
+ }
1432
+ interface ThorQueue {
1433
+ DT: string;
1434
+ RunningWUs: string;
1435
+ QueuedWUs: string;
1436
+ WaitingThors: string;
1437
+ ConnectedThors: string;
1438
+ IdledThors: string;
1439
+ RunningWU1: string;
1440
+ RunningWU2: string;
1441
+ }
1442
+ interface QueueList {
1443
+ ThorQueue: ThorQueue[];
1444
+ }
1445
+ interface WUGetThorJobQueueResponse {
1446
+ Exceptions: Exceptions;
1447
+ LongestQueue: int;
1448
+ MaxThorConnected: int;
1449
+ QueueList: {
1450
+ ThorQueue: ThorQueue[];
1451
+ };
1452
+ Warning: string;
1453
+ }
1454
+ interface WUGetZAPInfo {
1455
+ WUID: string;
1456
+ }
1457
+ interface WUGetZAPInfoResponse {
1458
+ Exceptions: Exceptions;
1459
+ WUID: string;
1460
+ ESPApplication: string;
1461
+ ThorProcesses: string;
1462
+ BuildVersion: string;
1463
+ Archive: string;
1464
+ EmailTo: string;
1465
+ EmailFrom: string;
1466
+ Message: string;
1467
+ }
1468
+ interface WUGraphInfo {
1469
+ Wuid: string;
1470
+ Name: string;
1471
+ GID: string;
1472
+ BatchWU: int;
1473
+ }
1474
+ interface WUGraphInfoResponse {
1475
+ Exceptions: Exceptions;
1476
+ Wuid: string;
1477
+ Name: string;
1478
+ GID: string;
1479
+ BatchWU: int;
1480
+ Running: boolean;
1481
+ }
1482
+ interface WUGraphTiming {
1483
+ Wuid: string;
1484
+ }
1485
+ interface WUGraphTimingResponse {
1486
+ Exceptions: Exceptions;
1487
+ Workunit: Workunit;
1488
+ }
1489
+ interface WUInfo {
1490
+ Wuid: string;
1491
+ TruncateEclTo64k: boolean;
1492
+ Type: string;
1493
+ IncludeExceptions: boolean;
1494
+ IncludeGraphs: boolean;
1495
+ IncludeSourceFiles: boolean;
1496
+ IncludeResults: boolean;
1497
+ IncludeResultsViewNames: boolean;
1498
+ IncludeVariables: boolean;
1499
+ IncludeTimers: boolean;
1500
+ IncludeDebugValues: boolean;
1501
+ IncludeApplicationValues: boolean;
1502
+ IncludeWorkflows: boolean;
1503
+ IncludeXmlSchemas: boolean;
1504
+ IncludeResourceURLs: boolean;
1505
+ IncludeECL: boolean;
1506
+ IncludeHelpers: boolean;
1507
+ IncludeAllowedClusters: boolean;
1508
+ IncludeTotalClusterTime: boolean;
1509
+ IncludeServiceNames: boolean;
1510
+ IncludeProcesses: boolean;
1511
+ SuppressResultSchemas: boolean;
1512
+ ThorSlaveIP: string;
1513
+ }
1514
+ interface ResultViews {
1515
+ View: string[];
1516
+ }
1517
+ interface WUInfoResponse {
1518
+ Exceptions: Exceptions;
1519
+ Workunit: Workunit;
1520
+ AutoRefresh: int;
1521
+ CanCompile: boolean;
1522
+ ThorSlaveIP: string;
1523
+ ResultViews: {
1524
+ View: string[];
1525
+ };
1526
+ SecMethod: string;
1527
+ }
1528
+ interface WUInfoDetails {
1529
+ Wuid: string;
1530
+ TruncateEclTo64k: boolean;
1531
+ Type: string;
1532
+ IncludeExceptions: boolean;
1533
+ IncludeGraphs: boolean;
1534
+ IncludeSourceFiles: boolean;
1535
+ IncludeResults: boolean;
1536
+ IncludeResultsViewNames: boolean;
1537
+ IncludeVariables: boolean;
1538
+ IncludeTimers: boolean;
1539
+ IncludeDebugValues: boolean;
1540
+ IncludeApplicationValues: boolean;
1541
+ IncludeWorkflows: boolean;
1542
+ IncludeXmlSchemas: boolean;
1543
+ IncludeResourceURLs: boolean;
1544
+ IncludeECL: boolean;
1545
+ IncludeHelpers: boolean;
1546
+ IncludeAllowedClusters: boolean;
1547
+ IncludeTotalClusterTime: boolean;
1548
+ IncludeServiceNames: boolean;
1549
+ IncludeProcesses: boolean;
1550
+ SuppressResultSchemas: boolean;
1551
+ ThorSlaveIP: string;
1552
+ }
1553
+ interface WUJobList {
1554
+ Cluster: string;
1555
+ Process: string;
1556
+ StartDate: string;
1557
+ EndDate: string;
1558
+ ShowAll: boolean;
1559
+ BusinessStartHour: int;
1560
+ BusinessEndHour: int;
1561
+ }
1562
+ interface Jobs {
1563
+ ECLJob: ECLJob[];
1564
+ }
1565
+ interface WUJobListResponse {
1566
+ Exceptions: Exceptions;
1567
+ StartDate: string;
1568
+ EndDate: string;
1569
+ Jobs: {
1570
+ ECLJob: ECLJob[];
1571
+ };
1572
+ }
1573
+ interface WULightWeightQuery {
1574
+ Wuid: string;
1575
+ Type: string;
1576
+ Cluster: string;
1577
+ Owner: string;
1578
+ JobName: string;
1579
+ StartDate: string;
1580
+ EndDate: string;
1581
+ BeforeWU: string;
1582
+ AfterWU: string;
1583
+ State: string;
1584
+ ApplicationValues: ApplicationValues;
1585
+ PageStartFrom: long;
1586
+ PageSize: unsignedInt;
1587
+ SortBy: string;
1588
+ Descending: boolean;
1589
+ CacheHint: long;
1590
+ }
1591
+ interface ECLWorkunitLW {
1592
+ Wuid: string;
1593
+ Owner: string;
1594
+ JobName: string;
1595
+ WuScope: string;
1596
+ ClusterName: string;
1597
+ State: int;
1598
+ StateDesc: string;
1599
+ Action: int;
1600
+ ActionDesc: string;
1601
+ Priority: int;
1602
+ PriorityDesc: string;
1603
+ PriorityLevel: int;
1604
+ IsProtected: boolean;
1605
+ DateTimeScheduled: dateTime;
1606
+ TotalClusterTime: unsignedInt;
1607
+ ApplicationValues: ApplicationValues;
1608
+ NoAccess: boolean;
1609
+ }
1610
+ interface Workunits {
1611
+ ECLWorkunitLW: ECLWorkunitLW[];
1612
+ }
1613
+ interface WULightWeightQueryResponse {
1614
+ Exceptions: Exceptions;
1615
+ NumWUs: int;
1616
+ CacheHint: long;
1617
+ Workunits: {
1618
+ ECLWorkunitLW: ECLWorkunitLW[];
1619
+ };
1620
+ }
1621
+ interface WUListArchiveFiles {
1622
+ WUID: string;
1623
+ }
1624
+ interface Files {
1625
+ File: File[];
1626
+ }
1627
+ interface ArchiveModule {
1628
+ Name: string;
1629
+ FullName: string;
1630
+ Flags: unsignedInt;
1631
+ Key: string;
1632
+ Plugin: string;
1633
+ SourcePath: string;
1634
+ Version: string;
1635
+ Path: string;
1636
+ ArchiveModules: ArchiveModules;
1637
+ Files: {
1638
+ File: File[];
1639
+ };
1640
+ }
1641
+ interface ArchiveModules {
1642
+ ArchiveModule: ArchiveModule[];
1643
+ }
1644
+ interface WUListArchiveFilesResponse {
1645
+ Exceptions: Exceptions;
1646
+ ArchiveModules: {
1647
+ ArchiveModule: ArchiveModule[];
1648
+ };
1649
+ Files: Files;
1650
+ Message: string;
1651
+ }
1652
+ interface WUListLocalFileRequired {
1653
+ Wuid: string;
1654
+ }
1655
+ interface LogicalFileUpload {
1656
+ Type: int;
1657
+ Source: string;
1658
+ Destination: string;
1659
+ EventTag: string;
1660
+ }
1661
+ interface LocalFileUploads {
1662
+ LogicalFileUpload: LogicalFileUpload[];
1663
+ }
1664
+ interface WUListLocalFileRequiredResponse {
1665
+ Exceptions: Exceptions;
1666
+ LocalFileUploads: {
1667
+ LogicalFileUpload: LogicalFileUpload[];
1668
+ };
1669
+ }
1670
+ interface WUListQueries {
1671
+ QuerySetName: string;
1672
+ ClusterName: string;
1673
+ LibraryName: string;
1674
+ MemoryLimitLow: long;
1675
+ MemoryLimitHigh: long;
1676
+ TimeLimitLow: nonNegativeInteger;
1677
+ TimeLimitHigh: nonNegativeInteger;
1678
+ WarnTimeLimitLow: nonNegativeInteger;
1679
+ WarnTimeLimitHigh: nonNegativeInteger;
1680
+ PriorityLow: nonNegativeInteger;
1681
+ PriorityHigh: nonNegativeInteger;
1682
+ Activated: boolean;
1683
+ SuspendedFilter: WUQueryFilterSuspendedType;
1684
+ WUID: string;
1685
+ QueryID: string;
1686
+ QueryName: string;
1687
+ PublishedBy: string;
1688
+ PageSize: nonNegativeInteger;
1689
+ PageStartFrom: nonNegativeInteger;
1690
+ Sortby: string;
1691
+ Descending: boolean;
1692
+ CacheHint: long;
1693
+ FileName: string;
1694
+ CheckAllNodes: boolean;
1695
+ }
1696
+ interface QuerySetQuery {
1697
+ Id: string;
1698
+ Name: string;
1699
+ Wuid: string;
1700
+ Dll: string;
1701
+ Suspended: boolean;
1702
+ Clusters: Clusters;
1703
+ memoryLimit: string;
1704
+ timeLimit: nonNegativeInteger;
1705
+ warnTimeLimit: nonNegativeInteger;
1706
+ priority: string;
1707
+ Comment: string;
1708
+ QuerySetId: string;
1709
+ IsLibrary: boolean;
1710
+ Activated: boolean;
1711
+ PublishedBy: string;
1712
+ snapshot: string;
1713
+ PriorityID: int;
1714
+ }
1715
+ interface QuerysetQueries {
1716
+ QuerySetQuery: QuerySetQuery[];
1717
+ }
1718
+ interface WUListQueriesResponse {
1719
+ Exceptions: Exceptions;
1720
+ NumberOfQueries: int;
1721
+ CacheHint: long;
1722
+ QuerysetQueries: {
1723
+ QuerySetQuery: QuerySetQuery[];
1724
+ };
1725
+ }
1726
+ interface WUListQueriesUsingFile {
1727
+ Target: string;
1728
+ Process: string;
1729
+ FileName: string;
1730
+ }
1731
+ interface QueryUsingFile {
1732
+ Id: string;
1733
+ Package: string;
1734
+ }
1735
+ interface Queries {
1736
+ QueryUsingFile: QueryUsingFile[];
1737
+ }
1738
+ interface TargetQueriesUsingFile {
1739
+ Target: string;
1740
+ PackageMap: string;
1741
+ Queries: {
1742
+ QueryUsingFile: QueryUsingFile[];
1743
+ };
1744
+ }
1745
+ interface Targets {
1746
+ TargetQueriesUsingFile: TargetQueriesUsingFile[];
1747
+ }
1748
+ interface WUListQueriesUsingFileResponse {
1749
+ Exceptions: Exceptions;
1750
+ Process: string;
1751
+ FileName: string;
1752
+ Targets: {
1753
+ TargetQueriesUsingFile: TargetQueriesUsingFile[];
1754
+ };
1755
+ }
1756
+ interface WUMultiQuerysetDetails {
1757
+ ClusterName: string;
1758
+ QuerySetName: string;
1759
+ Filter: string;
1760
+ FilterType: WUQuerySetFilterType;
1761
+ CheckAllNodes: boolean;
1762
+ }
1763
+ interface QuerySetAlias {
1764
+ Id: string;
1765
+ Name: string;
1766
+ }
1767
+ interface Aliases {
1768
+ QuerySetAlias: QuerySetAlias[];
1769
+ }
1770
+ interface WUQuerySetDetail {
1771
+ QuerySetName: string;
1772
+ Queries: Queries;
1773
+ Aliases: {
1774
+ QuerySetAlias: QuerySetAlias[];
1775
+ };
1776
+ }
1777
+ interface Querysets {
1778
+ WUQuerySetDetail: WUQuerySetDetail[];
1779
+ }
1780
+ interface WUMultiQuerySetDetailsResponse {
1781
+ Exceptions: Exceptions;
1782
+ ClusterName: string;
1783
+ Querysets: {
1784
+ WUQuerySetDetail: WUQuerySetDetail[];
1785
+ };
1786
+ }
1787
+ interface WUProcessGraph {
1788
+ Wuid: string;
1789
+ Name: string;
1790
+ }
1791
+ interface WUProcessGraphResponse {
1792
+ Exceptions: Exceptions;
1793
+ theGraph: string;
1794
+ }
1795
+ interface WUProtect {
1796
+ Wuids: Wuids;
1797
+ Protect: boolean;
1798
+ }
1799
+ interface WUProtectResponse {
1800
+ Exceptions: Exceptions;
1801
+ ActionResults: ActionResults;
1802
+ }
1803
+ interface WUPublishWorkunit {
1804
+ Wuid: string;
1805
+ Cluster: string;
1806
+ QueryName: string;
1807
+ WorkUnitJobName: string;
1808
+ JobName: string;
1809
+ Activate: int;
1810
+ NotifyCluster: boolean;
1811
+ Wait: int;
1812
+ NoReload: boolean;
1813
+ UpdateWorkUnitName: boolean;
1814
+ memoryLimit: string;
1815
+ TimeLimit: nonNegativeInteger;
1816
+ WarnTimeLimit: nonNegativeInteger;
1817
+ Priority: string;
1818
+ RemoteDali: string;
1819
+ Comment: string;
1820
+ DontCopyFiles: boolean;
1821
+ SourceProcess: string;
1822
+ AllowForeignFiles: boolean;
1823
+ UpdateDfs: boolean;
1824
+ UpdateSuperFiles: boolean;
1825
+ UpdateCloneFrom: boolean;
1826
+ AppendCluster: boolean;
1827
+ IncludeFileErrors: boolean;
1828
+ DfuCopyFiles: boolean;
1829
+ DfuQueue: string;
1830
+ DfuWait: nonNegativeInteger;
1831
+ DfuOverwrite: boolean;
1832
+ OnlyCopyFiles: boolean;
1833
+ StopIfFilesCopied: boolean;
1834
+ DfuPublisherWuid: string;
1835
+ RemoteStorage: string;
1836
+ }
1837
+ interface WUPublishWorkunitResponse {
1838
+ Exceptions: Exceptions;
1839
+ Wuid: string;
1840
+ Result: string;
1841
+ QuerySet: string;
1842
+ QueryName: string;
1843
+ QueryId: string;
1844
+ ReloadFailed: boolean;
1845
+ Suspended: boolean;
1846
+ ErrorMessage: string;
1847
+ ClusterFiles: ClusterFiles;
1848
+ FileErrors: FileErrors;
1849
+ DfuPublisherWuid: string;
1850
+ DfuPublisherState: string;
1851
+ }
1852
+ interface WUPushEvent {
1853
+ EventName: string;
1854
+ EventText: string;
1855
+ }
1856
+ interface WUPushEventResponse {
1857
+ Exceptions: Exceptions;
1858
+ }
1859
+ interface WUQuery {
1860
+ Wuid: string;
1861
+ Type: string;
1862
+ Cluster: string;
1863
+ RoxieCluster: string;
1864
+ Owner: string;
1865
+ State: string;
1866
+ StartDate: string;
1867
+ EndDate: string;
1868
+ ECL: string;
1869
+ Jobname: string;
1870
+ LogicalFile: string;
1871
+ LogicalFileSearchType: string;
1872
+ ApplicationValues: ApplicationValues;
1873
+ BeforeWU: string;
1874
+ AfterWU: string;
1875
+ TotalClusterTimeThresholdMilliSec: unsignedInt;
1876
+ Count: int;
1877
+ PageSize: long;
1878
+ PageStartFrom: long;
1879
+ PageEndAt: long;
1880
+ Protected: WUProtectFilter;
1881
+ Sortby: string;
1882
+ Descending: boolean;
1883
+ CacheHint: long;
1884
+ }
1885
+ interface WUQueryResponse {
1886
+ Exceptions: Exceptions;
1887
+ Type: string;
1888
+ Cluster: string;
1889
+ RoxieCluster: string;
1890
+ Owner: string;
1891
+ State: string;
1892
+ StartDate: string;
1893
+ EndDate: string;
1894
+ ECL: string;
1895
+ Jobname: string;
1896
+ LogicalFile: string;
1897
+ LogicalFileSearchType: string;
1898
+ Current: string;
1899
+ Next: string;
1900
+ Count: int;
1901
+ PageSize: long;
1902
+ PrevPage: long;
1903
+ NextPage: long;
1904
+ LastPage: long;
1905
+ NumWUs: int;
1906
+ First: boolean;
1907
+ PageStartFrom: long;
1908
+ PageEndAt: long;
1909
+ Sortby: string;
1910
+ Descending: boolean;
1911
+ BasicQuery: string;
1912
+ Filters: string;
1913
+ CacheHint: long;
1914
+ Workunits: Workunits;
1915
+ }
1916
+ interface WUQueryConfig {
1917
+ Target: string;
1918
+ QueryId: string;
1919
+ Wait: int;
1920
+ NoReload: boolean;
1921
+ memoryLimit: string;
1922
+ TimeLimit: nonNegativeInteger;
1923
+ WarnTimeLimit: nonNegativeInteger;
1924
+ Priority: string;
1925
+ Comment: string;
1926
+ }
1927
+ interface WUQueryConfigResponse {
1928
+ Exceptions: Exceptions;
1929
+ ReloadFailed: boolean;
1930
+ Results: Results;
1931
+ }
1932
+ interface WUQueryDetails {
1933
+ QueryId: string;
1934
+ QuerySet: string;
1935
+ IncludeStateOnClusters: boolean;
1936
+ IncludeSuperFiles: boolean;
1937
+ IncludeWsEclAddresses: boolean;
1938
+ CheckAllNodes: boolean;
1939
+ IncludeWUDetails: boolean;
1940
+ IncludeWUQueryFiles: boolean;
1941
+ }
1942
+ interface LogicalFiles {
1943
+ Item: string[];
1944
+ }
1945
+ interface SubFiles {
1946
+ File: string[];
1947
+ }
1948
+ interface SuperFile {
1949
+ Name: string;
1950
+ SubFiles: {
1951
+ File: string[];
1952
+ };
1953
+ SuperFiles: SuperFiles;
1954
+ }
1955
+ interface SuperFiles {
1956
+ SuperFile: SuperFile[];
1957
+ }
1958
+ interface LibrariesUsed {
1959
+ Item: string[];
1960
+ }
1961
+ interface WsEclAddresses {
1962
+ Address: string[];
1963
+ }
1964
+ interface WUGraphs {
1965
+ ECLGraph: ECLGraph[];
1966
+ }
1967
+ interface WUTimers {
1968
+ ECLTimer: ECLTimer[];
1969
+ }
1970
+ interface WUQueryDetailsResponse {
1971
+ Exceptions: Exceptions;
1972
+ QueryId: string;
1973
+ QuerySet: string;
1974
+ QueryName: string;
1975
+ Wuid: string;
1976
+ Dll: string;
1977
+ Suspended: boolean;
1978
+ Activated: boolean;
1979
+ SuspendedBy: string;
1980
+ Clusters: Clusters;
1981
+ PublishedBy: string;
1982
+ Comment: string;
1983
+ LogicalFiles: {
1984
+ Item: string[];
1985
+ };
1986
+ SuperFiles: {
1987
+ SuperFile: SuperFile[];
1988
+ };
1989
+ IsLibrary: boolean;
1990
+ Priority: string;
1991
+ PriorityID: int;
1992
+ WUSnapShot: string;
1993
+ CompileTime: string;
1994
+ LibrariesUsed: {
1995
+ Item: string[];
1996
+ };
1997
+ CountGraphs: int;
1998
+ ResourceURLCount: int;
1999
+ WsEclAddresses: {
2000
+ Address: string[];
2001
+ };
2002
+ WUGraphs: {
2003
+ ECLGraph: ECLGraph[];
2004
+ };
2005
+ WUTimers: {
2006
+ ECLTimer: ECLTimer[];
2007
+ };
2008
+ }
2009
+ interface WUQueryDetailsLightWeight {
2010
+ QueryId: string;
2011
+ QuerySet: string;
2012
+ IncludeWUDetails: boolean;
2013
+ IncludeWUQueryFiles: boolean;
2014
+ IncludeSuperFiles: boolean;
2015
+ IncludeWsEclAddresses: boolean;
2016
+ IncludeStateOnClusters: boolean;
2017
+ CheckAllNodes: boolean;
2018
+ }
2019
+ interface WUQueryFiles {
2020
+ Target: string;
2021
+ QueryId: string;
2022
+ }
2023
+ interface WUQueryFilesResponse {
2024
+ Exceptions: Exceptions;
2025
+ Files: Files;
2026
+ SuperFiles: SuperFiles;
2027
+ Queries: Queries;
2028
+ }
2029
+ interface WUQueryGetGraph {
2030
+ Target: string;
2031
+ QueryId: string;
2032
+ GraphName: string;
2033
+ SubGraphId: string;
2034
+ }
2035
+ interface WUQueryGetGraphResponse {
2036
+ Exceptions: Exceptions;
2037
+ Graphs: Graphs;
2038
+ }
2039
+ interface WUQueryGetSummaryStats {
2040
+ Target: string;
2041
+ QueryId: string;
2042
+ FromTime: string;
2043
+ ToTime: string;
2044
+ IncludeRawStats: boolean;
2045
+ }
2046
+ interface QuerySummaryStats {
2047
+ Endpoint: string;
2048
+ Status: string;
2049
+ StartTime: string;
2050
+ EndTime: string;
2051
+ CountTotal: int;
2052
+ CountFailed: int;
2053
+ AverageSlavesReplyLen: int;
2054
+ AverageBytesOut: long;
2055
+ SizeAvgPeakMemory: long;
2056
+ TimeAvgTotalExecuteMinutes: long;
2057
+ TimeMinTotalExecuteMinutes: long;
2058
+ TimeMaxTotalExecuteMinutes: long;
2059
+ Percentile97: long;
2060
+ Percentile97Estimate: boolean;
2061
+ }
2062
+ interface StatsList {
2063
+ QuerySummaryStats: QuerySummaryStats[];
2064
+ }
2065
+ interface EndpointQueryStats {
2066
+ Endpoint: string;
2067
+ Status: string;
2068
+ QueryStatsList: QueryStatsList;
2069
+ }
2070
+ interface QueryStatsList {
2071
+ EndpointQueryStats: EndpointQueryStats[];
2072
+ }
2073
+ interface WUQueryGetSummaryStatsResponse {
2074
+ Exceptions: Exceptions;
2075
+ StatsList: {
2076
+ QuerySummaryStats: QuerySummaryStats[];
2077
+ };
2078
+ QueryStatsList: {
2079
+ EndpointQueryStats: EndpointQueryStats[];
2080
+ };
2081
+ }
2082
+ interface WUQuerysetAliasAction {
2083
+ Action: QuerySetAliasActionTypes;
2084
+ QuerySetName: string;
2085
+ Aliases: Aliases;
2086
+ }
2087
+ interface WUQuerySetAliasActionResponse {
2088
+ Exceptions: Exceptions;
2089
+ Action: QuerySetAliasActionTypes;
2090
+ QuerySetName: string;
2091
+ Results: Results;
2092
+ }
2093
+ interface WUQuerysetCopyQuery {
2094
+ Source: string;
2095
+ Target: string;
2096
+ Cluster: string;
2097
+ DaliServer: string;
2098
+ Activate: int;
2099
+ Overwrite: boolean;
2100
+ DontCopyFiles: boolean;
2101
+ Wait: int;
2102
+ NoReload: boolean;
2103
+ memoryLimit: string;
2104
+ TimeLimit: nonNegativeInteger;
2105
+ WarnTimeLimit: nonNegativeInteger;
2106
+ priority: string;
2107
+ Comment: string;
2108
+ SourceProcess: string;
2109
+ DestName: string;
2110
+ AllowForeignFiles: boolean;
2111
+ UpdateSuperFiles: boolean;
2112
+ UpdateCloneFrom: boolean;
2113
+ AppendCluster: boolean;
2114
+ IncludeFileErrors: boolean;
2115
+ SourceSSL: boolean;
2116
+ DfuCopyFiles: boolean;
2117
+ DfuQueue: string;
2118
+ DfuWait: nonNegativeInteger;
2119
+ DfuOverwrite: boolean;
2120
+ OnlyCopyFiles: boolean;
2121
+ StopIfFilesCopied: boolean;
2122
+ DfuPublisherWuid: string;
2123
+ RemoteStorage: string;
2124
+ }
2125
+ interface WUQuerySetCopyQueryResponse {
2126
+ Exceptions: Exceptions;
2127
+ QueryId: string;
2128
+ FileErrors: FileErrors;
2129
+ DfuPublisherWuid: string;
2130
+ DfuPublisherState: string;
2131
+ }
2132
+ interface WUQuerysetDetails {
2133
+ QuerySetName: string;
2134
+ Filter: string;
2135
+ ClusterName: string;
2136
+ FilterType: WUQuerySetFilterType;
2137
+ CheckAllNodes: boolean;
2138
+ }
2139
+ interface QuerysetAliases {
2140
+ QuerySetAlias: QuerySetAlias[];
2141
+ }
2142
+ interface ClusterNames {
2143
+ Item: string[];
2144
+ }
2145
+ interface WUQuerySetDetailsResponse {
2146
+ Exceptions: Exceptions;
2147
+ QuerySetName: string;
2148
+ QuerysetQueries: QuerysetQueries;
2149
+ QuerysetAliases: {
2150
+ QuerySetAlias: QuerySetAlias[];
2151
+ };
2152
+ ClusterName: string;
2153
+ Filter: string;
2154
+ FilterType: WUQuerySetFilterType;
2155
+ ClusterNames: {
2156
+ Item: string[];
2157
+ };
2158
+ }
2159
+ interface WUQuerysetExport {
2160
+ Target: string;
2161
+ Compress: boolean;
2162
+ ActiveOnly: boolean;
2163
+ Protect: boolean;
2164
+ }
2165
+ interface WUQuerysetExportResponse {
2166
+ Exceptions: Exceptions;
2167
+ Target: string;
2168
+ Compressed: boolean;
2169
+ Data: base64Binary;
2170
+ }
2171
+ interface WUQuerysetImport {
2172
+ Target: string;
2173
+ QueryMask: string;
2174
+ Replace: boolean;
2175
+ ActiveOnly: boolean;
2176
+ Activation: QuerysetImportActivation;
2177
+ Compressed: boolean;
2178
+ Data: base64Binary;
2179
+ AllowForeignFiles: boolean;
2180
+ DfsServer: string;
2181
+ CopyFiles: boolean;
2182
+ OverwriteDfs: boolean;
2183
+ SourceProcess: string;
2184
+ UpdateSuperFiles: boolean;
2185
+ UpdateCloneFrom: boolean;
2186
+ AppendCluster: boolean;
2187
+ IncludeFileErrors: boolean;
2188
+ DfuCopyFiles: boolean;
2189
+ DfuQueue: string;
2190
+ DfuWait: nonNegativeInteger;
2191
+ DfuOverwrite: boolean;
2192
+ OnlyCopyFiles: boolean;
2193
+ StopIfFilesCopied: boolean;
2194
+ DfuPublisherWuid: string;
2195
+ RemoteStorage: string;
2196
+ }
2197
+ interface ImportedQueries {
2198
+ QueryId: string[];
2199
+ }
2200
+ interface MissingWuids {
2201
+ QueryId: string[];
2202
+ }
2203
+ interface WUQuerysetImportResponse {
2204
+ Exceptions: Exceptions;
2205
+ Target: string;
2206
+ ClearedExisting: boolean;
2207
+ Success: boolean;
2208
+ ImportedQueries: {
2209
+ QueryId: string[];
2210
+ };
2211
+ ExistingQueries: ExistingQueries;
2212
+ MissingWuids: {
2213
+ QueryId: string[];
2214
+ };
2215
+ FileErrors: FileErrors;
2216
+ DfuPublisherWuid: string;
2217
+ DfuPublisherState: string;
2218
+ }
2219
+ interface WUQuerysetQueryAction {
2220
+ Action: QuerySetQueryActionTypes;
2221
+ QuerySetName: string;
2222
+ Queries: Queries;
2223
+ }
2224
+ interface WUQuerySetQueryActionResponse {
2225
+ Exceptions: Exceptions;
2226
+ Action: QuerySetQueryActionTypes;
2227
+ QuerySetName: string;
2228
+ Results: Results;
2229
+ }
2230
+ interface WUQuerysets {
2231
+ test: boolean;
2232
+ }
2233
+ interface WUQuerysetsResponse {
2234
+ Exceptions: Exceptions;
2235
+ Querysets: Querysets;
2236
+ }
2237
+ interface WURecreateQuery {
2238
+ Target: string;
2239
+ QueryId: string;
2240
+ DebugValues: DebugValues;
2241
+ DestTarget: string;
2242
+ Republish: boolean;
2243
+ Activate: WUQueryActivationMode;
2244
+ NoReload: boolean;
2245
+ MemoryLimit: string;
2246
+ TimeLimit: nonNegativeInteger;
2247
+ WarnTimeLimit: nonNegativeInteger;
2248
+ Priority: string;
2249
+ Comment: string;
2250
+ RemoteDali: string;
2251
+ DontCopyFiles: boolean;
2252
+ SourceProcess: string;
2253
+ AllowForeignFiles: boolean;
2254
+ UpdateDfs: boolean;
2255
+ UpdateSuperFiles: boolean;
2256
+ UpdateCloneFrom: boolean;
2257
+ AppendCluster: boolean;
2258
+ IncludeFileErrors: boolean;
2259
+ Wait: int;
2260
+ DfuCopyFiles: boolean;
2261
+ DfuQueue: string;
2262
+ DfuWait: nonNegativeInteger;
2263
+ DfuOverwrite: boolean;
2264
+ OnlyCopyFiles: boolean;
2265
+ StopIfFilesCopied: boolean;
2266
+ DfuPublisherWuid: string;
2267
+ RemoteStorage: string;
2268
+ }
2269
+ interface WURecreateQueryResponse {
2270
+ Exceptions: Exceptions;
2271
+ Wuid: string;
2272
+ QuerySet: string;
2273
+ QueryName: string;
2274
+ QueryId: string;
2275
+ MemoryLimit: string;
2276
+ TimeLimit: nonNegativeInteger;
2277
+ WarnTimeLimit: nonNegativeInteger;
2278
+ Priority: string;
2279
+ Comment: string;
2280
+ ReloadFailed: boolean;
2281
+ Suspended: boolean;
2282
+ ErrorMessage: string;
2283
+ FileErrors: FileErrors;
2284
+ DfuPublisherWuid: string;
2285
+ DfuPublisherState: string;
2286
+ }
2287
+ interface WUResubmit {
2288
+ Wuids: Wuids;
2289
+ BlockTillFinishTimer: int;
2290
+ ResetWorkflow: boolean;
2291
+ CloneWorkunit: boolean;
2292
+ }
2293
+ interface WU {
2294
+ WUID: string;
2295
+ ParentWUID: string;
2296
+ }
2297
+ interface WUs {
2298
+ WU: WU[];
2299
+ }
2300
+ interface WUResubmitResponse {
2301
+ Exceptions: Exceptions;
2302
+ WUs: {
2303
+ WU: WU[];
2304
+ };
2305
+ }
2306
+ interface NamedValue {
2307
+ Name: string;
2308
+ Value: string;
2309
+ }
2310
+ interface FilterBy {
2311
+ NamedValue: NamedValue[];
2312
+ }
2313
+ interface WUResult {
2314
+ Wuid: string;
2315
+ Sequence: int;
2316
+ ResultName: string;
2317
+ LogicalName: string;
2318
+ Cluster: string;
2319
+ SuppressXmlSchema: boolean;
2320
+ BypassCachedResult: boolean;
2321
+ FilterBy: {
2322
+ NamedValue: NamedValue[];
2323
+ };
2324
+ Start: long;
2325
+ Count: int;
2326
+ }
2327
+ interface WUResultResponse {
2328
+ Exceptions: Exceptions;
2329
+ Wuid: string;
2330
+ Sequence: int;
2331
+ LogicalName: string;
2332
+ Cluster: string;
2333
+ Name: string;
2334
+ Start: long;
2335
+ Requested: int;
2336
+ Count: int;
2337
+ Total: long;
2338
+ Result: string;
2339
+ }
2340
+ interface WUResultBin {
2341
+ LogicalName: string;
2342
+ Wuid: string;
2343
+ ResultName: string;
2344
+ Sequence: int;
2345
+ Format: string;
2346
+ Cluster: string;
2347
+ FilterBy: FilterBy;
2348
+ Start: long;
2349
+ Count: int;
2350
+ }
2351
+ interface WUResultBinResponse {
2352
+ Exceptions: Exceptions;
2353
+ Wuid: string;
2354
+ Sequence: int;
2355
+ Name: string;
2356
+ Start: long;
2357
+ Count: int;
2358
+ Requested: int;
2359
+ Total: long;
2360
+ Result: base64Binary;
2361
+ Format: string;
2362
+ }
2363
+ interface WUResultSummary {
2364
+ Wuid: string;
2365
+ Sequence: int;
2366
+ }
2367
+ interface Result {
2368
+ Name: string;
2369
+ Sequence: int;
2370
+ Value: string;
2371
+ Link: string;
2372
+ FileName: string;
2373
+ IsSupplied: boolean;
2374
+ ShowFileContent: boolean;
2375
+ Total: long;
2376
+ ECLSchemas: ECLSchemas;
2377
+ XmlSchema: string;
2378
+ }
2379
+ interface WUResultSummaryResponse {
2380
+ Exceptions: Exceptions;
2381
+ Wuid: string;
2382
+ Sequence: int;
2383
+ Format: int;
2384
+ Result: {
2385
+ Name: string;
2386
+ Sequence: int;
2387
+ Value: string;
2388
+ Link: string;
2389
+ FileName: string;
2390
+ IsSupplied: boolean;
2391
+ ShowFileContent: boolean;
2392
+ Total: long;
2393
+ ECLSchemas: ECLSchemas;
2394
+ XmlSchema: string;
2395
+ };
2396
+ }
2397
+ interface WUResultView {
2398
+ Wuid: string;
2399
+ ViewName: string;
2400
+ Sequence: int;
2401
+ ResultName: string;
2402
+ }
2403
+ interface WUResultViewResponse {
2404
+ Exceptions: Exceptions;
2405
+ Wuid: string;
2406
+ ViewName: string;
2407
+ Result: string;
2408
+ }
2409
+ interface WURun {
2410
+ QuerySet: string;
2411
+ Query: string;
2412
+ Wuid: string;
2413
+ CloneWorkunit: boolean;
2414
+ Cluster: string;
2415
+ Wait: int;
2416
+ Input: string;
2417
+ NoRootTag: boolean;
2418
+ DebugValues: DebugValues;
2419
+ Variables: Variables;
2420
+ ApplicationValues: ApplicationValues;
2421
+ ExceptionSeverity: WUExceptionSeverity;
2422
+ }
2423
+ interface WURunResponse {
2424
+ Exceptions: Exceptions;
2425
+ Wuid: string;
2426
+ State: string;
2427
+ Results: string;
2428
+ }
2429
+ interface WUSchedule {
2430
+ Wuid: string;
2431
+ Cluster: string;
2432
+ Queue: string;
2433
+ Snapshot: string;
2434
+ When: dateTime;
2435
+ MaxRunTime: int;
2436
+ }
2437
+ interface WUScheduleResponse {
2438
+ Exceptions: Exceptions;
2439
+ }
2440
+ interface WUShowScheduled {
2441
+ Cluster: string;
2442
+ EventName: string;
2443
+ PushEventName: string;
2444
+ PushEventText: string;
2445
+ State: string;
2446
+ JobName: string;
2447
+ Owner: string;
2448
+ EventText: string;
2449
+ }
2450
+ interface WUShowScheduledResponse {
2451
+ Exceptions: Exceptions;
2452
+ ClusterSelected: int;
2453
+ EventName: string;
2454
+ PushEventName: string;
2455
+ PushEventText: string;
2456
+ Query: string;
2457
+ Clusters: Clusters;
2458
+ Workunits: Workunits;
2459
+ }
2460
+ interface WUSubmit {
2461
+ Wuid: string;
2462
+ Cluster: string;
2463
+ Queue: string;
2464
+ Snapshot: string;
2465
+ MaxRunTime: int;
2466
+ MaxCost: int;
2467
+ BlockTillFinishTimer: int;
2468
+ SyntaxCheck: boolean;
2469
+ NotifyCluster: boolean;
2470
+ }
2471
+ interface WUSubmitResponse {
2472
+ Exceptions: Exceptions;
2473
+ }
2474
+ interface WUSyntaxCheckECL {
2475
+ ECL: string;
2476
+ ModuleName: string;
2477
+ AttributeName: string;
2478
+ Queue: string;
2479
+ Cluster: string;
2480
+ Snapshot: string;
2481
+ TimeToWait: int;
2482
+ PersistWorkunit: boolean;
2483
+ DebugValues: DebugValues;
2484
+ }
2485
+ interface WUSyntaxCheckResponse {
2486
+ Exceptions: Exceptions;
2487
+ Errors: Errors;
2488
+ Message: string;
2489
+ }
2490
+ interface WUUpdate {
2491
+ Wuid: string;
2492
+ State: int;
2493
+ StateOrig: int;
2494
+ Jobname: string;
2495
+ JobnameOrig: string;
2496
+ QueryText: string;
2497
+ Action: int;
2498
+ Description: string;
2499
+ DescriptionOrig: string;
2500
+ AddDrilldownFields: boolean;
2501
+ ResultLimit: int;
2502
+ Protected: boolean;
2503
+ ProtectedOrig: boolean;
2504
+ PriorityClass: int;
2505
+ PriorityLevel: int;
2506
+ Scope: string;
2507
+ ScopeOrig: string;
2508
+ ClusterSelection: string;
2509
+ ClusterOrig: string;
2510
+ XmlParams: string;
2511
+ ThorSlaveIP: string;
2512
+ QueryMainDefinition: string;
2513
+ DebugValues: DebugValues;
2514
+ ApplicationValues: ApplicationValues;
2515
+ }
2516
+ interface WUUpdateQueryEntry {
2517
+ QuerySet: string;
2518
+ QueryId: string;
2519
+ Comment: string;
2520
+ }
2521
+ interface WUUpdateQueryEntryResponse {
2522
+ Exceptions: Exceptions;
2523
+ }
2524
+ interface WUWaitCompiled {
2525
+ Wuid: string;
2526
+ Wait: int;
2527
+ ReturnOnWait: boolean;
2528
+ }
2529
+ interface WUWaitResponse {
2530
+ Exceptions: Exceptions;
2531
+ StateID: int;
2532
+ }
2533
+ interface WUWaitComplete {
2534
+ Wuid: string;
2535
+ Wait: int;
2536
+ ReturnOnWait: boolean;
2537
+ }
2538
+ }
2539
+ export declare class WorkunitsServiceBase extends Service {
2540
+ constructor(optsConnection: IOptions | IConnection);
2541
+ GVCAjaxGraph(request: WsWorkunits.GVCAjaxGraph): Promise<WsWorkunits.GVCAjaxGraphResponse>;
2542
+ Ping(request: WsWorkunits.Ping): Promise<WsWorkunits.WsWorkunitsPingResponse>;
2543
+ WUAbort(request: WsWorkunits.WUAbort): Promise<WsWorkunits.WUAbortResponse>;
2544
+ WUAction(request: WsWorkunits.WUAction): Promise<WsWorkunits.WUActionResponse>;
2545
+ WUAddLocalFileToWorkunit(request: WsWorkunits.WUAddLocalFileToWorkunit): Promise<WsWorkunits.WUAddLocalFileToWorkunitResponse>;
2546
+ WUAnalyseHotspot(request: WsWorkunits.WUAnalyseHotspot): Promise<WsWorkunits.WUAnalyseHotspotResponse>;
2547
+ WUCDebug(request: WsWorkunits.WUCDebug): Promise<WsWorkunits.WUDebugResponse>;
2548
+ WUCheckFeatures(request: WsWorkunits.WUCheckFeatures): Promise<WsWorkunits.WUCheckFeaturesResponse>;
2549
+ WUClusterJobQueueLOG(request: WsWorkunits.WUClusterJobQueueLOG): Promise<WsWorkunits.WUClusterJobQueueLOGResponse>;
2550
+ WUClusterJobQueueXLS(request: WsWorkunits.WUClusterJobQueueXLS): Promise<WsWorkunits.WUClusterJobQueueXLSResponse>;
2551
+ WUClusterJobSummaryXLS(request: WsWorkunits.WUClusterJobSummaryXLS): Promise<WsWorkunits.WUClusterJobSummaryXLSResponse>;
2552
+ WUClusterJobXLS(request: WsWorkunits.WUClusterJobXLS): Promise<WsWorkunits.WUClusterJobXLSResponse>;
2553
+ WUCompileECL(request: WsWorkunits.WUCompileECL): Promise<WsWorkunits.WUCompileECLResponse>;
2554
+ WUCopyLogicalFiles(request: WsWorkunits.WUCopyLogicalFiles): Promise<WsWorkunits.WUCopyLogicalFilesResponse>;
2555
+ WUCopyQuerySet(request: WsWorkunits.WUCopyQuerySet): Promise<WsWorkunits.WUCopyQuerySetResponse>;
2556
+ WUCreate(request: WsWorkunits.WUCreate): Promise<WsWorkunits.WUCreateResponse>;
2557
+ WUCreateAndUpdate(request: WsWorkunits.WUCreateAndUpdate): Promise<WsWorkunits.WUUpdateResponse>;
2558
+ WUCreateZAPInfo(request: WsWorkunits.WUCreateZAPInfo): Promise<WsWorkunits.WUCreateZAPInfoResponse>;
2559
+ WUDelete(request: WsWorkunits.WUDelete): Promise<WsWorkunits.WUDeleteResponse>;
2560
+ WUDeployWorkunit(request: WsWorkunits.WUDeployWorkunit): Promise<WsWorkunits.WUDeployWorkunitResponse>;
2561
+ WUDetails(request: WsWorkunits.WUDetails): Promise<WsWorkunits.WUDetailsResponse>;
2562
+ WUDetailsMeta(request: WsWorkunits.WUDetailsMeta): Promise<WsWorkunits.WUDetailsMetaResponse>;
2563
+ WUEclDefinitionAction(request: WsWorkunits.WUEclDefinitionAction): Promise<WsWorkunits.WUEclDefinitionActionResponse>;
2564
+ WUExport(request: WsWorkunits.WUExport): Promise<WsWorkunits.WUExportResponse>;
2565
+ WUFile(request: WsWorkunits.WUFile): Promise<WsWorkunits.WULogFileResponse>;
2566
+ WUFullResult(request: WsWorkunits.WUFullResult): Promise<WsWorkunits.WUFullResultResponse>;
2567
+ WUGVCGraphInfo(request: WsWorkunits.WUGVCGraphInfo): Promise<WsWorkunits.WUGVCGraphInfoResponse>;
2568
+ WUGetArchiveFile(request: WsWorkunits.WUGetArchiveFile): Promise<WsWorkunits.WUGetArchiveFileResponse>;
2569
+ WUGetDependancyTrees(request: WsWorkunits.WUGetDependancyTrees): Promise<WsWorkunits.WUGetDependancyTreesResponse>;
2570
+ WUGetGraph(request: WsWorkunits.WUGetGraph): Promise<WsWorkunits.WUGetGraphResponse>;
2571
+ WUGetGraphNameAndTypes(request: WsWorkunits.WUGetGraphNameAndTypes): Promise<WsWorkunits.WUGetGraphNameAndTypesResponse>;
2572
+ WUGetNumFileToCopy(request: WsWorkunits.WUGetNumFileToCopy): Promise<WsWorkunits.WUGetNumFileToCopyResponse>;
2573
+ WUGetPlugins(request: WsWorkunits.WUGetPlugins): Promise<WsWorkunits.WUGetPluginsResponse>;
2574
+ WUGetStats(request: WsWorkunits.WUGetStats): Promise<WsWorkunits.WUGetStatsResponse>;
2575
+ WUGetThorJobList(request: WsWorkunits.WUGetThorJobList): Promise<WsWorkunits.WUGetThorJobListResponse>;
2576
+ WUGetThorJobQueue(request: WsWorkunits.WUGetThorJobQueue): Promise<WsWorkunits.WUGetThorJobQueueResponse>;
2577
+ WUGetZAPInfo(request: WsWorkunits.WUGetZAPInfo): Promise<WsWorkunits.WUGetZAPInfoResponse>;
2578
+ WUGraphInfo(request: WsWorkunits.WUGraphInfo): Promise<WsWorkunits.WUGraphInfoResponse>;
2579
+ WUGraphTiming(request: WsWorkunits.WUGraphTiming): Promise<WsWorkunits.WUGraphTimingResponse>;
2580
+ WUInfo(request: WsWorkunits.WUInfo): Promise<WsWorkunits.WUInfoResponse>;
2581
+ WUInfoDetails(request: WsWorkunits.WUInfoDetails): Promise<WsWorkunits.WUInfoResponse>;
2582
+ WUJobList(request: WsWorkunits.WUJobList): Promise<WsWorkunits.WUJobListResponse>;
2583
+ WULightWeightQuery(request: WsWorkunits.WULightWeightQuery): Promise<WsWorkunits.WULightWeightQueryResponse>;
2584
+ WUListArchiveFiles(request: WsWorkunits.WUListArchiveFiles): Promise<WsWorkunits.WUListArchiveFilesResponse>;
2585
+ WUListLocalFileRequired(request: WsWorkunits.WUListLocalFileRequired): Promise<WsWorkunits.WUListLocalFileRequiredResponse>;
2586
+ WUListQueries(request: WsWorkunits.WUListQueries): Promise<WsWorkunits.WUListQueriesResponse>;
2587
+ WUListQueriesUsingFile(request: WsWorkunits.WUListQueriesUsingFile): Promise<WsWorkunits.WUListQueriesUsingFileResponse>;
2588
+ WUMultiQuerysetDetails(request: WsWorkunits.WUMultiQuerysetDetails): Promise<WsWorkunits.WUMultiQuerySetDetailsResponse>;
2589
+ WUProcessGraph(request: WsWorkunits.WUProcessGraph): Promise<WsWorkunits.WUProcessGraphResponse>;
2590
+ WUProtect(request: WsWorkunits.WUProtect): Promise<WsWorkunits.WUProtectResponse>;
2591
+ WUPublishWorkunit(request: WsWorkunits.WUPublishWorkunit): Promise<WsWorkunits.WUPublishWorkunitResponse>;
2592
+ WUPushEvent(request: WsWorkunits.WUPushEvent): Promise<WsWorkunits.WUPushEventResponse>;
2593
+ WUQuery(request: WsWorkunits.WUQuery): Promise<WsWorkunits.WUQueryResponse>;
2594
+ WUQueryConfig(request: WsWorkunits.WUQueryConfig): Promise<WsWorkunits.WUQueryConfigResponse>;
2595
+ WUQueryDetails(request: WsWorkunits.WUQueryDetails): Promise<WsWorkunits.WUQueryDetailsResponse>;
2596
+ WUQueryDetailsLightWeight(request: WsWorkunits.WUQueryDetailsLightWeight): Promise<WsWorkunits.WUQueryDetailsResponse>;
2597
+ WUQueryFiles(request: WsWorkunits.WUQueryFiles): Promise<WsWorkunits.WUQueryFilesResponse>;
2598
+ WUQueryGetGraph(request: WsWorkunits.WUQueryGetGraph): Promise<WsWorkunits.WUQueryGetGraphResponse>;
2599
+ WUQueryGetSummaryStats(request: WsWorkunits.WUQueryGetSummaryStats): Promise<WsWorkunits.WUQueryGetSummaryStatsResponse>;
2600
+ WUQuerysetAliasAction(request: WsWorkunits.WUQuerysetAliasAction): Promise<WsWorkunits.WUQuerySetAliasActionResponse>;
2601
+ WUQuerysetCopyQuery(request: WsWorkunits.WUQuerysetCopyQuery): Promise<WsWorkunits.WUQuerySetCopyQueryResponse>;
2602
+ WUQuerysetDetails(request: WsWorkunits.WUQuerysetDetails): Promise<WsWorkunits.WUQuerySetDetailsResponse>;
2603
+ WUQuerysetExport(request: WsWorkunits.WUQuerysetExport): Promise<WsWorkunits.WUQuerysetExportResponse>;
2604
+ WUQuerysetImport(request: WsWorkunits.WUQuerysetImport): Promise<WsWorkunits.WUQuerysetImportResponse>;
2605
+ WUQuerysetQueryAction(request: WsWorkunits.WUQuerysetQueryAction): Promise<WsWorkunits.WUQuerySetQueryActionResponse>;
2606
+ WUQuerysets(request: WsWorkunits.WUQuerysets): Promise<WsWorkunits.WUQuerysetsResponse>;
2607
+ WURecreateQuery(request: WsWorkunits.WURecreateQuery): Promise<WsWorkunits.WURecreateQueryResponse>;
2608
+ WUResubmit(request: WsWorkunits.WUResubmit): Promise<WsWorkunits.WUResubmitResponse>;
2609
+ WUResult(request: WsWorkunits.WUResult): Promise<WsWorkunits.WUResultResponse>;
2610
+ WUResultBin(request: WsWorkunits.WUResultBin): Promise<WsWorkunits.WUResultBinResponse>;
2611
+ WUResultSummary(request: WsWorkunits.WUResultSummary): Promise<WsWorkunits.WUResultSummaryResponse>;
2612
+ WUResultView(request: WsWorkunits.WUResultView): Promise<WsWorkunits.WUResultViewResponse>;
2613
+ WURun(request: WsWorkunits.WURun): Promise<WsWorkunits.WURunResponse>;
2614
+ WUSchedule(request: WsWorkunits.WUSchedule): Promise<WsWorkunits.WUScheduleResponse>;
2615
+ WUShowScheduled(request: WsWorkunits.WUShowScheduled): Promise<WsWorkunits.WUShowScheduledResponse>;
2616
+ WUSubmit(request: WsWorkunits.WUSubmit): Promise<WsWorkunits.WUSubmitResponse>;
2617
+ WUSyntaxCheckECL(request: WsWorkunits.WUSyntaxCheckECL): Promise<WsWorkunits.WUSyntaxCheckResponse>;
2618
+ WUUpdate(request: WsWorkunits.WUUpdate): Promise<WsWorkunits.WUUpdateResponse>;
2619
+ WUUpdateQueryEntry(request: WsWorkunits.WUUpdateQueryEntry): Promise<WsWorkunits.WUUpdateQueryEntryResponse>;
2620
+ WUWaitCompiled(request: WsWorkunits.WUWaitCompiled): Promise<WsWorkunits.WUWaitResponse>;
2621
+ WUWaitComplete(request: WsWorkunits.WUWaitComplete): Promise<WsWorkunits.WUWaitResponse>;
2622
+ }
2623
+ //# sourceMappingURL=WsWorkunits.d.ts.map