@hpcc-js/comms 2.99.5 → 2.101.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 +110 -12
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +110 -12
- 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 +110 -12
- 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/__package__.js.map +1 -1
- package/lib-es6/services/wsCloud.js +55 -3
- package/lib-es6/services/wsCloud.js.map +1 -1
- package/lib-es6/services/wsDali.js +30 -1
- package/lib-es6/services/wsDali.js.map +1 -1
- package/lib-es6/services/wsLogaccess.js +1 -1
- package/lib-es6/services/wsWorkunits.js +1 -1
- package/lib-es6/services/wsWorkunits.js.map +1 -1
- package/lib-es6/services/wsdl/WsCloud/v1.02/WsCloud.js +20 -0
- package/lib-es6/services/wsdl/WsCloud/v1.02/WsCloud.js.map +1 -0
- package/lib-es6/services/wsdl/WsWorkunits/v2.02/WsWorkunits.js +376 -0
- package/lib-es6/services/wsdl/WsWorkunits/v2.02/WsWorkunits.js.map +1 -0
- package/lib-es6/services/wsdl/ws_logaccess/v1.08/ws_logaccess.js +104 -0
- package/lib-es6/services/wsdl/ws_logaccess/v1.08/ws_logaccess.js.map +1 -0
- package/package.json +4 -3
- package/src/__package__.ts +2 -2
- package/src/services/wsCloud.ts +59 -6
- package/src/services/wsDali.ts +32 -0
- package/src/services/wsLogaccess.ts +1 -1
- package/src/services/wsWorkunits.ts +1 -1
- package/src/services/wsdl/WsCloud/v1.02/WsCloud.ts +77 -0
- package/src/services/wsdl/WsWorkunits/v2.02/WsWorkunits.ts +3157 -0
- package/src/services/wsdl/ws_logaccess/v1.08/ws_logaccess.ts +267 -0
- package/types/__package__.d.ts +2 -2
- package/types/__package__.d.ts.map +1 -1
- package/types/services/wsCloud.d.ts +3 -3
- package/types/services/wsCloud.d.ts.map +1 -1
- package/types/services/wsDali.d.ts +9 -0
- package/types/services/wsDali.d.ts.map +1 -1
- package/types/services/wsLogaccess.d.ts +1 -1
- package/types/services/wsWorkunits.d.ts +1 -1
- package/types/services/wsWorkunits.d.ts.map +1 -1
- package/types/services/wsdl/WsCloud/v1.02/WsCloud.d.ts +47 -0
- package/types/services/wsdl/WsCloud/v1.02/WsCloud.d.ts.map +1 -0
- package/types/services/wsdl/WsWorkunits/v2.02/WsWorkunits.d.ts +2553 -0
- package/types/services/wsdl/WsWorkunits/v2.02/WsWorkunits.d.ts.map +1 -0
- package/types/services/wsdl/ws_logaccess/v1.08/ws_logaccess.d.ts +211 -0
- package/types/services/wsdl/ws_logaccess/v1.08/ws_logaccess.d.ts.map +1 -0
- package/types-3.4/__package__.d.ts +2 -2
- package/types-3.4/services/wsCloud.d.ts +2 -2
- package/types-3.4/services/wsDali.d.ts +9 -0
- package/types-3.4/services/wsLogaccess.d.ts +1 -1
- package/types-3.4/services/wsWorkunits.d.ts +1 -1
- package/types-3.4/services/wsdl/WsCloud/v1.02/WsCloud.d.ts +47 -0
- package/types-3.4/services/wsdl/WsWorkunits/v2.02/WsWorkunits.d.ts +2553 -0
- package/types-3.4/services/wsdl/ws_logaccess/v1.08/ws_logaccess.d.ts +211 -0
|
@@ -0,0 +1,211 @@
|
|
|
1
|
+
import { IConnection, IOptions } from "../../../../connection";
|
|
2
|
+
import { Service } from "../../../../espConnection";
|
|
3
|
+
export declare namespace WsLogaccess {
|
|
4
|
+
type dateTime = string;
|
|
5
|
+
type unsignedInt = number;
|
|
6
|
+
type long = number;
|
|
7
|
+
enum LogColumnType {
|
|
8
|
+
global = "global",
|
|
9
|
+
workunits = "workunits",
|
|
10
|
+
components = "components",
|
|
11
|
+
audience = "audience",
|
|
12
|
+
class = "class",
|
|
13
|
+
instance = "instance",
|
|
14
|
+
node = "node",
|
|
15
|
+
message = "message",
|
|
16
|
+
logid = "logid",
|
|
17
|
+
processid = "processid",
|
|
18
|
+
threadid = "threadid",
|
|
19
|
+
timestamp = "timestamp",
|
|
20
|
+
pod = "pod",
|
|
21
|
+
traceid = "traceid",
|
|
22
|
+
spanid = "spanid"
|
|
23
|
+
}
|
|
24
|
+
enum LogColumnValueType {
|
|
25
|
+
string = "string",
|
|
26
|
+
numeric = "numeric",
|
|
27
|
+
datetime = "datetime",
|
|
28
|
+
enum = "enum",
|
|
29
|
+
epoch = "epoch"
|
|
30
|
+
}
|
|
31
|
+
enum LogAccessType {
|
|
32
|
+
All = 0,
|
|
33
|
+
ByJobID = 1,
|
|
34
|
+
ByComponent = 2,
|
|
35
|
+
ByLogType = 3,
|
|
36
|
+
ByTargetAudience = 4,
|
|
37
|
+
BySourceInstance = 5,
|
|
38
|
+
BySourceNode = 6,
|
|
39
|
+
ByFieldName = 7,
|
|
40
|
+
ByPod = 8,
|
|
41
|
+
ByTraceID = 9,
|
|
42
|
+
BySpanID = 10
|
|
43
|
+
}
|
|
44
|
+
enum LogAccessStatusCode {
|
|
45
|
+
Success = 0,
|
|
46
|
+
Warning = 1,
|
|
47
|
+
Fail = 2
|
|
48
|
+
}
|
|
49
|
+
enum LogAccessFilterOperator {
|
|
50
|
+
NONE = 0,
|
|
51
|
+
AND = 1,
|
|
52
|
+
OR = 2
|
|
53
|
+
}
|
|
54
|
+
enum LogSelectColumnMode {
|
|
55
|
+
MIN = 0,
|
|
56
|
+
DEFAULT = 1,
|
|
57
|
+
ALL = 2,
|
|
58
|
+
CUSTOM = 3
|
|
59
|
+
}
|
|
60
|
+
enum SortColumType {
|
|
61
|
+
ByDate = 0,
|
|
62
|
+
ByJobID = 1,
|
|
63
|
+
ByComponent = 2,
|
|
64
|
+
ByLogType = 3,
|
|
65
|
+
ByTargetAudience = 4,
|
|
66
|
+
BySourceInstance = 5,
|
|
67
|
+
BySourceNode = 6,
|
|
68
|
+
ByFieldName = 7,
|
|
69
|
+
ByPod = 8,
|
|
70
|
+
ByTraceID = 9,
|
|
71
|
+
BySpanID = 10
|
|
72
|
+
}
|
|
73
|
+
enum SortDirection {
|
|
74
|
+
ASC = 0,
|
|
75
|
+
DSC = 1
|
|
76
|
+
}
|
|
77
|
+
interface GetHealthReportRequest {
|
|
78
|
+
IncludeConfiguration?: boolean;
|
|
79
|
+
IncludeDebugReport?: boolean;
|
|
80
|
+
IncludeSampleQuery?: boolean;
|
|
81
|
+
}
|
|
82
|
+
interface Exception {
|
|
83
|
+
Code: string;
|
|
84
|
+
Audience: string;
|
|
85
|
+
Source: string;
|
|
86
|
+
Message: string;
|
|
87
|
+
}
|
|
88
|
+
interface Exceptions {
|
|
89
|
+
Source: string;
|
|
90
|
+
Exception: Exception[];
|
|
91
|
+
}
|
|
92
|
+
interface Messages {
|
|
93
|
+
Item: string[];
|
|
94
|
+
}
|
|
95
|
+
interface Status {
|
|
96
|
+
Code: LogAccessStatusCode;
|
|
97
|
+
Messages: Messages;
|
|
98
|
+
}
|
|
99
|
+
interface DebugReport {
|
|
100
|
+
SampleQueryReport: string;
|
|
101
|
+
PluginDebugReport: string;
|
|
102
|
+
ServerDebugReport: string;
|
|
103
|
+
}
|
|
104
|
+
interface GetHealthReportResponse {
|
|
105
|
+
Exceptions: Exceptions;
|
|
106
|
+
Status: Status;
|
|
107
|
+
DebugReport: DebugReport;
|
|
108
|
+
Configuration: string;
|
|
109
|
+
}
|
|
110
|
+
interface GetLogAccessInfoRequest {
|
|
111
|
+
}
|
|
112
|
+
interface EnumeratedValues {
|
|
113
|
+
Item: string[];
|
|
114
|
+
}
|
|
115
|
+
interface Column {
|
|
116
|
+
Name: string;
|
|
117
|
+
LogType: LogColumnType;
|
|
118
|
+
EnumeratedValues: EnumeratedValues;
|
|
119
|
+
ColumnMode: LogSelectColumnMode;
|
|
120
|
+
ColumnType: LogColumnValueType;
|
|
121
|
+
}
|
|
122
|
+
interface Columns {
|
|
123
|
+
Column: Column[];
|
|
124
|
+
}
|
|
125
|
+
interface GetLogAccessInfoResponse {
|
|
126
|
+
Exceptions: Exceptions;
|
|
127
|
+
Columns: Columns;
|
|
128
|
+
RemoteLogManagerType: string;
|
|
129
|
+
RemoteLogManagerConnectionString: string;
|
|
130
|
+
SupportsResultPaging: boolean;
|
|
131
|
+
}
|
|
132
|
+
interface leftFilter {
|
|
133
|
+
LogCategory: LogAccessType;
|
|
134
|
+
SearchByValue: string;
|
|
135
|
+
SearchField: string;
|
|
136
|
+
}
|
|
137
|
+
interface rightFilter {
|
|
138
|
+
LogCategory: LogAccessType;
|
|
139
|
+
SearchByValue: string;
|
|
140
|
+
SearchField: string;
|
|
141
|
+
}
|
|
142
|
+
interface rightBinaryFilter {
|
|
143
|
+
BinaryLogFilter: BinaryLogFilter[];
|
|
144
|
+
}
|
|
145
|
+
interface BinaryLogFilter {
|
|
146
|
+
leftFilter: leftFilter;
|
|
147
|
+
leftBinaryFilter: leftBinaryFilter;
|
|
148
|
+
Operator: LogAccessFilterOperator;
|
|
149
|
+
rightFilter: {
|
|
150
|
+
LogCategory: LogAccessType;
|
|
151
|
+
SearchByValue: string;
|
|
152
|
+
SearchField: string;
|
|
153
|
+
};
|
|
154
|
+
rightBinaryFilter: {
|
|
155
|
+
BinaryLogFilter: BinaryLogFilter[];
|
|
156
|
+
};
|
|
157
|
+
}
|
|
158
|
+
interface leftBinaryFilter {
|
|
159
|
+
BinaryLogFilter: BinaryLogFilter[];
|
|
160
|
+
}
|
|
161
|
+
interface Filter {
|
|
162
|
+
leftFilter?: leftFilter;
|
|
163
|
+
leftBinaryFilter?: leftBinaryFilter;
|
|
164
|
+
Operator?: LogAccessFilterOperator;
|
|
165
|
+
rightFilter?: rightFilter;
|
|
166
|
+
rightBinaryFilter?: rightBinaryFilter;
|
|
167
|
+
}
|
|
168
|
+
interface Range {
|
|
169
|
+
StartDate?: dateTime;
|
|
170
|
+
EndDate?: dateTime;
|
|
171
|
+
}
|
|
172
|
+
interface Columns2 {
|
|
173
|
+
Item: string[];
|
|
174
|
+
}
|
|
175
|
+
interface SortCondition {
|
|
176
|
+
BySortType: SortColumType;
|
|
177
|
+
ColumnName: string;
|
|
178
|
+
Direction: SortDirection;
|
|
179
|
+
}
|
|
180
|
+
interface SortBy {
|
|
181
|
+
SortCondition: SortCondition[];
|
|
182
|
+
}
|
|
183
|
+
interface GetLogsRequest {
|
|
184
|
+
Filter?: Filter;
|
|
185
|
+
Range?: Range;
|
|
186
|
+
LogLineLimit?: unsignedInt;
|
|
187
|
+
LogLineStartFrom?: long;
|
|
188
|
+
SelectColumnMode?: LogSelectColumnMode;
|
|
189
|
+
Columns?: Columns2;
|
|
190
|
+
Format?: string;
|
|
191
|
+
SortBy?: SortBy;
|
|
192
|
+
}
|
|
193
|
+
interface GetLogsResponse {
|
|
194
|
+
Exceptions: Exceptions;
|
|
195
|
+
LogLines: string;
|
|
196
|
+
LogLineCount: unsignedInt;
|
|
197
|
+
TotalLogLinesAvailable: unsignedInt;
|
|
198
|
+
}
|
|
199
|
+
interface ws_logaccessPingRequest {
|
|
200
|
+
}
|
|
201
|
+
interface ws_logaccessPingResponse {
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
export declare class LogaccessServiceBase extends Service {
|
|
205
|
+
constructor(optsConnection: IOptions | IConnection);
|
|
206
|
+
GetHealthReport(request: Partial<WsLogaccess.GetHealthReportRequest>): Promise<WsLogaccess.GetHealthReportResponse>;
|
|
207
|
+
GetLogAccessInfo(request: Partial<WsLogaccess.GetLogAccessInfoRequest>): Promise<WsLogaccess.GetLogAccessInfoResponse>;
|
|
208
|
+
GetLogs(request: Partial<WsLogaccess.GetLogsRequest>): Promise<WsLogaccess.GetLogsResponse>;
|
|
209
|
+
Ping(request: Partial<WsLogaccess.ws_logaccessPingRequest>): Promise<WsLogaccess.ws_logaccessPingResponse>;
|
|
210
|
+
}
|
|
211
|
+
//# sourceMappingURL=ws_logaccess.d.ts.map
|