@hpcc-js/comms 3.15.6 → 3.15.7

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