@hpcc-js/comms 2.83.1 → 2.84.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.
- package/dist/index.es6.js +20555 -143
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +174 -116
- 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 +20663 -232
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.min.js +4 -1
- package/dist/index.node.min.js.map +1 -1
- package/lib-es6/__package__.js +2 -2
- package/lib-es6/connection.js +9 -1
- package/lib-es6/connection.js.map +1 -1
- package/lib-es6/ecl/targetCluster.js.map +1 -1
- package/lib-es6/ecl/topology.js.map +1 -1
- package/lib-es6/index.node.js +16 -4
- package/lib-es6/index.node.js.map +1 -1
- package/lib-es6/services/wsAccess.js +2 -1
- package/lib-es6/services/wsAccess.js.map +1 -1
- package/lib-es6/services/wsTopology.js +5 -31
- package/lib-es6/services/wsTopology.js.map +1 -1
- package/lib-es6/services/wsWorkunits.js +1 -1
- package/lib-es6/services/wsWorkunits.js.map +1 -1
- package/lib-es6/services/wsdl/WsTopology/v1.31/WsTopology.js +29 -26
- package/lib-es6/services/wsdl/WsTopology/v1.31/WsTopology.js.map +1 -1
- package/lib-es6/services/wsdl/ws_access/v1.17/ws_access.js +209 -0
- package/lib-es6/services/wsdl/ws_access/v1.17/ws_access.js.map +1 -0
- package/package.json +9 -8
- package/src/__package__.ts +3 -3
- package/src/connection.ts +9 -1
- package/src/ecl/targetCluster.ts +11 -11
- package/src/ecl/topology.ts +9 -9
- package/src/index.node.ts +16 -5
- package/src/services/wsAccess.ts +1 -1
- package/src/services/wsTopology.ts +7 -525
- package/src/services/wsWorkunits.ts +2 -2
- package/src/services/wsdl/WsTopology/v1.31/WsTopology.ts +685 -685
- package/src/services/wsdl/ws_access/v1.17/ws_access.ts +1103 -0
- package/types/__package__.d.ts +2 -2
- package/types/connection.d.ts.map +1 -1
- package/types/ecl/targetCluster.d.ts +8 -8
- package/types/ecl/targetCluster.d.ts.map +1 -1
- package/types/ecl/topology.d.ts +9 -9
- package/types/ecl/topology.d.ts.map +1 -1
- package/types/index.node.d.ts.map +1 -1
- package/types/services/wsAccess.d.ts +1 -1
- package/types/services/wsTopology.d.ts +5 -434
- package/types/services/wsTopology.d.ts.map +1 -1
- package/types/services/wsdl/WsTopology/v1.31/WsTopology.d.ts +9 -10
- package/types/services/wsdl/WsTopology/v1.31/WsTopology.d.ts.map +1 -1
- package/types/services/wsdl/ws_access/v1.17/ws_access.d.ts +789 -0
- package/types/services/wsdl/ws_access/v1.17/ws_access.d.ts.map +1 -0
- package/types-3.4/__package__.d.ts +2 -2
- package/types-3.4/ecl/targetCluster.d.ts +8 -8
- package/types-3.4/ecl/topology.d.ts +9 -9
- package/types-3.4/services/wsAccess.d.ts +1 -1
- package/types-3.4/services/wsTopology.d.ts +5 -434
- package/types-3.4/services/wsdl/WsTopology/v1.31/WsTopology.d.ts +9 -10
- package/types-3.4/services/wsdl/ws_access/v1.17/ws_access.d.ts +789 -0
|
@@ -1,328 +1,311 @@
|
|
|
1
1
|
import { IConnection, IOptions } from "../../../../connection";
|
|
2
2
|
import { Service } from "../../../../espConnection";
|
|
3
3
|
|
|
4
|
-
type int = number;
|
|
5
|
-
type base64Binary = string;
|
|
6
|
-
type unsignedInt = number;
|
|
7
|
-
type long = number;
|
|
8
|
-
|
|
9
|
-
export enum RoxieQueueFilter {
|
|
10
|
-
All = "All",
|
|
11
|
-
QueriesOnly = "QueriesOnly",
|
|
12
|
-
WorkunitsOnly = "WorkunitsOnly"
|
|
13
|
-
}
|
|
14
|
-
|
|
15
4
|
export namespace WsTopology {
|
|
16
5
|
|
|
17
|
-
export
|
|
6
|
+
export type int = number;
|
|
7
|
+
export type base64Binary = string;
|
|
8
|
+
export type unsignedInt = number;
|
|
9
|
+
export type long = number;
|
|
18
10
|
|
|
19
|
-
|
|
11
|
+
export enum RoxieQueueFilter {
|
|
12
|
+
All = "All",
|
|
13
|
+
QueriesOnly = "QueriesOnly",
|
|
14
|
+
WorkunitsOnly = "WorkunitsOnly"
|
|
15
|
+
}
|
|
20
16
|
|
|
21
|
-
export interface
|
|
17
|
+
export interface WsTopologyPingRequest {
|
|
22
18
|
|
|
23
|
-
}
|
|
19
|
+
}
|
|
24
20
|
|
|
25
|
-
export interface
|
|
26
|
-
Name?: string;
|
|
27
|
-
Type?: string;
|
|
28
|
-
Zip?: int;
|
|
29
|
-
}
|
|
21
|
+
export interface WsTopologyPingResponse {
|
|
30
22
|
|
|
31
|
-
|
|
32
|
-
Code: string;
|
|
33
|
-
Audience: string;
|
|
34
|
-
Source: string;
|
|
35
|
-
Message: string;
|
|
36
|
-
}
|
|
23
|
+
}
|
|
37
24
|
|
|
38
|
-
export interface
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
25
|
+
export interface SystemLogRequest {
|
|
26
|
+
Name?: string;
|
|
27
|
+
Type?: string;
|
|
28
|
+
Zip?: int;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
export interface Exception {
|
|
32
|
+
Code: string;
|
|
33
|
+
Audience: string;
|
|
34
|
+
Source: string;
|
|
35
|
+
Message: string;
|
|
36
|
+
}
|
|
42
37
|
|
|
43
|
-
export interface
|
|
44
|
-
Exceptions: {
|
|
38
|
+
export interface Exceptions {
|
|
45
39
|
Source: string;
|
|
46
40
|
Exception: Exception[];
|
|
47
|
-
}
|
|
48
|
-
thefile: base64Binary;
|
|
49
|
-
}
|
|
41
|
+
}
|
|
50
42
|
|
|
51
|
-
export interface
|
|
52
|
-
|
|
53
|
-
|
|
43
|
+
export interface SystemLogResponse {
|
|
44
|
+
Exceptions: {
|
|
45
|
+
Source: string;
|
|
46
|
+
Exception: Exception[];
|
|
47
|
+
};
|
|
48
|
+
thefile: base64Binary;
|
|
49
|
+
}
|
|
54
50
|
|
|
55
|
-
export interface
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
}
|
|
51
|
+
export interface TpClusterInfoRequest {
|
|
52
|
+
Name?: string;
|
|
53
|
+
}
|
|
59
54
|
|
|
60
|
-
export interface
|
|
61
|
-
|
|
62
|
-
|
|
55
|
+
export interface TpQueue {
|
|
56
|
+
Name: string;
|
|
57
|
+
WorkUnit: string;
|
|
58
|
+
}
|
|
63
59
|
|
|
64
|
-
export interface
|
|
65
|
-
Exceptions: Exceptions;
|
|
66
|
-
Name: string;
|
|
67
|
-
WorkUnit: string;
|
|
68
|
-
TpQueues: {
|
|
60
|
+
export interface TpQueues {
|
|
69
61
|
TpQueue: TpQueue[];
|
|
70
|
-
}
|
|
71
|
-
}
|
|
62
|
+
}
|
|
72
63
|
|
|
73
|
-
export interface
|
|
74
|
-
|
|
75
|
-
|
|
64
|
+
export interface TpClusterInfoResponse {
|
|
65
|
+
Exceptions: Exceptions;
|
|
66
|
+
Name: string;
|
|
67
|
+
WorkUnit: string;
|
|
68
|
+
TpQueues: {
|
|
69
|
+
TpQueue: TpQueue[];
|
|
70
|
+
};
|
|
71
|
+
}
|
|
76
72
|
|
|
77
|
-
export interface
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
ConfigNetaddress: string;
|
|
81
|
-
Domain: string;
|
|
82
|
-
Directory: string;
|
|
83
|
-
Type: string;
|
|
84
|
-
Available: string;
|
|
85
|
-
OS: int;
|
|
86
|
-
Path: string;
|
|
87
|
-
Port: int;
|
|
88
|
-
ProcessNumber: int;
|
|
89
|
-
Channels: unsignedInt;
|
|
90
|
-
}
|
|
73
|
+
export interface TpClusterQueryRequest {
|
|
74
|
+
Type?: string;
|
|
75
|
+
}
|
|
91
76
|
|
|
92
|
-
export interface
|
|
93
|
-
|
|
94
|
-
|
|
77
|
+
export interface TpMachine {
|
|
78
|
+
Name: string;
|
|
79
|
+
Netaddress: string;
|
|
80
|
+
ConfigNetaddress: string;
|
|
81
|
+
Domain: string;
|
|
82
|
+
Directory: string;
|
|
83
|
+
Type: string;
|
|
84
|
+
Available: string;
|
|
85
|
+
OS: int;
|
|
86
|
+
Path: string;
|
|
87
|
+
Port: int;
|
|
88
|
+
ProcessNumber: int;
|
|
89
|
+
Channels: unsignedInt;
|
|
90
|
+
}
|
|
95
91
|
|
|
96
|
-
export interface
|
|
97
|
-
Type: string;
|
|
98
|
-
Name: string;
|
|
99
|
-
QueueName: string;
|
|
100
|
-
Build: string;
|
|
101
|
-
Directory: string;
|
|
102
|
-
LogDirectory: string;
|
|
103
|
-
Desc: string;
|
|
104
|
-
Path: string;
|
|
105
|
-
DataModel: string;
|
|
106
|
-
OS: int;
|
|
107
|
-
HasThorSpareProcess: boolean;
|
|
108
|
-
TpMachines: {
|
|
92
|
+
export interface TpMachines {
|
|
109
93
|
TpMachine: TpMachine[];
|
|
110
|
-
}
|
|
111
|
-
}
|
|
94
|
+
}
|
|
112
95
|
|
|
113
|
-
export interface
|
|
114
|
-
|
|
115
|
-
|
|
96
|
+
export interface TpCluster {
|
|
97
|
+
Type: string;
|
|
98
|
+
Name: string;
|
|
99
|
+
QueueName: string;
|
|
100
|
+
Build: string;
|
|
101
|
+
Directory: string;
|
|
102
|
+
LogDirectory: string;
|
|
103
|
+
Desc: string;
|
|
104
|
+
Path: string;
|
|
105
|
+
DataModel: string;
|
|
106
|
+
OS: int;
|
|
107
|
+
HasThorSpareProcess: boolean;
|
|
108
|
+
TpMachines: {
|
|
109
|
+
TpMachine: TpMachine[];
|
|
110
|
+
};
|
|
111
|
+
}
|
|
116
112
|
|
|
117
|
-
export interface
|
|
118
|
-
Exceptions: Exceptions;
|
|
119
|
-
EnableSNMP: boolean;
|
|
120
|
-
AcceptLanguage: string;
|
|
121
|
-
TpClusters: {
|
|
113
|
+
export interface TpClusters {
|
|
122
114
|
TpCluster: TpCluster[];
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
export interface TpClusterQueryResponse {
|
|
118
|
+
Exceptions: Exceptions;
|
|
119
|
+
EnableSNMP: boolean;
|
|
120
|
+
AcceptLanguage: string;
|
|
121
|
+
TpClusters: {
|
|
122
|
+
TpCluster: TpCluster[];
|
|
123
|
+
};
|
|
124
|
+
}
|
|
130
125
|
|
|
131
|
-
export interface
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
Path: string;
|
|
136
|
-
ECLWatchVisible: boolean;
|
|
137
|
-
UMask: string;
|
|
138
|
-
TpMachines: TpMachines;
|
|
139
|
-
}
|
|
126
|
+
export interface TpDropZoneQueryRequest {
|
|
127
|
+
Name?: string;
|
|
128
|
+
ECLWatchVisibleOnly?: boolean;
|
|
129
|
+
}
|
|
140
130
|
|
|
141
|
-
export interface
|
|
142
|
-
|
|
143
|
-
|
|
131
|
+
export interface TpDropZone {
|
|
132
|
+
Name: string;
|
|
133
|
+
Description: string;
|
|
134
|
+
Build: string;
|
|
135
|
+
Path: string;
|
|
136
|
+
ECLWatchVisible: boolean;
|
|
137
|
+
UMask: string;
|
|
138
|
+
TpMachines: TpMachines;
|
|
139
|
+
}
|
|
144
140
|
|
|
145
|
-
export interface
|
|
146
|
-
Exceptions: Exceptions;
|
|
147
|
-
TpDropZones: {
|
|
141
|
+
export interface TpDropZones {
|
|
148
142
|
TpDropZone: TpDropZone[];
|
|
149
|
-
}
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
export interface TpGetComponentFileRequest {
|
|
153
|
-
CompType?: string;
|
|
154
|
-
CompName?: string;
|
|
155
|
-
NetAddress?: string;
|
|
156
|
-
Directory?: string;
|
|
157
|
-
FileType?: string;
|
|
158
|
-
OsType?: int;
|
|
159
|
-
PlainText?: string;
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
export interface TpGetComponentFileResponse {
|
|
163
|
-
Exceptions: Exceptions;
|
|
164
|
-
FileContents: base64Binary;
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
export interface TpGetServicePluginsRequest {
|
|
143
|
+
}
|
|
168
144
|
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
145
|
+
export interface TpDropZoneQueryResponse {
|
|
146
|
+
Exceptions: Exceptions;
|
|
147
|
+
TpDropZones: {
|
|
148
|
+
TpDropZone: TpDropZone[];
|
|
149
|
+
};
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
export interface TpGetComponentFileRequest {
|
|
153
|
+
CompType?: string;
|
|
154
|
+
CompName?: string;
|
|
155
|
+
NetAddress?: string;
|
|
156
|
+
Directory?: string;
|
|
157
|
+
FileType?: string;
|
|
158
|
+
OsType?: int;
|
|
159
|
+
PlainText?: string;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
export interface TpGetComponentFileResponse {
|
|
163
|
+
Exceptions: Exceptions;
|
|
164
|
+
FileContents: base64Binary;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
export interface TpGetServicePluginsRequest {
|
|
168
|
+
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
export interface Plugin {
|
|
172
|
+
ShortName: string;
|
|
173
|
+
LongName: string;
|
|
174
|
+
FolderName: string;
|
|
175
|
+
WidgetName: string;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
export interface Plugins {
|
|
185
179
|
Plugin: Plugin[];
|
|
186
|
-
}
|
|
187
|
-
}
|
|
180
|
+
}
|
|
188
181
|
|
|
189
|
-
export interface
|
|
190
|
-
|
|
191
|
-
|
|
182
|
+
export interface TpGetServicePluginsResponse {
|
|
183
|
+
Exceptions: Exceptions;
|
|
184
|
+
Plugins: {
|
|
185
|
+
Plugin: Plugin[];
|
|
186
|
+
};
|
|
187
|
+
}
|
|
192
188
|
|
|
193
|
-
export interface
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
ReplicateOutputs: boolean;
|
|
197
|
-
}
|
|
189
|
+
export interface TpGroupQueryRequest {
|
|
190
|
+
Kind?: string;
|
|
191
|
+
}
|
|
198
192
|
|
|
199
|
-
export interface
|
|
200
|
-
|
|
201
|
-
|
|
193
|
+
export interface TpGroup {
|
|
194
|
+
Name: string;
|
|
195
|
+
Kind: string;
|
|
196
|
+
ReplicateOutputs: boolean;
|
|
197
|
+
}
|
|
202
198
|
|
|
203
|
-
export interface
|
|
204
|
-
Exceptions: Exceptions;
|
|
205
|
-
TpGroups: {
|
|
199
|
+
export interface TpGroups {
|
|
206
200
|
TpGroup: TpGroup[];
|
|
207
|
-
}
|
|
208
|
-
}
|
|
201
|
+
}
|
|
209
202
|
|
|
210
|
-
export interface
|
|
203
|
+
export interface TpGroupQueryResponse {
|
|
204
|
+
Exceptions: Exceptions;
|
|
205
|
+
TpGroups: {
|
|
206
|
+
TpGroup: TpGroup[];
|
|
207
|
+
};
|
|
208
|
+
}
|
|
211
209
|
|
|
212
|
-
|
|
210
|
+
export interface TpListTargetClustersRequest {
|
|
213
211
|
|
|
214
|
-
|
|
215
|
-
Name: string;
|
|
216
|
-
Type: string;
|
|
217
|
-
IsDefault: boolean;
|
|
218
|
-
}
|
|
212
|
+
}
|
|
219
213
|
|
|
220
|
-
export interface
|
|
221
|
-
|
|
222
|
-
|
|
214
|
+
export interface TpClusterNameType {
|
|
215
|
+
Name: string;
|
|
216
|
+
Type: string;
|
|
217
|
+
IsDefault: boolean;
|
|
218
|
+
}
|
|
223
219
|
|
|
224
|
-
export interface
|
|
225
|
-
Exceptions: Exceptions;
|
|
226
|
-
TargetClusters: {
|
|
220
|
+
export interface TargetClusters {
|
|
227
221
|
TpClusterNameType: TpClusterNameType[];
|
|
228
|
-
}
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
export interface TpLogFileRequest {
|
|
232
|
-
Name?: string;
|
|
233
|
-
Type?: string;
|
|
234
|
-
LastHours?: int;
|
|
235
|
-
StartDate?: string;
|
|
236
|
-
EndDate?: string;
|
|
237
|
-
FirstRows?: int;
|
|
238
|
-
LastRows?: int;
|
|
239
|
-
FilterType?: int;
|
|
240
|
-
Reversely?: boolean;
|
|
241
|
-
Zip?: boolean;
|
|
242
|
-
PageNumber?: int;
|
|
243
|
-
LoadData?: boolean;
|
|
244
|
-
IncludeLogFieldNames?: boolean;
|
|
245
|
-
}
|
|
222
|
+
}
|
|
246
223
|
|
|
247
|
-
export interface
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
TotalPages: int;
|
|
272
|
-
AcceptLanguage: string;
|
|
273
|
-
LogFieldNames: {
|
|
224
|
+
export interface TpListTargetClustersResponse {
|
|
225
|
+
Exceptions: Exceptions;
|
|
226
|
+
TargetClusters: {
|
|
227
|
+
TpClusterNameType: TpClusterNameType[];
|
|
228
|
+
};
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
export interface TpLogFileRequest {
|
|
232
|
+
Name?: string;
|
|
233
|
+
Type?: string;
|
|
234
|
+
LastHours?: int;
|
|
235
|
+
StartDate?: string;
|
|
236
|
+
EndDate?: string;
|
|
237
|
+
FirstRows?: int;
|
|
238
|
+
LastRows?: int;
|
|
239
|
+
FilterType?: int;
|
|
240
|
+
Reversely?: boolean;
|
|
241
|
+
Zip?: boolean;
|
|
242
|
+
PageNumber?: int;
|
|
243
|
+
LoadData?: boolean;
|
|
244
|
+
IncludeLogFieldNames?: boolean;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
export interface LogFieldNames {
|
|
274
248
|
Item: string[];
|
|
275
|
-
}
|
|
276
|
-
}
|
|
249
|
+
}
|
|
277
250
|
|
|
278
|
-
export interface
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
251
|
+
export interface TpLogFileResponse {
|
|
252
|
+
Exceptions: Exceptions;
|
|
253
|
+
Name: string;
|
|
254
|
+
Type: string;
|
|
255
|
+
StartDate: string;
|
|
256
|
+
EndDate: string;
|
|
257
|
+
LastHours: int;
|
|
258
|
+
FirstRows: int;
|
|
259
|
+
LastRows: int;
|
|
260
|
+
Reversely: boolean;
|
|
261
|
+
Zip: boolean;
|
|
262
|
+
FilterType: int;
|
|
263
|
+
LogData: string;
|
|
264
|
+
HasDate: boolean;
|
|
265
|
+
FileSize: long;
|
|
266
|
+
PageFrom: long;
|
|
267
|
+
PageTo: long;
|
|
268
|
+
PageNumber: int;
|
|
269
|
+
PrevPage: int;
|
|
270
|
+
NextPage: int;
|
|
271
|
+
TotalPages: int;
|
|
272
|
+
AcceptLanguage: string;
|
|
273
|
+
LogFieldNames: {
|
|
274
|
+
Item: string[];
|
|
275
|
+
};
|
|
276
|
+
}
|
|
282
277
|
|
|
283
|
-
export interface
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
Process: string;
|
|
288
|
-
Type: string;
|
|
289
|
-
QueriesOnly: boolean;
|
|
290
|
-
}
|
|
278
|
+
export interface TpLogicalClusterQueryRequest {
|
|
279
|
+
EclServerQueue?: string;
|
|
280
|
+
RoxieQueueFilter?: RoxieQueueFilter;
|
|
281
|
+
}
|
|
291
282
|
|
|
292
|
-
export interface
|
|
293
|
-
|
|
294
|
-
|
|
283
|
+
export interface TpLogicalCluster {
|
|
284
|
+
Name: string;
|
|
285
|
+
Queue: string;
|
|
286
|
+
LanguageVersion: string;
|
|
287
|
+
Process: string;
|
|
288
|
+
Type: string;
|
|
289
|
+
QueriesOnly: boolean;
|
|
290
|
+
}
|
|
295
291
|
|
|
296
|
-
export interface
|
|
297
|
-
Exceptions: Exceptions;
|
|
298
|
-
TpLogicalClusters: {
|
|
292
|
+
export interface TpLogicalClusters {
|
|
299
293
|
TpLogicalCluster: TpLogicalCluster[];
|
|
300
|
-
}
|
|
301
|
-
}
|
|
294
|
+
}
|
|
302
295
|
|
|
303
|
-
export interface
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
296
|
+
export interface TpLogicalClusterQueryResponse {
|
|
297
|
+
Exceptions: Exceptions;
|
|
298
|
+
TpLogicalClusters: {
|
|
299
|
+
TpLogicalCluster: TpLogicalCluster[];
|
|
300
|
+
};
|
|
301
|
+
}
|
|
307
302
|
|
|
308
|
-
export interface
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
Domain: string;
|
|
313
|
-
Directory: string;
|
|
314
|
-
Type: string;
|
|
315
|
-
Available: string;
|
|
316
|
-
OS: int;
|
|
317
|
-
Path: string;
|
|
318
|
-
Port: int;
|
|
319
|
-
ProcessNumber: int;
|
|
320
|
-
Channels: unsignedInt;
|
|
321
|
-
}
|
|
303
|
+
export interface TpMachineInfoRequest {
|
|
304
|
+
Name?: string;
|
|
305
|
+
NetAddress?: string;
|
|
306
|
+
}
|
|
322
307
|
|
|
323
|
-
export interface
|
|
324
|
-
Exceptions: Exceptions;
|
|
325
|
-
MachineInfo: {
|
|
308
|
+
export interface MachineInfo {
|
|
326
309
|
Name: string;
|
|
327
310
|
Netaddress: string;
|
|
328
311
|
ConfigNetaddress: string;
|
|
@@ -335,304 +318,264 @@ export interface TpMachineInfoResponse {
|
|
|
335
318
|
Port: int;
|
|
336
319
|
ProcessNumber: int;
|
|
337
320
|
Channels: unsignedInt;
|
|
338
|
-
}
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
}
|
|
386
|
-
|
|
387
|
-
export interface
|
|
388
|
-
|
|
389
|
-
}
|
|
390
|
-
|
|
391
|
-
export interface
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
export interface TpMachineInfoResponse {
|
|
324
|
+
Exceptions: Exceptions;
|
|
325
|
+
MachineInfo: {
|
|
326
|
+
Name: string;
|
|
327
|
+
Netaddress: string;
|
|
328
|
+
ConfigNetaddress: string;
|
|
329
|
+
Domain: string;
|
|
330
|
+
Directory: string;
|
|
331
|
+
Type: string;
|
|
332
|
+
Available: string;
|
|
333
|
+
OS: int;
|
|
334
|
+
Path: string;
|
|
335
|
+
Port: int;
|
|
336
|
+
ProcessNumber: int;
|
|
337
|
+
Channels: unsignedInt;
|
|
338
|
+
};
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
export interface TpMachineQueryRequest {
|
|
342
|
+
Type?: string;
|
|
343
|
+
Cluster?: string;
|
|
344
|
+
OldIP?: string;
|
|
345
|
+
Path?: string;
|
|
346
|
+
Directory?: string;
|
|
347
|
+
LogDirectory?: string;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
export interface TpMachineQueryResponse {
|
|
351
|
+
Exceptions: Exceptions;
|
|
352
|
+
EnablePreflightInfo: boolean;
|
|
353
|
+
HasThorSpareProcess: boolean;
|
|
354
|
+
Type: string;
|
|
355
|
+
Cluster: string;
|
|
356
|
+
OldIP: string;
|
|
357
|
+
LogDirectory: string;
|
|
358
|
+
Path: string;
|
|
359
|
+
MemThreshold: int;
|
|
360
|
+
DiskThreshold: int;
|
|
361
|
+
CpuThreshold: int;
|
|
362
|
+
MemThresholdType: string;
|
|
363
|
+
DiskThresholdType: string;
|
|
364
|
+
PreflightProcessFilter: string;
|
|
365
|
+
EnableSNMP: boolean;
|
|
366
|
+
AcceptLanguage: string;
|
|
367
|
+
TpMachines: TpMachines;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
export interface TpServiceQueryRequest {
|
|
371
|
+
Type?: string;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
export interface TpDali {
|
|
375
|
+
Name: string;
|
|
376
|
+
Description: string;
|
|
377
|
+
Build: string;
|
|
378
|
+
BackupComputer: string;
|
|
379
|
+
BackupDirectory: string;
|
|
380
|
+
Type: string;
|
|
381
|
+
Path: string;
|
|
382
|
+
LogDirectory: string;
|
|
383
|
+
AuditLogDirectory: string;
|
|
384
|
+
TpMachines: TpMachines;
|
|
385
|
+
}
|
|
401
386
|
|
|
402
|
-
export interface
|
|
403
|
-
|
|
404
|
-
}
|
|
387
|
+
export interface TpDalis {
|
|
388
|
+
TpDali: TpDali[];
|
|
389
|
+
}
|
|
405
390
|
|
|
406
|
-
export interface
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
391
|
+
export interface TpDfuServer {
|
|
392
|
+
Name: string;
|
|
393
|
+
Description: string;
|
|
394
|
+
Build: string;
|
|
395
|
+
Queue: string;
|
|
396
|
+
Type: string;
|
|
397
|
+
Path: string;
|
|
398
|
+
LogDirectory: string;
|
|
399
|
+
TpMachines: TpMachines;
|
|
400
|
+
}
|
|
413
401
|
|
|
414
|
-
export interface
|
|
415
|
-
|
|
416
|
-
}
|
|
402
|
+
export interface TpDfuServers {
|
|
403
|
+
TpDfuServer: TpDfuServer[];
|
|
404
|
+
}
|
|
417
405
|
|
|
418
|
-
export interface
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
LogDir: string;
|
|
426
|
-
TpMachines: TpMachines;
|
|
427
|
-
}
|
|
406
|
+
export interface TpDkcSlave {
|
|
407
|
+
Name: string;
|
|
408
|
+
Description: string;
|
|
409
|
+
Build: string;
|
|
410
|
+
Path: string;
|
|
411
|
+
TpMachines: TpMachines;
|
|
412
|
+
}
|
|
428
413
|
|
|
429
|
-
export interface
|
|
430
|
-
|
|
431
|
-
}
|
|
414
|
+
export interface TpDkcSlaves {
|
|
415
|
+
TpDkcSlave: TpDkcSlave[];
|
|
416
|
+
}
|
|
432
417
|
|
|
433
|
-
export interface
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
418
|
+
export interface TpEclAgent {
|
|
419
|
+
Name: string;
|
|
420
|
+
Description: string;
|
|
421
|
+
Build: string;
|
|
422
|
+
Type: string;
|
|
423
|
+
Path: string;
|
|
424
|
+
DaliServer: string;
|
|
425
|
+
LogDir: string;
|
|
426
|
+
TpMachines: TpMachines;
|
|
427
|
+
}
|
|
442
428
|
|
|
443
|
-
export interface
|
|
444
|
-
|
|
445
|
-
}
|
|
429
|
+
export interface TpEclAgents {
|
|
430
|
+
TpEclAgent: TpEclAgent[];
|
|
431
|
+
}
|
|
446
432
|
|
|
447
|
-
export interface
|
|
448
|
-
|
|
449
|
-
|
|
433
|
+
export interface TpEclServer {
|
|
434
|
+
Name: string;
|
|
435
|
+
Description: string;
|
|
436
|
+
Build: string;
|
|
437
|
+
LogDirectory: string;
|
|
438
|
+
Type: string;
|
|
439
|
+
Path: string;
|
|
440
|
+
TpMachines: TpMachines;
|
|
441
|
+
}
|
|
450
442
|
|
|
451
|
-
export interface
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
Build: string;
|
|
455
|
-
LogDirectory: string;
|
|
456
|
-
Type: string;
|
|
457
|
-
Path: string;
|
|
458
|
-
TpMachines: TpMachines;
|
|
459
|
-
}
|
|
443
|
+
export interface TpEclServers {
|
|
444
|
+
TpEclServer: TpEclServer[];
|
|
445
|
+
}
|
|
460
446
|
|
|
461
|
-
export interface
|
|
462
|
-
|
|
463
|
-
}
|
|
447
|
+
export interface TpEclCCServers {
|
|
448
|
+
TpEclServer: TpEclServer[];
|
|
449
|
+
}
|
|
464
450
|
|
|
465
|
-
export interface
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
}
|
|
451
|
+
export interface TpEclScheduler {
|
|
452
|
+
Name: string;
|
|
453
|
+
Description: string;
|
|
454
|
+
Build: string;
|
|
455
|
+
LogDirectory: string;
|
|
456
|
+
Type: string;
|
|
457
|
+
Path: string;
|
|
458
|
+
TpMachines: TpMachines;
|
|
459
|
+
}
|
|
474
460
|
|
|
475
|
-
export interface
|
|
476
|
-
|
|
477
|
-
}
|
|
461
|
+
export interface TpEclSchedulers {
|
|
462
|
+
TpEclScheduler: TpEclScheduler[];
|
|
463
|
+
}
|
|
478
464
|
|
|
479
|
-
export interface
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
465
|
+
export interface TpBinding {
|
|
466
|
+
Name: string;
|
|
467
|
+
Service: string;
|
|
468
|
+
ServiceType: string;
|
|
469
|
+
BindingType: string;
|
|
470
|
+
ServiceBuildSet: string;
|
|
471
|
+
Port: string;
|
|
472
|
+
Protocol: string;
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
export interface TpBindings {
|
|
488
476
|
TpBinding: TpBinding[];
|
|
489
|
-
}
|
|
490
|
-
}
|
|
477
|
+
}
|
|
491
478
|
|
|
492
|
-
export interface
|
|
493
|
-
|
|
494
|
-
|
|
479
|
+
export interface TpEspServer {
|
|
480
|
+
Name: string;
|
|
481
|
+
Description: string;
|
|
482
|
+
Build: string;
|
|
483
|
+
Type: string;
|
|
484
|
+
Path: string;
|
|
485
|
+
LogDirectory: string;
|
|
486
|
+
TpMachines: TpMachines;
|
|
487
|
+
TpBindings: {
|
|
488
|
+
TpBinding: TpBinding[];
|
|
489
|
+
};
|
|
490
|
+
}
|
|
495
491
|
|
|
496
|
-
export interface
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
Build: string;
|
|
500
|
-
Path: string;
|
|
501
|
-
TpMachines: TpMachines;
|
|
502
|
-
}
|
|
492
|
+
export interface TpEspServers {
|
|
493
|
+
TpEspServer: TpEspServer[];
|
|
494
|
+
}
|
|
503
495
|
|
|
504
|
-
export interface
|
|
505
|
-
|
|
506
|
-
|
|
496
|
+
export interface TpFTSlave {
|
|
497
|
+
Name: string;
|
|
498
|
+
Description: string;
|
|
499
|
+
Build: string;
|
|
500
|
+
Path: string;
|
|
501
|
+
TpMachines: TpMachines;
|
|
502
|
+
}
|
|
507
503
|
|
|
508
|
-
export interface
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
Build: string;
|
|
512
|
-
Path: string;
|
|
513
|
-
TpMachines: TpMachines;
|
|
514
|
-
}
|
|
504
|
+
export interface TpFTSlaves {
|
|
505
|
+
TpFTSlave: TpFTSlave[];
|
|
506
|
+
}
|
|
515
507
|
|
|
516
|
-
export interface
|
|
517
|
-
|
|
518
|
-
|
|
508
|
+
export interface TpGenesisServer {
|
|
509
|
+
Name: string;
|
|
510
|
+
Description: string;
|
|
511
|
+
Build: string;
|
|
512
|
+
Path: string;
|
|
513
|
+
TpMachines: TpMachines;
|
|
514
|
+
}
|
|
519
515
|
|
|
520
|
-
export interface
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
Build: string;
|
|
524
|
-
Path: string;
|
|
525
|
-
TpMachines: TpMachines;
|
|
526
|
-
}
|
|
516
|
+
export interface TpGenesisServers {
|
|
517
|
+
TpGenesisServer: TpGenesisServer[];
|
|
518
|
+
}
|
|
527
519
|
|
|
528
|
-
export interface
|
|
529
|
-
|
|
530
|
-
|
|
520
|
+
export interface TpLdapServer {
|
|
521
|
+
Name: string;
|
|
522
|
+
Description: string;
|
|
523
|
+
Build: string;
|
|
524
|
+
Path: string;
|
|
525
|
+
TpMachines: TpMachines;
|
|
526
|
+
}
|
|
531
527
|
|
|
532
|
-
export interface
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
Build: string;
|
|
536
|
-
Path: string;
|
|
537
|
-
TpMachines: TpMachines;
|
|
538
|
-
}
|
|
528
|
+
export interface TpLdapServers {
|
|
529
|
+
TpLdapServer: TpLdapServer[];
|
|
530
|
+
}
|
|
539
531
|
|
|
540
|
-
export interface
|
|
541
|
-
|
|
542
|
-
|
|
532
|
+
export interface TpMySqlServer {
|
|
533
|
+
Name: string;
|
|
534
|
+
Description: string;
|
|
535
|
+
Build: string;
|
|
536
|
+
Path: string;
|
|
537
|
+
TpMachines: TpMachines;
|
|
538
|
+
}
|
|
543
539
|
|
|
544
|
-
export interface
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
Build: string;
|
|
548
|
-
Path: string;
|
|
549
|
-
LogDirectory: string;
|
|
550
|
-
TpMachines: TpMachines;
|
|
551
|
-
}
|
|
540
|
+
export interface TpMySqlServers {
|
|
541
|
+
TpMySqlServer: TpMySqlServer[];
|
|
542
|
+
}
|
|
552
543
|
|
|
553
|
-
export interface
|
|
554
|
-
|
|
555
|
-
|
|
544
|
+
export interface TpSashaServer {
|
|
545
|
+
Name: string;
|
|
546
|
+
Description: string;
|
|
547
|
+
Build: string;
|
|
548
|
+
Path: string;
|
|
549
|
+
LogDirectory: string;
|
|
550
|
+
TpMachines: TpMachines;
|
|
551
|
+
}
|
|
556
552
|
|
|
557
|
-
export interface
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
ThorClusterName: string;
|
|
561
|
-
ThorPath: string;
|
|
562
|
-
SparkExecutorCores: unsignedInt;
|
|
563
|
-
SparkExecutorMemory: long;
|
|
564
|
-
SparkMasterPort: unsignedInt;
|
|
565
|
-
SparkMasterWebUIPort: unsignedInt;
|
|
566
|
-
SparkWorkerCores: unsignedInt;
|
|
567
|
-
SparkWorkerMemory: long;
|
|
568
|
-
SparkWorkerPort: unsignedInt;
|
|
569
|
-
LogDirectory: string;
|
|
570
|
-
Path: string;
|
|
571
|
-
TpMachines: TpMachines;
|
|
572
|
-
}
|
|
553
|
+
export interface TpSashaServers {
|
|
554
|
+
TpSashaServer: TpSashaServer[];
|
|
555
|
+
}
|
|
573
556
|
|
|
574
|
-
export interface
|
|
575
|
-
|
|
576
|
-
|
|
557
|
+
export interface TpSparkThor {
|
|
558
|
+
Name: string;
|
|
559
|
+
Build: string;
|
|
560
|
+
ThorClusterName: string;
|
|
561
|
+
ThorPath: string;
|
|
562
|
+
SparkExecutorCores: unsignedInt;
|
|
563
|
+
SparkExecutorMemory: long;
|
|
564
|
+
SparkMasterPort: unsignedInt;
|
|
565
|
+
SparkMasterWebUIPort: unsignedInt;
|
|
566
|
+
SparkWorkerCores: unsignedInt;
|
|
567
|
+
SparkWorkerMemory: long;
|
|
568
|
+
SparkWorkerPort: unsignedInt;
|
|
569
|
+
LogDirectory: string;
|
|
570
|
+
Path: string;
|
|
571
|
+
TpMachines: TpMachines;
|
|
572
|
+
}
|
|
577
573
|
|
|
578
|
-
export interface
|
|
579
|
-
TpDalis: {
|
|
580
|
-
TpDali: TpDali[];
|
|
581
|
-
};
|
|
582
|
-
TpDfuServers: {
|
|
583
|
-
TpDfuServer: TpDfuServer[];
|
|
584
|
-
};
|
|
585
|
-
TpDkcSlaves: {
|
|
586
|
-
TpDkcSlave: TpDkcSlave[];
|
|
587
|
-
};
|
|
588
|
-
TpDropZones: TpDropZones;
|
|
589
|
-
TpEclAgents: {
|
|
590
|
-
TpEclAgent: TpEclAgent[];
|
|
591
|
-
};
|
|
592
|
-
TpEclServers: {
|
|
593
|
-
TpEclServer: TpEclServer[];
|
|
594
|
-
};
|
|
595
|
-
TpEclCCServers: {
|
|
596
|
-
TpEclServer: TpEclServer[];
|
|
597
|
-
};
|
|
598
|
-
TpEclSchedulers: {
|
|
599
|
-
TpEclScheduler: TpEclScheduler[];
|
|
600
|
-
};
|
|
601
|
-
TpEspServers: {
|
|
602
|
-
TpEspServer: TpEspServer[];
|
|
603
|
-
};
|
|
604
|
-
TpFTSlaves: {
|
|
605
|
-
TpFTSlave: TpFTSlave[];
|
|
606
|
-
};
|
|
607
|
-
TpGenesisServers: {
|
|
608
|
-
TpGenesisServer: TpGenesisServer[];
|
|
609
|
-
};
|
|
610
|
-
TpLdapServers: {
|
|
611
|
-
TpLdapServer: TpLdapServer[];
|
|
612
|
-
};
|
|
613
|
-
TpMySqlServers: {
|
|
614
|
-
TpMySqlServer: TpMySqlServer[];
|
|
615
|
-
};
|
|
616
|
-
TpSashaServers: {
|
|
617
|
-
TpSashaServer: TpSashaServer[];
|
|
618
|
-
};
|
|
619
|
-
TpSparkThors: {
|
|
574
|
+
export interface TpSparkThors {
|
|
620
575
|
TpSparkThor: TpSparkThor[];
|
|
621
|
-
}
|
|
622
|
-
}
|
|
576
|
+
}
|
|
623
577
|
|
|
624
|
-
export interface
|
|
625
|
-
Exceptions: Exceptions;
|
|
626
|
-
MemThreshold: int;
|
|
627
|
-
DiskThreshold: int;
|
|
628
|
-
CpuThreshold: int;
|
|
629
|
-
EncapsulatedSystem: boolean;
|
|
630
|
-
EnableSNMP: boolean;
|
|
631
|
-
PreflightProcessFilter: string;
|
|
632
|
-
AcceptLanguage: string;
|
|
633
|
-
MemThresholdType: string;
|
|
634
|
-
DiskThresholdType: string;
|
|
635
|
-
ServiceList: {
|
|
578
|
+
export interface ServiceList {
|
|
636
579
|
TpDalis: {
|
|
637
580
|
TpDali: TpDali[];
|
|
638
581
|
};
|
|
@@ -676,181 +619,238 @@ export interface TpServiceQueryResponse {
|
|
|
676
619
|
TpSparkThors: {
|
|
677
620
|
TpSparkThor: TpSparkThor[];
|
|
678
621
|
};
|
|
679
|
-
}
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
}
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
export interface TpServiceQueryResponse {
|
|
625
|
+
Exceptions: Exceptions;
|
|
626
|
+
MemThreshold: int;
|
|
627
|
+
DiskThreshold: int;
|
|
628
|
+
CpuThreshold: int;
|
|
629
|
+
EncapsulatedSystem: boolean;
|
|
630
|
+
EnableSNMP: boolean;
|
|
631
|
+
PreflightProcessFilter: string;
|
|
632
|
+
AcceptLanguage: string;
|
|
633
|
+
MemThresholdType: string;
|
|
634
|
+
DiskThresholdType: string;
|
|
635
|
+
ServiceList: {
|
|
636
|
+
TpDalis: {
|
|
637
|
+
TpDali: TpDali[];
|
|
638
|
+
};
|
|
639
|
+
TpDfuServers: {
|
|
640
|
+
TpDfuServer: TpDfuServer[];
|
|
641
|
+
};
|
|
642
|
+
TpDkcSlaves: {
|
|
643
|
+
TpDkcSlave: TpDkcSlave[];
|
|
644
|
+
};
|
|
645
|
+
TpDropZones: TpDropZones;
|
|
646
|
+
TpEclAgents: {
|
|
647
|
+
TpEclAgent: TpEclAgent[];
|
|
648
|
+
};
|
|
649
|
+
TpEclServers: {
|
|
650
|
+
TpEclServer: TpEclServer[];
|
|
651
|
+
};
|
|
652
|
+
TpEclCCServers: {
|
|
653
|
+
TpEclServer: TpEclServer[];
|
|
654
|
+
};
|
|
655
|
+
TpEclSchedulers: {
|
|
656
|
+
TpEclScheduler: TpEclScheduler[];
|
|
657
|
+
};
|
|
658
|
+
TpEspServers: {
|
|
659
|
+
TpEspServer: TpEspServer[];
|
|
660
|
+
};
|
|
661
|
+
TpFTSlaves: {
|
|
662
|
+
TpFTSlave: TpFTSlave[];
|
|
663
|
+
};
|
|
664
|
+
TpGenesisServers: {
|
|
665
|
+
TpGenesisServer: TpGenesisServer[];
|
|
666
|
+
};
|
|
667
|
+
TpLdapServers: {
|
|
668
|
+
TpLdapServer: TpLdapServer[];
|
|
669
|
+
};
|
|
670
|
+
TpMySqlServers: {
|
|
671
|
+
TpMySqlServer: TpMySqlServer[];
|
|
672
|
+
};
|
|
673
|
+
TpSashaServers: {
|
|
674
|
+
TpSashaServer: TpSashaServer[];
|
|
675
|
+
};
|
|
676
|
+
TpSparkThors: {
|
|
677
|
+
TpSparkThor: TpSparkThor[];
|
|
678
|
+
};
|
|
679
|
+
};
|
|
680
|
+
}
|
|
681
|
+
|
|
682
|
+
export interface TpSetMachineStatusRequest {
|
|
683
|
+
MachinePath?: string;
|
|
684
|
+
StatusValue?: string;
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
export interface TpSetMachineStatusResponse {
|
|
688
|
+
Exceptions: Exceptions;
|
|
689
|
+
TpSetMachineStatusResult: boolean;
|
|
690
|
+
}
|
|
691
|
+
|
|
692
|
+
export interface TpSwapNodeRequest {
|
|
693
|
+
Cluster?: string;
|
|
694
|
+
OldIP?: string;
|
|
695
|
+
NewIP?: string;
|
|
696
|
+
}
|
|
697
|
+
|
|
698
|
+
export interface TpSwapNodeResponse {
|
|
699
|
+
Exceptions: Exceptions;
|
|
700
|
+
TpSwapNodeResult: boolean;
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
export interface TpTargetClusterQueryRequest {
|
|
704
|
+
Type?: string;
|
|
705
|
+
Name?: string;
|
|
706
|
+
ShowDetails?: boolean;
|
|
707
|
+
}
|
|
708
|
+
|
|
709
|
+
export interface TpTargetCluster {
|
|
710
|
+
Name: string;
|
|
711
|
+
Prefix: string;
|
|
712
|
+
Type: string;
|
|
713
|
+
TpClusters: TpClusters;
|
|
714
|
+
TpEclCCServers: TpEclCCServers;
|
|
715
|
+
TpEclServers: TpEclServers;
|
|
716
|
+
TpEclAgents: TpEclAgents;
|
|
717
|
+
TpEclSchedulers: TpEclSchedulers;
|
|
718
|
+
}
|
|
719
|
+
|
|
720
|
+
export interface TpTargetClusters {
|
|
735
721
|
TpTargetCluster: TpTargetCluster[];
|
|
736
|
-
}
|
|
737
|
-
|
|
722
|
+
}
|
|
723
|
+
|
|
724
|
+
export interface TpTargetClusterQueryResponse {
|
|
725
|
+
Exceptions: Exceptions;
|
|
726
|
+
ShowDetails: boolean;
|
|
727
|
+
MemThreshold: int;
|
|
728
|
+
DiskThreshold: int;
|
|
729
|
+
CpuThreshold: int;
|
|
730
|
+
MemThresholdType: string;
|
|
731
|
+
DiskThresholdType: string;
|
|
732
|
+
PreflightProcessFilter: string;
|
|
733
|
+
AcceptLanguage: string;
|
|
734
|
+
TpTargetClusters: {
|
|
735
|
+
TpTargetCluster: TpTargetCluster[];
|
|
736
|
+
};
|
|
737
|
+
}
|
|
738
738
|
|
|
739
|
-
export interface TpThorStatusRequest {
|
|
740
|
-
|
|
741
|
-
}
|
|
739
|
+
export interface TpThorStatusRequest {
|
|
740
|
+
Name?: string;
|
|
741
|
+
}
|
|
742
742
|
|
|
743
|
-
export interface TpThorStatusResponse {
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
}
|
|
743
|
+
export interface TpThorStatusResponse {
|
|
744
|
+
Exceptions: Exceptions;
|
|
745
|
+
Name: string;
|
|
746
|
+
Queue: string;
|
|
747
|
+
Group: string;
|
|
748
|
+
ThorMasterIPAddress: string;
|
|
749
|
+
Port: int;
|
|
750
|
+
StartTime: string;
|
|
751
|
+
LogFile: string;
|
|
752
|
+
Wuid: string;
|
|
753
|
+
Graph: string;
|
|
754
|
+
SubGraph: int;
|
|
755
|
+
SubGraphDuration: int;
|
|
756
|
+
AutoRefresh: int;
|
|
757
|
+
}
|
|
758
758
|
|
|
759
|
-
export interface TpXMLFileRequest {
|
|
760
|
-
|
|
761
|
-
}
|
|
759
|
+
export interface TpXMLFileRequest {
|
|
760
|
+
Name?: string;
|
|
761
|
+
}
|
|
762
762
|
|
|
763
|
-
export interface TpXMLFileResponse {
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
}
|
|
763
|
+
export interface TpXMLFileResponse {
|
|
764
|
+
Exceptions: Exceptions;
|
|
765
|
+
thefile: base64Binary;
|
|
766
|
+
}
|
|
767
767
|
|
|
768
768
|
}
|
|
769
769
|
|
|
770
770
|
export class TopologyServiceBase extends Service {
|
|
771
771
|
|
|
772
|
-
constructor(optsConnection: IOptions | IConnection) {
|
|
773
|
-
super(optsConnection, "WsTopology", "1.31");
|
|
774
|
-
}
|
|
772
|
+
constructor(optsConnection: IOptions | IConnection) {
|
|
773
|
+
super(optsConnection, "WsTopology", "1.31");
|
|
774
|
+
}
|
|
775
775
|
|
|
776
|
-
Ping(request: WsTopology.WsTopologyPingRequest): Promise<WsTopology.WsTopologyPingResponse> {
|
|
777
|
-
|
|
778
|
-
}
|
|
776
|
+
Ping(request: WsTopology.WsTopologyPingRequest): Promise<WsTopology.WsTopologyPingResponse> {
|
|
777
|
+
return this._connection.send("Ping", request, "json", false, undefined, "WsTopologyPingResponse");
|
|
778
|
+
}
|
|
779
779
|
|
|
780
|
-
SystemLog(request: WsTopology.SystemLogRequest): Promise<WsTopology.SystemLogResponse> {
|
|
781
|
-
|
|
782
|
-
}
|
|
780
|
+
SystemLog(request: WsTopology.SystemLogRequest): Promise<WsTopology.SystemLogResponse> {
|
|
781
|
+
return this._connection.send("SystemLog", request, "json", false, undefined, "SystemLogResponse");
|
|
782
|
+
}
|
|
783
783
|
|
|
784
|
-
TpClusterInfo(request: WsTopology.TpClusterInfoRequest): Promise<WsTopology.TpClusterInfoResponse> {
|
|
785
|
-
|
|
786
|
-
}
|
|
784
|
+
TpClusterInfo(request: WsTopology.TpClusterInfoRequest): Promise<WsTopology.TpClusterInfoResponse> {
|
|
785
|
+
return this._connection.send("TpClusterInfo", request, "json", false, undefined, "TpClusterInfoResponse");
|
|
786
|
+
}
|
|
787
787
|
|
|
788
|
-
TpClusterQuery(request: WsTopology.TpClusterQueryRequest): Promise<WsTopology.TpClusterQueryResponse> {
|
|
789
|
-
|
|
790
|
-
}
|
|
788
|
+
TpClusterQuery(request: WsTopology.TpClusterQueryRequest): Promise<WsTopology.TpClusterQueryResponse> {
|
|
789
|
+
return this._connection.send("TpClusterQuery", request, "json", false, undefined, "TpClusterQueryResponse");
|
|
790
|
+
}
|
|
791
791
|
|
|
792
|
-
TpDropZoneQuery(request: WsTopology.TpDropZoneQueryRequest): Promise<WsTopology.TpDropZoneQueryResponse> {
|
|
793
|
-
|
|
794
|
-
}
|
|
792
|
+
TpDropZoneQuery(request: WsTopology.TpDropZoneQueryRequest): Promise<WsTopology.TpDropZoneQueryResponse> {
|
|
793
|
+
return this._connection.send("TpDropZoneQuery", request, "json", false, undefined, "TpDropZoneQueryResponse");
|
|
794
|
+
}
|
|
795
795
|
|
|
796
|
-
TpGetComponentFile(request: WsTopology.TpGetComponentFileRequest): Promise<WsTopology.TpGetComponentFileResponse> {
|
|
797
|
-
|
|
798
|
-
}
|
|
796
|
+
TpGetComponentFile(request: WsTopology.TpGetComponentFileRequest): Promise<WsTopology.TpGetComponentFileResponse> {
|
|
797
|
+
return this._connection.send("TpGetComponentFile", request, "json", false, undefined, "TpGetComponentFileResponse");
|
|
798
|
+
}
|
|
799
799
|
|
|
800
|
-
TpGetServicePlugins(request: WsTopology.TpGetServicePluginsRequest): Promise<WsTopology.TpGetServicePluginsResponse> {
|
|
801
|
-
|
|
802
|
-
}
|
|
800
|
+
TpGetServicePlugins(request: WsTopology.TpGetServicePluginsRequest): Promise<WsTopology.TpGetServicePluginsResponse> {
|
|
801
|
+
return this._connection.send("TpGetServicePlugins", request, "json", false, undefined, "TpGetServicePluginsResponse");
|
|
802
|
+
}
|
|
803
803
|
|
|
804
|
-
TpGroupQuery(request: WsTopology.TpGroupQueryRequest): Promise<WsTopology.TpGroupQueryResponse> {
|
|
805
|
-
|
|
806
|
-
}
|
|
804
|
+
TpGroupQuery(request: WsTopology.TpGroupQueryRequest): Promise<WsTopology.TpGroupQueryResponse> {
|
|
805
|
+
return this._connection.send("TpGroupQuery", request, "json", false, undefined, "TpGroupQueryResponse");
|
|
806
|
+
}
|
|
807
807
|
|
|
808
|
-
TpListTargetClusters(request: WsTopology.TpListTargetClustersRequest): Promise<WsTopology.TpListTargetClustersResponse> {
|
|
809
|
-
|
|
810
|
-
}
|
|
808
|
+
TpListTargetClusters(request: WsTopology.TpListTargetClustersRequest): Promise<WsTopology.TpListTargetClustersResponse> {
|
|
809
|
+
return this._connection.send("TpListTargetClusters", request, "json", false, undefined, "TpListTargetClustersResponse");
|
|
810
|
+
}
|
|
811
811
|
|
|
812
|
-
TpLogFile(request: WsTopology.TpLogFileRequest): Promise<WsTopology.TpLogFileResponse> {
|
|
813
|
-
|
|
814
|
-
}
|
|
812
|
+
TpLogFile(request: WsTopology.TpLogFileRequest): Promise<WsTopology.TpLogFileResponse> {
|
|
813
|
+
return this._connection.send("TpLogFile", request, "json", false, undefined, "TpLogFileResponse");
|
|
814
|
+
}
|
|
815
815
|
|
|
816
|
-
TpLogFileDisplay(request: WsTopology.TpLogFileRequest): Promise<WsTopology.TpLogFileResponse> {
|
|
817
|
-
|
|
818
|
-
}
|
|
816
|
+
TpLogFileDisplay(request: WsTopology.TpLogFileRequest): Promise<WsTopology.TpLogFileResponse> {
|
|
817
|
+
return this._connection.send("TpLogFileDisplay", request, "json", false, undefined, "TpLogFileResponse");
|
|
818
|
+
}
|
|
819
819
|
|
|
820
|
-
TpLogicalClusterQuery(request: WsTopology.TpLogicalClusterQueryRequest): Promise<WsTopology.TpLogicalClusterQueryResponse> {
|
|
821
|
-
|
|
822
|
-
}
|
|
820
|
+
TpLogicalClusterQuery(request: WsTopology.TpLogicalClusterQueryRequest): Promise<WsTopology.TpLogicalClusterQueryResponse> {
|
|
821
|
+
return this._connection.send("TpLogicalClusterQuery", request, "json", false, undefined, "TpLogicalClusterQueryResponse");
|
|
822
|
+
}
|
|
823
823
|
|
|
824
|
-
TpMachineInfo(request: WsTopology.TpMachineInfoRequest): Promise<WsTopology.TpMachineInfoResponse> {
|
|
825
|
-
|
|
826
|
-
}
|
|
824
|
+
TpMachineInfo(request: WsTopology.TpMachineInfoRequest): Promise<WsTopology.TpMachineInfoResponse> {
|
|
825
|
+
return this._connection.send("TpMachineInfo", request, "json", false, undefined, "TpMachineInfoResponse");
|
|
826
|
+
}
|
|
827
827
|
|
|
828
|
-
TpMachineQuery(request: WsTopology.TpMachineQueryRequest): Promise<WsTopology.TpMachineQueryResponse> {
|
|
829
|
-
|
|
830
|
-
}
|
|
828
|
+
TpMachineQuery(request: WsTopology.TpMachineQueryRequest): Promise<WsTopology.TpMachineQueryResponse> {
|
|
829
|
+
return this._connection.send("TpMachineQuery", request, "json", false, undefined, "TpMachineQueryResponse");
|
|
830
|
+
}
|
|
831
831
|
|
|
832
|
-
TpServiceQuery(request: WsTopology.TpServiceQueryRequest): Promise<WsTopology.TpServiceQueryResponse> {
|
|
833
|
-
|
|
834
|
-
}
|
|
832
|
+
TpServiceQuery(request: WsTopology.TpServiceQueryRequest): Promise<WsTopology.TpServiceQueryResponse> {
|
|
833
|
+
return this._connection.send("TpServiceQuery", request, "json", false, undefined, "TpServiceQueryResponse");
|
|
834
|
+
}
|
|
835
835
|
|
|
836
|
-
TpSetMachineStatus(request: WsTopology.TpSetMachineStatusRequest): Promise<WsTopology.TpSetMachineStatusResponse> {
|
|
837
|
-
|
|
838
|
-
}
|
|
836
|
+
TpSetMachineStatus(request: WsTopology.TpSetMachineStatusRequest): Promise<WsTopology.TpSetMachineStatusResponse> {
|
|
837
|
+
return this._connection.send("TpSetMachineStatus", request, "json", false, undefined, "TpSetMachineStatusResponse");
|
|
838
|
+
}
|
|
839
839
|
|
|
840
|
-
TpSwapNode(request: WsTopology.TpSwapNodeRequest): Promise<WsTopology.TpSwapNodeResponse> {
|
|
841
|
-
|
|
842
|
-
}
|
|
840
|
+
TpSwapNode(request: WsTopology.TpSwapNodeRequest): Promise<WsTopology.TpSwapNodeResponse> {
|
|
841
|
+
return this._connection.send("TpSwapNode", request, "json", false, undefined, "TpSwapNodeResponse");
|
|
842
|
+
}
|
|
843
843
|
|
|
844
|
-
TpTargetClusterQuery(request: WsTopology.TpTargetClusterQueryRequest): Promise<WsTopology.TpTargetClusterQueryResponse> {
|
|
845
|
-
|
|
846
|
-
}
|
|
844
|
+
TpTargetClusterQuery(request: WsTopology.TpTargetClusterQueryRequest): Promise<WsTopology.TpTargetClusterQueryResponse> {
|
|
845
|
+
return this._connection.send("TpTargetClusterQuery", request, "json", false, undefined, "TpTargetClusterQueryResponse");
|
|
846
|
+
}
|
|
847
847
|
|
|
848
|
-
TpThorStatus(request: WsTopology.TpThorStatusRequest): Promise<WsTopology.TpThorStatusResponse> {
|
|
849
|
-
|
|
850
|
-
}
|
|
848
|
+
TpThorStatus(request: WsTopology.TpThorStatusRequest): Promise<WsTopology.TpThorStatusResponse> {
|
|
849
|
+
return this._connection.send("TpThorStatus", request, "json", false, undefined, "TpThorStatusResponse");
|
|
850
|
+
}
|
|
851
851
|
|
|
852
|
-
TpXMLFile(request: WsTopology.TpXMLFileRequest): Promise<WsTopology.TpXMLFileResponse> {
|
|
853
|
-
|
|
854
|
-
}
|
|
852
|
+
TpXMLFile(request: WsTopology.TpXMLFileRequest): Promise<WsTopology.TpXMLFileResponse> {
|
|
853
|
+
return this._connection.send("TpXMLFile", request, "json", false, undefined, "TpXMLFileResponse");
|
|
854
|
+
}
|
|
855
855
|
|
|
856
856
|
}
|