@hpcc-js/comms 3.15.6 → 3.15.7
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/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 +4 -4
- package/dist/node/index.js +7 -7
- package/dist/node/index.js.map +4 -4
- package/package.json +11 -9
- package/src/ecl/scope.ts +1 -2
- package/src/ecl/workunit.ts +1 -0
- package/src/services/fileSpray.ts +1 -26
- package/src/services/wsWorkunits.ts +1 -1
- package/src/services/wsdl/FileSpray/v1.29/FileSpray.ts +946 -0
- package/src/services/wsdl/WsWorkunits/v2.08/WsWorkunits.ts +3179 -0
- package/src/services/wsdl/ws_machine/v1.19/ws_machine.ts +215 -215
- package/types/ecl/workunit.d.ts +1 -0
- package/types/services/fileSpray.d.ts +1 -14
- package/types/services/wsWorkunits.d.ts +1 -1
- package/types/services/wsdl/FileSpray/{v1.27 → v1.29}/FileSpray.d.ts +17 -2
- package/types/services/wsdl/WsWorkunits/{v2.05 → v2.08}/WsWorkunits.d.ts +2 -0
- package/types/services/wsdl/ws_machine/v1.19/ws_machine.d.ts +205 -205
|
@@ -14,6 +14,19 @@ export declare namespace FileSpray {
|
|
|
14
14
|
SetToFailed = "SetToFailed",
|
|
15
15
|
Archive = "Archive"
|
|
16
16
|
}
|
|
17
|
+
enum DFUCommand {
|
|
18
|
+
copy = "copy",
|
|
19
|
+
remove = "remove",
|
|
20
|
+
move = "move",
|
|
21
|
+
rename = "rename",
|
|
22
|
+
replicate = "replicate",
|
|
23
|
+
import = "import",
|
|
24
|
+
export = "export",
|
|
25
|
+
monitor = "monitor",
|
|
26
|
+
copymerge = "copymerge",
|
|
27
|
+
supercopy = "supercopy",
|
|
28
|
+
publish = "publish"
|
|
29
|
+
}
|
|
17
30
|
interface AbortDFUWorkunit {
|
|
18
31
|
wuid?: string;
|
|
19
32
|
}
|
|
@@ -63,6 +76,7 @@ export declare namespace FileSpray {
|
|
|
63
76
|
DFUServerQueue?: string;
|
|
64
77
|
ExpireDays?: int;
|
|
65
78
|
KeyCompression?: string;
|
|
79
|
+
DestNumParts?: int;
|
|
66
80
|
}
|
|
67
81
|
interface CopyResponse {
|
|
68
82
|
Exceptions?: Exceptions;
|
|
@@ -369,7 +383,8 @@ export declare namespace FileSpray {
|
|
|
369
383
|
Owner?: string;
|
|
370
384
|
Cluster?: string;
|
|
371
385
|
StateReq?: string;
|
|
372
|
-
|
|
386
|
+
Command?: DFUCommand;
|
|
387
|
+
Archived?: boolean;
|
|
373
388
|
Jobname?: string;
|
|
374
389
|
PageSize?: long;
|
|
375
390
|
CurrentPage?: int;
|
|
@@ -449,7 +464,7 @@ export declare namespace FileSpray {
|
|
|
449
464
|
interface GetDFUWorkunitsResponse {
|
|
450
465
|
Exceptions?: Exceptions;
|
|
451
466
|
results?: results;
|
|
452
|
-
|
|
467
|
+
Command?: DFUCommand;
|
|
453
468
|
Owner?: string;
|
|
454
469
|
Cluster?: string;
|
|
455
470
|
StateReq?: string;
|
|
@@ -713,6 +713,7 @@ export declare namespace WsWorkunits {
|
|
|
713
713
|
CompileCost?: double;
|
|
714
714
|
NoAccess?: boolean;
|
|
715
715
|
ECLWUProcessList?: ECLWUProcessList;
|
|
716
|
+
FailureDesc?: string;
|
|
716
717
|
}
|
|
717
718
|
interface WUCreateResponse {
|
|
718
719
|
Exceptions?: Exceptions;
|
|
@@ -1758,6 +1759,7 @@ export declare namespace WsWorkunits {
|
|
|
1758
1759
|
CompileCost?: double;
|
|
1759
1760
|
NoAccess?: boolean;
|
|
1760
1761
|
ECLWUProcessList?: ECLWUProcessList;
|
|
1762
|
+
FailureDesc?: string;
|
|
1761
1763
|
}
|
|
1762
1764
|
interface Workunits2 {
|
|
1763
1765
|
ECLWorkunit?: ECLWorkunit[];
|
|
@@ -23,106 +23,106 @@ export declare namespace WsMachine {
|
|
|
23
23
|
interface GetComponentStatusRequest {
|
|
24
24
|
}
|
|
25
25
|
interface Exception {
|
|
26
|
-
Code
|
|
27
|
-
Audience
|
|
28
|
-
Source
|
|
29
|
-
Message
|
|
26
|
+
Code?: string;
|
|
27
|
+
Audience?: string;
|
|
28
|
+
Source?: string;
|
|
29
|
+
Message?: string;
|
|
30
30
|
}
|
|
31
31
|
interface Exceptions {
|
|
32
|
-
Source
|
|
33
|
-
Exception
|
|
32
|
+
Source?: string;
|
|
33
|
+
Exception?: Exception[];
|
|
34
34
|
}
|
|
35
35
|
interface StatusReport {
|
|
36
|
-
StatusID
|
|
37
|
-
Status
|
|
38
|
-
StatusDetails
|
|
39
|
-
Reporter
|
|
40
|
-
TimeReported
|
|
41
|
-
TimeReportedStr
|
|
42
|
-
TimeCached
|
|
43
|
-
URL
|
|
36
|
+
StatusID?: int;
|
|
37
|
+
Status?: string;
|
|
38
|
+
StatusDetails?: string;
|
|
39
|
+
Reporter?: string;
|
|
40
|
+
TimeReported?: long;
|
|
41
|
+
TimeReportedStr?: string;
|
|
42
|
+
TimeCached?: string;
|
|
43
|
+
URL?: string;
|
|
44
44
|
}
|
|
45
45
|
interface StatusReports {
|
|
46
|
-
StatusReport
|
|
46
|
+
StatusReport?: StatusReport[];
|
|
47
47
|
}
|
|
48
48
|
interface ComponentStatus {
|
|
49
|
-
ComponentTypeID
|
|
50
|
-
ComponentType
|
|
51
|
-
EndPoint
|
|
52
|
-
StatusID
|
|
53
|
-
Status
|
|
54
|
-
TimeReported
|
|
55
|
-
TimeReportedStr
|
|
56
|
-
Reporter
|
|
57
|
-
StatusReports
|
|
49
|
+
ComponentTypeID?: int;
|
|
50
|
+
ComponentType?: string;
|
|
51
|
+
EndPoint?: string;
|
|
52
|
+
StatusID?: int;
|
|
53
|
+
Status?: string;
|
|
54
|
+
TimeReported?: long;
|
|
55
|
+
TimeReportedStr?: string;
|
|
56
|
+
Reporter?: string;
|
|
57
|
+
StatusReports?: StatusReports;
|
|
58
58
|
}
|
|
59
59
|
interface ComponentStatusList {
|
|
60
|
-
ComponentStatus
|
|
60
|
+
ComponentStatus?: ComponentStatus[];
|
|
61
61
|
}
|
|
62
62
|
interface GetComponentStatusResponse {
|
|
63
|
-
Exceptions
|
|
64
|
-
StatusCode
|
|
65
|
-
Status
|
|
66
|
-
ComponentType
|
|
67
|
-
EndPoint
|
|
68
|
-
ComponentStatusID
|
|
69
|
-
ComponentStatus
|
|
70
|
-
TimeReported
|
|
71
|
-
TimeReportedStr
|
|
72
|
-
Reporter
|
|
73
|
-
StatusReport
|
|
74
|
-
ComponentStatusList
|
|
63
|
+
Exceptions?: Exceptions;
|
|
64
|
+
StatusCode?: int;
|
|
65
|
+
Status?: string;
|
|
66
|
+
ComponentType?: string;
|
|
67
|
+
EndPoint?: string;
|
|
68
|
+
ComponentStatusID?: int;
|
|
69
|
+
ComponentStatus?: string;
|
|
70
|
+
TimeReported?: long;
|
|
71
|
+
TimeReportedStr?: string;
|
|
72
|
+
Reporter?: string;
|
|
73
|
+
StatusReport?: StatusReport;
|
|
74
|
+
ComponentStatusList?: ComponentStatusList;
|
|
75
75
|
}
|
|
76
76
|
interface Component {
|
|
77
|
-
Type
|
|
78
|
-
Name
|
|
77
|
+
Type?: string;
|
|
78
|
+
Name?: string;
|
|
79
79
|
}
|
|
80
80
|
interface Components {
|
|
81
|
-
Component
|
|
81
|
+
Component?: Component[];
|
|
82
82
|
}
|
|
83
83
|
interface GetComponentUsageRequest {
|
|
84
84
|
Components?: Components;
|
|
85
85
|
BypassCachedResult?: boolean;
|
|
86
86
|
}
|
|
87
87
|
interface DiskUsage {
|
|
88
|
-
Name
|
|
89
|
-
Path
|
|
90
|
-
Description
|
|
91
|
-
InUse
|
|
92
|
-
Available
|
|
93
|
-
PercentAvailable
|
|
94
|
-
Exception
|
|
88
|
+
Name?: string;
|
|
89
|
+
Path?: string;
|
|
90
|
+
Description?: string;
|
|
91
|
+
InUse?: long;
|
|
92
|
+
Available?: long;
|
|
93
|
+
PercentAvailable?: int;
|
|
94
|
+
Exception?: string;
|
|
95
95
|
}
|
|
96
96
|
interface DiskUsages {
|
|
97
|
-
DiskUsage
|
|
97
|
+
DiskUsage?: DiskUsage[];
|
|
98
98
|
}
|
|
99
99
|
interface MachineUsage {
|
|
100
|
-
Name
|
|
101
|
-
NetAddress
|
|
102
|
-
Description
|
|
103
|
-
Exception
|
|
104
|
-
DiskUsages
|
|
100
|
+
Name?: string;
|
|
101
|
+
NetAddress?: string;
|
|
102
|
+
Description?: string;
|
|
103
|
+
Exception?: string;
|
|
104
|
+
DiskUsages?: DiskUsages;
|
|
105
105
|
}
|
|
106
106
|
interface MachineUsages {
|
|
107
|
-
MachineUsage
|
|
107
|
+
MachineUsage?: MachineUsage[];
|
|
108
108
|
}
|
|
109
109
|
interface ComponentUsage {
|
|
110
|
-
Type
|
|
111
|
-
Name
|
|
112
|
-
Description
|
|
113
|
-
Exception
|
|
114
|
-
MachineUsages
|
|
110
|
+
Type?: string;
|
|
111
|
+
Name?: string;
|
|
112
|
+
Description?: string;
|
|
113
|
+
Exception?: string;
|
|
114
|
+
MachineUsages?: MachineUsages;
|
|
115
115
|
}
|
|
116
116
|
interface ComponentUsages {
|
|
117
|
-
ComponentUsage
|
|
117
|
+
ComponentUsage?: ComponentUsage[];
|
|
118
118
|
}
|
|
119
119
|
interface GetComponentUsageResponse {
|
|
120
|
-
Exceptions
|
|
121
|
-
ComponentUsages
|
|
122
|
-
UsageTime
|
|
120
|
+
Exceptions?: Exceptions;
|
|
121
|
+
ComponentUsages?: ComponentUsages;
|
|
122
|
+
UsageTime?: string;
|
|
123
123
|
}
|
|
124
124
|
interface Addresses {
|
|
125
|
-
Item
|
|
125
|
+
Item?: string[];
|
|
126
126
|
}
|
|
127
127
|
interface GetMachineInfoRequest {
|
|
128
128
|
Addresses?: Addresses;
|
|
@@ -148,129 +148,129 @@ export declare namespace WsMachine {
|
|
|
148
148
|
SecurityString?: string;
|
|
149
149
|
}
|
|
150
150
|
interface RequestInfo {
|
|
151
|
-
Addresses
|
|
152
|
-
SortBy
|
|
153
|
-
ClusterType
|
|
154
|
-
Cluster
|
|
155
|
-
OldIP
|
|
156
|
-
Path
|
|
157
|
-
AddProcessesToFilter
|
|
158
|
-
ApplyProcessFilter
|
|
159
|
-
GetProcessorInfo
|
|
160
|
-
GetStorageInfo
|
|
161
|
-
LocalFileSystemsOnly
|
|
162
|
-
GetSoftwareInfo
|
|
163
|
-
MemThreshold
|
|
164
|
-
DiskThreshold
|
|
165
|
-
CpuThreshold
|
|
166
|
-
AutoRefresh
|
|
167
|
-
MemThresholdType
|
|
168
|
-
DiskThresholdType
|
|
169
|
-
SecurityString
|
|
170
|
-
UserName
|
|
171
|
-
Password
|
|
172
|
-
EnableSNMP
|
|
151
|
+
Addresses?: Addresses;
|
|
152
|
+
SortBy?: string;
|
|
153
|
+
ClusterType?: TpMachineType;
|
|
154
|
+
Cluster?: string;
|
|
155
|
+
OldIP?: string;
|
|
156
|
+
Path?: string;
|
|
157
|
+
AddProcessesToFilter?: string;
|
|
158
|
+
ApplyProcessFilter?: boolean;
|
|
159
|
+
GetProcessorInfo?: boolean;
|
|
160
|
+
GetStorageInfo?: boolean;
|
|
161
|
+
LocalFileSystemsOnly?: boolean;
|
|
162
|
+
GetSoftwareInfo?: boolean;
|
|
163
|
+
MemThreshold?: int;
|
|
164
|
+
DiskThreshold?: int;
|
|
165
|
+
CpuThreshold?: int;
|
|
166
|
+
AutoRefresh?: int;
|
|
167
|
+
MemThresholdType?: ThresholdType;
|
|
168
|
+
DiskThresholdType?: ThresholdType;
|
|
169
|
+
SecurityString?: string;
|
|
170
|
+
UserName?: string;
|
|
171
|
+
Password?: string;
|
|
172
|
+
EnableSNMP?: boolean;
|
|
173
173
|
}
|
|
174
174
|
interface Columns {
|
|
175
|
-
Item
|
|
175
|
+
Item?: string[];
|
|
176
176
|
}
|
|
177
177
|
interface ProcessorInfo {
|
|
178
|
-
Type
|
|
179
|
-
Load
|
|
178
|
+
Type?: string;
|
|
179
|
+
Load?: int;
|
|
180
180
|
}
|
|
181
181
|
interface Processors {
|
|
182
|
-
ProcessorInfo
|
|
182
|
+
ProcessorInfo?: ProcessorInfo[];
|
|
183
183
|
}
|
|
184
184
|
interface StorageInfo {
|
|
185
|
-
Description
|
|
186
|
-
Type
|
|
187
|
-
Available
|
|
188
|
-
PercentAvail
|
|
189
|
-
Total
|
|
190
|
-
Failures
|
|
185
|
+
Description?: string;
|
|
186
|
+
Type?: string;
|
|
187
|
+
Available?: long;
|
|
188
|
+
PercentAvail?: int;
|
|
189
|
+
Total?: long;
|
|
190
|
+
Failures?: int;
|
|
191
191
|
}
|
|
192
192
|
interface Storage {
|
|
193
|
-
StorageInfo
|
|
193
|
+
StorageInfo?: StorageInfo[];
|
|
194
194
|
}
|
|
195
195
|
interface SWRunInfo {
|
|
196
|
-
Name
|
|
197
|
-
Instances
|
|
198
|
-
State
|
|
196
|
+
Name?: string;
|
|
197
|
+
Instances?: int;
|
|
198
|
+
State?: int;
|
|
199
199
|
}
|
|
200
200
|
interface Running {
|
|
201
|
-
SWRunInfo
|
|
201
|
+
SWRunInfo?: SWRunInfo[];
|
|
202
202
|
}
|
|
203
203
|
interface PhysicalMemory {
|
|
204
|
-
Description
|
|
205
|
-
Type
|
|
206
|
-
Available
|
|
207
|
-
PercentAvail
|
|
208
|
-
Total
|
|
209
|
-
Failures
|
|
204
|
+
Description?: string;
|
|
205
|
+
Type?: string;
|
|
206
|
+
Available?: long;
|
|
207
|
+
PercentAvail?: int;
|
|
208
|
+
Total?: long;
|
|
209
|
+
Failures?: int;
|
|
210
210
|
}
|
|
211
211
|
interface VirtualMemory {
|
|
212
|
-
Description
|
|
213
|
-
Type
|
|
214
|
-
Available
|
|
215
|
-
PercentAvail
|
|
216
|
-
Total
|
|
217
|
-
Failures
|
|
212
|
+
Description?: string;
|
|
213
|
+
Type?: string;
|
|
214
|
+
Available?: long;
|
|
215
|
+
PercentAvail?: int;
|
|
216
|
+
Total?: long;
|
|
217
|
+
Failures?: int;
|
|
218
218
|
}
|
|
219
219
|
interface ComponentInfo {
|
|
220
|
-
Condition
|
|
221
|
-
State
|
|
222
|
-
UpTime
|
|
220
|
+
Condition?: int;
|
|
221
|
+
State?: int;
|
|
222
|
+
UpTime?: string;
|
|
223
223
|
}
|
|
224
224
|
interface MachineInfoEx {
|
|
225
|
-
Address
|
|
226
|
-
ConfigAddress
|
|
227
|
-
Name
|
|
228
|
-
ProcessType
|
|
229
|
-
DisplayType
|
|
230
|
-
Description
|
|
231
|
-
AgentVersion
|
|
232
|
-
Contact
|
|
233
|
-
Location
|
|
234
|
-
UpTime
|
|
235
|
-
ComponentName
|
|
236
|
-
ComponentPath
|
|
237
|
-
RoxieState
|
|
238
|
-
RoxieStateDetails
|
|
239
|
-
OS
|
|
240
|
-
ProcessNumber
|
|
241
|
-
Channels
|
|
242
|
-
Processors
|
|
243
|
-
Storage
|
|
244
|
-
Running
|
|
245
|
-
PhysicalMemory
|
|
246
|
-
VirtualMemory
|
|
247
|
-
ComponentInfo
|
|
248
|
-
Exception
|
|
225
|
+
Address?: string;
|
|
226
|
+
ConfigAddress?: string;
|
|
227
|
+
Name?: string;
|
|
228
|
+
ProcessType?: string;
|
|
229
|
+
DisplayType?: string;
|
|
230
|
+
Description?: string;
|
|
231
|
+
AgentVersion?: string;
|
|
232
|
+
Contact?: string;
|
|
233
|
+
Location?: string;
|
|
234
|
+
UpTime?: string;
|
|
235
|
+
ComponentName?: string;
|
|
236
|
+
ComponentPath?: string;
|
|
237
|
+
RoxieState?: string;
|
|
238
|
+
RoxieStateDetails?: string;
|
|
239
|
+
OS?: int;
|
|
240
|
+
ProcessNumber?: int;
|
|
241
|
+
Channels?: unsignedInt;
|
|
242
|
+
Processors?: Processors;
|
|
243
|
+
Storage?: Storage;
|
|
244
|
+
Running?: Running;
|
|
245
|
+
PhysicalMemory?: PhysicalMemory;
|
|
246
|
+
VirtualMemory?: VirtualMemory;
|
|
247
|
+
ComponentInfo?: ComponentInfo;
|
|
248
|
+
Exception?: string;
|
|
249
249
|
}
|
|
250
250
|
interface Machines {
|
|
251
|
-
MachineInfoEx
|
|
251
|
+
MachineInfoEx?: MachineInfoEx[];
|
|
252
252
|
}
|
|
253
253
|
interface GetMachineInfoResponse {
|
|
254
|
-
Exceptions
|
|
255
|
-
RequestInfo
|
|
256
|
-
Columns
|
|
257
|
-
Machines
|
|
258
|
-
TimeStamp
|
|
259
|
-
UserName
|
|
260
|
-
Password
|
|
261
|
-
AcceptLanguage
|
|
254
|
+
Exceptions?: Exceptions;
|
|
255
|
+
RequestInfo?: RequestInfo;
|
|
256
|
+
Columns?: Columns;
|
|
257
|
+
Machines?: Machines;
|
|
258
|
+
TimeStamp?: string;
|
|
259
|
+
UserName?: string;
|
|
260
|
+
Password?: string;
|
|
261
|
+
AcceptLanguage?: string;
|
|
262
262
|
}
|
|
263
263
|
interface GetMachineInfoRequestEx {
|
|
264
|
-
Addresses
|
|
265
|
-
ClusterType
|
|
264
|
+
Addresses?: Addresses;
|
|
265
|
+
ClusterType?: TpMachineType;
|
|
266
266
|
}
|
|
267
267
|
interface GetMachineInfoResponseEx {
|
|
268
|
-
Exceptions
|
|
269
|
-
AcceptLanguage
|
|
270
|
-
Machines
|
|
268
|
+
Exceptions?: Exceptions;
|
|
269
|
+
AcceptLanguage?: string;
|
|
270
|
+
Machines?: Machines;
|
|
271
271
|
}
|
|
272
272
|
interface ShowColumns {
|
|
273
|
-
Item
|
|
273
|
+
Item?: string[];
|
|
274
274
|
}
|
|
275
275
|
interface MetricsRequest {
|
|
276
276
|
SecurityString?: string;
|
|
@@ -282,38 +282,38 @@ export declare namespace WsMachine {
|
|
|
282
282
|
AutoUpdate?: boolean;
|
|
283
283
|
}
|
|
284
284
|
interface MetricsResponse {
|
|
285
|
-
Exceptions
|
|
286
|
-
FieldInformation
|
|
287
|
-
Metrics
|
|
288
|
-
AutoRefresh
|
|
289
|
-
Cluster
|
|
290
|
-
SelectAllChecked
|
|
291
|
-
AutoUpdate
|
|
292
|
-
AcceptLanguage
|
|
285
|
+
Exceptions?: Exceptions;
|
|
286
|
+
FieldInformation?: string;
|
|
287
|
+
Metrics?: string;
|
|
288
|
+
AutoRefresh?: int;
|
|
289
|
+
Cluster?: string;
|
|
290
|
+
SelectAllChecked?: boolean;
|
|
291
|
+
AutoUpdate?: boolean;
|
|
292
|
+
AcceptLanguage?: string;
|
|
293
293
|
}
|
|
294
294
|
interface NodeGroups {
|
|
295
|
-
Item
|
|
295
|
+
Item?: string[];
|
|
296
296
|
}
|
|
297
297
|
interface GetNodeGroupUsageRequest {
|
|
298
298
|
NodeGroups?: NodeGroups;
|
|
299
299
|
BypassCachedResult?: boolean;
|
|
300
300
|
}
|
|
301
301
|
interface NodeGroupUsage {
|
|
302
|
-
Name
|
|
303
|
-
Description
|
|
304
|
-
Exception
|
|
305
|
-
ComponentUsages
|
|
302
|
+
Name?: string;
|
|
303
|
+
Description?: string;
|
|
304
|
+
Exception?: string;
|
|
305
|
+
ComponentUsages?: ComponentUsages;
|
|
306
306
|
}
|
|
307
307
|
interface NodeGroupUsages {
|
|
308
|
-
NodeGroupUsage
|
|
308
|
+
NodeGroupUsage?: NodeGroupUsage[];
|
|
309
309
|
}
|
|
310
310
|
interface GetNodeGroupUsageResponse {
|
|
311
|
-
Exceptions
|
|
312
|
-
NodeGroupUsages
|
|
313
|
-
UsageTime
|
|
311
|
+
Exceptions?: Exceptions;
|
|
312
|
+
NodeGroupUsages?: NodeGroupUsages;
|
|
313
|
+
UsageTime?: string;
|
|
314
314
|
}
|
|
315
315
|
interface TargetClusters {
|
|
316
|
-
Item
|
|
316
|
+
Item?: string[];
|
|
317
317
|
}
|
|
318
318
|
interface GetTargetClusterInfoRequest {
|
|
319
319
|
TargetClusters?: TargetClusters;
|
|
@@ -331,41 +331,41 @@ export declare namespace WsMachine {
|
|
|
331
331
|
DiskThresholdType?: ThresholdType;
|
|
332
332
|
}
|
|
333
333
|
interface Processes {
|
|
334
|
-
MachineInfoEx
|
|
334
|
+
MachineInfoEx?: MachineInfoEx[];
|
|
335
335
|
}
|
|
336
336
|
interface TargetClusterInfo {
|
|
337
|
-
Name
|
|
338
|
-
Type
|
|
339
|
-
Processes
|
|
337
|
+
Name?: string;
|
|
338
|
+
Type?: string;
|
|
339
|
+
Processes?: Processes;
|
|
340
340
|
}
|
|
341
341
|
interface TargetClusterInfoList {
|
|
342
|
-
TargetClusterInfo
|
|
342
|
+
TargetClusterInfo?: TargetClusterInfo[];
|
|
343
343
|
}
|
|
344
344
|
interface GetTargetClusterInfoResponse {
|
|
345
|
-
Exceptions
|
|
346
|
-
Columns
|
|
347
|
-
RequestInfo
|
|
348
|
-
TargetClusterInfoList
|
|
349
|
-
TimeStamp
|
|
350
|
-
AcceptLanguage
|
|
345
|
+
Exceptions?: Exceptions;
|
|
346
|
+
Columns?: Columns;
|
|
347
|
+
RequestInfo?: RequestInfo;
|
|
348
|
+
TargetClusterInfoList?: TargetClusterInfoList;
|
|
349
|
+
TimeStamp?: string;
|
|
350
|
+
AcceptLanguage?: string;
|
|
351
351
|
}
|
|
352
352
|
interface GetTargetClusterUsageRequest {
|
|
353
353
|
TargetClusters?: TargetClusters;
|
|
354
354
|
BypassCachedResult?: boolean;
|
|
355
355
|
}
|
|
356
356
|
interface TargetClusterUsage {
|
|
357
|
-
Name
|
|
358
|
-
Description
|
|
359
|
-
Exception
|
|
360
|
-
ComponentUsages
|
|
357
|
+
Name?: string;
|
|
358
|
+
Description?: string;
|
|
359
|
+
Exception?: string;
|
|
360
|
+
ComponentUsages?: ComponentUsages;
|
|
361
361
|
}
|
|
362
362
|
interface TargetClusterUsages {
|
|
363
|
-
TargetClusterUsage
|
|
363
|
+
TargetClusterUsage?: TargetClusterUsage[];
|
|
364
364
|
}
|
|
365
365
|
interface GetTargetClusterUsageResponse {
|
|
366
|
-
Exceptions
|
|
367
|
-
TargetClusterUsages
|
|
368
|
-
UsageTime
|
|
366
|
+
Exceptions?: Exceptions;
|
|
367
|
+
TargetClusterUsages?: TargetClusterUsages;
|
|
368
|
+
UsageTime?: string;
|
|
369
369
|
}
|
|
370
370
|
interface ws_machinePingRequest {
|
|
371
371
|
}
|
|
@@ -376,21 +376,21 @@ export declare namespace WsMachine {
|
|
|
376
376
|
ComponentStatusList?: ComponentStatusList;
|
|
377
377
|
}
|
|
378
378
|
interface UpdateComponentStatusResponse {
|
|
379
|
-
Exceptions
|
|
380
|
-
StatusCode
|
|
381
|
-
Status
|
|
379
|
+
Exceptions?: Exceptions;
|
|
380
|
+
StatusCode?: int;
|
|
381
|
+
Status?: string;
|
|
382
382
|
}
|
|
383
383
|
}
|
|
384
384
|
export declare class MachineServiceBase extends Service {
|
|
385
385
|
constructor(optsConnection: IOptions | IConnection);
|
|
386
|
-
GetComponentStatus(request: Partial<WsMachine.GetComponentStatusRequest
|
|
387
|
-
GetComponentUsage(request: Partial<WsMachine.GetComponentUsageRequest
|
|
388
|
-
GetMachineInfo(request: Partial<WsMachine.GetMachineInfoRequest
|
|
389
|
-
GetMachineInfoEx(request: Partial<WsMachine.GetMachineInfoRequestEx
|
|
390
|
-
GetMetrics(request: Partial<WsMachine.MetricsRequest
|
|
391
|
-
GetNodeGroupUsage(request: Partial<WsMachine.GetNodeGroupUsageRequest
|
|
392
|
-
GetTargetClusterInfo(request: Partial<WsMachine.GetTargetClusterInfoRequest
|
|
393
|
-
GetTargetClusterUsage(request: Partial<WsMachine.GetTargetClusterUsageRequest
|
|
394
|
-
Ping(request: Partial<WsMachine.ws_machinePingRequest
|
|
395
|
-
UpdateComponentStatus(request: Partial<WsMachine.UpdateComponentStatusRequest
|
|
386
|
+
GetComponentStatus(request: Partial<WsMachine.GetComponentStatusRequest>, abortSignal?: AbortSignal): Promise<WsMachine.GetComponentStatusResponse>;
|
|
387
|
+
GetComponentUsage(request: Partial<WsMachine.GetComponentUsageRequest>, abortSignal?: AbortSignal): Promise<WsMachine.GetComponentUsageResponse>;
|
|
388
|
+
GetMachineInfo(request: Partial<WsMachine.GetMachineInfoRequest>, abortSignal?: AbortSignal): Promise<WsMachine.GetMachineInfoResponse>;
|
|
389
|
+
GetMachineInfoEx(request: Partial<WsMachine.GetMachineInfoRequestEx>, abortSignal?: AbortSignal): Promise<WsMachine.GetMachineInfoResponseEx>;
|
|
390
|
+
GetMetrics(request: Partial<WsMachine.MetricsRequest>, abortSignal?: AbortSignal): Promise<WsMachine.MetricsResponse>;
|
|
391
|
+
GetNodeGroupUsage(request: Partial<WsMachine.GetNodeGroupUsageRequest>, abortSignal?: AbortSignal): Promise<WsMachine.GetNodeGroupUsageResponse>;
|
|
392
|
+
GetTargetClusterInfo(request: Partial<WsMachine.GetTargetClusterInfoRequest>, abortSignal?: AbortSignal): Promise<WsMachine.GetTargetClusterInfoResponse>;
|
|
393
|
+
GetTargetClusterUsage(request: Partial<WsMachine.GetTargetClusterUsageRequest>, abortSignal?: AbortSignal): Promise<WsMachine.GetTargetClusterUsageResponse>;
|
|
394
|
+
Ping(request: Partial<WsMachine.ws_machinePingRequest>, abortSignal?: AbortSignal): Promise<WsMachine.ws_machinePingResponse>;
|
|
395
|
+
UpdateComponentStatus(request: Partial<WsMachine.UpdateComponentStatusRequest>, abortSignal?: AbortSignal): Promise<WsMachine.UpdateComponentStatusResponse>;
|
|
396
396
|
}
|