@hpcc-js/comms 2.73.4 → 2.75.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.es6.js +161 -26
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +160 -24
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist/index.node.js +160 -25
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.min.js +1 -1
- package/dist/index.node.min.js.map +1 -1
- package/lib-es6/__package__.js +2 -2
- package/lib-es6/__tests__/https.js +2 -2
- package/lib-es6/__tests__/https.js.map +1 -1
- package/lib-es6/__tests__/workunit.js +1 -1
- package/lib-es6/__tests__/workunit.js.map +1 -1
- package/lib-es6/clienttools/eclcc.js +0 -1
- package/lib-es6/clienttools/eclcc.js.map +1 -1
- package/lib-es6/ecl/graph.js +5 -5
- package/lib-es6/ecl/graph.js.map +1 -1
- package/lib-es6/ecl/logicalFile.js +7 -2
- package/lib-es6/ecl/logicalFile.js.map +1 -1
- package/lib-es6/ecl/targetCluster.js +1 -1
- package/lib-es6/ecl/targetCluster.js.map +1 -1
- package/lib-es6/services/wsDFU.js +5 -16
- package/lib-es6/services/wsDFU.js.map +1 -1
- package/lib-es6/services/wsDali.js +11 -0
- package/lib-es6/services/wsDali.js.map +1 -0
- package/lib-es6/services/wsMachine.js +6 -2
- package/lib-es6/services/wsMachine.js.map +1 -1
- package/lib-es6/services/wsdl/WsDali/v1.04/WsDali.js +68 -0
- package/lib-es6/services/wsdl/WsDali/v1.04/WsDali.js.map +1 -0
- package/lib-es6/services/wsdl/WsDfu/v1.62/WsDfu.js +142 -0
- package/lib-es6/services/wsdl/WsDfu/v1.62/WsDfu.js.map +1 -0
- package/package.json +6 -5
- package/src/__package__.ts +2 -2
- package/src/__tests__/https.ts +2 -2
- package/src/__tests__/workunit.ts +1 -1
- package/src/clienttools/eclcc.ts +0 -1
- package/src/ecl/graph.ts +5 -5
- package/src/ecl/logicalFile.ts +7 -6
- package/src/ecl/targetCluster.ts +1 -1
- package/src/services/wsDFU.ts +11 -2839
- package/src/services/wsDali.ts +8 -0
- package/src/services/wsMachine.ts +5 -2
- package/src/services/wsdl/WsDali/v1.04/WsDali.ts +213 -0
- package/src/services/wsdl/WsDfu/v1.62/WsDfu.ts +1455 -0
- package/types/__package__.d.ts +2 -2
- package/types/clienttools/eclcc.d.ts.map +1 -1
- package/types/ecl/logicalFile.d.ts +7 -6
- package/types/ecl/logicalFile.d.ts.map +1 -1
- package/types/services/wsDFU.d.ts +3 -2463
- package/types/services/wsDFU.d.ts.map +1 -1
- package/types/services/wsDali.d.ts +5 -0
- package/types/services/wsDali.d.ts.map +1 -0
- package/types/services/wsMachine.d.ts +1 -1
- package/types/services/wsMachine.d.ts.map +1 -1
- package/types/services/wsdl/WsDali/v1.04/WsDali.d.ts +122 -0
- package/types/services/wsdl/WsDali/v1.04/WsDali.d.ts.map +1 -0
- package/types/services/wsdl/WsDfu/v1.62/WsDfu.d.ts +1224 -0
- package/types/services/wsdl/WsDfu/v1.62/WsDfu.d.ts.map +1 -0
- package/types-3.4/__package__.d.ts +2 -2
- package/types-3.4/ecl/logicalFile.d.ts +7 -6
- package/types-3.4/services/wsDFU.d.ts +3 -2463
- package/types-3.4/services/wsDali.d.ts +5 -0
- package/types-3.4/services/wsMachine.d.ts +1 -1
- package/types-3.4/services/wsdl/WsDali/v1.04/WsDali.d.ts +122 -0
- package/types-3.4/services/wsdl/WsDfu/v1.62/WsDfu.d.ts +1224 -0
|
@@ -24,6 +24,6 @@ export declare namespace WsMachineEx {
|
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
26
|
export declare class MachineService extends MachineServiceBase {
|
|
27
|
-
GetTargetClusterUsageEx(
|
|
27
|
+
GetTargetClusterUsageEx(targetClusters?: string[], bypassCachedResult?: boolean): Promise<WsMachineEx.TargetClusterUsage[]>;
|
|
28
28
|
}
|
|
29
29
|
//# sourceMappingURL=wsMachine.d.ts.map
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
import { IConnection, IOptions } from "../../../../connection";
|
|
2
|
+
import { Service } from "../../../../espConnection";
|
|
3
|
+
declare type unsignedInt = number;
|
|
4
|
+
export declare namespace WsDali {
|
|
5
|
+
interface AddRequest {
|
|
6
|
+
Path?: string;
|
|
7
|
+
Value?: string;
|
|
8
|
+
}
|
|
9
|
+
interface Exception {
|
|
10
|
+
Code: string;
|
|
11
|
+
Audience: string;
|
|
12
|
+
Source: string;
|
|
13
|
+
Message: string;
|
|
14
|
+
}
|
|
15
|
+
interface Exceptions {
|
|
16
|
+
Source: string;
|
|
17
|
+
Exception: Exception[];
|
|
18
|
+
}
|
|
19
|
+
interface ResultResponse {
|
|
20
|
+
Exceptions: Exceptions;
|
|
21
|
+
Result: string;
|
|
22
|
+
}
|
|
23
|
+
interface CountRequest {
|
|
24
|
+
Path?: string;
|
|
25
|
+
}
|
|
26
|
+
interface CountResponse {
|
|
27
|
+
Exceptions: Exceptions;
|
|
28
|
+
Result: unsignedInt;
|
|
29
|
+
}
|
|
30
|
+
interface DFSCheckRequest {
|
|
31
|
+
}
|
|
32
|
+
interface DFSExistsRequest {
|
|
33
|
+
FileName?: string;
|
|
34
|
+
}
|
|
35
|
+
interface BooleanResponse {
|
|
36
|
+
Exceptions: Exceptions;
|
|
37
|
+
Result: boolean;
|
|
38
|
+
}
|
|
39
|
+
interface DFSLSRequest {
|
|
40
|
+
Name?: string;
|
|
41
|
+
PathAndNameOnly?: boolean;
|
|
42
|
+
IncludeSubFileInfo?: boolean;
|
|
43
|
+
Recursively?: boolean;
|
|
44
|
+
}
|
|
45
|
+
interface DeleteRequest {
|
|
46
|
+
Path?: string;
|
|
47
|
+
}
|
|
48
|
+
interface GetDFSCSVRequest {
|
|
49
|
+
LogicalNameMask?: string;
|
|
50
|
+
}
|
|
51
|
+
interface GetDFSMapRequest {
|
|
52
|
+
FileName?: string;
|
|
53
|
+
}
|
|
54
|
+
interface GetDFSParentsRequest {
|
|
55
|
+
FileName?: string;
|
|
56
|
+
}
|
|
57
|
+
interface GetLogicalFileRequest {
|
|
58
|
+
FileName?: string;
|
|
59
|
+
}
|
|
60
|
+
interface GetLogicalFilePartRequest {
|
|
61
|
+
FileName?: string;
|
|
62
|
+
PartNumber?: unsignedInt;
|
|
63
|
+
}
|
|
64
|
+
interface GetProtectedListRequest {
|
|
65
|
+
FileName?: string;
|
|
66
|
+
CallerId?: string;
|
|
67
|
+
}
|
|
68
|
+
interface GetValueRequest {
|
|
69
|
+
Path?: string;
|
|
70
|
+
}
|
|
71
|
+
interface ImportRequest {
|
|
72
|
+
XML?: string;
|
|
73
|
+
Path?: string;
|
|
74
|
+
Add?: boolean;
|
|
75
|
+
}
|
|
76
|
+
interface WsDaliPingRequest {
|
|
77
|
+
}
|
|
78
|
+
interface WsDaliPingResponse {
|
|
79
|
+
}
|
|
80
|
+
interface SetLogicalFilePartAttrRequest {
|
|
81
|
+
FileName?: string;
|
|
82
|
+
PartNumber?: unsignedInt;
|
|
83
|
+
Attr?: string;
|
|
84
|
+
Value?: string;
|
|
85
|
+
}
|
|
86
|
+
interface SetProtectedRequest {
|
|
87
|
+
FileName?: string;
|
|
88
|
+
CallerId?: string;
|
|
89
|
+
}
|
|
90
|
+
interface SetUnprotectedRequest {
|
|
91
|
+
FileName?: string;
|
|
92
|
+
CallerId?: string;
|
|
93
|
+
}
|
|
94
|
+
interface SetValueRequest {
|
|
95
|
+
Path?: string;
|
|
96
|
+
Value?: string;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
export declare class DaliServiceBase extends Service {
|
|
100
|
+
constructor(optsConnection: IOptions | IConnection);
|
|
101
|
+
Add(request: WsDali.AddRequest): Promise<WsDali.ResultResponse>;
|
|
102
|
+
Count(request: WsDali.CountRequest): Promise<WsDali.CountResponse>;
|
|
103
|
+
DFSCheck(request: WsDali.DFSCheckRequest): Promise<WsDali.ResultResponse>;
|
|
104
|
+
DFSExists(request: WsDali.DFSExistsRequest): Promise<WsDali.BooleanResponse>;
|
|
105
|
+
DFSLS(request: WsDali.DFSLSRequest): Promise<WsDali.ResultResponse>;
|
|
106
|
+
Delete(request: WsDali.DeleteRequest): Promise<WsDali.ResultResponse>;
|
|
107
|
+
GetDFSCSV(request: WsDali.GetDFSCSVRequest): Promise<WsDali.ResultResponse>;
|
|
108
|
+
GetDFSMap(request: WsDali.GetDFSMapRequest): Promise<WsDali.ResultResponse>;
|
|
109
|
+
GetDFSParents(request: WsDali.GetDFSParentsRequest): Promise<WsDali.ResultResponse>;
|
|
110
|
+
GetLogicalFile(request: WsDali.GetLogicalFileRequest): Promise<WsDali.ResultResponse>;
|
|
111
|
+
GetLogicalFilePart(request: WsDali.GetLogicalFilePartRequest): Promise<WsDali.ResultResponse>;
|
|
112
|
+
GetProtectedList(request: WsDali.GetProtectedListRequest): Promise<WsDali.ResultResponse>;
|
|
113
|
+
GetValue(request: WsDali.GetValueRequest): Promise<WsDali.ResultResponse>;
|
|
114
|
+
Import(request: WsDali.ImportRequest): Promise<WsDali.ResultResponse>;
|
|
115
|
+
Ping(request: WsDali.WsDaliPingRequest): Promise<WsDali.WsDaliPingResponse>;
|
|
116
|
+
SetLogicalFilePartAttr(request: WsDali.SetLogicalFilePartAttrRequest): Promise<WsDali.ResultResponse>;
|
|
117
|
+
SetProtected(request: WsDali.SetProtectedRequest): Promise<WsDali.ResultResponse>;
|
|
118
|
+
SetUnprotected(request: WsDali.SetUnprotectedRequest): Promise<WsDali.ResultResponse>;
|
|
119
|
+
SetValue(request: WsDali.SetValueRequest): Promise<WsDali.ResultResponse>;
|
|
120
|
+
}
|
|
121
|
+
export {};
|
|
122
|
+
//# sourceMappingURL=WsDali.d.ts.map
|