@hpcc-js/comms 3.15.8 → 3.16.1

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.
@@ -58,6 +58,7 @@ export declare class DFUWorkunit extends StateObject<UDFUWorkunitState, IDFUWork
58
58
  get TimeStarted(): string;
59
59
  get TimeStopped(): string;
60
60
  get StateMessage(): string;
61
+ get StateReason(): string;
61
62
  get MonitorEventName(): string;
62
63
  get MonitorSub(): boolean;
63
64
  get MonitorShotLimit(): number;
@@ -156,6 +156,7 @@ export declare class Workunit extends StateObject<UWorkunitState, IWorkunitState
156
156
  get Scope(): string;
157
157
  get AbortBy(): string;
158
158
  get AbortTime(): string;
159
+ get AbortReason(): string;
159
160
  get Workflows(): WsWorkunits.Workflows;
160
161
  get TimingData(): WsWorkunits.TimingData;
161
162
  get HelpersDesc(): string;
@@ -175,6 +176,7 @@ export declare class Workunit extends StateObject<UWorkunitState, IWorkunitState
175
176
  get ECLWUProcessList(): WsWorkunits.ECLWUProcessList;
176
177
  get CostSavingPotential(): number;
177
178
  get FailureDesc(): string;
179
+ get FileSummaries(): WsWorkunits.FileSummaries;
178
180
  static create(optsConnection: IOptions | IConnection): Promise<Workunit>;
179
181
  static attach(optsConnection: IOptions | IConnection, wuid: string, state?: IWorkunitState): Workunit;
180
182
  static existsLocal(baseUrl: string, wuid: string): boolean;
@@ -1,5 +1,5 @@
1
1
  import { XMLNode } from "@hpcc-js/util";
2
- import { WsWorkunits, WorkunitsServiceBase } from "./wsdl/WsWorkunits/v2.08/WsWorkunits.ts";
2
+ import { WsWorkunits, WorkunitsServiceBase } from "./wsdl/WsWorkunits/v2.10/WsWorkunits.ts";
3
3
  import { IConnection, IOptions } from "../connection.ts";
4
4
  export { WsWorkunits };
