@hpcc-js/comms 2.76.0 → 2.78.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 +157 -35
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +156 -34
- 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 +156 -34
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.min.js +1 -1
- package/dist/index.node.min.js.map +1 -1
- package/lib-es6/__package__.js +2 -2
- package/lib-es6/services/wsLogaccess.js +106 -2
- package/lib-es6/services/wsLogaccess.js.map +1 -1
- package/lib-es6/services/wsTopology.js +1 -1
- package/lib-es6/services/wsTopology.js.map +1 -1
- package/lib-es6/services/wsWorkunits.js +3 -0
- package/lib-es6/services/wsWorkunits.js.map +1 -1
- package/lib-es6/services/wsdl/WsDali/v1.04/WsDali.js +19 -19
- package/lib-es6/services/wsdl/WsDali/v1.04/WsDali.js.map +1 -1
- package/lib-es6/services/wsdl/ws_logaccess/v1.02/ws_logaccess.js +47 -0
- package/lib-es6/services/wsdl/ws_logaccess/v1.02/ws_logaccess.js.map +1 -0
- package/package.json +25 -24
- package/src/__package__.ts +2 -2
- package/src/services/wsCloud.ts +1 -1
- package/src/services/wsLogaccess.ts +145 -3
- package/src/services/wsTopology.ts +42 -343
- package/src/services/wsWorkunits.ts +62 -0
- package/src/services/wsdl/WsDali/v1.04/WsDali.ts +156 -156
- package/src/services/wsdl/ws_logaccess/v1.02/ws_logaccess.ts +161 -0
- package/types/__package__.d.ts +2 -2
- package/types/services/wsCloud.d.ts +1 -1
- package/types/services/wsCloud.d.ts.map +1 -1
- package/types/services/wsLogaccess.d.ts +46 -2
- package/types/services/wsLogaccess.d.ts.map +1 -1
- package/types/services/wsTopology.d.ts +40 -307
- package/types/services/wsTopology.d.ts.map +1 -1
- package/types/services/wsWorkunits.d.ts +48 -0
- package/types/services/wsWorkunits.d.ts.map +1 -1
- package/types/services/wsdl/WsDali/v1.04/WsDali.d.ts +27 -27
- package/types/services/wsdl/WsDali/v1.04/WsDali.d.ts.map +1 -1
- package/types/services/wsdl/ws_logaccess/v1.02/ws_logaccess.d.ts +126 -0
- package/types/services/wsdl/ws_logaccess/v1.02/ws_logaccess.d.ts.map +1 -0
- package/types-3.4/__package__.d.ts +2 -2
- package/types-3.4/services/wsCloud.d.ts +1 -1
- package/types-3.4/services/wsLogaccess.d.ts +46 -2
- package/types-3.4/services/wsTopology.d.ts +40 -307
- package/types-3.4/services/wsWorkunits.d.ts +48 -0
- package/types-3.4/services/wsdl/WsDali/v1.04/WsDali.d.ts +27 -27
- package/types-3.4/services/wsdl/ws_logaccess/v1.02/ws_logaccess.d.ts +126 -0
|
@@ -1,216 +1,216 @@
|
|
|
1
1
|
import { IConnection, IOptions } from "../../../../connection";
|
|
2
2
|
import { Service } from "../../../../espConnection";
|
|
3
3
|
|
|
4
|
-
type unsignedInt = number;
|
|
5
|
-
|
|
6
4
|
export namespace WsDali {
|
|
7
5
|
|
|
8
|
-
|
|
9
|
-
Path?: string;
|
|
10
|
-
Value?: string;
|
|
11
|
-
}
|
|
6
|
+
type unsignedInt = number;
|
|
12
7
|
|
|
13
|
-
export interface
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
Message: string;
|
|
18
|
-
}
|
|
8
|
+
export interface AddRequest {
|
|
9
|
+
Path?: string;
|
|
10
|
+
Value?: string;
|
|
11
|
+
}
|
|
19
12
|
|
|
20
|
-
export interface
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
13
|
+
export interface Exception {
|
|
14
|
+
Code: string;
|
|
15
|
+
Audience: string;
|
|
16
|
+
Source: string;
|
|
17
|
+
Message: string;
|
|
18
|
+
}
|
|
24
19
|
|
|
25
|
-
export interface
|
|
26
|
-
Exceptions: {
|
|
20
|
+
export interface Exceptions {
|
|
27
21
|
Source: string;
|
|
28
22
|
Exception: Exception[];
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export interface ResultResponse {
|
|
26
|
+
Exceptions: {
|
|
27
|
+
Source: string;
|
|
28
|
+
Exception: Exception[];
|
|
29
|
+
};
|
|
30
|
+
Result: string;
|
|
31
|
+
}
|
|
32
32
|
|
|
33
|
-
export interface CountRequest {
|
|
34
|
-
|
|
35
|
-
}
|
|
33
|
+
export interface CountRequest {
|
|
34
|
+
Path?: string;
|
|
35
|
+
}
|
|
36
36
|
|
|
37
|
-
export interface CountResponse {
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
}
|
|
37
|
+
export interface CountResponse {
|
|
38
|
+
Exceptions: Exceptions;
|
|
39
|
+
Result: unsignedInt;
|
|
40
|
+
}
|
|
41
41
|
|
|
42
|
-
export interface DFSCheckRequest {
|
|
42
|
+
export interface DFSCheckRequest {
|
|
43
43
|
|
|
44
|
-
}
|
|
44
|
+
}
|
|
45
45
|
|
|
46
|
-
export interface DFSExistsRequest {
|
|
47
|
-
|
|
48
|
-
}
|
|
46
|
+
export interface DFSExistsRequest {
|
|
47
|
+
FileName?: string;
|
|
48
|
+
}
|
|
49
49
|
|
|
50
|
-
export interface BooleanResponse {
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
}
|
|
50
|
+
export interface BooleanResponse {
|
|
51
|
+
Exceptions: Exceptions;
|
|
52
|
+
Result: boolean;
|
|
53
|
+
}
|
|
54
54
|
|
|
55
|
-
export interface DFSLSRequest {
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
}
|
|
55
|
+
export interface DFSLSRequest {
|
|
56
|
+
Name?: string;
|
|
57
|
+
PathAndNameOnly?: boolean;
|
|
58
|
+
IncludeSubFileInfo?: boolean;
|
|
59
|
+
Recursively?: boolean;
|
|
60
|
+
}
|
|
61
61
|
|
|
62
|
-
export interface DeleteRequest {
|
|
63
|
-
|
|
64
|
-
}
|
|
62
|
+
export interface DeleteRequest {
|
|
63
|
+
Path?: string;
|
|
64
|
+
}
|
|
65
65
|
|
|
66
|
-
export interface GetDFSCSVRequest {
|
|
67
|
-
|
|
68
|
-
}
|
|
66
|
+
export interface GetDFSCSVRequest {
|
|
67
|
+
LogicalNameMask?: string;
|
|
68
|
+
}
|
|
69
69
|
|
|
70
|
-
export interface GetDFSMapRequest {
|
|
71
|
-
|
|
72
|
-
}
|
|
70
|
+
export interface GetDFSMapRequest {
|
|
71
|
+
FileName?: string;
|
|
72
|
+
}
|
|
73
73
|
|
|
74
|
-
export interface GetDFSParentsRequest {
|
|
75
|
-
|
|
76
|
-
}
|
|
74
|
+
export interface GetDFSParentsRequest {
|
|
75
|
+
FileName?: string;
|
|
76
|
+
}
|
|
77
77
|
|
|
78
|
-
export interface GetLogicalFileRequest {
|
|
79
|
-
|
|
80
|
-
}
|
|
78
|
+
export interface GetLogicalFileRequest {
|
|
79
|
+
FileName?: string;
|
|
80
|
+
}
|
|
81
81
|
|
|
82
|
-
export interface GetLogicalFilePartRequest {
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
}
|
|
82
|
+
export interface GetLogicalFilePartRequest {
|
|
83
|
+
FileName?: string;
|
|
84
|
+
PartNumber?: unsignedInt;
|
|
85
|
+
}
|
|
86
86
|
|
|
87
|
-
export interface GetProtectedListRequest {
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
}
|
|
87
|
+
export interface GetProtectedListRequest {
|
|
88
|
+
FileName?: string;
|
|
89
|
+
CallerId?: string;
|
|
90
|
+
}
|
|
91
91
|
|
|
92
|
-
export interface GetValueRequest {
|
|
93
|
-
|
|
94
|
-
}
|
|
92
|
+
export interface GetValueRequest {
|
|
93
|
+
Path?: string;
|
|
94
|
+
}
|
|
95
95
|
|
|
96
|
-
export interface ImportRequest {
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
}
|
|
96
|
+
export interface ImportRequest {
|
|
97
|
+
XML?: string;
|
|
98
|
+
Path?: string;
|
|
99
|
+
Add?: boolean;
|
|
100
|
+
}
|
|
101
101
|
|
|
102
|
-
export interface WSDaliPingRequest {
|
|
102
|
+
export interface WSDaliPingRequest {
|
|
103
103
|
|
|
104
|
-
}
|
|
104
|
+
}
|
|
105
105
|
|
|
106
|
-
export interface WSDaliPingResponse {
|
|
106
|
+
export interface WSDaliPingResponse {
|
|
107
107
|
|
|
108
|
-
}
|
|
108
|
+
}
|
|
109
109
|
|
|
110
|
-
export interface SetLogicalFilePartAttrRequest {
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
}
|
|
110
|
+
export interface SetLogicalFilePartAttrRequest {
|
|
111
|
+
FileName?: string;
|
|
112
|
+
PartNumber?: unsignedInt;
|
|
113
|
+
Attr?: string;
|
|
114
|
+
Value?: string;
|
|
115
|
+
}
|
|
116
116
|
|
|
117
|
-
export interface SetProtectedRequest {
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
}
|
|
117
|
+
export interface SetProtectedRequest {
|
|
118
|
+
FileName?: string;
|
|
119
|
+
CallerId?: string;
|
|
120
|
+
}
|
|
121
121
|
|
|
122
|
-
export interface SetUnprotectedRequest {
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
}
|
|
122
|
+
export interface SetUnprotectedRequest {
|
|
123
|
+
FileName?: string;
|
|
124
|
+
CallerId?: string;
|
|
125
|
+
}
|
|
126
126
|
|
|
127
|
-
export interface SetValueRequest {
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
}
|
|
127
|
+
export interface SetValueRequest {
|
|
128
|
+
Path?: string;
|
|
129
|
+
Value?: string;
|
|
130
|
+
}
|
|
131
131
|
|
|
132
132
|
}
|
|
133
133
|
|
|
134
134
|
export class DaliServiceBase extends Service {
|
|
135
135
|
|
|
136
|
-
constructor(optsConnection: IOptions | IConnection) {
|
|
137
|
-
super(optsConnection, "WSDali", "1.04");
|
|
138
|
-
}
|
|
136
|
+
constructor(optsConnection: IOptions | IConnection) {
|
|
137
|
+
super(optsConnection, "WSDali", "1.04");
|
|
138
|
+
}
|
|
139
139
|
|
|
140
|
-
Add(request: WsDali.AddRequest): Promise<WsDali.ResultResponse> {
|
|
141
|
-
|
|
142
|
-
}
|
|
140
|
+
Add(request: WsDali.AddRequest): Promise<WsDali.ResultResponse> {
|
|
141
|
+
return this._connection.send("Add", request, "json", false, undefined, "ResultResponse");
|
|
142
|
+
}
|
|
143
143
|
|
|
144
|
-
Count(request: WsDali.CountRequest): Promise<WsDali.CountResponse> {
|
|
145
|
-
|
|
146
|
-
}
|
|
144
|
+
Count(request: WsDali.CountRequest): Promise<WsDali.CountResponse> {
|
|
145
|
+
return this._connection.send("Count", request, "json", false, undefined, "CountResponse");
|
|
146
|
+
}
|
|
147
147
|
|
|
148
|
-
DFSCheck(request: WsDali.DFSCheckRequest): Promise<WsDali.ResultResponse> {
|
|
149
|
-
|
|
150
|
-
}
|
|
148
|
+
DFSCheck(request: WsDali.DFSCheckRequest): Promise<WsDali.ResultResponse> {
|
|
149
|
+
return this._connection.send("DFSCheck", request, "json", false, undefined, "ResultResponse");
|
|
150
|
+
}
|
|
151
151
|
|
|
152
|
-
DFSExists(request: WsDali.DFSExistsRequest): Promise<WsDali.BooleanResponse> {
|
|
153
|
-
|
|
154
|
-
}
|
|
152
|
+
DFSExists(request: WsDali.DFSExistsRequest): Promise<WsDali.BooleanResponse> {
|
|
153
|
+
return this._connection.send("DFSExists", request, "json", false, undefined, "BooleanResponse");
|
|
154
|
+
}
|
|
155
155
|
|
|
156
|
-
DFSLS(request: WsDali.DFSLSRequest): Promise<WsDali.ResultResponse> {
|
|
157
|
-
|
|
158
|
-
}
|
|
156
|
+
DFSLS(request: WsDali.DFSLSRequest): Promise<WsDali.ResultResponse> {
|
|
157
|
+
return this._connection.send("DFSLS", request, "json", false, undefined, "ResultResponse");
|
|
158
|
+
}
|
|
159
159
|
|
|
160
|
-
Delete(request: WsDali.DeleteRequest): Promise<WsDali.ResultResponse> {
|
|
161
|
-
|
|
162
|
-
}
|
|
160
|
+
Delete(request: WsDali.DeleteRequest): Promise<WsDali.ResultResponse> {
|
|
161
|
+
return this._connection.send("Delete", request, "json", false, undefined, "ResultResponse");
|
|
162
|
+
}
|
|
163
163
|
|
|
164
|
-
GetDFSCSV(request: WsDali.GetDFSCSVRequest): Promise<WsDali.ResultResponse> {
|
|
165
|
-
|
|
166
|
-
}
|
|
164
|
+
GetDFSCSV(request: WsDali.GetDFSCSVRequest): Promise<WsDali.ResultResponse> {
|
|
165
|
+
return this._connection.send("GetDFSCSV", request, "json", false, undefined, "ResultResponse");
|
|
166
|
+
}
|
|
167
167
|
|
|
168
|
-
GetDFSMap(request: WsDali.GetDFSMapRequest): Promise<WsDali.ResultResponse> {
|
|
169
|
-
|
|
170
|
-
}
|
|
168
|
+
GetDFSMap(request: WsDali.GetDFSMapRequest): Promise<WsDali.ResultResponse> {
|
|
169
|
+
return this._connection.send("GetDFSMap", request, "json", false, undefined, "ResultResponse");
|
|
170
|
+
}
|
|
171
171
|
|
|
172
|
-
GetDFSParents(request: WsDali.GetDFSParentsRequest): Promise<WsDali.ResultResponse> {
|
|
173
|
-
|
|
174
|
-
}
|
|
172
|
+
GetDFSParents(request: WsDali.GetDFSParentsRequest): Promise<WsDali.ResultResponse> {
|
|
173
|
+
return this._connection.send("GetDFSParents", request, "json", false, undefined, "ResultResponse");
|
|
174
|
+
}
|
|
175
175
|
|
|
176
|
-
GetLogicalFile(request: WsDali.GetLogicalFileRequest): Promise<WsDali.ResultResponse> {
|
|
177
|
-
|
|
178
|
-
}
|
|
176
|
+
GetLogicalFile(request: WsDali.GetLogicalFileRequest): Promise<WsDali.ResultResponse> {
|
|
177
|
+
return this._connection.send("GetLogicalFile", request, "json", false, undefined, "ResultResponse");
|
|
178
|
+
}
|
|
179
179
|
|
|
180
|
-
GetLogicalFilePart(request: WsDali.GetLogicalFilePartRequest): Promise<WsDali.ResultResponse> {
|
|
181
|
-
|
|
182
|
-
}
|
|
180
|
+
GetLogicalFilePart(request: WsDali.GetLogicalFilePartRequest): Promise<WsDali.ResultResponse> {
|
|
181
|
+
return this._connection.send("GetLogicalFilePart", request, "json", false, undefined, "ResultResponse");
|
|
182
|
+
}
|
|
183
183
|
|
|
184
|
-
GetProtectedList(request: WsDali.GetProtectedListRequest): Promise<WsDali.ResultResponse> {
|
|
185
|
-
|
|
186
|
-
}
|
|
184
|
+
GetProtectedList(request: WsDali.GetProtectedListRequest): Promise<WsDali.ResultResponse> {
|
|
185
|
+
return this._connection.send("GetProtectedList", request, "json", false, undefined, "ResultResponse");
|
|
186
|
+
}
|
|
187
187
|
|
|
188
|
-
GetValue(request: WsDali.GetValueRequest): Promise<WsDali.ResultResponse> {
|
|
189
|
-
|
|
190
|
-
}
|
|
188
|
+
GetValue(request: WsDali.GetValueRequest): Promise<WsDali.ResultResponse> {
|
|
189
|
+
return this._connection.send("GetValue", request, "json", false, undefined, "ResultResponse");
|
|
190
|
+
}
|
|
191
191
|
|
|
192
|
-
Import(request: WsDali.ImportRequest): Promise<WsDali.ResultResponse> {
|
|
193
|
-
|
|
194
|
-
}
|
|
192
|
+
Import(request: WsDali.ImportRequest): Promise<WsDali.ResultResponse> {
|
|
193
|
+
return this._connection.send("Import", request, "json", false, undefined, "ResultResponse");
|
|
194
|
+
}
|
|
195
195
|
|
|
196
|
-
Ping(request: WsDali.WSDaliPingRequest): Promise<WsDali.WSDaliPingResponse> {
|
|
197
|
-
|
|
198
|
-
}
|
|
196
|
+
Ping(request: WsDali.WSDaliPingRequest): Promise<WsDali.WSDaliPingResponse> {
|
|
197
|
+
return this._connection.send("Ping", request, "json", false, undefined, "WSDaliPingResponse");
|
|
198
|
+
}
|
|
199
199
|
|
|
200
|
-
SetLogicalFilePartAttr(request: WsDali.SetLogicalFilePartAttrRequest): Promise<WsDali.ResultResponse> {
|
|
201
|
-
|
|
202
|
-
}
|
|
200
|
+
SetLogicalFilePartAttr(request: WsDali.SetLogicalFilePartAttrRequest): Promise<WsDali.ResultResponse> {
|
|
201
|
+
return this._connection.send("SetLogicalFilePartAttr", request, "json", false, undefined, "ResultResponse");
|
|
202
|
+
}
|
|
203
203
|
|
|
204
|
-
SetProtected(request: WsDali.SetProtectedRequest): Promise<WsDali.ResultResponse> {
|
|
205
|
-
|
|
206
|
-
}
|
|
204
|
+
SetProtected(request: WsDali.SetProtectedRequest): Promise<WsDali.ResultResponse> {
|
|
205
|
+
return this._connection.send("SetProtected", request, "json", false, undefined, "ResultResponse");
|
|
206
|
+
}
|
|
207
207
|
|
|
208
|
-
SetUnprotected(request: WsDali.SetUnprotectedRequest): Promise<WsDali.ResultResponse> {
|
|
209
|
-
|
|
210
|
-
}
|
|
208
|
+
SetUnprotected(request: WsDali.SetUnprotectedRequest): Promise<WsDali.ResultResponse> {
|
|
209
|
+
return this._connection.send("SetUnprotected", request, "json", false, undefined, "ResultResponse");
|
|
210
|
+
}
|
|
211
211
|
|
|
212
|
-
SetValue(request: WsDali.SetValueRequest): Promise<WsDali.ResultResponse> {
|
|
213
|
-
|
|
214
|
-
}
|
|
212
|
+
SetValue(request: WsDali.SetValueRequest): Promise<WsDali.ResultResponse> {
|
|
213
|
+
return this._connection.send("SetValue", request, "json", false, undefined, "ResultResponse");
|
|
214
|
+
}
|
|
215
215
|
|
|
216
216
|
}
|
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
import { IConnection, IOptions } from "../../../../connection";
|
|
2
|
+
import { Service } from "../../../../espConnection";
|
|
3
|
+
|
|
4
|
+
export namespace WsLogaccess {
|
|
5
|
+
|
|
6
|
+
type dateTime = string;
|
|
7
|
+
type unsignedInt = number;
|
|
8
|
+
type long = number;
|
|
9
|
+
|
|
10
|
+
export enum LogAccessType {
|
|
11
|
+
All = 0,
|
|
12
|
+
ByJobIdID = 1,
|
|
13
|
+
ByComponent = 2,
|
|
14
|
+
ByLogType = 3,
|
|
15
|
+
ByTargetAudience = 4,
|
|
16
|
+
BySourceInstance = 5,
|
|
17
|
+
BySourceNode = 6,
|
|
18
|
+
ByFieldName = 7
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export enum LogAccessFilterOperator {
|
|
22
|
+
NONE = 0,
|
|
23
|
+
AND = 1,
|
|
24
|
+
OR = 2
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
export enum LogSelectColumnMode {
|
|
28
|
+
MIN = 0,
|
|
29
|
+
DEFAULT = 1,
|
|
30
|
+
ALL = 2,
|
|
31
|
+
CUSTOM = 3
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export interface GetLogAccessInfoRequest {
|
|
35
|
+
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export interface GetLogAccessInfoResponse {
|
|
39
|
+
RemoteLogManagerType: string;
|
|
40
|
+
RemoteLogManagerConnectionString: string;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export interface leftFilter {
|
|
44
|
+
LogCategory: LogAccessType;
|
|
45
|
+
SearchByValue: string;
|
|
46
|
+
SearchField: string;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export interface rightFilter {
|
|
50
|
+
LogCategory: LogAccessType;
|
|
51
|
+
SearchByValue: string;
|
|
52
|
+
SearchField: string;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
export interface rightBinaryFilter {
|
|
56
|
+
BinaryLogFilter: BinaryLogFilter[];
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
export interface BinaryLogFilter {
|
|
60
|
+
leftFilter: leftFilter;
|
|
61
|
+
leftBinaryFilter: leftBinaryFilter;
|
|
62
|
+
Operator: LogAccessFilterOperator;
|
|
63
|
+
rightFilter: {
|
|
64
|
+
LogCategory: LogAccessType;
|
|
65
|
+
SearchByValue: string;
|
|
66
|
+
SearchField: string;
|
|
67
|
+
};
|
|
68
|
+
rightBinaryFilter: {
|
|
69
|
+
BinaryLogFilter: BinaryLogFilter[];
|
|
70
|
+
};
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
export interface leftBinaryFilter {
|
|
74
|
+
BinaryLogFilter: BinaryLogFilter[];
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
export interface Filter {
|
|
78
|
+
leftFilter: {
|
|
79
|
+
LogCategory: LogAccessType;
|
|
80
|
+
SearchByValue: string;
|
|
81
|
+
SearchField: string;
|
|
82
|
+
};
|
|
83
|
+
leftBinaryFilter: {
|
|
84
|
+
BinaryLogFilter: BinaryLogFilter[];
|
|
85
|
+
};
|
|
86
|
+
Operator: LogAccessFilterOperator;
|
|
87
|
+
rightFilter: rightFilter;
|
|
88
|
+
rightBinaryFilter: rightBinaryFilter;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
export interface Range {
|
|
92
|
+
StartDate: dateTime;
|
|
93
|
+
EndDate: dateTime;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
export interface Columns {
|
|
97
|
+
Item: string[];
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
export interface GetLogsRequest {
|
|
101
|
+
Filter?: {
|
|
102
|
+
leftFilter?: {
|
|
103
|
+
LogCategory?: LogAccessType;
|
|
104
|
+
SearchByValue?: string;
|
|
105
|
+
SearchField?: string;
|
|
106
|
+
};
|
|
107
|
+
leftBinaryFilter?: {
|
|
108
|
+
BinaryLogFilter?: BinaryLogFilter[];
|
|
109
|
+
};
|
|
110
|
+
Operator?: LogAccessFilterOperator;
|
|
111
|
+
rightFilter?: rightFilter;
|
|
112
|
+
rightBinaryFilter?: rightBinaryFilter;
|
|
113
|
+
};
|
|
114
|
+
Range?: {
|
|
115
|
+
StartDate?: dateTime;
|
|
116
|
+
EndDate?: dateTime;
|
|
117
|
+
};
|
|
118
|
+
LogLineLimit?: unsignedInt;
|
|
119
|
+
LogLineStartFrom?: long;
|
|
120
|
+
SelectColumnMode?: LogSelectColumnMode;
|
|
121
|
+
Columns?: {
|
|
122
|
+
Item?: string[];
|
|
123
|
+
};
|
|
124
|
+
Format?: string;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
export interface GetLogsResponse {
|
|
128
|
+
LogLines: string;
|
|
129
|
+
LogLineCount: unsignedInt;
|
|
130
|
+
TotalLogLinesAvailable: unsignedInt;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
export interface ws_logaccessPingRequest {
|
|
134
|
+
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
export interface ws_logaccessPingResponse {
|
|
138
|
+
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
export class LogaccessServiceBase extends Service {
|
|
144
|
+
|
|
145
|
+
constructor(optsConnection: IOptions | IConnection) {
|
|
146
|
+
super(optsConnection, "ws_logaccess", "1.02");
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
GetLogAccessInfo(request: WsLogaccess.GetLogAccessInfoRequest): Promise<WsLogaccess.GetLogAccessInfoResponse> {
|
|
150
|
+
return this._connection.send("GetLogAccessInfo", request);
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
GetLogs(request: WsLogaccess.GetLogsRequest): Promise<WsLogaccess.GetLogsResponse> {
|
|
154
|
+
return this._connection.send("GetLogs", request);
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
Ping(request: WsLogaccess.ws_logaccessPingRequest): Promise<WsLogaccess.ws_logaccessPingResponse> {
|
|
158
|
+
return this._connection.send("Ping", request);
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
}
|
package/types/__package__.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare const PKG_NAME = "@hpcc-js/comms";
|
|
2
|
-
export declare const PKG_VERSION = "2.
|
|
3
|
-
export declare const BUILD_VERSION = "2.103.
|
|
2
|
+
export declare const PKG_VERSION = "2.78.1";
|
|
3
|
+
export declare const BUILD_VERSION = "2.103.5";
|
|
4
4
|
//# sourceMappingURL=__package__.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"wsCloud.d.ts","sourceRoot":"","sources":["../../src/services/wsCloud.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAC;AAEtE,OAAO,EACH,OAAO,EACV,CAAC;AAEF,qBAAa,YAAa,SAAQ,gBAAgB;IAE9C,OAAO,IAAI,OAAO,CAAC,
|
|
1
|
+
{"version":3,"file":"wsCloud.d.ts","sourceRoot":"","sources":["../../src/services/wsCloud.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAC;AAEtE,OAAO,EACH,OAAO,EACV,CAAC;AAEF,qBAAa,YAAa,SAAQ,gBAAgB;IAE9C,OAAO,IAAI,OAAO,CAAC,MAAM,EAAE,CAAC;CAW/B"}
|
|
@@ -1,5 +1,49 @@
|
|
|
1
|
-
import { LogaccessServiceBase, WsLogaccess
|
|
2
|
-
export { WsLogaccess
|
|
1
|
+
import { LogaccessServiceBase, WsLogaccess } from "./wsdl/ws_logaccess/v1.02/ws_logaccess";
|
|
2
|
+
export { WsLogaccess };
|
|
3
|
+
export declare enum KnownColumns {
|
|
4
|
+
audience = "hpcc.log.audience",
|
|
5
|
+
class = "hpcc.log.class",
|
|
6
|
+
jobId = "hpcc.log.jobid",
|
|
7
|
+
message = "hpcc.log.message",
|
|
8
|
+
procId = "hpcc.log.procid",
|
|
9
|
+
sequence = "hpcc.log.sequence",
|
|
10
|
+
threadId = "hpcc.log.threadid",
|
|
11
|
+
timestamp = "hpcc.log.timestamp",
|
|
12
|
+
containerName = "kubernetes.container.name"
|
|
13
|
+
}
|
|
14
|
+
export interface GetLogsExRequest {
|
|
15
|
+
audience?: string;
|
|
16
|
+
class?: string;
|
|
17
|
+
jobId?: string;
|
|
18
|
+
message?: string;
|
|
19
|
+
procId?: string;
|
|
20
|
+
sequence?: string;
|
|
21
|
+
threadId?: string;
|
|
22
|
+
timestamp?: string;
|
|
23
|
+
containerName?: string;
|
|
24
|
+
StartDate?: Date;
|
|
25
|
+
EndDate?: Date;
|
|
26
|
+
LogLineStartFrom: number;
|
|
27
|
+
LogLineLimit: number;
|
|
28
|
+
}
|
|
29
|
+
export interface LogLine {
|
|
30
|
+
audience?: string;
|
|
31
|
+
class?: string;
|
|
32
|
+
jobId?: string;
|
|
33
|
+
message?: string;
|
|
34
|
+
procId?: number;
|
|
35
|
+
sequence?: string;
|
|
36
|
+
threadId?: number;
|
|
37
|
+
timestamp?: string;
|
|
38
|
+
containerName?: string;
|
|
39
|
+
}
|
|
40
|
+
export interface GetLogsExResponse {
|
|
41
|
+
lines: LogLine[];
|
|
42
|
+
total: number;
|
|
43
|
+
}
|
|
3
44
|
export declare class LogaccessService extends LogaccessServiceBase {
|
|
45
|
+
GetLogAccessInfo(request: WsLogaccess.GetLogAccessInfoRequest): Promise<WsLogaccess.GetLogAccessInfoResponse>;
|
|
46
|
+
GetLogs(request: WsLogaccess.GetLogsRequest): Promise<WsLogaccess.GetLogsResponse>;
|
|
47
|
+
GetLogsEx(request: GetLogsExRequest): Promise<GetLogsExResponse>;
|
|
4
48
|
}
|
|
5
49
|
//# sourceMappingURL=wsLogaccess.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"wsLogaccess.d.ts","sourceRoot":"","sources":["../../src/services/wsLogaccess.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"wsLogaccess.d.ts","sourceRoot":"","sources":["../../src/services/wsLogaccess.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,oBAAoB,EAAE,WAAW,EAAE,MAAM,wCAAwC,CAAC;AAI3F,OAAO,EACH,WAAW,EACd,CAAC;AAEF,oBAAY,YAAY;IACpB,QAAQ,sBAAsB;IAC9B,KAAK,mBAAmB;IACxB,KAAK,mBAAmB;IACxB,OAAO,qBAAqB;IAC5B,MAAM,oBAAoB;IAC1B,QAAQ,sBAAsB;IAC9B,QAAQ,sBAAsB;IAC9B,SAAS,uBAAuB;IAChC,aAAa,8BAA8B;CAC9C;AASD,MAAM,WAAW,gBAAgB;IAC7B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,SAAS,CAAC,EAAE,IAAI,CAAC;IACjB,OAAO,CAAC,EAAE,IAAI,CAAC;IACf,gBAAgB,EAAE,MAAM,CAAC;IACzB,YAAY,EAAE,MAAM,CAAA;CACvB;AAED,MAAM,WAAW,OAAO;IACpB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,MAAM,CAAC;CAC1B;AAUD,MAAM,WAAW,iBAAiB;IAC9B,KAAK,EAAE,OAAO,EAAE,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;CACjB;AAED,qBAAa,gBAAiB,SAAQ,oBAAoB;IAEtD,gBAAgB,CAAC,OAAO,EAAE,WAAW,CAAC,uBAAuB,GAAG,OAAO,CAAC,WAAW,CAAC,wBAAwB,CAAC;IAI7G,OAAO,CAAC,OAAO,EAAE,WAAW,CAAC,cAAc,GAAG,OAAO,CAAC,WAAW,CAAC,eAAe,CAAC;IAIlF,SAAS,CAAC,OAAO,EAAE,gBAAgB,GAAG,OAAO,CAAC,iBAAiB,CAAC;CAsEnE"}
|