@hpcc-js/comms 3.14.4 → 3.15.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/LICENSE +43 -43
- package/README.md +50 -50
- package/dist/browser/index.js +1 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/browser/index.umd.cjs +1 -1
- package/dist/browser/index.umd.cjs.map +1 -1
- package/dist/node/index.cjs +8 -8
- package/dist/node/index.cjs.map +3 -3
- package/dist/node/index.js +7 -7
- package/dist/node/index.js.map +3 -3
- package/package.json +6 -6
- package/src/__package__.ts +3 -3
- package/src/clienttools/eclMeta.ts +506 -506
- package/src/clienttools/eclcc.ts +628 -628
- package/src/connection.ts +288 -288
- 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 +196 -196
- package/src/ecl/machine.ts +63 -63
- package/src/ecl/query.ts +265 -265
- package/src/ecl/queryGraph.ts +813 -813
- package/src/ecl/resource.ts +39 -39
- package/src/ecl/result.ts +245 -245
- package/src/ecl/scope.ts +188 -188
- 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 +1340 -1340
- package/src/ecl/xsdParser.ts +267 -267
- package/src/espConnection.ts +164 -164
- package/src/index.browser.ts +1 -1
- package/src/index.common.ts +40 -40
- package/src/index.node.ts +48 -48
- package/src/pem/trustwave.ts +909 -909
- package/src/services/fileSpray.ts +73 -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 +18 -18
- package/src/services/wsDFU.ts +34 -34
- package/src/services/wsDFUXRef.ts +121 -121
- package/src/services/wsDali.ts +8 -8
- package/src/services/wsEcl.ts +123 -123
- package/src/services/wsElk.ts +8 -8
- package/src/services/wsLogaccess.ts +267 -267
- 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 +80 -80
- package/src/services/wsSasha.ts +7 -7
- package/src/services/wsStore.ts +32 -32
- package/src/services/wsTopology.ts +45 -45
- package/src/services/wsWorkunits.ts +151 -151
- 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/FileSpray/v1.27/FileSpray.ts +930 -930
- 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/WsDFUXRef/v1.04/WsDFUXRef.ts +227 -227
- 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/WsDfu/v1.66/WsDfu.ts +1267 -1267
- package/src/services/wsdl/WsDfu/v1.67/WsDfu.ts +1268 -1268
- package/src/services/wsdl/WsFileIO/v1.01/WsFileIO.ts +104 -104
- package/src/services/wsdl/WsPackageProcess/v1.04/WsPackageProcess.ts +519 -519
- package/src/services/wsdl/WsPackageProcess/v1.07/WsPackageProcess.ts +500 -500
- 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 +591 -591
- package/src/services/wsdl/WsSMC/v1.28/WsSMC.ts +645 -645
- package/src/services/wsdl/WsSMC/v1.29/WsSMC.ts +660 -660
- package/src/services/wsdl/WsTopology/v1.31/WsTopology.ts +856 -856
- package/src/services/wsdl/WsTopology/v1.32/WsTopology.ts +786 -786
- package/src/services/wsdl/WsTopology/v1.33/WsTopology.ts +835 -835
- 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 +3162 -3162
- package/src/services/wsdl/WsWorkunits/v2.03/WsWorkunits.ts +3164 -3164
- package/src/services/wsdl/WsWorkunits/v2.04/WsWorkunits.ts +3171 -3171
- 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_account/v1.07/ws_account.ts +114 -114
- package/src/services/wsdl/ws_codesign/v1.1/ws_codesign.ts +95 -95
- 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/ws_machine/v1.18/ws_machine.ts +497 -497
- package/src/services/wsdl/ws_machine/v1.19/ws_machine.ts +497 -497
- package/src/services/wsdl/wsstore/v1.02/wsstore.ts +239 -239
- package/types/services/fileSpray.d.ts +13 -0
|
@@ -1,227 +1,227 @@
|
|
|
1
|
-
import { IConnection, IOptions } from "../../../../connection.ts";
|
|
2
|
-
import { Service } from "../../../../espConnection.ts";
|
|
3
|
-
|
|
4
|
-
export namespace WsDFUXRef {
|
|
5
|
-
|
|
6
|
-
export type unsignedInt = number;
|
|
7
|
-
export type long = number;
|
|
8
|
-
|
|
9
|
-
export interface XRefFiles {
|
|
10
|
-
Item: string[];
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
export interface DFUXRefArrayActionRequest {
|
|
14
|
-
Type?: string;
|
|
15
|
-
Cluster?: string;
|
|
16
|
-
Action?: string;
|
|
17
|
-
XRefFiles?: XRefFiles;
|
|
18
|
-
RemoveFromSuperfiles?: boolean;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
export interface DFUXRefArrayActionResponse {
|
|
22
|
-
DFUXRefArrayActionResult: string;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
export interface DFUXRefBuildRequest {
|
|
26
|
-
Cluster?: string;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
export interface DFUXRefBuildResponse {
|
|
30
|
-
DFUXRefActionResult: string;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
export interface DFUXRefBuildCancelRequest {
|
|
34
|
-
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
export interface DFUXRefBuildCancelResponse {
|
|
38
|
-
DFUXRefBuildCancelResult: string;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
export interface DFUXRefCleanDirectoriesRequest {
|
|
42
|
-
Cluster?: string;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
export interface Exception {
|
|
46
|
-
Code: string;
|
|
47
|
-
Audience: string;
|
|
48
|
-
Source: string;
|
|
49
|
-
Message: string;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
export interface Exceptions {
|
|
53
|
-
Source: string;
|
|
54
|
-
Exception: Exception[];
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
export interface DFUXRefCleanDirectoriesResponse {
|
|
58
|
-
Exceptions: Exceptions;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
export interface DFUXRefDirectoriesQueryRequest {
|
|
62
|
-
Cluster?: string;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
export interface DFUXRefDirectoriesQueryResponse {
|
|
66
|
-
DFUXRefDirectoriesQueryResult: string;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
export interface DFUXRefFoundFilesQueryRequest {
|
|
70
|
-
Cluster?: string;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
export interface DFUXRefFoundFilesQueryResponse {
|
|
74
|
-
DFUXRefFoundFilesQueryResult: string;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
export interface DFUXRefListRequest {
|
|
78
|
-
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
export interface DFUXRefListResponse {
|
|
82
|
-
DFUXRefListResult: string;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
export interface DFUXRefLostFilesQueryRequest {
|
|
86
|
-
Cluster?: string;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
export interface DFUXRefLostFilesQueryResponse {
|
|
90
|
-
DFUXRefLostFilesQueryResult: string;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
export interface DFUXRefMessagesQueryRequest {
|
|
94
|
-
Cluster?: string;
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
export interface DFUXRefMessagesQueryResponse {
|
|
98
|
-
DFUXRefMessagesQueryResult: string;
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
export interface DFUXRefOrphanFilesQueryRequest {
|
|
102
|
-
Cluster?: string;
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
export interface DFUXRefOrphanFilesQueryResponse {
|
|
106
|
-
DFUXRefOrphanFilesQueryResult: string;
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
export interface ProcessClusterList {
|
|
110
|
-
Item: string[];
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
export interface CheckPlanes {
|
|
114
|
-
Item: string[];
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
export interface DFUXRefUnusedFilesRequest {
|
|
118
|
-
ProcessCluster?: string;
|
|
119
|
-
CheckPackageMaps?: boolean;
|
|
120
|
-
GetFileDetails?: boolean;
|
|
121
|
-
ProcessClusterList?: ProcessClusterList;
|
|
122
|
-
CheckPlanes?: CheckPlanes;
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
export interface UnusedFiles {
|
|
126
|
-
File: string[];
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
export interface DFULogicalFile {
|
|
130
|
-
Prefix: string;
|
|
131
|
-
ClusterName: string;
|
|
132
|
-
Directory: string;
|
|
133
|
-
Description: string;
|
|
134
|
-
Parts: string;
|
|
135
|
-
Name: string;
|
|
136
|
-
Owner: string;
|
|
137
|
-
Totalsize: string;
|
|
138
|
-
RecordCount: string;
|
|
139
|
-
Modified: string;
|
|
140
|
-
LongSize: string;
|
|
141
|
-
LongRecordCount: string;
|
|
142
|
-
isSuperfile: boolean;
|
|
143
|
-
isZipfile: boolean;
|
|
144
|
-
isDirectory: boolean;
|
|
145
|
-
Replicate: boolean;
|
|
146
|
-
IntSize: long;
|
|
147
|
-
IntRecordCount: long;
|
|
148
|
-
FromRoxieCluster: boolean;
|
|
149
|
-
BrowseData: boolean;
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
export interface UnusedFilesWithDetails {
|
|
153
|
-
DFULogicalFile: DFULogicalFile[];
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
export interface DFUXRefUnusedFilesResponse {
|
|
157
|
-
Exceptions: Exceptions;
|
|
158
|
-
UnusedFileCount: unsignedInt;
|
|
159
|
-
UnusedFiles: UnusedFiles;
|
|
160
|
-
UnusedFilesWithDetails: UnusedFilesWithDetails;
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
export interface WsDFUXRefPingRequest {
|
|
164
|
-
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
export interface WsDFUXRefPingResponse {
|
|
168
|
-
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
export class DFUXRefServiceBase extends Service {
|
|
174
|
-
|
|
175
|
-
constructor(optsConnection: IOptions | IConnection) {
|
|
176
|
-
super(optsConnection, "WsDFUXRef", "1.04");
|
|
177
|
-
}
|
|
178
|
-
|
|
179
|
-
DFUXRefArrayAction(request: Partial<WsDFUXRef.DFUXRefArrayActionRequest>): Promise<WsDFUXRef.DFUXRefArrayActionResponse> {
|
|
180
|
-
return this._connection.send("DFUXRefArrayAction", request, "json", false, undefined, "DFUXRefArrayActionResponse");
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
DFUXRefBuild(request: Partial<WsDFUXRef.DFUXRefBuildRequest>): Promise<WsDFUXRef.DFUXRefBuildResponse> {
|
|
184
|
-
return this._connection.send("DFUXRefBuild", request, "json", false, undefined, "DFUXRefBuildResponse");
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
DFUXRefBuildCancel(request: Partial<WsDFUXRef.DFUXRefBuildCancelRequest>): Promise<WsDFUXRef.DFUXRefBuildCancelResponse> {
|
|
188
|
-
return this._connection.send("DFUXRefBuildCancel", request, "json", false, undefined, "DFUXRefBuildCancelResponse");
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
DFUXRefCleanDirectories(request: Partial<WsDFUXRef.DFUXRefCleanDirectoriesRequest>): Promise<WsDFUXRef.DFUXRefCleanDirectoriesResponse> {
|
|
192
|
-
return this._connection.send("DFUXRefCleanDirectories", request, "json", false, undefined, "DFUXRefCleanDirectoriesResponse");
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
DFUXRefDirectories(request: Partial<WsDFUXRef.DFUXRefDirectoriesQueryRequest>): Promise<WsDFUXRef.DFUXRefDirectoriesQueryResponse> {
|
|
196
|
-
return this._connection.send("DFUXRefDirectories", request, "json", false, undefined, "DFUXRefDirectoriesQueryResponse");
|
|
197
|
-
}
|
|
198
|
-
|
|
199
|
-
DFUXRefFoundFiles(request: Partial<WsDFUXRef.DFUXRefFoundFilesQueryRequest>): Promise<WsDFUXRef.DFUXRefFoundFilesQueryResponse> {
|
|
200
|
-
return this._connection.send("DFUXRefFoundFiles", request, "json", false, undefined, "DFUXRefFoundFilesQueryResponse");
|
|
201
|
-
}
|
|
202
|
-
|
|
203
|
-
DFUXRefList(request: Partial<WsDFUXRef.DFUXRefListRequest>): Promise<WsDFUXRef.DFUXRefListResponse> {
|
|
204
|
-
return this._connection.send("DFUXRefList", request, "json", false, undefined, "DFUXRefListResponse");
|
|
205
|
-
}
|
|
206
|
-
|
|
207
|
-
DFUXRefLostFiles(request: Partial<WsDFUXRef.DFUXRefLostFilesQueryRequest>): Promise<WsDFUXRef.DFUXRefLostFilesQueryResponse> {
|
|
208
|
-
return this._connection.send("DFUXRefLostFiles", request, "json", false, undefined, "DFUXRefLostFilesQueryResponse");
|
|
209
|
-
}
|
|
210
|
-
|
|
211
|
-
DFUXRefMessages(request: Partial<WsDFUXRef.DFUXRefMessagesQueryRequest>): Promise<WsDFUXRef.DFUXRefMessagesQueryResponse> {
|
|
212
|
-
return this._connection.send("DFUXRefMessages", request, "json", false, undefined, "DFUXRefMessagesQueryResponse");
|
|
213
|
-
}
|
|
214
|
-
|
|
215
|
-
DFUXRefOrphanFiles(request: Partial<WsDFUXRef.DFUXRefOrphanFilesQueryRequest>): Promise<WsDFUXRef.DFUXRefOrphanFilesQueryResponse> {
|
|
216
|
-
return this._connection.send("DFUXRefOrphanFiles", request, "json", false, undefined, "DFUXRefOrphanFilesQueryResponse");
|
|
217
|
-
}
|
|
218
|
-
|
|
219
|
-
DFUXRefUnusedFiles(request: Partial<WsDFUXRef.DFUXRefUnusedFilesRequest>): Promise<WsDFUXRef.DFUXRefUnusedFilesResponse> {
|
|
220
|
-
return this._connection.send("DFUXRefUnusedFiles", request, "json", false, undefined, "DFUXRefUnusedFilesResponse");
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
Ping(request: Partial<WsDFUXRef.WsDFUXRefPingRequest>): Promise<WsDFUXRef.WsDFUXRefPingResponse> {
|
|
224
|
-
return this._connection.send("Ping", request, "json", false, undefined, "WsDFUXRefPingResponse");
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
}
|
|
1
|
+
import { IConnection, IOptions } from "../../../../connection.ts";
|
|
2
|
+
import { Service } from "../../../../espConnection.ts";
|
|
3
|
+
|
|
4
|
+
export namespace WsDFUXRef {
|
|
5
|
+
|
|
6
|
+
export type unsignedInt = number;
|
|
7
|
+
export type long = number;
|
|
8
|
+
|
|
9
|
+
export interface XRefFiles {
|
|
10
|
+
Item: string[];
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export interface DFUXRefArrayActionRequest {
|
|
14
|
+
Type?: string;
|
|
15
|
+
Cluster?: string;
|
|
16
|
+
Action?: string;
|
|
17
|
+
XRefFiles?: XRefFiles;
|
|
18
|
+
RemoveFromSuperfiles?: boolean;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export interface DFUXRefArrayActionResponse {
|
|
22
|
+
DFUXRefArrayActionResult: string;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export interface DFUXRefBuildRequest {
|
|
26
|
+
Cluster?: string;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
export interface DFUXRefBuildResponse {
|
|
30
|
+
DFUXRefActionResult: string;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
export interface DFUXRefBuildCancelRequest {
|
|
34
|
+
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export interface DFUXRefBuildCancelResponse {
|
|
38
|
+
DFUXRefBuildCancelResult: string;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export interface DFUXRefCleanDirectoriesRequest {
|
|
42
|
+
Cluster?: string;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
export interface Exception {
|
|
46
|
+
Code: string;
|
|
47
|
+
Audience: string;
|
|
48
|
+
Source: string;
|
|
49
|
+
Message: string;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
export interface Exceptions {
|
|
53
|
+
Source: string;
|
|
54
|
+
Exception: Exception[];
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
export interface DFUXRefCleanDirectoriesResponse {
|
|
58
|
+
Exceptions: Exceptions;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
export interface DFUXRefDirectoriesQueryRequest {
|
|
62
|
+
Cluster?: string;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
export interface DFUXRefDirectoriesQueryResponse {
|
|
66
|
+
DFUXRefDirectoriesQueryResult: string;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
export interface DFUXRefFoundFilesQueryRequest {
|
|
70
|
+
Cluster?: string;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
export interface DFUXRefFoundFilesQueryResponse {
|
|
74
|
+
DFUXRefFoundFilesQueryResult: string;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
export interface DFUXRefListRequest {
|
|
78
|
+
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
export interface DFUXRefListResponse {
|
|
82
|
+
DFUXRefListResult: string;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
export interface DFUXRefLostFilesQueryRequest {
|
|
86
|
+
Cluster?: string;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
export interface DFUXRefLostFilesQueryResponse {
|
|
90
|
+
DFUXRefLostFilesQueryResult: string;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
export interface DFUXRefMessagesQueryRequest {
|
|
94
|
+
Cluster?: string;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
export interface DFUXRefMessagesQueryResponse {
|
|
98
|
+
DFUXRefMessagesQueryResult: string;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
export interface DFUXRefOrphanFilesQueryRequest {
|
|
102
|
+
Cluster?: string;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
export interface DFUXRefOrphanFilesQueryResponse {
|
|
106
|
+
DFUXRefOrphanFilesQueryResult: string;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
export interface ProcessClusterList {
|
|
110
|
+
Item: string[];
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
export interface CheckPlanes {
|
|
114
|
+
Item: string[];
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
export interface DFUXRefUnusedFilesRequest {
|
|
118
|
+
ProcessCluster?: string;
|
|
119
|
+
CheckPackageMaps?: boolean;
|
|
120
|
+
GetFileDetails?: boolean;
|
|
121
|
+
ProcessClusterList?: ProcessClusterList;
|
|
122
|
+
CheckPlanes?: CheckPlanes;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
export interface UnusedFiles {
|
|
126
|
+
File: string[];
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
export interface DFULogicalFile {
|
|
130
|
+
Prefix: string;
|
|
131
|
+
ClusterName: string;
|
|
132
|
+
Directory: string;
|
|
133
|
+
Description: string;
|
|
134
|
+
Parts: string;
|
|
135
|
+
Name: string;
|
|
136
|
+
Owner: string;
|
|
137
|
+
Totalsize: string;
|
|
138
|
+
RecordCount: string;
|
|
139
|
+
Modified: string;
|
|
140
|
+
LongSize: string;
|
|
141
|
+
LongRecordCount: string;
|
|
142
|
+
isSuperfile: boolean;
|
|
143
|
+
isZipfile: boolean;
|
|
144
|
+
isDirectory: boolean;
|
|
145
|
+
Replicate: boolean;
|
|
146
|
+
IntSize: long;
|
|
147
|
+
IntRecordCount: long;
|
|
148
|
+
FromRoxieCluster: boolean;
|
|
149
|
+
BrowseData: boolean;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
export interface UnusedFilesWithDetails {
|
|
153
|
+
DFULogicalFile: DFULogicalFile[];
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
export interface DFUXRefUnusedFilesResponse {
|
|
157
|
+
Exceptions: Exceptions;
|
|
158
|
+
UnusedFileCount: unsignedInt;
|
|
159
|
+
UnusedFiles: UnusedFiles;
|
|
160
|
+
UnusedFilesWithDetails: UnusedFilesWithDetails;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
export interface WsDFUXRefPingRequest {
|
|
164
|
+
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
export interface WsDFUXRefPingResponse {
|
|
168
|
+
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
export class DFUXRefServiceBase extends Service {
|
|
174
|
+
|
|
175
|
+
constructor(optsConnection: IOptions | IConnection) {
|
|
176
|
+
super(optsConnection, "WsDFUXRef", "1.04");
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
DFUXRefArrayAction(request: Partial<WsDFUXRef.DFUXRefArrayActionRequest>): Promise<WsDFUXRef.DFUXRefArrayActionResponse> {
|
|
180
|
+
return this._connection.send("DFUXRefArrayAction", request, "json", false, undefined, "DFUXRefArrayActionResponse");
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
DFUXRefBuild(request: Partial<WsDFUXRef.DFUXRefBuildRequest>): Promise<WsDFUXRef.DFUXRefBuildResponse> {
|
|
184
|
+
return this._connection.send("DFUXRefBuild", request, "json", false, undefined, "DFUXRefBuildResponse");
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
DFUXRefBuildCancel(request: Partial<WsDFUXRef.DFUXRefBuildCancelRequest>): Promise<WsDFUXRef.DFUXRefBuildCancelResponse> {
|
|
188
|
+
return this._connection.send("DFUXRefBuildCancel", request, "json", false, undefined, "DFUXRefBuildCancelResponse");
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
DFUXRefCleanDirectories(request: Partial<WsDFUXRef.DFUXRefCleanDirectoriesRequest>): Promise<WsDFUXRef.DFUXRefCleanDirectoriesResponse> {
|
|
192
|
+
return this._connection.send("DFUXRefCleanDirectories", request, "json", false, undefined, "DFUXRefCleanDirectoriesResponse");
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
DFUXRefDirectories(request: Partial<WsDFUXRef.DFUXRefDirectoriesQueryRequest>): Promise<WsDFUXRef.DFUXRefDirectoriesQueryResponse> {
|
|
196
|
+
return this._connection.send("DFUXRefDirectories", request, "json", false, undefined, "DFUXRefDirectoriesQueryResponse");
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
DFUXRefFoundFiles(request: Partial<WsDFUXRef.DFUXRefFoundFilesQueryRequest>): Promise<WsDFUXRef.DFUXRefFoundFilesQueryResponse> {
|
|
200
|
+
return this._connection.send("DFUXRefFoundFiles", request, "json", false, undefined, "DFUXRefFoundFilesQueryResponse");
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
DFUXRefList(request: Partial<WsDFUXRef.DFUXRefListRequest>): Promise<WsDFUXRef.DFUXRefListResponse> {
|
|
204
|
+
return this._connection.send("DFUXRefList", request, "json", false, undefined, "DFUXRefListResponse");
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
DFUXRefLostFiles(request: Partial<WsDFUXRef.DFUXRefLostFilesQueryRequest>): Promise<WsDFUXRef.DFUXRefLostFilesQueryResponse> {
|
|
208
|
+
return this._connection.send("DFUXRefLostFiles", request, "json", false, undefined, "DFUXRefLostFilesQueryResponse");
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
DFUXRefMessages(request: Partial<WsDFUXRef.DFUXRefMessagesQueryRequest>): Promise<WsDFUXRef.DFUXRefMessagesQueryResponse> {
|
|
212
|
+
return this._connection.send("DFUXRefMessages", request, "json", false, undefined, "DFUXRefMessagesQueryResponse");
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
DFUXRefOrphanFiles(request: Partial<WsDFUXRef.DFUXRefOrphanFilesQueryRequest>): Promise<WsDFUXRef.DFUXRefOrphanFilesQueryResponse> {
|
|
216
|
+
return this._connection.send("DFUXRefOrphanFiles", request, "json", false, undefined, "DFUXRefOrphanFilesQueryResponse");
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
DFUXRefUnusedFiles(request: Partial<WsDFUXRef.DFUXRefUnusedFilesRequest>): Promise<WsDFUXRef.DFUXRefUnusedFilesResponse> {
|
|
220
|
+
return this._connection.send("DFUXRefUnusedFiles", request, "json", false, undefined, "DFUXRefUnusedFilesResponse");
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
Ping(request: Partial<WsDFUXRef.WsDFUXRefPingRequest>): Promise<WsDFUXRef.WsDFUXRefPingResponse> {
|
|
224
|
+
return this._connection.send("Ping", request, "json", false, undefined, "WsDFUXRefPingResponse");
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
}
|