@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.
Files changed (103) hide show
  1. package/LICENSE +43 -43
  2. package/README.md +50 -50
  3. package/dist/index.es6.js +2 -2
  4. package/dist/index.es6.js.map +1 -1
  5. package/dist/index.js +2 -2
  6. package/dist/index.js.map +1 -1
  7. package/dist/index.min.js +1 -1
  8. package/dist/index.min.js.map +1 -1
  9. package/dist/index.node.js +2 -2
  10. package/dist/index.node.js.map +1 -1
  11. package/dist/index.node.min.js +1 -1
  12. package/dist/index.node.min.js.map +1 -1
  13. package/lib-es6/__package__.js +2 -2
  14. package/package.json +4 -4
  15. package/src/__package__.ts +3 -3
  16. package/src/__tests__/dfuXRef.ts +22 -22
  17. package/src/__tests__/https.ts +69 -69
  18. package/src/__tests__/workunit.ts +35 -35
  19. package/src/clienttools/eclMeta.ts +506 -506
  20. package/src/clienttools/eclcc.ts +628 -628
  21. package/src/connection.ts +295 -295
  22. package/src/ecl/activity.ts +82 -82
  23. package/src/ecl/dfuWorkunit.ts +363 -363
  24. package/src/ecl/graph.ts +196 -196
  25. package/src/ecl/logicalFile.ts +195 -195
  26. package/src/ecl/machine.ts +63 -63
  27. package/src/ecl/query.ts +252 -252
  28. package/src/ecl/queryGraph.ts +813 -813
  29. package/src/ecl/resource.ts +39 -39
  30. package/src/ecl/result.ts +236 -236
  31. package/src/ecl/scope.ts +192 -192
  32. package/src/ecl/sourceFile.ts +34 -34
  33. package/src/ecl/store.ts +154 -154
  34. package/src/ecl/targetCluster.ts +149 -149
  35. package/src/ecl/timer.ts +42 -42
  36. package/src/ecl/topology.ts +131 -131
  37. package/src/ecl/workunit.ts +1314 -1314
  38. package/src/ecl/xsdParser.ts +268 -268
  39. package/src/espConnection.ts +172 -172
  40. package/src/index-common.ts +41 -41
  41. package/src/index.node.ts +68 -68
  42. package/src/index.ts +3 -3
  43. package/src/pem/trustwave.ts +909 -909
  44. package/src/services/fileSpray.ts +48 -48
  45. package/src/services/wsAccess.ts +8 -8
  46. package/src/services/wsAccount.ts +27 -27
  47. package/src/services/wsCloud.ts +73 -73
  48. package/src/services/wsCodesign.ts +94 -94
  49. package/src/services/wsDFU.ts +34 -34
  50. package/src/services/wsDFUXRef.ts +308 -308
  51. package/src/services/wsDali.ts +40 -40
  52. package/src/services/wsEcl.ts +123 -123
  53. package/src/services/wsElk.ts +8 -8
  54. package/src/services/wsLogaccess.ts +263 -263
  55. package/src/services/wsMachine.ts +89 -89
  56. package/src/services/wsPackageProcess.ts +8 -8
  57. package/src/services/wsResources.ts +8 -8
  58. package/src/services/wsSMC.ts +24 -24
  59. package/src/services/wsSasha.ts +7 -7
  60. package/src/services/wsStore.ts +230 -230
  61. package/src/services/wsTopology.ts +45 -45
  62. package/src/services/wsWorkunits.ts +160 -160
  63. package/src/services/wsdl/FileSpray/v1.23/FileSpray.ts +1008 -1008
  64. package/src/services/wsdl/FileSpray/v1.25/FileSpray.ts +1040 -1040
  65. package/src/services/wsdl/FileSpray/v1.26/FileSpray.ts +929 -929
  66. package/src/services/wsdl/WsCloud/v1/WsCloud.ts +38 -38
  67. package/src/services/wsdl/WsCloud/v1.02/WsCloud.ts +77 -77
  68. package/src/services/wsdl/WsDFUXRef/v1.02/WsDFUXRef.ts +224 -224
  69. package/src/services/wsdl/WsDali/v1.04/WsDali.ts +216 -216
  70. package/src/services/wsdl/WsDfu/v1.62/WsDfu.ts +1455 -1455
  71. package/src/services/wsdl/WsDfu/v1.63/WsDfu.ts +1465 -1465
  72. package/src/services/wsdl/WsDfu/v1.65/WsDfu.ts +1244 -1244
  73. package/src/services/wsdl/WsFileIO/v1.01/WsFileIO.ts +107 -107
  74. package/src/services/wsdl/WsPackageProcess/v1.04/WsPackageProcess.ts +519 -519
  75. package/src/services/wsdl/WsResources/v1.01/WsResources.ts +119 -119
  76. package/src/services/wsdl/WsSMC/v1.24/WsSMC.ts +665 -665
  77. package/src/services/wsdl/WsSMC/v1.27/WsSMC.ts +670 -670
  78. package/src/services/wsdl/WsTopology/v1.31/WsTopology.ts +856 -856
  79. package/src/services/wsdl/WsTopology/v1.32/WsTopology.ts +885 -885
  80. package/src/services/wsdl/WsWorkunits/v1.88/WsWorkunits.ts +2944 -2944
  81. package/src/services/wsdl/WsWorkunits/v1.94/WsWorkunits.ts +3072 -3072
  82. package/src/services/wsdl/WsWorkunits/v1.95/WsWorkunits.ts +3073 -3073
  83. package/src/services/wsdl/WsWorkunits/v1.97/WsWorkunits.ts +3134 -3134
  84. package/src/services/wsdl/WsWorkunits/v1.98/WsWorkunits.ts +3182 -3182
  85. package/src/services/wsdl/WsWorkunits/v1.99/WsWorkunits.ts +3162 -3162
  86. package/src/services/wsdl/WsWorkunits/v2/WsWorkunits.ts +3153 -3153
  87. package/src/services/wsdl/WsWorkunits/v2.02/WsWorkunits.ts +3157 -3157
  88. package/src/services/wsdl/ws_access/v1.16/ws_access.ts +1086 -1086
  89. package/src/services/wsdl/ws_access/v1.17/ws_access.ts +1023 -1023
  90. package/src/services/wsdl/ws_account/v1.05/ws_account.ts +111 -111
  91. package/src/services/wsdl/ws_account/v1.06/ws_account.ts +109 -109
  92. package/src/services/wsdl/ws_codesign/v1.1/ws_codesign.ts +100 -100
  93. package/src/services/wsdl/ws_elk/v1/ws_elk.ts +47 -47
  94. package/src/services/wsdl/ws_logaccess/v1/ws_logaccess.ts +83 -83
  95. package/src/services/wsdl/ws_logaccess/v1.02/ws_logaccess.ts +161 -161
  96. package/src/services/wsdl/ws_logaccess/v1.03/ws_logaccess.ts +190 -190
  97. package/src/services/wsdl/ws_logaccess/v1.04/ws_logaccess.ts +215 -215
  98. package/src/services/wsdl/ws_logaccess/v1.05/ws_logaccess.ts +219 -219
  99. package/src/services/wsdl/ws_logaccess/v1.08/ws_logaccess.ts +267 -267
  100. package/src/services/wsdl/ws_machine/v1.17/ws_machine.ts +567 -567
  101. package/src/services/wsdl/wsstore/v1.02/wsstore.ts +250 -250
  102. package/types/__package__.d.ts +2 -2
  103. package/types-3.4/__package__.d.ts +2 -2
