@hpcc-js/comms 2.102.2 → 2.102.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +43 -43
- package/README.md +50 -50
- package/dist/index.es6.js +2 -2
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +2 -2
- 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 +2 -2
- 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/package.json +4 -4
- package/src/__package__.ts +3 -3
- package/src/__tests__/dfuXRef.ts +22 -22
- package/src/__tests__/https.ts +69 -69
- package/src/__tests__/workunit.ts +35 -35
- package/src/clienttools/eclMeta.ts +506 -506
- package/src/clienttools/eclcc.ts +628 -628
- package/src/connection.ts +295 -295
- package/src/ecl/activity.ts +82 -82
- package/src/ecl/dfuWorkunit.ts +363 -363
- package/src/ecl/graph.ts +196 -196
- package/src/ecl/logicalFile.ts +195 -195
- package/src/ecl/machine.ts +63 -63
- package/src/ecl/query.ts +252 -252
- package/src/ecl/queryGraph.ts +813 -813
- package/src/ecl/resource.ts +39 -39
- package/src/ecl/result.ts +236 -236
- package/src/ecl/scope.ts +192 -192
- package/src/ecl/sourceFile.ts +34 -34
- package/src/ecl/store.ts +154 -154
- package/src/ecl/targetCluster.ts +149 -149
- package/src/ecl/timer.ts +42 -42
- package/src/ecl/topology.ts +131 -131
- package/src/ecl/workunit.ts +1314 -1314
- package/src/ecl/xsdParser.ts +268 -268
- package/src/espConnection.ts +172 -172
- package/src/index-common.ts +41 -41
- package/src/index.node.ts +68 -68
- package/src/index.ts +3 -3
- package/src/pem/trustwave.ts +909 -909
- package/src/services/fileSpray.ts +48 -48
- package/src/services/wsAccess.ts +8 -8
- package/src/services/wsAccount.ts +27 -27
- package/src/services/wsCloud.ts +73 -73
- package/src/services/wsCodesign.ts +94 -94
- package/src/services/wsDFU.ts +34 -34
- package/src/services/wsDFUXRef.ts +308 -308
- package/src/services/wsDali.ts +40 -40
- package/src/services/wsEcl.ts +123 -123
- package/src/services/wsElk.ts +8 -8
- package/src/services/wsLogaccess.ts +263 -263
- package/src/services/wsMachine.ts +89 -89
- package/src/services/wsPackageProcess.ts +8 -8
- package/src/services/wsResources.ts +8 -8
- package/src/services/wsSMC.ts +24 -24
- package/src/services/wsSasha.ts +7 -7
- package/src/services/wsStore.ts +230 -230
- package/src/services/wsTopology.ts +45 -45
- package/src/services/wsWorkunits.ts +160 -160
- package/src/services/wsdl/FileSpray/v1.23/FileSpray.ts +1008 -1008
- package/src/services/wsdl/FileSpray/v1.25/FileSpray.ts +1040 -1040
- package/src/services/wsdl/FileSpray/v1.26/FileSpray.ts +929 -929
- package/src/services/wsdl/WsCloud/v1/WsCloud.ts +38 -38
- package/src/services/wsdl/WsCloud/v1.02/WsCloud.ts +77 -77
- package/src/services/wsdl/WsDFUXRef/v1.02/WsDFUXRef.ts +224 -224
- package/src/services/wsdl/WsDali/v1.04/WsDali.ts +216 -216
- package/src/services/wsdl/WsDfu/v1.62/WsDfu.ts +1455 -1455
- package/src/services/wsdl/WsDfu/v1.63/WsDfu.ts +1465 -1465
- package/src/services/wsdl/WsDfu/v1.65/WsDfu.ts +1244 -1244
- package/src/services/wsdl/WsFileIO/v1.01/WsFileIO.ts +107 -107
- package/src/services/wsdl/WsPackageProcess/v1.04/WsPackageProcess.ts +519 -519
- package/src/services/wsdl/WsResources/v1.01/WsResources.ts +119 -119
- package/src/services/wsdl/WsSMC/v1.24/WsSMC.ts +665 -665
- package/src/services/wsdl/WsSMC/v1.27/WsSMC.ts +670 -670
- package/src/services/wsdl/WsTopology/v1.31/WsTopology.ts +856 -856
- package/src/services/wsdl/WsTopology/v1.32/WsTopology.ts +885 -885
- package/src/services/wsdl/WsWorkunits/v1.88/WsWorkunits.ts +2944 -2944
- package/src/services/wsdl/WsWorkunits/v1.94/WsWorkunits.ts +3072 -3072
- package/src/services/wsdl/WsWorkunits/v1.95/WsWorkunits.ts +3073 -3073
- package/src/services/wsdl/WsWorkunits/v1.97/WsWorkunits.ts +3134 -3134
- package/src/services/wsdl/WsWorkunits/v1.98/WsWorkunits.ts +3182 -3182
- package/src/services/wsdl/WsWorkunits/v1.99/WsWorkunits.ts +3162 -3162
- package/src/services/wsdl/WsWorkunits/v2/WsWorkunits.ts +3153 -3153
- package/src/services/wsdl/WsWorkunits/v2.02/WsWorkunits.ts +3157 -3157
- package/src/services/wsdl/ws_access/v1.16/ws_access.ts +1086 -1086
- package/src/services/wsdl/ws_access/v1.17/ws_access.ts +1023 -1023
- package/src/services/wsdl/ws_account/v1.05/ws_account.ts +111 -111
- package/src/services/wsdl/ws_account/v1.06/ws_account.ts +109 -109
- package/src/services/wsdl/ws_codesign/v1.1/ws_codesign.ts +100 -100
- package/src/services/wsdl/ws_elk/v1/ws_elk.ts +47 -47
- package/src/services/wsdl/ws_logaccess/v1/ws_logaccess.ts +83 -83
- package/src/services/wsdl/ws_logaccess/v1.02/ws_logaccess.ts +161 -161
- package/src/services/wsdl/ws_logaccess/v1.03/ws_logaccess.ts +190 -190
- package/src/services/wsdl/ws_logaccess/v1.04/ws_logaccess.ts +215 -215
- package/src/services/wsdl/ws_logaccess/v1.05/ws_logaccess.ts +219 -219
- package/src/services/wsdl/ws_logaccess/v1.08/ws_logaccess.ts +267 -267
- package/src/services/wsdl/ws_machine/v1.17/ws_machine.ts +567 -567
- package/src/services/wsdl/wsstore/v1.02/wsstore.ts +250 -250
- package/types/__package__.d.ts +2 -2
- package/types-3.4/__package__.d.ts +2 -2
|
@@ -1,308 +1,308 @@
|
|
|
1
|
-
import { IConnection, IOptions } from "../connection";
|
|
2
|
-
import { Service } from "../espConnection";
|
|
3
|
-
|
|
4
|
-
/*
|
|
5
|
-
Response structures generated via:
|
|
6
|
-
* http://localhost:8010/WsDFUXRef/?ver_=1.01&reqjson_
|
|
7
|
-
* http://localhost:8010/WsDFUXRef/?ver_=1.01&respjson_
|
|
8
|
-
* http://json2ts.com/
|
|
9
|
-
*/
|
|
10
|
-
|
|
11
|
-
export namespace WsDFUXRef {
|
|
12
|
-
|
|
13
|
-
export interface XRefFiles {
|
|
14
|
-
Item: string[];
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
export interface DFUXRefArrayActionRequest {
|
|
18
|
-
Type: string;
|
|
19
|
-
Cluster: string;
|
|
20
|
-
Action: string;
|
|
21
|
-
XRefFiles: XRefFiles;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
export interface DFUXRefBuildRequest {
|
|
25
|
-
Cluster: string;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
export interface DFUXRefBuildCancelRequest {
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
export interface DFUXRefCleanDirectoriesRequest {
|
|
32
|
-
Cluster: string;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
export interface DFUXRefDirectoriesQueryRequest {
|
|
36
|
-
Cluster: string;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
export interface DFUXRefFoundFilesQueryRequest {
|
|
40
|
-
Cluster: string;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
export interface DFUXRefListRequest {
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
export interface DFUXRefLostFilesQueryRequest {
|
|
47
|
-
Cluster: string;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
export interface DFUXRefMessagesQueryRequest {
|
|
51
|
-
Cluster: string;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
export interface DFUXRefOrphanFilesQueryRequest {
|
|
55
|
-
Cluster: string;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
export interface DFUXRefUnusedFilesRequest {
|
|
59
|
-
ProcessCluster: string;
|
|
60
|
-
CheckPackageMaps: boolean;
|
|
61
|
-
GetFileDetails: boolean;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
export interface WsDFUXRefPingRequest {
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
export interface Request {
|
|
68
|
-
DFUXRefArrayActionRequest: DFUXRefArrayActionRequest;
|
|
69
|
-
DFUXRefBuildRequest: DFUXRefBuildRequest;
|
|
70
|
-
DFUXRefBuildCancelRequest: DFUXRefBuildCancelRequest;
|
|
71
|
-
DFUXRefCleanDirectoriesRequest: DFUXRefCleanDirectoriesRequest;
|
|
72
|
-
DFUXRefDirectoriesQueryRequest: DFUXRefDirectoriesQueryRequest;
|
|
73
|
-
DFUXRefFoundFilesQueryRequest: DFUXRefFoundFilesQueryRequest;
|
|
74
|
-
DFUXRefListRequest: DFUXRefListRequest;
|
|
75
|
-
DFUXRefLostFilesQueryRequest: DFUXRefLostFilesQueryRequest;
|
|
76
|
-
DFUXRefMessagesQueryRequest: DFUXRefMessagesQueryRequest;
|
|
77
|
-
DFUXRefOrphanFilesQueryRequest: DFUXRefOrphanFilesQueryRequest;
|
|
78
|
-
DFUXRefUnusedFilesRequest: DFUXRefUnusedFilesRequest;
|
|
79
|
-
WsDFUXRefPingRequest: WsDFUXRefPingRequest;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
export interface DFUXRefArrayActionResponse {
|
|
83
|
-
DFUXRefArrayActionResult: string;
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
export interface DFUXRefBuildResponse {
|
|
87
|
-
DFUXRefActionResult: string;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
export interface DFUXRefBuildCancelResponse {
|
|
91
|
-
DFUXRefBuildCancelResult: string;
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
export interface Exception {
|
|
95
|
-
Code: string;
|
|
96
|
-
Audience: string;
|
|
97
|
-
Source: string;
|
|
98
|
-
Message: string;
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
export interface Exceptions {
|
|
102
|
-
Source: string;
|
|
103
|
-
Exception: Exception[];
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
export interface Directory {
|
|
107
|
-
Num: string;
|
|
108
|
-
Name: string;
|
|
109
|
-
MaxSize: string;
|
|
110
|
-
MaxIP: string;
|
|
111
|
-
MinSize: string;
|
|
112
|
-
MinIP: string;
|
|
113
|
-
Size: string;
|
|
114
|
-
PositiveSkew: string;
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
export interface DFUXRefDirectoriesQueryResult {
|
|
118
|
-
Directory: Directory[];
|
|
119
|
-
Cluster: string;
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
export interface DFUXRefDirectoriesQueryResponse {
|
|
123
|
-
DFUXRefDirectoriesQueryResult: DFUXRefDirectoriesQueryResult;
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
export interface Part {
|
|
127
|
-
Num: string;
|
|
128
|
-
Node: string;
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
export interface File {
|
|
132
|
-
Size: string;
|
|
133
|
-
Partmask: string;
|
|
134
|
-
Modified: Date;
|
|
135
|
-
Numparts: string;
|
|
136
|
-
Part: Part[];
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
export interface DFUXRefFoundFilesQueryResult {
|
|
140
|
-
File: File[];
|
|
141
|
-
Cluster: string;
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
export interface DFUXRefFoundFilesQueryResponse {
|
|
145
|
-
DFUXRefFoundFilesQueryResult: DFUXRefFoundFilesQueryResult;
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
export interface XRefNode {
|
|
149
|
-
Name: string;
|
|
150
|
-
Modified: string;
|
|
151
|
-
Status: string;
|
|
152
|
-
}
|
|
153
|
-
|
|
154
|
-
export interface DFUXRefListResult {
|
|
155
|
-
XRefNode: XRefNode[];
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
export interface DFUXRefListResponse {
|
|
159
|
-
DFUXRefListResult: DFUXRefListResult;
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
export interface File2 {
|
|
163
|
-
Partslost: string;
|
|
164
|
-
Name: string;
|
|
165
|
-
Partmask: string;
|
|
166
|
-
Modified: Date;
|
|
167
|
-
Numparts: string;
|
|
168
|
-
Part: any;
|
|
169
|
-
Cluster: string;
|
|
170
|
-
Size: string;
|
|
171
|
-
Primarylost: string;
|
|
172
|
-
Replicatedlost: string;
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
export interface DFUXRefLostFilesQueryResult {
|
|
176
|
-
File: File2[];
|
|
177
|
-
Cluster: string;
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
export interface DFUXRefLostFilesQueryResponse {
|
|
181
|
-
DFUXRefLostFilesQueryResult: DFUXRefLostFilesQueryResult;
|
|
182
|
-
}
|
|
183
|
-
|
|
184
|
-
export interface Warning {
|
|
185
|
-
Text: string;
|
|
186
|
-
File: string;
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
export interface DFUXRefMessagesQueryResult {
|
|
190
|
-
Warning: Warning[];
|
|
191
|
-
Cluster: string;
|
|
192
|
-
}
|
|
193
|
-
|
|
194
|
-
export interface DFUXRefMessagesQueryResponse {
|
|
195
|
-
DFUXRefMessagesQueryResult: DFUXRefMessagesQueryResult;
|
|
196
|
-
}
|
|
197
|
-
|
|
198
|
-
export interface DFUXRefOrphanFilesQueryResult {
|
|
199
|
-
File: File[];
|
|
200
|
-
Cluster: string;
|
|
201
|
-
}
|
|
202
|
-
|
|
203
|
-
export interface DFUXRefOrphanFilesQueryResponse {
|
|
204
|
-
DFUXRefOrphanFilesQueryResult: DFUXRefOrphanFilesQueryResult;
|
|
205
|
-
}
|
|
206
|
-
|
|
207
|
-
export interface Exception2 {
|
|
208
|
-
Code: string;
|
|
209
|
-
Audience: string;
|
|
210
|
-
Source: string;
|
|
211
|
-
Message: string;
|
|
212
|
-
}
|
|
213
|
-
|
|
214
|
-
export interface Exceptions2 {
|
|
215
|
-
Source: string;
|
|
216
|
-
Exception: Exception2[];
|
|
217
|
-
}
|
|
218
|
-
|
|
219
|
-
export interface UnusedFiles {
|
|
220
|
-
File: string[];
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
export interface DFULogicalFile {
|
|
224
|
-
Prefix: string;
|
|
225
|
-
ClusterName: string;
|
|
226
|
-
Directory: string;
|
|
227
|
-
Description: string;
|
|
228
|
-
Parts: string;
|
|
229
|
-
Name: string;
|
|
230
|
-
Owner: string;
|
|
231
|
-
Totalsize: string;
|
|
232
|
-
RecordCount: string;
|
|
233
|
-
Modified: string;
|
|
234
|
-
LongSize: string;
|
|
235
|
-
LongRecordCount: string;
|
|
236
|
-
isSuperfile: boolean;
|
|
237
|
-
isZipfile: boolean;
|
|
238
|
-
isDirectory: boolean;
|
|
239
|
-
Replicate: boolean;
|
|
240
|
-
IntSize: number;
|
|
241
|
-
IntRecordCount: number;
|
|
242
|
-
}
|
|
243
|
-
|
|
244
|
-
export interface UnusedFilesWithDetails {
|
|
245
|
-
DFULogicalFile: DFULogicalFile[];
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
export interface DFUXRefUnusedFilesResponse {
|
|
249
|
-
Exceptions: Exceptions2;
|
|
250
|
-
UnusedFileCount: number;
|
|
251
|
-
UnusedFiles: UnusedFiles;
|
|
252
|
-
UnusedFilesWithDetails: UnusedFilesWithDetails;
|
|
253
|
-
}
|
|
254
|
-
|
|
255
|
-
export interface WsDFUXRefPingResponse {
|
|
256
|
-
}
|
|
257
|
-
}
|
|
258
|
-
|
|
259
|
-
export class DFUXRefService extends Service {
|
|
260
|
-
|
|
261
|
-
constructor(optsConnection: IOptions | IConnection) {
|
|
262
|
-
super(optsConnection, "WsDFUXRef", "1.01");
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
DFUXRefArrayAction(request: WsDFUXRef.DFUXRefArrayActionRequest): Promise<WsDFUXRef.DFUXRefArrayActionResponse> {
|
|
266
|
-
return this._connection.send("DFUXRefArrayAction", request);
|
|
267
|
-
}
|
|
268
|
-
|
|
269
|
-
DFUXRefBuild(request: WsDFUXRef.DFUXRefBuildRequest): Promise<WsDFUXRef.DFUXRefBuildResponse> {
|
|
270
|
-
return this._connection.send("DFUXRefBuild", request);
|
|
271
|
-
}
|
|
272
|
-
|
|
273
|
-
DFUXRefBuildCancel(request: WsDFUXRef.DFUXRefBuildCancelRequest): Promise<WsDFUXRef.DFUXRefBuildCancelResponse> {
|
|
274
|
-
return this._connection.send("DFUXRefBuildCancel", request);
|
|
275
|
-
}
|
|
276
|
-
|
|
277
|
-
DFUXRefCleanDirectories(request: WsDFUXRef.DFUXRefCleanDirectoriesRequest): Promise<WsDFUXRef.DFUXRefDirectoriesQueryResponse> {
|
|
278
|
-
return this._connection.send("DFUXRefCleanDirectories", request);
|
|
279
|
-
}
|
|
280
|
-
|
|
281
|
-
DFUXRefDirectories(request: WsDFUXRef.DFUXRefDirectoriesQueryRequest): Promise<WsDFUXRef.DFUXRefDirectoriesQueryResponse> {
|
|
282
|
-
return this._connection.send("DFUXRefDirectories", request, undefined, undefined, undefined, "DFUXRefDirectoriesQueryResponse");
|
|
283
|
-
}
|
|
284
|
-
|
|
285
|
-
DFUXRefFoundFiles(request: WsDFUXRef.DFUXRefFoundFilesQueryRequest): Promise<WsDFUXRef.DFUXRefFoundFilesQueryResponse> {
|
|
286
|
-
return this._connection.send("DFUXRefFoundFiles", request, undefined, undefined, undefined, "DFUXRefFoundFilesQueryResponse");
|
|
287
|
-
}
|
|
288
|
-
|
|
289
|
-
DFUXRefList(request: WsDFUXRef.DFUXRefListRequest = {}): Promise<WsDFUXRef.DFUXRefListResponse> {
|
|
290
|
-
return this._connection.send("DFUXRefList", request);
|
|
291
|
-
}
|
|
292
|
-
|
|
293
|
-
DFUXRefLostFiles(request: WsDFUXRef.DFUXRefLostFilesQueryRequest): Promise<WsDFUXRef.DFUXRefLostFilesQueryResponse> {
|
|
294
|
-
return this._connection.send("DFUXRefLostFiles", request, undefined, undefined, undefined, "DFUXRefLostFilesQueryResponse");
|
|
295
|
-
}
|
|
296
|
-
|
|
297
|
-
DFUXRefMessages(request: WsDFUXRef.DFUXRefMessagesQueryRequest): Promise<WsDFUXRef.DFUXRefMessagesQueryResponse> {
|
|
298
|
-
return this._connection.send("DFUXRefMessages", request, undefined, undefined, undefined, "DFUXRefMessagesQueryResponse");
|
|
299
|
-
}
|
|
300
|
-
|
|
301
|
-
DFUXRefOrphanFiles(request: WsDFUXRef.DFUXRefOrphanFilesQueryRequest): Promise<WsDFUXRef.DFUXRefOrphanFilesQueryResponse> {
|
|
302
|
-
return this._connection.send("DFUXRefOrphanFiles", request, undefined, undefined, undefined, "DFUXRefOrphanFilesQueryResponse");
|
|
303
|
-
}
|
|
304
|
-
|
|
305
|
-
DFUXRefUnusedFiles(request: WsDFUXRef.DFUXRefUnusedFilesRequest): Promise<WsDFUXRef.DFUXRefUnusedFilesResponse> {
|
|
306
|
-
return this._connection.send("DFUXRefUnusedFiles", request);
|
|
307
|
-
}
|
|
308
|
-
}
|
|
1
|
+
import { IConnection, IOptions } from "../connection";
|
|
2
|
+
import { Service } from "../espConnection";
|
|
3
|
+
|
|
4
|
+
/*
|
|
5
|
+
Response structures generated via:
|
|
6
|
+
* http://localhost:8010/WsDFUXRef/?ver_=1.01&reqjson_
|
|
7
|
+
* http://localhost:8010/WsDFUXRef/?ver_=1.01&respjson_
|
|
8
|
+
* http://json2ts.com/
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
export namespace WsDFUXRef {
|
|
12
|
+
|
|
13
|
+
export interface XRefFiles {
|
|
14
|
+
Item: string[];
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export interface DFUXRefArrayActionRequest {
|
|
18
|
+
Type: string;
|
|
19
|
+
Cluster: string;
|
|
20
|
+
Action: string;
|
|
21
|
+
XRefFiles: XRefFiles;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export interface DFUXRefBuildRequest {
|
|
25
|
+
Cluster: string;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export interface DFUXRefBuildCancelRequest {
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
export interface DFUXRefCleanDirectoriesRequest {
|
|
32
|
+
Cluster: string;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export interface DFUXRefDirectoriesQueryRequest {
|
|
36
|
+
Cluster: string;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export interface DFUXRefFoundFilesQueryRequest {
|
|
40
|
+
Cluster: string;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export interface DFUXRefListRequest {
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
export interface DFUXRefLostFilesQueryRequest {
|
|
47
|
+
Cluster: string;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
export interface DFUXRefMessagesQueryRequest {
|
|
51
|
+
Cluster: string;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
export interface DFUXRefOrphanFilesQueryRequest {
|
|
55
|
+
Cluster: string;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export interface DFUXRefUnusedFilesRequest {
|
|
59
|
+
ProcessCluster: string;
|
|
60
|
+
CheckPackageMaps: boolean;
|
|
61
|
+
GetFileDetails: boolean;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
export interface WsDFUXRefPingRequest {
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
export interface Request {
|
|
68
|
+
DFUXRefArrayActionRequest: DFUXRefArrayActionRequest;
|
|
69
|
+
DFUXRefBuildRequest: DFUXRefBuildRequest;
|
|
70
|
+
DFUXRefBuildCancelRequest: DFUXRefBuildCancelRequest;
|
|
71
|
+
DFUXRefCleanDirectoriesRequest: DFUXRefCleanDirectoriesRequest;
|
|
72
|
+
DFUXRefDirectoriesQueryRequest: DFUXRefDirectoriesQueryRequest;
|
|
73
|
+
DFUXRefFoundFilesQueryRequest: DFUXRefFoundFilesQueryRequest;
|
|
74
|
+
DFUXRefListRequest: DFUXRefListRequest;
|
|
75
|
+
DFUXRefLostFilesQueryRequest: DFUXRefLostFilesQueryRequest;
|
|
76
|
+
DFUXRefMessagesQueryRequest: DFUXRefMessagesQueryRequest;
|
|
77
|
+
DFUXRefOrphanFilesQueryRequest: DFUXRefOrphanFilesQueryRequest;
|
|
78
|
+
DFUXRefUnusedFilesRequest: DFUXRefUnusedFilesRequest;
|
|
79
|
+
WsDFUXRefPingRequest: WsDFUXRefPingRequest;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
export interface DFUXRefArrayActionResponse {
|
|
83
|
+
DFUXRefArrayActionResult: string;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
export interface DFUXRefBuildResponse {
|
|
87
|
+
DFUXRefActionResult: string;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
export interface DFUXRefBuildCancelResponse {
|
|
91
|
+
DFUXRefBuildCancelResult: string;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
export interface Exception {
|
|
95
|
+
Code: string;
|
|
96
|
+
Audience: string;
|
|
97
|
+
Source: string;
|
|
98
|
+
Message: string;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
export interface Exceptions {
|
|
102
|
+
Source: string;
|
|
103
|
+
Exception: Exception[];
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
export interface Directory {
|
|
107
|
+
Num: string;
|
|
108
|
+
Name: string;
|
|
109
|
+
MaxSize: string;
|
|
110
|
+
MaxIP: string;
|
|
111
|
+
MinSize: string;
|
|
112
|
+
MinIP: string;
|
|
113
|
+
Size: string;
|
|
114
|
+
PositiveSkew: string;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
export interface DFUXRefDirectoriesQueryResult {
|
|
118
|
+
Directory: Directory[];
|
|
119
|
+
Cluster: string;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
export interface DFUXRefDirectoriesQueryResponse {
|
|
123
|
+
DFUXRefDirectoriesQueryResult: DFUXRefDirectoriesQueryResult;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
export interface Part {
|
|
127
|
+
Num: string;
|
|
128
|
+
Node: string;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
export interface File {
|
|
132
|
+
Size: string;
|
|
133
|
+
Partmask: string;
|
|
134
|
+
Modified: Date;
|
|
135
|
+
Numparts: string;
|
|
136
|
+
Part: Part[];
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
export interface DFUXRefFoundFilesQueryResult {
|
|
140
|
+
File: File[];
|
|
141
|
+
Cluster: string;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
export interface DFUXRefFoundFilesQueryResponse {
|
|
145
|
+
DFUXRefFoundFilesQueryResult: DFUXRefFoundFilesQueryResult;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
export interface XRefNode {
|
|
149
|
+
Name: string;
|
|
150
|
+
Modified: string;
|
|
151
|
+
Status: string;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
export interface DFUXRefListResult {
|
|
155
|
+
XRefNode: XRefNode[];
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
export interface DFUXRefListResponse {
|
|
159
|
+
DFUXRefListResult: DFUXRefListResult;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
export interface File2 {
|
|
163
|
+
Partslost: string;
|
|
164
|
+
Name: string;
|
|
165
|
+
Partmask: string;
|
|
166
|
+
Modified: Date;
|
|
167
|
+
Numparts: string;
|
|
168
|
+
Part: any;
|
|
169
|
+
Cluster: string;
|
|
170
|
+
Size: string;
|
|
171
|
+
Primarylost: string;
|
|
172
|
+
Replicatedlost: string;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
export interface DFUXRefLostFilesQueryResult {
|
|
176
|
+
File: File2[];
|
|
177
|
+
Cluster: string;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
export interface DFUXRefLostFilesQueryResponse {
|
|
181
|
+
DFUXRefLostFilesQueryResult: DFUXRefLostFilesQueryResult;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
export interface Warning {
|
|
185
|
+
Text: string;
|
|
186
|
+
File: string;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
export interface DFUXRefMessagesQueryResult {
|
|
190
|
+
Warning: Warning[];
|
|
191
|
+
Cluster: string;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
export interface DFUXRefMessagesQueryResponse {
|
|
195
|
+
DFUXRefMessagesQueryResult: DFUXRefMessagesQueryResult;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
export interface DFUXRefOrphanFilesQueryResult {
|
|
199
|
+
File: File[];
|
|
200
|
+
Cluster: string;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
export interface DFUXRefOrphanFilesQueryResponse {
|
|
204
|
+
DFUXRefOrphanFilesQueryResult: DFUXRefOrphanFilesQueryResult;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
export interface Exception2 {
|
|
208
|
+
Code: string;
|
|
209
|
+
Audience: string;
|
|
210
|
+
Source: string;
|
|
211
|
+
Message: string;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
export interface Exceptions2 {
|
|
215
|
+
Source: string;
|
|
216
|
+
Exception: Exception2[];
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
export interface UnusedFiles {
|
|
220
|
+
File: string[];
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
export interface DFULogicalFile {
|
|
224
|
+
Prefix: string;
|
|
225
|
+
ClusterName: string;
|
|
226
|
+
Directory: string;
|
|
227
|
+
Description: string;
|
|
228
|
+
Parts: string;
|
|
229
|
+
Name: string;
|
|
230
|
+
Owner: string;
|
|
231
|
+
Totalsize: string;
|
|
232
|
+
RecordCount: string;
|
|
233
|
+
Modified: string;
|
|
234
|
+
LongSize: string;
|
|
235
|
+
LongRecordCount: string;
|
|
236
|
+
isSuperfile: boolean;
|
|
237
|
+
isZipfile: boolean;
|
|
238
|
+
isDirectory: boolean;
|
|
239
|
+
Replicate: boolean;
|
|
240
|
+
IntSize: number;
|
|
241
|
+
IntRecordCount: number;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
export interface UnusedFilesWithDetails {
|
|
245
|
+
DFULogicalFile: DFULogicalFile[];
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
export interface DFUXRefUnusedFilesResponse {
|
|
249
|
+
Exceptions: Exceptions2;
|
|
250
|
+
UnusedFileCount: number;
|
|
251
|
+
UnusedFiles: UnusedFiles;
|
|
252
|
+
UnusedFilesWithDetails: UnusedFilesWithDetails;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
export interface WsDFUXRefPingResponse {
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
export class DFUXRefService extends Service {
|
|
260
|
+
|
|
261
|
+
constructor(optsConnection: IOptions | IConnection) {
|
|
262
|
+
super(optsConnection, "WsDFUXRef", "1.01");
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
DFUXRefArrayAction(request: WsDFUXRef.DFUXRefArrayActionRequest): Promise<WsDFUXRef.DFUXRefArrayActionResponse> {
|
|
266
|
+
return this._connection.send("DFUXRefArrayAction", request);
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
DFUXRefBuild(request: WsDFUXRef.DFUXRefBuildRequest): Promise<WsDFUXRef.DFUXRefBuildResponse> {
|
|
270
|
+
return this._connection.send("DFUXRefBuild", request);
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
DFUXRefBuildCancel(request: WsDFUXRef.DFUXRefBuildCancelRequest): Promise<WsDFUXRef.DFUXRefBuildCancelResponse> {
|
|
274
|
+
return this._connection.send("DFUXRefBuildCancel", request);
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
DFUXRefCleanDirectories(request: WsDFUXRef.DFUXRefCleanDirectoriesRequest): Promise<WsDFUXRef.DFUXRefDirectoriesQueryResponse> {
|
|
278
|
+
return this._connection.send("DFUXRefCleanDirectories", request);
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
DFUXRefDirectories(request: WsDFUXRef.DFUXRefDirectoriesQueryRequest): Promise<WsDFUXRef.DFUXRefDirectoriesQueryResponse> {
|
|
282
|
+
return this._connection.send("DFUXRefDirectories", request, undefined, undefined, undefined, "DFUXRefDirectoriesQueryResponse");
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
DFUXRefFoundFiles(request: WsDFUXRef.DFUXRefFoundFilesQueryRequest): Promise<WsDFUXRef.DFUXRefFoundFilesQueryResponse> {
|
|
286
|
+
return this._connection.send("DFUXRefFoundFiles", request, undefined, undefined, undefined, "DFUXRefFoundFilesQueryResponse");
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
DFUXRefList(request: WsDFUXRef.DFUXRefListRequest = {}): Promise<WsDFUXRef.DFUXRefListResponse> {
|
|
290
|
+
return this._connection.send("DFUXRefList", request);
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
DFUXRefLostFiles(request: WsDFUXRef.DFUXRefLostFilesQueryRequest): Promise<WsDFUXRef.DFUXRefLostFilesQueryResponse> {
|
|
294
|
+
return this._connection.send("DFUXRefLostFiles", request, undefined, undefined, undefined, "DFUXRefLostFilesQueryResponse");
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
DFUXRefMessages(request: WsDFUXRef.DFUXRefMessagesQueryRequest): Promise<WsDFUXRef.DFUXRefMessagesQueryResponse> {
|
|
298
|
+
return this._connection.send("DFUXRefMessages", request, undefined, undefined, undefined, "DFUXRefMessagesQueryResponse");
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
DFUXRefOrphanFiles(request: WsDFUXRef.DFUXRefOrphanFilesQueryRequest): Promise<WsDFUXRef.DFUXRefOrphanFilesQueryResponse> {
|
|
302
|
+
return this._connection.send("DFUXRefOrphanFiles", request, undefined, undefined, undefined, "DFUXRefOrphanFilesQueryResponse");
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
DFUXRefUnusedFiles(request: WsDFUXRef.DFUXRefUnusedFilesRequest): Promise<WsDFUXRef.DFUXRefUnusedFilesResponse> {
|
|
306
|
+
return this._connection.send("DFUXRefUnusedFiles", request);
|
|
307
|
+
}
|
|
308
|
+
}
|