5
5
  export declare enum WUStateID {
@@ -127,6 +127,7 @@ export declare namespace FileSpray {
127
127
  TimeStarted?: string;
128
128
  TimeStopped?: string;
129
129
  StateMessage?: string;
130
+ StateReason?: string;
130
131
  MonitorEventName?: string;
131
132
  MonitorSub?: boolean;
132
133
  MonitorShotLimit?: int;
@@ -440,6 +441,7 @@ export declare namespace FileSpray {
440
441
  TimeStarted?: string;
441
442
  TimeStopped?: string;
442
443
  StateMessage?: string;
444
+ StateReason?: string;
443
445
  MonitorEventName?: string;
444
446
  MonitorSub?: boolean;
445
447
  MonitorShotLimit?: int;
@@ -685,6 +687,7 @@ export declare namespace FileSpray {
685
687
  TimeStarted?: string;
686
688
  TimeStopped?: string;
687
689
  StateMessage?: string;
690
+ StateReason?: string;
688
691
  MonitorEventName?: string;
689
692
  MonitorSub?: boolean;
690
693
  MonitorShotLimit?: int;
@@ -70,6 +70,26 @@ export declare namespace WsWorkunits {
70
70
  error = "error",
71
71
  alert = "alert"
72
72
  }
73
+ enum WUFileDownloadOption {
74
+ OriginalText = 0,
75
+ Attachment = 1,
76
+ ZIP = 2,
77
+ GZIP = 3
78
+ }
79
+ enum WUFileType {
80
+ XML = "XML",
81
+ cpp = "cpp",
82
+ dll = "dll",
83
+ res = "res",
84
+ log = "log",
85
+ WUECL = "WUECL",
86
+ ThorLog = "ThorLog",
87
+ ThorSlaveLog = "ThorSlaveLog",
88
+ EclAgentLog = "EclAgentLog",
89
+ ArchiveQuery = "ArchiveQuery",
90
+ ComponentLog = "ComponentLog",
91
+ PostMortem = "PostMortem"
92
+ }
73
93
  enum WUQueryFilterSuspendedType {
74
94
  Allqueries = "All queries",
75
95
  Notsuspended = "Not suspended",
@@ -136,6 +156,7 @@ export declare namespace WsWorkunits {
136
156
  interface WUAbort {
137
157
  Wuids?: Wuids;
138
158
  BlockTillFinishTimer?: int;
159
+ AbortReason?: string;
139
160
  }
140
161
  interface Exception {
141
162
  Code?: string;
@@ -178,6 +199,7 @@ export declare namespace WsWorkunits {
178
199
  EventName?: string;
179
200
  PageFrom?: string;
180
201
  BlockTillFinishTimer?: int;
202
+ AbortReason?: string;
181
203
  }
182
204
  interface WUActionResponse {
183
205
  Exceptions?: Exceptions;
@@ -445,6 +467,7 @@ export declare namespace WsWorkunits {
445
467
  RemoteStorage?: string;
446
468
  KeyCompression?: string;
447
469
  DfuTargetPlane?: string;
470
+ Activate?: WUQueryActivationMode;
448
471
  }
449
472
  interface CopiedQueries {
450
473
  QueryId?: string[];
@@ -634,6 +657,15 @@ export declare namespace WsWorkunits {
634
657
  interface ECLWUProcessList {
635
658
  ECLWUProcess?: ECLWUProcess[];
636
659
  }
660
+ interface ECLWUFileSummary {
661
+ Name?: string;
662
+ Type?: string;
663
+ IsOpt?: boolean;
664
+ IsSigned?: boolean;
665
+ }
666
+ interface FileSummaries {
667
+ ECLWUFileSummary?: ECLWUFileSummary[];
668
+ }
637
669
  interface Workunit {
638
670
  Wuid?: string;
639
671
  Owner?: string;
@@ -662,6 +694,7 @@ export declare namespace WsWorkunits {
662
694
  TotalClusterTime?: string;
663
695
  AbortBy?: string;
664
696
  AbortTime?: string;
697
+ AbortReason?: string;
665
698
  Query?: Query;
666
699
  Helpers?: Helpers;
667
700
  Exceptions?: Exceptions2;
@@ -714,6 +747,7 @@ export declare namespace WsWorkunits {
714
747
  NoAccess?: boolean;
715
748
  ECLWUProcessList?: ECLWUProcessList;
716
749
  FailureDesc?: string;
750
+ FileSummaries?: FileSummaries;
717
751
  }
718
752
  interface WUCreateResponse {
719
753
  Exceptions?: Exceptions;
@@ -1283,6 +1317,35 @@ export declare namespace WsWorkunits {
1283
1317
  Exceptions?: Exceptions;
1284
1318
  Workunit?: Workunit;
1285
1319
  }
1320
+ interface WUFileOption {
1321
+ FileType?: WUFileType;
1322
+ Name?: string;
1323
+ IPAddress?: string;
1324
+ Description?: string;
1325
+ Process?: string;
1326
+ LogDate?: string;
1327
+ ClusterGroup?: string;
1328
+ PlainText?: string;
1329
+ SlaveNumber?: int;
1330
+ SizeLimit?: long;
1331
+ MaxLogRecords?: unsignedInt;
1332
+ LogSelectColumnMode?: LogSelectColumnMode;
1333
+ LogFormat?: LogAccessLogFormat;
1334
+ LogSearchTimeBuffSecs?: unsignedInt;
1335
+ LogColumns?: LogColumns;
1336
+ }
1337
+ interface WUFileOptions {
1338
+ WUFileOption?: WUFileOption[];
1339
+ }
1340
+ interface WUHelperFileArchive {
1341
+ Wuid?: string;
1342
+ DownloadOption?: WUFileDownloadOption;
1343
+ WUFileOptions?: WUFileOptions;
1344
+ }
1345
+ interface WUHelperFileArchiveResponse {
1346
+ Exceptions?: Exceptions;
1347
+ thefile?: base64Binary;
1348
+ }
1286
1349
  interface WUInfo {
1287
1350
  Wuid?: string;
1288
1351
  TruncateEclTo64k?: boolean;
@@ -1305,6 +1368,7 @@ export declare namespace WsWorkunits {
1305
1368
  IncludeTotalClusterTime?: boolean;
1306
1369
  IncludeServiceNames?: boolean;
1307
1370
  IncludeProcesses?: boolean;
1371
+ IncludeFileSummaries?: boolean;
1308
1372
  SuppressResultSchemas?: boolean;
1309
1373
  ThorSlaveIP?: string;
1310
1374
  }
@@ -1342,6 +1406,7 @@ export declare namespace WsWorkunits {
1342
1406
  IncludeTotalClusterTime?: boolean;
1343
1407
  IncludeServiceNames?: boolean;
1344
1408
  IncludeProcesses?: boolean;
1409
+ IncludeFileSummaries?: boolean;
1345
1410
  SuppressResultSchemas?: boolean;
1346
1411
  ThorSlaveIP?: string;
1347
1412
  }
@@ -1676,6 +1741,7 @@ export declare namespace WsWorkunits {
1676
1741
  MinimumExecuteCost?: double;
1677
1742
  MinimumFileAccessCost?: double;
1678
1743
  MinimumCompileCost?: double;
1744
+ ErrorContents?: string;
1679
1745
  Sortby?: string;
1680
1746
  Descending?: boolean;
1681
1747
  CacheHint?: long;
@@ -1708,6 +1774,7 @@ export declare namespace WsWorkunits {
1708
1774
  TotalClusterTime?: string;
1709
1775
  AbortBy?: string;
1710
1776
  AbortTime?: string;
1777
+ AbortReason?: string;
1711
1778
  Query?: Query;
1712
1779
  Helpers?: Helpers;
1713
1780
  Exceptions?: Exceptions2;
@@ -1760,6 +1827,7 @@ export declare namespace WsWorkunits {
1760
1827
  NoAccess?: boolean;
1761
1828
  ECLWUProcessList?: ECLWUProcessList;
1762
1829
  FailureDesc?: string;
1830
+ FileSummaries?: FileSummaries;
1763
1831
  }
1764
1832
  interface Workunits2 {
1765
1833
  ECLWorkunit?: ECLWorkunit[];
@@ -2528,6 +2596,7 @@ export declare class WorkunitsServiceBase extends Service {
2528
2596
  WUGetZAPInfo(request: WsWorkunits.WUGetZAPInfo, abortSignal?: AbortSignal): Promise<WsWorkunits.WUGetZAPInfoResponse>;
2529
2597
  WUGraphInfo(request: WsWorkunits.WUGraphInfo, abortSignal?: AbortSignal): Promise<WsWorkunits.WUGraphInfoResponse>;
2530
2598
  WUGraphTiming(request: WsWorkunits.WUGraphTiming, abortSignal?: AbortSignal): Promise<WsWorkunits.WUGraphTimingResponse>;
2599
+ WUHelperFileArchive(request: WsWorkunits.WUHelperFileArchive, abortSignal?: AbortSignal): Promise<WsWorkunits.WUHelperFileArchiveResponse>;
2531
2600
  WUInfo(request: WsWorkunits.WUInfo, abortSignal?: AbortSignal): Promise<WsWorkunits.WUInfoResponse>;
2532
2601
  WUInfoDetails(request: WsWorkunits.WUInfoDetails, abortSignal?: AbortSignal): Promise<WsWorkunits.WUInfoResponse>;
2533
2602
  WUJobList(request: WsWorkunits.WUJobList, abortSignal?: AbortSignal): Promise<WsWorkunits.WUJobListResponse>;