@@ -1,38 +1,38 @@
1
- import { IConnection, IOptions } from "../../../../connection";
2
- import { Service } from "../../../../espConnection";
3
-
4
- export namespace WsCloud {
5
-
6
- export interface GetPODsRequest {
7
-
8
- }
9
-
10
- export interface GetPODsResponse {
11
- Result: string;
12
- }
13
-
14
- export interface WsCloudPingRequest {
15
-
16
- }
17
-
18
- export interface WsCloudPingResponse {
19
-
20
- }
21
-
22
- }
23
-
24
- export class CloudServiceBase extends Service {
25
-
26
- constructor(optsConnection: IOptions | IConnection) {
27
- super(optsConnection, "WsCloud", "1");
28
- }
29
-
30
- GetPODs(request: WsCloud.GetPODsRequest): Promise<WsCloud.GetPODsResponse> {
31
- return this._connection.send("GetPODs", request);
32
- }
33
-
34
- Ping(request: WsCloud.WsCloudPingRequest): Promise<WsCloud.WsCloudPingResponse> {
35
- return this._connection.send("Ping", request);
36
- }
37
-
38
- }
1
+ import { IConnection, IOptions } from "../../../../connection";
2
+ import { Service } from "../../../../espConnection";
3
+
4
+ export namespace WsCloud {
5
+
6
+ export interface GetPODsRequest {
7
+
8
+ }
9
+
10
+ export interface GetPODsResponse {
11
+ Result: string;
12
+ }
13
+
14
+ export interface WsCloudPingRequest {
15
+
16
+ }
17
+
18
+ export interface WsCloudPingResponse {
19
+
20
+ }
21
+
22
+ }
23
+
24
+ export class CloudServiceBase extends Service {
25
+
26
+ constructor(optsConnection: IOptions | IConnection) {
27
+ super(optsConnection, "WsCloud", "1");
28
+ }
29
+
30
+ GetPODs(request: WsCloud.GetPODsRequest): Promise<WsCloud.GetPODsResponse> {
31
+ return this._connection.send("GetPODs", request);
32
+ }
33
+
34
+ Ping(request: WsCloud.WsCloudPingRequest): Promise<WsCloud.WsCloudPingResponse> {
35
+ return this._connection.send("Ping", request);
36
+ }
37
+
38
+ }
@@ -1,77 +1,77 @@
1
- import { IConnection, IOptions } from "../../../../connection";
2
- import { Service } from "../../../../espConnection";
3
-
4
- export namespace WsCloud {
5
-
6
- export type int = number;
7
-
8
- export interface GetPODsRequest {
9
-
10
- }
11
-
12
- export interface Port {
13
- ContainerPort: int;
14
- Name: string;
15
- Protocol: string;
16
- }
17
-
18
- export interface Ports {
19
- Port: Port[];
20
- }
21
-
22
- export interface Pod {
23
- Name: string;
24
- Status: string;
25
- CreationTimestamp: string;
26
- ContainerName: string;
27
- ContainerCount: int;
28
- ContainerReadyCount: int;
29
- ContainerRestartCount: int;
30
- Ports: Ports;
31
- }
32
-
33
- export interface Pods {
34
- Pod: Pod[];
35
- }
36
-
37
- export interface GetPODsResponse {
38
- Pods: Pods;
39
- }
40
-
41
- export interface GetServicesRequest {
42
-
43
- }
44
-
45
- export interface GetServicesResponse {
46
- Result: string;
47
- }
48
-
49
- export interface WsCloudPingRequest {
50
-
51
- }
52
-
53
- export interface WsCloudPingResponse {
54
-
55
- }
56
-
57
- }
58
-
59
- export class CloudServiceBase extends Service {
60
-
61
- constructor(optsConnection: IOptions | IConnection) {
62
- super(optsConnection, "WsCloud", "1.02");
63
- }
64
-
65
- GetPODs(request: Partial<WsCloud.GetPODsRequest>): Promise<WsCloud.GetPODsResponse> {
66
- return this._connection.send("GetPODs", request, "json", false, undefined, "GetPODsResponse");
67
- }
68
-
69
- GetServices(request: Partial<WsCloud.GetServicesRequest>): Promise<WsCloud.GetServicesResponse> {
70
- return this._connection.send("GetServices", request, "json", false, undefined, "GetServicesResponse");
71
- }
72
-
73
- Ping(request: Partial<WsCloud.WsCloudPingRequest>): Promise<WsCloud.WsCloudPingResponse> {
74
- return this._connection.send("Ping", request, "json", false, undefined, "WsCloudPingResponse");
75
- }
76
-
77
- }
1
+ import { IConnection, IOptions } from "../../../../connection";
2
+ import { Service } from "../../../../espConnection";
3
+
4
+ export namespace WsCloud {
5
+
6
+ export type int = number;
7
+
8
+ export interface GetPODsRequest {
9
+
10
+ }
11
+
12
+ export interface Port {
13
+ ContainerPort: int;
14
+ Name: string;
15
+ Protocol: string;
16
+ }
17
+
18
+ export interface Ports {
19
+ Port: Port[];
20
+ }
21
+
22
+ export interface Pod {
23
+ Name: string;
24
+ Status: string;
25
+ CreationTimestamp: string;
26
+ ContainerName: string;
27
+ ContainerCount: int;
28
+ ContainerReadyCount: int;
29
+ ContainerRestartCount: int;
30
+ Ports: Ports;
31
+ }
32
+
33
+ export interface Pods {
34
+ Pod: Pod[];
35
+ }
36
+
37
+ export interface GetPODsResponse {
38
+ Pods: Pods;
39
+ }
40
+
41
+ export interface GetServicesRequest {
42
+
43
+ }
44
+
45
+ export interface GetServicesResponse {
46
+ Result: string;
47
+ }
48
+
49
+ export interface WsCloudPingRequest {
50
+
51
+ }
52
+
53
+ export interface WsCloudPingResponse {
54
+
55
+ }
56
+
57
+ }
58
+
59
+ export class CloudServiceBase extends Service {
60
+
61
+ constructor(optsConnection: IOptions | IConnection) {
62
+ super(optsConnection, "WsCloud", "1.02");
63
+ }
64
+
65
+ GetPODs(request: Partial<WsCloud.GetPODsRequest>): Promise<WsCloud.GetPODsResponse> {
66
+ return this._connection.send("GetPODs", request, "json", false, undefined, "GetPODsResponse");
67
+ }
68
+
69
+ GetServices(request: Partial<WsCloud.GetServicesRequest>): Promise<WsCloud.GetServicesResponse> {
70
+ return this._connection.send("GetServices", request, "json", false, undefined, "GetServicesResponse");
71
+ }
72
+
73
+ Ping(request: Partial<WsCloud.WsCloudPingRequest>): Promise<WsCloud.WsCloudPingResponse> {
74
+ return this._connection.send("Ping", request, "json", false, undefined, "WsCloudPingResponse");
75
+ }
76
+
77
+ }
@@ -1,224 +1,224 @@
1
- import { IConnection, IOptions } from "../../../../connection";
2
- import { Service } from "../../../../espConnection";
3
-
4
- type unsignedInt = number;
5
- type long = number;
6
-
7
- export namespace WsDFUXRef {
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?: {
18
- Item?: string[];
19
- };
20
- }
21
-
22
- export interface DFUXRefArrayActionResponse {
23
- DFUXRefArrayActionResult: string;
24
- }
25
-
26
- export interface DFUXRefBuildRequest {
27
- Cluster?: string;
28
- }
29
-
30
- export interface DFUXRefBuildResponse {
31
- DFUXRefActionResult: string;
32
- }
33
-
34
- export interface DFUXRefBuildCancelRequest {
35
-
36
- }
37
-
38
- export interface DFUXRefBuildCancelResponse {
39
- DFUXRefBuildCancelResult: string;
40
- }
41
-
42
- export interface DFUXRefCleanDirectoriesRequest {
43
- Cluster?: string;
44
- }
45
-
46
- export interface Exception {
47
- Code: string;
48
- Audience: string;
49
- Source: string;
50
- Message: string;
51
- }
52
-
53
- export interface Exceptions {
54
- Source: string;
55
- Exception: Exception[];
56
- }
57
-
58
- export interface DFUXRefCleanDirectoriesResponse {
59
- Exceptions: {
60
- Source: string;
61
- Exception: Exception[];
62
- };
63
- }
64
-
65
- export interface DFUXRefDirectoriesQueryRequest {
66
- Cluster?: string;
67
- }
68
-
69
- export interface DFUXRefDirectoriesQueryResponse {
70
- DFUXRefDirectoriesQueryResult: string;
71
- }
72
-
73
- export interface DFUXRefFoundFilesQueryRequest {
74
- Cluster?: string;
75
- }
76
-
77
- export interface DFUXRefFoundFilesQueryResponse {
78
- DFUXRefFoundFilesQueryResult: string;
79
- }
80
-
81
- export interface DFUXRefListRequest {
82
-
83
- }
84
-
85
- export interface DFUXRefListResponse {
86
- DFUXRefListResult: string;
87
- }
88
-
89
- export interface DFUXRefLostFilesQueryRequest {
90
- Cluster?: string;
91
- }
92
-
93
- export interface DFUXRefLostFilesQueryResponse {
94
- DFUXRefLostFilesQueryResult: string;
95
- }
96
-
97
- export interface DFUXRefMessagesQueryRequest {
98
- Cluster?: string;
99
- }
100
-
101
- export interface DFUXRefMessagesQueryResponse {
102
- DFUXRefMessagesQueryResult: string;
103
- }
104
-
105
- export interface DFUXRefOrphanFilesQueryRequest {
106
- Cluster?: string;
107
- }
108
-
109
- export interface DFUXRefOrphanFilesQueryResponse {
110
- DFUXRefOrphanFilesQueryResult: string;
111
- }
112
-
113
- export interface DFUXRefUnusedFilesRequest {
114
- ProcessCluster?: string;
115
- CheckPackageMaps?: boolean;
116
- GetFileDetails?: boolean;
117
- }
118
-
119
- export interface UnusedFiles {
120
- File: string[];
121
- }
122
-
123
- export interface DFULogicalFile {
124
- Prefix: string;
125
- ClusterName: string;
126
- Directory: string;
127
- Description: string;
128
- Parts: string;
129
- Name: string;
130
- Owner: string;
131
- Totalsize: string;
132
- RecordCount: string;
133
- Modified: string;
134
- LongSize: string;
135
- LongRecordCount: string;
136
- isSuperfile: boolean;
137
- isZipfile: boolean;
138
- isDirectory: boolean;
139
- Replicate: boolean;
140
- IntSize: long;
141
- IntRecordCount: long;
142
- FromRoxieCluster: boolean;
143
- }
144
-
145
- export interface UnusedFilesWithDetails {
146
- DFULogicalFile: DFULogicalFile[];
147
- }
148
-
149
- export interface DFUXRefUnusedFilesResponse {
150
- Exceptions: Exceptions;
151
- UnusedFileCount: unsignedInt;
152
- UnusedFiles: {
153
- File: string[];
154
- };
155
- UnusedFilesWithDetails: {
156
- DFULogicalFile: DFULogicalFile[];
157
- };
158
- }
159
-
160
- export interface WsDFUXRefPingRequest {
161
-
162
- }
163
-
164
- export interface WsDFUXRefPingResponse {
165
-
166
- }
167
-
168
- }
169
-
170
- export class DFUXRefServiceBase extends Service {
171
-
172
- constructor(optsConnection: IOptions | IConnection) {
173
- super(optsConnection, "WsDFUXRef", "1.02");
174
- }
175
-
176
- DFUXRefArrayAction(request: WsDFUXRef.DFUXRefArrayActionRequest): Promise<WsDFUXRef.DFUXRefArrayActionResponse> {
177
- return this._connection.send("DFUXRefArrayAction", request);
178
- }
179
-
180
- DFUXRefBuild(request: WsDFUXRef.DFUXRefBuildRequest): Promise<WsDFUXRef.DFUXRefBuildResponse> {
181
- return this._connection.send("DFUXRefBuild", request);
182
- }
183
-
184
- DFUXRefBuildCancel(request: WsDFUXRef.DFUXRefBuildCancelRequest): Promise<WsDFUXRef.DFUXRefBuildCancelResponse> {
185
- return this._connection.send("DFUXRefBuildCancel", request);
186
- }
187
-
188
- DFUXRefCleanDirectories(request: WsDFUXRef.DFUXRefCleanDirectoriesRequest): Promise<WsDFUXRef.DFUXRefCleanDirectoriesResponse> {
189
- return this._connection.send("DFUXRefCleanDirectories", request);
190
- }
191
-
192
- DFUXRefDirectories(request: WsDFUXRef.DFUXRefDirectoriesQueryRequest): Promise<WsDFUXRef.DFUXRefDirectoriesQueryResponse> {
193
- return this._connection.send("DFUXRefDirectories", request);
194
- }
195
-
196
- DFUXRefFoundFiles(request: WsDFUXRef.DFUXRefFoundFilesQueryRequest): Promise<WsDFUXRef.DFUXRefFoundFilesQueryResponse> {
197
- return this._connection.send("DFUXRefFoundFiles", request);
198
- }
199
-
200
- DFUXRefList(request: WsDFUXRef.DFUXRefListRequest): Promise<WsDFUXRef.DFUXRefListResponse> {
201
- return this._connection.send("DFUXRefList", request);
202
- }
203
-
204
- DFUXRefLostFiles(request: WsDFUXRef.DFUXRefLostFilesQueryRequest): Promise<WsDFUXRef.DFUXRefLostFilesQueryResponse> {
205
- return this._connection.send("DFUXRefLostFiles", request);
206
- }
207
-
208
- DFUXRefMessages(request: WsDFUXRef.DFUXRefMessagesQueryRequest): Promise<WsDFUXRef.DFUXRefMessagesQueryResponse> {
209
- return this._connection.send("DFUXRefMessages", request);
210
- }
211
-
212
- DFUXRefOrphanFiles(request: WsDFUXRef.DFUXRefOrphanFilesQueryRequest): Promise<WsDFUXRef.DFUXRefOrphanFilesQueryResponse> {
213
- return this._connection.send("DFUXRefOrphanFiles", request);
214
- }
215
-
216
- DFUXRefUnusedFiles(request: WsDFUXRef.DFUXRefUnusedFilesRequest): Promise<WsDFUXRef.DFUXRefUnusedFilesResponse> {
217
- return this._connection.send("DFUXRefUnusedFiles", request);
218
- }
219
-
220
- Ping(request: WsDFUXRef.WsDFUXRefPingRequest): Promise<WsDFUXRef.WsDFUXRefPingResponse> {
221
- return this._connection.send("Ping", request);
222
- }
223
-
224
- }
1
+ import { IConnection, IOptions } from "../../../../connection";
2
+ import { Service } from "../../../../espConnection";
3
+
4
+ type unsignedInt = number;
5
+ type long = number;
6
+
7
+ export namespace WsDFUXRef {
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?: {
18
+ Item?: string[];
19
+ };
20
+ }
21
+
22
+ export interface DFUXRefArrayActionResponse {
23
+ DFUXRefArrayActionResult: string;
24
+ }
25
+
26
+ export interface DFUXRefBuildRequest {
27
+ Cluster?: string;
28
+ }
29
+
30
+ export interface DFUXRefBuildResponse {
31
+ DFUXRefActionResult: string;
32
+ }
33
+
34
+ export interface DFUXRefBuildCancelRequest {
35
+
36
+ }
37
+
38
+ export interface DFUXRefBuildCancelResponse {
39
+ DFUXRefBuildCancelResult: string;
40
+ }
41
+
42
+ export interface DFUXRefCleanDirectoriesRequest {
43
+ Cluster?: string;
44
+ }
45
+
46
+ export interface Exception {
47
+ Code: string;
48
+ Audience: string;
49
+ Source: string;
50
+ Message: string;
51
+ }
52
+
53
+ export interface Exceptions {
54
+ Source: string;
55
+ Exception: Exception[];
56
+ }
57
+
58
+ export interface DFUXRefCleanDirectoriesResponse {
59
+ Exceptions: {
60
+ Source: string;
61
+ Exception: Exception[];
62
+ };
63
+ }
64
+
65
+ export interface DFUXRefDirectoriesQueryRequest {
66
+ Cluster?: string;
67
+ }
68
+
69
+ export interface DFUXRefDirectoriesQueryResponse {
70
+ DFUXRefDirectoriesQueryResult: string;
71
+ }
72
+
73
+ export interface DFUXRefFoundFilesQueryRequest {
74
+ Cluster?: string;
75
+ }
76
+
77
+ export interface DFUXRefFoundFilesQueryResponse {
78
+ DFUXRefFoundFilesQueryResult: string;
79
+ }
80
+
81
+ export interface DFUXRefListRequest {
82
+
83
+ }
84
+
85
+ export interface DFUXRefListResponse {
86
+ DFUXRefListResult: string;
87
+ }
88
+
89
+ export interface DFUXRefLostFilesQueryRequest {
90
+ Cluster?: string;
91
+ }
92
+
93
+ export interface DFUXRefLostFilesQueryResponse {
94
+ DFUXRefLostFilesQueryResult: string;
95
+ }
96
+
97
+ export interface DFUXRefMessagesQueryRequest {
98
+ Cluster?: string;
99
+ }
100
+
101
+ export interface DFUXRefMessagesQueryResponse {
102
+ DFUXRefMessagesQueryResult: string;
103
+ }
104
+
105
+ export interface DFUXRefOrphanFilesQueryRequest {
106
+ Cluster?: string;
107
+ }
108
+
109
+ export interface DFUXRefOrphanFilesQueryResponse {
110
+ DFUXRefOrphanFilesQueryResult: string;
111
+ }
112
+
113
+ export interface DFUXRefUnusedFilesRequest {
114
+ ProcessCluster?: string;
115
+ CheckPackageMaps?: boolean;
116
+ GetFileDetails?: boolean;
117
+ }
118
+
119
+ export interface UnusedFiles {
120
+ File: string[];
121
+ }
122
+
123
+ export interface DFULogicalFile {
124
+ Prefix: string;
125
+ ClusterName: string;
126
+ Directory: string;
127
+ Description: string;
128
+ Parts: string;
129
+ Name: string;
130
+ Owner: string;
131
+ Totalsize: string;
132
+ RecordCount: string;
133
+ Modified: string;
134
+ LongSize: string;
135
+ LongRecordCount: string;
136
+ isSuperfile: boolean;
137
+ isZipfile: boolean;
138
+ isDirectory: boolean;
139
+ Replicate: boolean;
140
+ IntSize: long;
141
+ IntRecordCount: long;
142
+ FromRoxieCluster: boolean;
143
+ }
144
+
145
+ export interface UnusedFilesWithDetails {
146
+ DFULogicalFile: DFULogicalFile[];
147
+ }
148
+
149
+ export interface DFUXRefUnusedFilesResponse {
150
+ Exceptions: Exceptions;
151
+ UnusedFileCount: unsignedInt;
152
+ UnusedFiles: {
153
+ File: string[];
154
+ };
155
+ UnusedFilesWithDetails: {
156
+ DFULogicalFile: DFULogicalFile[];
157
+ };
158
+ }
159
+
160
+ export interface WsDFUXRefPingRequest {
161
+
162
+ }
163
+
164
+ export interface WsDFUXRefPingResponse {
165
+
166
+ }
167
+
168
+ }
169
+
170
+ export class DFUXRefServiceBase extends Service {
171
+
172
+ constructor(optsConnection: IOptions | IConnection) {
173
+ super(optsConnection, "WsDFUXRef", "1.02");
174
+ }
175
+
176
+ DFUXRefArrayAction(request: WsDFUXRef.DFUXRefArrayActionRequest): Promise<WsDFUXRef.DFUXRefArrayActionResponse> {
177
+ return this._connection.send("DFUXRefArrayAction", request);
178
+ }
179
+
180
+ DFUXRefBuild(request: WsDFUXRef.DFUXRefBuildRequest): Promise<WsDFUXRef.DFUXRefBuildResponse> {
181
+ return this._connection.send("DFUXRefBuild", request);
182
+ }
183
+
184
+ DFUXRefBuildCancel(request: WsDFUXRef.DFUXRefBuildCancelRequest): Promise<WsDFUXRef.DFUXRefBuildCancelResponse> {
185
+ return this._connection.send("DFUXRefBuildCancel", request);
186
+ }
187
+
188
+ DFUXRefCleanDirectories(request: WsDFUXRef.DFUXRefCleanDirectoriesRequest): Promise<WsDFUXRef.DFUXRefCleanDirectoriesResponse> {
189
+ return this._connection.send("DFUXRefCleanDirectories", request);
190
+ }
191
+
192
+ DFUXRefDirectories(request: WsDFUXRef.DFUXRefDirectoriesQueryRequest): Promise<WsDFUXRef.DFUXRefDirectoriesQueryResponse> {
193
+ return this._connection.send("DFUXRefDirectories", request);
194
+ }
195
+
196
+ DFUXRefFoundFiles(request: WsDFUXRef.DFUXRefFoundFilesQueryRequest): Promise<WsDFUXRef.DFUXRefFoundFilesQueryResponse> {
197
+ return this._connection.send("DFUXRefFoundFiles", request);
198
+ }
199
+
200
+ DFUXRefList(request: WsDFUXRef.DFUXRefListRequest): Promise<WsDFUXRef.DFUXRefListResponse> {
201
+ return this._connection.send("DFUXRefList", request);
202
+ }
203
+
204
+ DFUXRefLostFiles(request: WsDFUXRef.DFUXRefLostFilesQueryRequest): Promise<WsDFUXRef.DFUXRefLostFilesQueryResponse> {
205
+ return this._connection.send("DFUXRefLostFiles", request);
206
+ }
207
+
208
+ DFUXRefMessages(request: WsDFUXRef.DFUXRefMessagesQueryRequest): Promise<WsDFUXRef.DFUXRefMessagesQueryResponse> {
209
+ return this._connection.send("DFUXRefMessages", request);
210
+ }
211
+
212
+ DFUXRefOrphanFiles(request: WsDFUXRef.DFUXRefOrphanFilesQueryRequest): Promise<WsDFUXRef.DFUXRefOrphanFilesQueryResponse> {
213
+ return this._connection.send("DFUXRefOrphanFiles", request);
214
+ }
215
+
216
+ DFUXRefUnusedFiles(request: WsDFUXRef.DFUXRefUnusedFilesRequest): Promise<WsDFUXRef.DFUXRefUnusedFilesResponse> {
217
+ return this._connection.send("DFUXRefUnusedFiles", request);
218
+ }
219
+
220
+ Ping(request: WsDFUXRef.WsDFUXRefPingRequest): Promise<WsDFUXRef.WsDFUXRefPingResponse> {
221
+ return this._connection.send("Ping", request);
222
+ }
223
+
224
+ }