@hpcc-js/comms 2.78.1 → 2.79.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 +563 -132
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +565 -129
- 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 +567 -131
- 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/ecl/logicalFile.js +5 -0
- package/lib-es6/ecl/logicalFile.js.map +1 -1
- package/lib-es6/ecl/result.js +11 -10
- package/lib-es6/ecl/result.js.map +1 -1
- package/lib-es6/services/wsDFU.js +6 -2
- package/lib-es6/services/wsDFU.js.map +1 -1
- package/lib-es6/services/wsLogaccess.js +71 -27
- package/lib-es6/services/wsLogaccess.js.map +1 -1
- package/lib-es6/services/wsWorkunits.js +9 -0
- package/lib-es6/services/wsWorkunits.js.map +1 -1
- package/lib-es6/services/wsdl/WsDfu/v1.63/WsDfu.js +80 -77
- package/lib-es6/services/wsdl/WsDfu/v1.63/WsDfu.js.map +1 -1
- package/lib-es6/services/wsdl/WsWorkunits/v1.94/WsWorkunits.js +354 -0
- package/lib-es6/services/wsdl/WsWorkunits/v1.94/WsWorkunits.js.map +1 -0
- package/lib-es6/services/wsdl/ws_logaccess/v1.03/ws_logaccess.js +63 -0
- package/lib-es6/services/wsdl/ws_logaccess/v1.03/ws_logaccess.js.map +1 -0
- package/package.json +8 -8
- package/src/__package__.ts +2 -2
- package/src/ecl/logicalFile.ts +4 -3
- package/src/ecl/result.ts +11 -10
- package/src/services/wsDFU.ts +9 -10
- package/src/services/wsLogaccess.ts +91 -30
- package/src/services/wsWorkunits.ts +4 -0
- package/src/services/wsdl/WsDfu/v1.63/WsDfu.ts +1219 -1217
- package/src/services/wsdl/WsWorkunits/v1.94/WsWorkunits.ts +3072 -0
- package/src/services/wsdl/ws_logaccess/v1.03/ws_logaccess.ts +190 -0
- package/types/__package__.d.ts +2 -2
- package/types/ecl/logicalFile.d.ts +4 -3
- package/types/ecl/logicalFile.d.ts.map +1 -1
- package/types/ecl/result.d.ts +2 -1
- package/types/ecl/result.d.ts.map +1 -1
- package/types/services/wsDFU.d.ts +7 -2
- package/types/services/wsDFU.d.ts.map +1 -1
- package/types/services/wsLogaccess.d.ts +17 -13
- package/types/services/wsLogaccess.d.ts.map +1 -1
- package/types/services/wsWorkunits.d.ts +3 -0
- package/types/services/wsWorkunits.d.ts.map +1 -1
- package/types/services/wsdl/WsDfu/v1.63/WsDfu.d.ts +49 -48
- package/types/services/wsdl/WsDfu/v1.63/WsDfu.d.ts.map +1 -1
- package/types/services/wsdl/WsWorkunits/v1.94/WsWorkunits.d.ts +2520 -0
- package/types/services/wsdl/WsWorkunits/v1.94/WsWorkunits.d.ts.map +1 -0
- package/types/services/wsdl/ws_logaccess/v1.03/ws_logaccess.d.ts +150 -0
- package/types/services/wsdl/ws_logaccess/v1.03/ws_logaccess.d.ts.map +1 -0
- package/types-3.4/__package__.d.ts +2 -2
- package/types-3.4/ecl/logicalFile.d.ts +4 -3
- package/types-3.4/ecl/result.d.ts +2 -1
- package/types-3.4/services/wsDFU.d.ts +7 -2
- package/types-3.4/services/wsLogaccess.d.ts +17 -13
- package/types-3.4/services/wsWorkunits.d.ts +3 -0
- package/types-3.4/services/wsdl/WsDfu/v1.63/WsDfu.d.ts +49 -48
- package/types-3.4/services/wsdl/WsWorkunits/v1.94/WsWorkunits.d.ts +2520 -0
- package/types-3.4/services/wsdl/ws_logaccess/v1.03/ws_logaccess.d.ts +150 -0
|
@@ -1,327 +1,310 @@
|
|
|
1
1
|
import { IConnection, IOptions } from "../../../../connection";
|
|
2
2
|
import { Service } from "../../../../espConnection";
|
|
3
3
|
|
|
4
|
-
export type base64Binary = string;
|
|
5
|
-
type long = number;
|
|
6
|
-
type int = number;
|
|
7
|
-
type double = number;
|
|
8
|
-
|
|
9
|
-
export enum DFUArrayActions {
|
|
10
|
-
Delete = "Delete",
|
|
11
|
-
AddToSuperfile = "AddToSuperfile",
|
|
12
|
-
ChangeProtection = "ChangeProtection",
|
|
13
|
-
ChangeRestriction = "ChangeRestriction"
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
export enum DFUChangeProtection {
|
|
17
|
-
NoChange = 0,
|
|
18
|
-
Protect = 1,
|
|
19
|
-
Unprotect = 2,
|
|
20
|
-
UnprotectAll = 3
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
export enum DFUChangeRestriction {
|
|
24
|
-
NoChange = 0,
|
|
25
|
-
Restrict = 1,
|
|
26
|
-
Unrestricted = 2
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
export enum DFUDefFileFormat {
|
|
30
|
-
Xml = "Xml",
|
|
31
|
-
Def = "Def"
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
export enum FileAccessRole {
|
|
35
|
-
Token = "Token",
|
|
36
|
-
Engine = "Engine",
|
|
37
|
-
External = "External"
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
export enum SecAccessType {
|
|
41
|
-
None = "None",
|
|
42
|
-
Access = "Access",
|
|
43
|
-
Read = "Read",
|
|
44
|
-
Write = "Write",
|
|
45
|
-
Full = "Full"
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
export enum DFUFileType {
|
|
49
|
-
Flat = "Flat",
|
|
50
|
-
Index = "Index",
|
|
51
|
-
Xml = "Xml",
|
|
52
|
-
Csv = "Csv",
|
|
53
|
-
Json = "Json",
|
|
54
|
-
IndexLocal = "IndexLocal",
|
|
55
|
-
IndexPartitioned = "IndexPartitioned",
|
|
56
|
-
Unset = "Unset"
|
|
57
|
-
}
|
|
58
|
-
|
|
59
4
|
export namespace WsDfu {
|
|
60
5
|
|
|
61
|
-
export
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
6
|
+
export type base64Binary = string;
|
|
7
|
+
export type long = number;
|
|
8
|
+
export type int = number;
|
|
9
|
+
export type double = number;
|
|
10
|
+
|
|
11
|
+
export enum DFUArrayActions {
|
|
12
|
+
Delete = "Delete",
|
|
13
|
+
AddToSuperfile = "AddToSuperfile",
|
|
14
|
+
ChangeProtection = "ChangeProtection",
|
|
15
|
+
ChangeRestriction = "ChangeRestriction"
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export enum DFUChangeProtection {
|
|
19
|
+
NoChange = 0,
|
|
20
|
+
Protect = 1,
|
|
21
|
+
Unprotect = 2,
|
|
22
|
+
UnprotectAll = 3
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export enum DFUChangeRestriction {
|
|
26
|
+
NoChange = 0,
|
|
27
|
+
Restrict = 1,
|
|
28
|
+
Unrestricted = 2
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
export enum DFUDefFileFormat {
|
|
32
|
+
xml = "xml",
|
|
33
|
+
def = "def"
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export enum FileAccessRole {
|
|
37
|
+
Token = "Token",
|
|
38
|
+
Engine = "Engine",
|
|
39
|
+
External = "External"
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export enum SecAccessType {
|
|
43
|
+
None = "None",
|
|
44
|
+
Access = "Access",
|
|
45
|
+
Read = "Read",
|
|
46
|
+
Write = "Write",
|
|
47
|
+
Full = "Full"
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
export enum DFUFileType {
|
|
51
|
+
Flat = "Flat",
|
|
52
|
+
Index = "Index",
|
|
53
|
+
Xml = "Xml",
|
|
54
|
+
Csv = "Csv",
|
|
55
|
+
Json = "Json",
|
|
56
|
+
IndexLocal = "IndexLocal",
|
|
57
|
+
IndexPartitioned = "IndexPartitioned",
|
|
58
|
+
Unset = "Unset"
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
export interface AddRequest {
|
|
62
|
+
dstname?: string;
|
|
63
|
+
xmlmap?: base64Binary;
|
|
64
|
+
dstcluster?: string;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
export interface Exception {
|
|
68
|
+
Code: string;
|
|
69
|
+
Audience: string;
|
|
70
|
+
Source: string;
|
|
71
|
+
Message: string;
|
|
72
|
+
}
|
|
78
73
|
|
|
79
|
-
export interface
|
|
80
|
-
Exceptions: {
|
|
74
|
+
export interface Exceptions {
|
|
81
75
|
Source: string;
|
|
82
76
|
Exception: Exception[];
|
|
83
|
-
}
|
|
84
|
-
}
|
|
77
|
+
}
|
|
85
78
|
|
|
86
|
-
export interface
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
}
|
|
79
|
+
export interface AddResponse {
|
|
80
|
+
Exceptions: {
|
|
81
|
+
Source: string;
|
|
82
|
+
Exception: Exception[];
|
|
83
|
+
};
|
|
84
|
+
}
|
|
93
85
|
|
|
94
|
-
export interface
|
|
95
|
-
|
|
96
|
-
|
|
86
|
+
export interface AddRemoteRequest {
|
|
87
|
+
dstname?: string;
|
|
88
|
+
srcname?: string;
|
|
89
|
+
srcdali?: string;
|
|
90
|
+
srcusername?: string;
|
|
91
|
+
srcpassword?: string;
|
|
92
|
+
}
|
|
97
93
|
|
|
98
|
-
export interface
|
|
99
|
-
|
|
100
|
-
}
|
|
94
|
+
export interface AddRemoteResponse {
|
|
95
|
+
Exceptions: Exceptions;
|
|
96
|
+
}
|
|
101
97
|
|
|
102
|
-
export interface
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
names?: {
|
|
106
|
-
Item?: string[];
|
|
107
|
-
};
|
|
108
|
-
ExistingFile?: boolean;
|
|
109
|
-
BackToPage?: string;
|
|
110
|
-
}
|
|
98
|
+
export interface names {
|
|
99
|
+
Item: string[];
|
|
100
|
+
}
|
|
111
101
|
|
|
112
|
-
export interface
|
|
113
|
-
|
|
114
|
-
|
|
102
|
+
export interface AddtoSuperfileRequest {
|
|
103
|
+
Superfile?: string;
|
|
104
|
+
Subfiles?: string;
|
|
105
|
+
names?: {
|
|
106
|
+
Item?: string[];
|
|
107
|
+
};
|
|
108
|
+
ExistingFile?: boolean;
|
|
109
|
+
BackToPage?: string;
|
|
110
|
+
}
|
|
115
111
|
|
|
116
|
-
export interface
|
|
117
|
-
Exceptions: Exceptions;
|
|
118
|
-
Subfiles: string;
|
|
119
|
-
BackToPage: string;
|
|
120
|
-
SubfileNames: {
|
|
112
|
+
export interface SubfileNames {
|
|
121
113
|
SubfileName: string[];
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
BackToPage?: string;
|
|
133
|
-
LogicalFiles?: {
|
|
134
|
-
Item?: string[];
|
|
135
|
-
};
|
|
136
|
-
removeFromSuperfiles?: boolean;
|
|
137
|
-
removeRecursively?: boolean;
|
|
138
|
-
Protect?: DFUChangeProtection;
|
|
139
|
-
Restrict?: DFUChangeRestriction;
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
export interface DFUActionInfo {
|
|
143
|
-
FileName: string;
|
|
144
|
-
NodeGroup: string;
|
|
145
|
-
ActionResult: string;
|
|
146
|
-
Failed: boolean;
|
|
147
|
-
}
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
export interface AddtoSuperfileResponse {
|
|
117
|
+
Exceptions: Exceptions;
|
|
118
|
+
Subfiles: string;
|
|
119
|
+
BackToPage: string;
|
|
120
|
+
SubfileNames: {
|
|
121
|
+
SubfileName: string[];
|
|
122
|
+
};
|
|
123
|
+
}
|
|
148
124
|
|
|
149
|
-
export interface
|
|
150
|
-
|
|
151
|
-
}
|
|
125
|
+
export interface LogicalFiles {
|
|
126
|
+
Item: string[];
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
export interface DFUArrayActionRequest {
|
|
130
|
+
Type?: DFUArrayActions;
|
|
131
|
+
NoDelete?: boolean;
|
|
132
|
+
BackToPage?: string;
|
|
133
|
+
LogicalFiles?: {
|
|
134
|
+
Item?: string[];
|
|
135
|
+
};
|
|
136
|
+
removeFromSuperfiles?: boolean;
|
|
137
|
+
removeRecursively?: boolean;
|
|
138
|
+
Protect?: DFUChangeProtection;
|
|
139
|
+
Restrict?: DFUChangeRestriction;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
export interface DFUActionInfo {
|
|
143
|
+
FileName: string;
|
|
144
|
+
NodeGroup: string;
|
|
145
|
+
ActionResult: string;
|
|
146
|
+
Failed: boolean;
|
|
147
|
+
}
|
|
152
148
|
|
|
153
|
-
export interface
|
|
154
|
-
Exceptions: Exceptions;
|
|
155
|
-
BackToPage: string;
|
|
156
|
-
RedirectTo: string;
|
|
157
|
-
ActionResults: {
|
|
149
|
+
export interface ActionResults {
|
|
158
150
|
DFUActionInfo: DFUActionInfo[];
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
ColumnSize: int;
|
|
202
|
-
MaxSize: int;
|
|
203
|
-
ColumnEclType: string;
|
|
204
|
-
ColumnRawSize: int;
|
|
205
|
-
IsNaturalColumn: boolean;
|
|
206
|
-
IsKeyedColumn: boolean;
|
|
207
|
-
DataColumns: {
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
export interface DFUArrayActionResponse {
|
|
154
|
+
Exceptions: Exceptions;
|
|
155
|
+
BackToPage: string;
|
|
156
|
+
RedirectTo: string;
|
|
157
|
+
ActionResults: {
|
|
158
|
+
DFUActionInfo: DFUActionInfo[];
|
|
159
|
+
};
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
export interface DFUBrowseDataRequest {
|
|
163
|
+
LogicalName?: string;
|
|
164
|
+
FilterBy?: string;
|
|
165
|
+
ShowColumns?: string;
|
|
166
|
+
SchemaOnly?: boolean;
|
|
167
|
+
StartForGoback?: long;
|
|
168
|
+
CountForGoback?: int;
|
|
169
|
+
ChooseFile?: int;
|
|
170
|
+
Cluster?: string;
|
|
171
|
+
ClusterType?: string;
|
|
172
|
+
ParentName?: string;
|
|
173
|
+
Start?: long;
|
|
174
|
+
Count?: int;
|
|
175
|
+
DisableUppercaseTranslation?: boolean;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
export interface DFUDataColumn {
|
|
179
|
+
ColumnID: int;
|
|
180
|
+
ColumnLabel: string;
|
|
181
|
+
ColumnType: string;
|
|
182
|
+
ColumnValue: string;
|
|
183
|
+
ColumnSize: int;
|
|
184
|
+
MaxSize: int;
|
|
185
|
+
ColumnEclType: string;
|
|
186
|
+
ColumnRawSize: int;
|
|
187
|
+
IsNaturalColumn: boolean;
|
|
188
|
+
IsKeyedColumn: boolean;
|
|
189
|
+
DataColumns: DataColumns;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
export interface DataColumns {
|
|
208
193
|
DFUDataColumn: DFUDataColumn[];
|
|
209
|
-
}
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
export interface ColumnHidden {
|
|
197
|
+
ColumnID: int;
|
|
198
|
+
ColumnLabel: string;
|
|
199
|
+
ColumnType: string;
|
|
200
|
+
ColumnValue: string;
|
|
201
|
+
ColumnSize: int;
|
|
202
|
+
MaxSize: int;
|
|
203
|
+
ColumnEclType: string;
|
|
204
|
+
ColumnRawSize: int;
|
|
205
|
+
IsNaturalColumn: boolean;
|
|
206
|
+
IsKeyedColumn: boolean;
|
|
207
|
+
DataColumns: {
|
|
208
|
+
DFUDataColumn: DFUDataColumn[];
|
|
209
|
+
};
|
|
210
|
+
}
|
|
215
211
|
|
|
216
|
-
export interface
|
|
217
|
-
Exceptions: Exceptions;
|
|
218
|
-
Name: string;
|
|
219
|
-
LogicalName: string;
|
|
220
|
-
FilterBy: string;
|
|
221
|
-
FilterForGoBack: string;
|
|
222
|
-
ColumnsHidden: {
|
|
212
|
+
export interface ColumnsHidden {
|
|
223
213
|
ColumnHidden: ColumnHidden[];
|
|
224
|
-
}
|
|
225
|
-
ColumnCount: int;
|
|
226
|
-
StartForGoback: long;
|
|
227
|
-
CountForGoback: int;
|
|
228
|
-
ChooseFile: int;
|
|
229
|
-
SchemaOnly: boolean;
|
|
230
|
-
Cluster: string;
|
|
231
|
-
ClusterType: string;
|
|
232
|
-
ParentName: string;
|
|
233
|
-
Start: long;
|
|
234
|
-
Count: long;
|
|
235
|
-
PageSize: long;
|
|
236
|
-
Total: long;
|
|
237
|
-
Result: string;
|
|
238
|
-
MsgToDisplay: string;
|
|
239
|
-
DisableUppercaseTranslation: boolean;
|
|
240
|
-
}
|
|
241
|
-
|
|
242
|
-
export interface DFUDefFileRequest {
|
|
243
|
-
Name?: string;
|
|
244
|
-
Format?: DFUDefFileFormat;
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
export interface DFUDefFileResponse {
|
|
248
|
-
Exceptions: Exceptions;
|
|
249
|
-
defFile: base64Binary;
|
|
250
|
-
}
|
|
251
|
-
|
|
252
|
-
export interface RequestBase {
|
|
253
|
-
Name: string;
|
|
254
|
-
Cluster: string;
|
|
255
|
-
JobId: string;
|
|
256
|
-
ExpirySeconds: int;
|
|
257
|
-
AccessRole: FileAccessRole;
|
|
258
|
-
AccessType: SecAccessType;
|
|
259
|
-
ReturnJsonTypeInfo: boolean;
|
|
260
|
-
ReturnBinTypeInfo: boolean;
|
|
261
|
-
}
|
|
214
|
+
}
|
|
262
215
|
|
|
263
|
-
export interface
|
|
264
|
-
|
|
216
|
+
export interface DFUBrowseDataResponse {
|
|
217
|
+
Exceptions: Exceptions;
|
|
218
|
+
Name: string;
|
|
219
|
+
LogicalName: string;
|
|
220
|
+
FilterBy: string;
|
|
221
|
+
FilterForGoBack: string;
|
|
222
|
+
ColumnsHidden: {
|
|
223
|
+
ColumnHidden: ColumnHidden[];
|
|
224
|
+
};
|
|
225
|
+
ColumnCount: int;
|
|
226
|
+
StartForGoback: long;
|
|
227
|
+
CountForGoback: int;
|
|
228
|
+
ChooseFile: int;
|
|
229
|
+
SchemaOnly: boolean;
|
|
230
|
+
Cluster: string;
|
|
231
|
+
ClusterType: string;
|
|
232
|
+
ParentName: string;
|
|
233
|
+
Start: long;
|
|
234
|
+
Count: long;
|
|
235
|
+
PageSize: long;
|
|
236
|
+
Total: long;
|
|
237
|
+
Result: string;
|
|
238
|
+
MsgToDisplay: string;
|
|
239
|
+
DisableUppercaseTranslation: boolean;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
export interface DFUDefFileRequest {
|
|
265
243
|
Name?: string;
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
ExpirySeconds?: int;
|
|
269
|
-
AccessRole?: FileAccessRole;
|
|
270
|
-
AccessType?: SecAccessType;
|
|
271
|
-
ReturnJsonTypeInfo?: boolean;
|
|
272
|
-
ReturnBinTypeInfo?: boolean;
|
|
273
|
-
};
|
|
274
|
-
}
|
|
244
|
+
Format?: DFUDefFileFormat;
|
|
245
|
+
}
|
|
275
246
|
|
|
276
|
-
export interface
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
}
|
|
247
|
+
export interface DFUDefFileResponse {
|
|
248
|
+
Exceptions: Exceptions;
|
|
249
|
+
defFile: base64Binary;
|
|
250
|
+
}
|
|
280
251
|
|
|
281
|
-
export interface
|
|
282
|
-
|
|
283
|
-
|
|
252
|
+
export interface RequestBase {
|
|
253
|
+
Name: string;
|
|
254
|
+
Cluster: string;
|
|
255
|
+
JobId: string;
|
|
256
|
+
ExpirySeconds: int;
|
|
257
|
+
AccessRole: FileAccessRole;
|
|
258
|
+
AccessType: SecAccessType;
|
|
259
|
+
ReturnJsonTypeInfo: boolean;
|
|
260
|
+
ReturnBinTypeInfo: boolean;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
export interface DFUFileAccessRequest {
|
|
264
|
+
RequestBase?: {
|
|
265
|
+
Name?: string;
|
|
266
|
+
Cluster?: string;
|
|
267
|
+
JobId?: string;
|
|
268
|
+
ExpirySeconds?: int;
|
|
269
|
+
AccessRole?: FileAccessRole;
|
|
270
|
+
AccessType?: SecAccessType;
|
|
271
|
+
ReturnJsonTypeInfo?: boolean;
|
|
272
|
+
ReturnBinTypeInfo?: boolean;
|
|
273
|
+
};
|
|
274
|
+
}
|
|
284
275
|
|
|
285
|
-
export interface
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
}
|
|
276
|
+
export interface DFUPartLocation {
|
|
277
|
+
LocationIndex: int;
|
|
278
|
+
Host: string;
|
|
279
|
+
}
|
|
290
280
|
|
|
291
|
-
export interface
|
|
292
|
-
|
|
293
|
-
}
|
|
281
|
+
export interface FileLocations {
|
|
282
|
+
DFUPartLocation: DFUPartLocation[];
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
export interface DFUFileCopy {
|
|
286
|
+
CopyIndex: int;
|
|
287
|
+
LocationIndex: int;
|
|
288
|
+
Path: string;
|
|
289
|
+
}
|
|
294
290
|
|
|
295
|
-
export interface
|
|
296
|
-
PartIndex: int;
|
|
297
|
-
Copies: {
|
|
291
|
+
export interface Copies {
|
|
298
292
|
DFUFileCopy: DFUFileCopy[];
|
|
299
|
-
}
|
|
300
|
-
TopLevelKey: boolean;
|
|
301
|
-
}
|
|
293
|
+
}
|
|
302
294
|
|
|
303
|
-
export interface
|
|
304
|
-
|
|
305
|
-
|
|
295
|
+
export interface DFUFilePart {
|
|
296
|
+
PartIndex: int;
|
|
297
|
+
Copies: {
|
|
298
|
+
DFUFileCopy: DFUFileCopy[];
|
|
299
|
+
};
|
|
300
|
+
TopLevelKey: boolean;
|
|
301
|
+
}
|
|
306
302
|
|
|
307
|
-
export interface
|
|
308
|
-
MetaInfoBlob: string;
|
|
309
|
-
ExpiryTime: string;
|
|
310
|
-
NumParts: int;
|
|
311
|
-
FileLocations: {
|
|
312
|
-
DFUPartLocation: DFUPartLocation[];
|
|
313
|
-
};
|
|
314
|
-
FileParts: {
|
|
303
|
+
export interface FileParts {
|
|
315
304
|
DFUFilePart: DFUFilePart[];
|
|
316
|
-
}
|
|
317
|
-
RecordTypeInfoJson: string;
|
|
318
|
-
fileAccessPort: int;
|
|
319
|
-
fileAccessSSL: boolean;
|
|
320
|
-
}
|
|
305
|
+
}
|
|
321
306
|
|
|
322
|
-
export interface
|
|
323
|
-
Exceptions: Exceptions;
|
|
324
|
-
AccessInfo: {
|
|
307
|
+
export interface AccessInfo {
|
|
325
308
|
MetaInfoBlob: string;
|
|
326
309
|
ExpiryTime: string;
|
|
327
310
|
NumParts: int;
|
|
@@ -334,619 +317,556 @@ export interface DFUFileAccessResponse {
|
|
|
334
317
|
RecordTypeInfoJson: string;
|
|
335
318
|
fileAccessPort: int;
|
|
336
319
|
fileAccessSSL: boolean;
|
|
337
|
-
}
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
PartLocations?: {
|
|
358
|
-
Item?: string[];
|
|
359
|
-
};
|
|
360
|
-
RequestBase?: RequestBase;
|
|
361
|
-
}
|
|
362
|
-
|
|
363
|
-
export interface DFUFileCreateResponse {
|
|
364
|
-
Exceptions: Exceptions;
|
|
365
|
-
FileId: string;
|
|
366
|
-
Warning: string;
|
|
367
|
-
AccessInfo: AccessInfo;
|
|
368
|
-
}
|
|
369
|
-
|
|
370
|
-
export interface DFUFileCreateV2Request {
|
|
371
|
-
Name?: string;
|
|
372
|
-
Cluster?: string;
|
|
373
|
-
Type?: DFUFileType;
|
|
374
|
-
ECLRecordDefinition?: string;
|
|
375
|
-
RequestId?: string;
|
|
376
|
-
ExpirySeconds?: int;
|
|
377
|
-
ReturnTextResponse?: boolean;
|
|
378
|
-
Compressed?: boolean;
|
|
379
|
-
SessionId?: long;
|
|
380
|
-
LockTimeoutMs?: int;
|
|
381
|
-
}
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
export interface DFUFileAccessResponse {
|
|
323
|
+
Exceptions: Exceptions;
|
|
324
|
+
AccessInfo: {
|
|
325
|
+
MetaInfoBlob: string;
|
|
326
|
+
ExpiryTime: string;
|
|
327
|
+
NumParts: int;
|
|
328
|
+
FileLocations: {
|
|
329
|
+
DFUPartLocation: DFUPartLocation[];
|
|
330
|
+
};
|
|
331
|
+
FileParts: {
|
|
332
|
+
DFUFilePart: DFUFilePart[];
|
|
333
|
+
};
|
|
334
|
+
RecordTypeInfoJson: string;
|
|
335
|
+
fileAccessPort: int;
|
|
336
|
+
fileAccessSSL: boolean;
|
|
337
|
+
};
|
|
338
|
+
Type: DFUFileType;
|
|
339
|
+
}
|
|
382
340
|
|
|
383
|
-
export interface
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
}
|
|
341
|
+
export interface DFUFileAccessV2Request {
|
|
342
|
+
Name?: string;
|
|
343
|
+
Cluster?: string;
|
|
344
|
+
RequestId?: string;
|
|
345
|
+
ExpirySeconds?: int;
|
|
346
|
+
ReturnTextResponse?: boolean;
|
|
347
|
+
SessionId?: long;
|
|
348
|
+
LockTimeoutMs?: int;
|
|
349
|
+
}
|
|
393
350
|
|
|
394
|
-
export interface
|
|
395
|
-
|
|
396
|
-
}
|
|
351
|
+
export interface PartLocations {
|
|
352
|
+
Item: string[];
|
|
353
|
+
}
|
|
397
354
|
|
|
398
|
-
export interface
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
355
|
+
export interface DFUFileCreateRequest {
|
|
356
|
+
ECLRecordDefinition?: string;
|
|
357
|
+
PartLocations?: {
|
|
358
|
+
Item?: string[];
|
|
359
|
+
};
|
|
360
|
+
RequestBase?: RequestBase;
|
|
361
|
+
}
|
|
402
362
|
|
|
403
|
-
export interface
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
Name: string;
|
|
410
|
-
Owner: string;
|
|
411
|
-
Totalsize: string;
|
|
412
|
-
RecordCount: string;
|
|
413
|
-
Modified: string;
|
|
414
|
-
LongSize: string;
|
|
415
|
-
LongRecordCount: string;
|
|
416
|
-
isSuperfile: boolean;
|
|
417
|
-
isDirectory: boolean;
|
|
418
|
-
Replicate: boolean;
|
|
419
|
-
IntSize: long;
|
|
420
|
-
IntRecordCount: long;
|
|
421
|
-
FromRoxieCluster: boolean;
|
|
422
|
-
BrowseData: boolean;
|
|
423
|
-
IsCompressed: boolean;
|
|
424
|
-
ContentType: string;
|
|
425
|
-
CompressedFileSize: long;
|
|
426
|
-
SuperOwners: string;
|
|
427
|
-
Persistent: boolean;
|
|
428
|
-
IsProtected: boolean;
|
|
429
|
-
KeyType: string;
|
|
430
|
-
NumOfSubfiles: int;
|
|
431
|
-
Accessed: string;
|
|
432
|
-
AtRestCost: double;
|
|
433
|
-
AccessCost: double;
|
|
434
|
-
MinSkew: long;
|
|
435
|
-
MaxSkew: long;
|
|
436
|
-
MinSkewPart: long;
|
|
437
|
-
MaxSkewPart: long;
|
|
438
|
-
}
|
|
363
|
+
export interface DFUFileCreateResponse {
|
|
364
|
+
Exceptions: Exceptions;
|
|
365
|
+
FileId: string;
|
|
366
|
+
Warning: string;
|
|
367
|
+
AccessInfo: AccessInfo;
|
|
368
|
+
}
|
|
439
369
|
|
|
440
|
-
export interface
|
|
441
|
-
|
|
442
|
-
|
|
370
|
+
export interface DFUFileCreateV2Request {
|
|
371
|
+
Name?: string;
|
|
372
|
+
Cluster?: string;
|
|
373
|
+
Type?: DFUFileType;
|
|
374
|
+
ECLRecordDefinition?: string;
|
|
375
|
+
RequestId?: string;
|
|
376
|
+
ExpirySeconds?: int;
|
|
377
|
+
ReturnTextResponse?: boolean;
|
|
378
|
+
Compressed?: boolean;
|
|
379
|
+
SessionId?: long;
|
|
380
|
+
LockTimeoutMs?: int;
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
export interface DFUFilePublishRequest {
|
|
384
|
+
FileId?: string;
|
|
385
|
+
Overwrite?: boolean;
|
|
386
|
+
FileDescriptorBlob?: base64Binary;
|
|
387
|
+
SessionId?: long;
|
|
388
|
+
LockTimeoutMs?: int;
|
|
389
|
+
ECLRecordDefinition?: string;
|
|
390
|
+
RecordCount?: long;
|
|
391
|
+
FileSize?: long;
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
export interface DFUFilePublishResponse {
|
|
395
|
+
Exceptions: Exceptions;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
export interface DFUFileViewRequest {
|
|
399
|
+
Scope?: string;
|
|
400
|
+
IncludeSuperOwner?: boolean;
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
export interface DFULogicalFile {
|
|
404
|
+
Prefix: string;
|
|
405
|
+
NodeGroup: string;
|
|
406
|
+
Directory: string;
|
|
407
|
+
Description: string;
|
|
408
|
+
Parts: string;
|
|
409
|
+
Name: string;
|
|
410
|
+
Owner: string;
|
|
411
|
+
Totalsize: string;
|
|
412
|
+
RecordCount: string;
|
|
413
|
+
Modified: string;
|
|
414
|
+
LongSize: string;
|
|
415
|
+
LongRecordCount: string;
|
|
416
|
+
isSuperfile: boolean;
|
|
417
|
+
isDirectory: boolean;
|
|
418
|
+
Replicate: boolean;
|
|
419
|
+
IntSize: long;
|
|
420
|
+
IntRecordCount: long;
|
|
421
|
+
FromRoxieCluster: boolean;
|
|
422
|
+
BrowseData: boolean;
|
|
423
|
+
IsCompressed: boolean;
|
|
424
|
+
ContentType: string;
|
|
425
|
+
CompressedFileSize: long;
|
|
426
|
+
SuperOwners: string;
|
|
427
|
+
Persistent: boolean;
|
|
428
|
+
IsProtected: boolean;
|
|
429
|
+
KeyType: string;
|
|
430
|
+
NumOfSubfiles: int;
|
|
431
|
+
Accessed: string;
|
|
432
|
+
AtRestCost: double;
|
|
433
|
+
AccessCost: double;
|
|
434
|
+
MinSkew: long;
|
|
435
|
+
MaxSkew: long;
|
|
436
|
+
MinSkewPart: long;
|
|
437
|
+
MaxSkewPart: long;
|
|
438
|
+
}
|
|
443
439
|
|
|
444
|
-
export interface
|
|
445
|
-
Exceptions: Exceptions;
|
|
446
|
-
Scope: string;
|
|
447
|
-
NumFiles: int;
|
|
448
|
-
DFULogicalFiles: {
|
|
440
|
+
export interface DFULogicalFiles {
|
|
449
441
|
DFULogicalFile: DFULogicalFile[];
|
|
450
|
-
}
|
|
451
|
-
}
|
|
452
|
-
|
|
453
|
-
export interface DFUGetDataColumnsRequest {
|
|
454
|
-
OpenLogicalName?: string;
|
|
455
|
-
LogicalName?: string;
|
|
456
|
-
FilterBy?: string;
|
|
457
|
-
ShowColumns?: string;
|
|
458
|
-
ChooseFile?: int;
|
|
459
|
-
Cluster?: string;
|
|
460
|
-
ClusterType?: string;
|
|
461
|
-
StartIndex?: long;
|
|
462
|
-
EndIndex?: long;
|
|
463
|
-
}
|
|
464
|
-
|
|
465
|
-
export interface DFUDataKeyedColumns1 {
|
|
466
|
-
DFUDataColumn: DFUDataColumn[];
|
|
467
|
-
}
|
|
468
|
-
|
|
469
|
-
export interface DFUDataKeyedColumns2 {
|
|
470
|
-
DFUDataColumn: DFUDataColumn[];
|
|
471
|
-
}
|
|
472
|
-
|
|
473
|
-
export interface DFUDataKeyedColumns3 {
|
|
474
|
-
DFUDataColumn: DFUDataColumn[];
|
|
475
|
-
}
|
|
476
|
-
|
|
477
|
-
export interface DFUDataKeyedColumns4 {
|
|
478
|
-
DFUDataColumn: DFUDataColumn[];
|
|
479
|
-
}
|
|
480
|
-
|
|
481
|
-
export interface DFUDataKeyedColumns5 {
|
|
482
|
-
DFUDataColumn: DFUDataColumn[];
|
|
483
|
-
}
|
|
484
|
-
|
|
485
|
-
export interface DFUDataKeyedColumns6 {
|
|
486
|
-
DFUDataColumn: DFUDataColumn[];
|
|
487
|
-
}
|
|
488
|
-
|
|
489
|
-
export interface DFUDataKeyedColumns7 {
|
|
490
|
-
DFUDataColumn: DFUDataColumn[];
|
|
491
|
-
}
|
|
492
|
-
|
|
493
|
-
export interface DFUDataKeyedColumns8 {
|
|
494
|
-
DFUDataColumn: DFUDataColumn[];
|
|
495
|
-
}
|
|
496
|
-
|
|
497
|
-
export interface DFUDataKeyedColumns9 {
|
|
498
|
-
DFUDataColumn: DFUDataColumn[];
|
|
499
|
-
}
|
|
500
|
-
|
|
501
|
-
export interface DFUDataKeyedColumns10 {
|
|
502
|
-
DFUDataColumn: DFUDataColumn[];
|
|
503
|
-
}
|
|
504
|
-
|
|
505
|
-
export interface DFUDataKeyedColumns11 {
|
|
506
|
-
DFUDataColumn: DFUDataColumn[];
|
|
507
|
-
}
|
|
508
|
-
|
|
509
|
-
export interface DFUDataKeyedColumns12 {
|
|
510
|
-
DFUDataColumn: DFUDataColumn[];
|
|
511
|
-
}
|
|
512
|
-
|
|
513
|
-
export interface DFUDataKeyedColumns13 {
|
|
514
|
-
DFUDataColumn: DFUDataColumn[];
|
|
515
|
-
}
|
|
516
|
-
|
|
517
|
-
export interface DFUDataKeyedColumns14 {
|
|
518
|
-
DFUDataColumn: DFUDataColumn[];
|
|
519
|
-
}
|
|
520
|
-
|
|
521
|
-
export interface DFUDataKeyedColumns15 {
|
|
522
|
-
DFUDataColumn: DFUDataColumn[];
|
|
523
|
-
}
|
|
524
|
-
|
|
525
|
-
export interface DFUDataKeyedColumns16 {
|
|
526
|
-
DFUDataColumn: DFUDataColumn[];
|
|
527
|
-
}
|
|
528
|
-
|
|
529
|
-
export interface DFUDataKeyedColumns17 {
|
|
530
|
-
DFUDataColumn: DFUDataColumn[];
|
|
531
|
-
}
|
|
532
|
-
|
|
533
|
-
export interface DFUDataKeyedColumns18 {
|
|
534
|
-
DFUDataColumn: DFUDataColumn[];
|
|
535
|
-
}
|
|
536
|
-
|
|
537
|
-
export interface DFUDataKeyedColumns19 {
|
|
538
|
-
DFUDataColumn: DFUDataColumn[];
|
|
539
|
-
}
|
|
540
|
-
|
|
541
|
-
export interface DFUDataKeyedColumns20 {
|
|
542
|
-
DFUDataColumn: DFUDataColumn[];
|
|
543
|
-
}
|
|
544
|
-
|
|
545
|
-
export interface DFUDataNonKeyedColumns1 {
|
|
546
|
-
DFUDataColumn: DFUDataColumn[];
|
|
547
|
-
}
|
|
548
|
-
|
|
549
|
-
export interface DFUDataNonKeyedColumns2 {
|
|
550
|
-
DFUDataColumn: DFUDataColumn[];
|
|
551
|
-
}
|
|
552
|
-
|
|
553
|
-
export interface DFUDataNonKeyedColumns3 {
|
|
554
|
-
DFUDataColumn: DFUDataColumn[];
|
|
555
|
-
}
|
|
556
|
-
|
|
557
|
-
export interface DFUDataNonKeyedColumns4 {
|
|
558
|
-
DFUDataColumn: DFUDataColumn[];
|
|
559
|
-
}
|
|
442
|
+
}
|
|
560
443
|
|
|
561
|
-
export interface
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
}
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
export interface DFUDataNonKeyedColumns10 {
|
|
582
|
-
DFUDataColumn: DFUDataColumn[];
|
|
583
|
-
}
|
|
584
|
-
|
|
585
|
-
export interface DFUDataNonKeyedColumns11 {
|
|
586
|
-
DFUDataColumn: DFUDataColumn[];
|
|
587
|
-
}
|
|
588
|
-
|
|
589
|
-
export interface DFUDataNonKeyedColumns12 {
|
|
590
|
-
DFUDataColumn: DFUDataColumn[];
|
|
591
|
-
}
|
|
592
|
-
|
|
593
|
-
export interface DFUDataNonKeyedColumns13 {
|
|
594
|
-
DFUDataColumn: DFUDataColumn[];
|
|
595
|
-
}
|
|
596
|
-
|
|
597
|
-
export interface DFUDataNonKeyedColumns14 {
|
|
598
|
-
DFUDataColumn: DFUDataColumn[];
|
|
599
|
-
}
|
|
600
|
-
|
|
601
|
-
export interface DFUDataNonKeyedColumns15 {
|
|
602
|
-
DFUDataColumn: DFUDataColumn[];
|
|
603
|
-
}
|
|
604
|
-
|
|
605
|
-
export interface DFUDataNonKeyedColumns16 {
|
|
606
|
-
DFUDataColumn: DFUDataColumn[];
|
|
607
|
-
}
|
|
608
|
-
|
|
609
|
-
export interface DFUDataNonKeyedColumns17 {
|
|
610
|
-
DFUDataColumn: DFUDataColumn[];
|
|
611
|
-
}
|
|
612
|
-
|
|
613
|
-
export interface DFUDataNonKeyedColumns18 {
|
|
614
|
-
DFUDataColumn: DFUDataColumn[];
|
|
615
|
-
}
|
|
616
|
-
|
|
617
|
-
export interface DFUDataNonKeyedColumns19 {
|
|
618
|
-
DFUDataColumn: DFUDataColumn[];
|
|
619
|
-
}
|
|
620
|
-
|
|
621
|
-
export interface DFUDataNonKeyedColumns20 {
|
|
622
|
-
DFUDataColumn: DFUDataColumn[];
|
|
623
|
-
}
|
|
444
|
+
export interface DFUFileViewResponse {
|
|
445
|
+
Exceptions: Exceptions;
|
|
446
|
+
Scope: string;
|
|
447
|
+
NumFiles: int;
|
|
448
|
+
DFULogicalFiles: {
|
|
449
|
+
DFULogicalFile: DFULogicalFile[];
|
|
450
|
+
};
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
export interface DFUGetDataColumnsRequest {
|
|
454
|
+
OpenLogicalName?: string;
|
|
455
|
+
LogicalName?: string;
|
|
456
|
+
FilterBy?: string;
|
|
457
|
+
ShowColumns?: string;
|
|
458
|
+
ChooseFile?: int;
|
|
459
|
+
Cluster?: string;
|
|
460
|
+
ClusterType?: string;
|
|
461
|
+
StartIndex?: long;
|
|
462
|
+
EndIndex?: long;
|
|
463
|
+
}
|
|
624
464
|
|
|
625
|
-
export interface
|
|
626
|
-
Exceptions: Exceptions;
|
|
627
|
-
LogicalName: string;
|
|
628
|
-
StartIndex: long;
|
|
629
|
-
EndIndex: long;
|
|
630
|
-
DFUDataKeyedColumns1: {
|
|
631
|
-
DFUDataColumn: DFUDataColumn[];
|
|
632
|
-
};
|
|
633
|
-
DFUDataKeyedColumns2: {
|
|
634
|
-
DFUDataColumn: DFUDataColumn[];
|
|
635
|
-
};
|
|
636
|
-
DFUDataKeyedColumns3: {
|
|
637
|
-
DFUDataColumn: DFUDataColumn[];
|
|
638
|
-
};
|
|
639
|
-
DFUDataKeyedColumns4: {
|
|
640
|
-
DFUDataColumn: DFUDataColumn[];
|
|
641
|
-
};
|
|
642
|
-
DFUDataKeyedColumns5: {
|
|
643
|
-
DFUDataColumn: DFUDataColumn[];
|
|
644
|
-
};
|
|
645
|
-
DFUDataKeyedColumns6: {
|
|
646
|
-
DFUDataColumn: DFUDataColumn[];
|
|
647
|
-
};
|
|
648
|
-
DFUDataKeyedColumns7: {
|
|
649
|
-
DFUDataColumn: DFUDataColumn[];
|
|
650
|
-
};
|
|
651
|
-
DFUDataKeyedColumns8: {
|
|
465
|
+
export interface DFUDataKeyedColumns1 {
|
|
652
466
|
DFUDataColumn: DFUDataColumn[];
|
|
653
|
-
}
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
};
|
|
657
|
-
DFUDataKeyedColumns10: {
|
|
658
|
-
DFUDataColumn: DFUDataColumn[];
|
|
659
|
-
};
|
|
660
|
-
DFUDataKeyedColumns11: {
|
|
661
|
-
DFUDataColumn: DFUDataColumn[];
|
|
662
|
-
};
|
|
663
|
-
DFUDataKeyedColumns12: {
|
|
664
|
-
DFUDataColumn: DFUDataColumn[];
|
|
665
|
-
};
|
|
666
|
-
DFUDataKeyedColumns13: {
|
|
667
|
-
DFUDataColumn: DFUDataColumn[];
|
|
668
|
-
};
|
|
669
|
-
DFUDataKeyedColumns14: {
|
|
670
|
-
DFUDataColumn: DFUDataColumn[];
|
|
671
|
-
};
|
|
672
|
-
DFUDataKeyedColumns15: {
|
|
673
|
-
DFUDataColumn: DFUDataColumn[];
|
|
674
|
-
};
|
|
675
|
-
DFUDataKeyedColumns16: {
|
|
676
|
-
DFUDataColumn: DFUDataColumn[];
|
|
677
|
-
};
|
|
678
|
-
DFUDataKeyedColumns17: {
|
|
679
|
-
DFUDataColumn: DFUDataColumn[];
|
|
680
|
-
};
|
|
681
|
-
DFUDataKeyedColumns18: {
|
|
682
|
-
DFUDataColumn: DFUDataColumn[];
|
|
683
|
-
};
|
|
684
|
-
DFUDataKeyedColumns19: {
|
|
685
|
-
DFUDataColumn: DFUDataColumn[];
|
|
686
|
-
};
|
|
687
|
-
DFUDataKeyedColumns20: {
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
export interface DFUDataKeyedColumns2 {
|
|
688
470
|
DFUDataColumn: DFUDataColumn[];
|
|
689
|
-
}
|
|
690
|
-
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
export interface DFUDataKeyedColumns3 {
|
|
691
474
|
DFUDataColumn: DFUDataColumn[];
|
|
692
|
-
}
|
|
693
|
-
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
export interface DFUDataKeyedColumns4 {
|
|
694
478
|
DFUDataColumn: DFUDataColumn[];
|
|
695
|
-
}
|
|
696
|
-
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
export interface DFUDataKeyedColumns5 {
|
|
697
482
|
DFUDataColumn: DFUDataColumn[];
|
|
698
|
-
}
|
|
699
|
-
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
export interface DFUDataKeyedColumns6 {
|
|
700
486
|
DFUDataColumn: DFUDataColumn[];
|
|
701
|
-
}
|
|
702
|
-
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
export interface DFUDataKeyedColumns7 {
|
|
703
490
|
DFUDataColumn: DFUDataColumn[];
|
|
704
|
-
}
|
|
705
|
-
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
export interface DFUDataKeyedColumns8 {
|
|
706
494
|
DFUDataColumn: DFUDataColumn[];
|
|
707
|
-
}
|
|
708
|
-
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
export interface DFUDataKeyedColumns9 {
|
|
709
498
|
DFUDataColumn: DFUDataColumn[];
|
|
710
|
-
}
|
|
711
|
-
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
export interface DFUDataKeyedColumns10 {
|
|
712
502
|
DFUDataColumn: DFUDataColumn[];
|
|
713
|
-
}
|
|
714
|
-
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
export interface DFUDataKeyedColumns11 {
|
|
715
506
|
DFUDataColumn: DFUDataColumn[];
|
|
716
|
-
}
|
|
717
|
-
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
export interface DFUDataKeyedColumns12 {
|
|
718
510
|
DFUDataColumn: DFUDataColumn[];
|
|
719
|
-
}
|
|
720
|
-
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
export interface DFUDataKeyedColumns13 {
|
|
721
514
|
DFUDataColumn: DFUDataColumn[];
|
|
722
|
-
}
|
|
723
|
-
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
export interface DFUDataKeyedColumns14 {
|
|
724
518
|
DFUDataColumn: DFUDataColumn[];
|
|
725
|
-
}
|
|
726
|
-
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
export interface DFUDataKeyedColumns15 {
|
|
727
522
|
DFUDataColumn: DFUDataColumn[];
|
|
728
|
-
}
|
|
729
|
-
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
export interface DFUDataKeyedColumns16 {
|
|
730
526
|
DFUDataColumn: DFUDataColumn[];
|
|
731
|
-
}
|
|
732
|
-
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
export interface DFUDataKeyedColumns17 {
|
|
733
530
|
DFUDataColumn: DFUDataColumn[];
|
|
734
|
-
}
|
|
735
|
-
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
export interface DFUDataKeyedColumns18 {
|
|
736
534
|
DFUDataColumn: DFUDataColumn[];
|
|
737
|
-
}
|
|
738
|
-
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
export interface DFUDataKeyedColumns19 {
|
|
739
538
|
DFUDataColumn: DFUDataColumn[];
|
|
740
|
-
}
|
|
741
|
-
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
export interface DFUDataKeyedColumns20 {
|
|
742
542
|
DFUDataColumn: DFUDataColumn[];
|
|
743
|
-
}
|
|
744
|
-
|
|
543
|
+
}
|
|
544
|
+
|
|
545
|
+
export interface DFUDataNonKeyedColumns1 {
|
|
745
546
|
DFUDataColumn: DFUDataColumn[];
|
|
746
|
-
}
|
|
747
|
-
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
export interface DFUDataNonKeyedColumns2 {
|
|
748
550
|
DFUDataColumn: DFUDataColumn[];
|
|
749
|
-
}
|
|
750
|
-
RowCount: long;
|
|
751
|
-
ShowColumns: string;
|
|
752
|
-
ChooseFile: int;
|
|
753
|
-
Cluster: string;
|
|
754
|
-
ClusterType: string;
|
|
755
|
-
}
|
|
551
|
+
}
|
|
756
552
|
|
|
757
|
-
export interface
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
IncludeXmlSchema?: boolean;
|
|
761
|
-
AddHeaderInXmlSchema?: boolean;
|
|
762
|
-
IncludeXmlXPathSchema?: boolean;
|
|
763
|
-
AddHeaderInXmlXPathSchema?: boolean;
|
|
764
|
-
}
|
|
553
|
+
export interface DFUDataNonKeyedColumns3 {
|
|
554
|
+
DFUDataColumn: DFUDataColumn[];
|
|
555
|
+
}
|
|
765
556
|
|
|
766
|
-
export interface
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
KeyedColumnCount: int;
|
|
770
|
-
DataColumns: DataColumns;
|
|
771
|
-
XmlSchema: string;
|
|
772
|
-
XmlXPathSchema: string;
|
|
773
|
-
TotalResultRows: long;
|
|
774
|
-
}
|
|
557
|
+
export interface DFUDataNonKeyedColumns4 {
|
|
558
|
+
DFUDataColumn: DFUDataColumn[];
|
|
559
|
+
}
|
|
775
560
|
|
|
776
|
-
export interface
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
UpdateDescription?: boolean;
|
|
780
|
-
QuerySet?: string;
|
|
781
|
-
Query?: string;
|
|
782
|
-
FileDesc?: string;
|
|
783
|
-
IncludeJsonTypeInfo?: boolean;
|
|
784
|
-
IncludeBinTypeInfo?: boolean;
|
|
785
|
-
Protect?: DFUChangeProtection;
|
|
786
|
-
Restrict?: DFUChangeRestriction;
|
|
787
|
-
}
|
|
561
|
+
export interface DFUDataNonKeyedColumns5 {
|
|
562
|
+
DFUDataColumn: DFUDataColumn[];
|
|
563
|
+
}
|
|
788
564
|
|
|
789
|
-
export interface
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
MinSkewInt64: long;
|
|
793
|
-
MaxSkewInt64: long;
|
|
794
|
-
MinSkewPart: long;
|
|
795
|
-
MaxSkewPart: long;
|
|
796
|
-
}
|
|
565
|
+
export interface DFUDataNonKeyedColumns6 {
|
|
566
|
+
DFUDataColumn: DFUDataColumn[];
|
|
567
|
+
}
|
|
797
568
|
|
|
798
|
-
export interface
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
Ip: string;
|
|
802
|
-
Partsize: string;
|
|
803
|
-
PartSizeInt64: long;
|
|
804
|
-
CompressedSize: long;
|
|
805
|
-
}
|
|
569
|
+
export interface DFUDataNonKeyedColumns7 {
|
|
570
|
+
DFUDataColumn: DFUDataColumn[];
|
|
571
|
+
}
|
|
806
572
|
|
|
807
|
-
export interface
|
|
808
|
-
|
|
809
|
-
}
|
|
573
|
+
export interface DFUDataNonKeyedColumns8 {
|
|
574
|
+
DFUDataColumn: DFUDataColumn[];
|
|
575
|
+
}
|
|
810
576
|
|
|
811
|
-
export interface
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
ReplicateDir: string;
|
|
815
|
-
Replicate: boolean;
|
|
816
|
-
CanReplicate: boolean;
|
|
817
|
-
DFUFileParts: {
|
|
818
|
-
DFUPart: DFUPart[];
|
|
819
|
-
};
|
|
820
|
-
}
|
|
577
|
+
export interface DFUDataNonKeyedColumns9 {
|
|
578
|
+
DFUDataColumn: DFUDataColumn[];
|
|
579
|
+
}
|
|
821
580
|
|
|
822
|
-
export interface
|
|
823
|
-
|
|
824
|
-
}
|
|
581
|
+
export interface DFUDataNonKeyedColumns10 {
|
|
582
|
+
DFUDataColumn: DFUDataColumn[];
|
|
583
|
+
}
|
|
825
584
|
|
|
826
|
-
export interface
|
|
827
|
-
|
|
828
|
-
}
|
|
585
|
+
export interface DFUDataNonKeyedColumns11 {
|
|
586
|
+
DFUDataColumn: DFUDataColumn[];
|
|
587
|
+
}
|
|
829
588
|
|
|
830
|
-
export interface
|
|
831
|
-
|
|
832
|
-
}
|
|
589
|
+
export interface DFUDataNonKeyedColumns12 {
|
|
590
|
+
DFUDataColumn: DFUDataColumn[];
|
|
591
|
+
}
|
|
833
592
|
|
|
834
|
-
export interface
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
}
|
|
593
|
+
export interface DFUDataNonKeyedColumns13 {
|
|
594
|
+
DFUDataColumn: DFUDataColumn[];
|
|
595
|
+
}
|
|
838
596
|
|
|
839
|
-
export interface
|
|
840
|
-
|
|
841
|
-
}
|
|
597
|
+
export interface DFUDataNonKeyedColumns14 {
|
|
598
|
+
DFUDataColumn: DFUDataColumn[];
|
|
599
|
+
}
|
|
842
600
|
|
|
843
|
-
export interface
|
|
844
|
-
|
|
845
|
-
}
|
|
601
|
+
export interface DFUDataNonKeyedColumns15 {
|
|
602
|
+
DFUDataColumn: DFUDataColumn[];
|
|
603
|
+
}
|
|
846
604
|
|
|
847
|
-
export interface
|
|
848
|
-
|
|
849
|
-
}
|
|
605
|
+
export interface DFUDataNonKeyedColumns16 {
|
|
606
|
+
DFUDataColumn: DFUDataColumn[];
|
|
607
|
+
}
|
|
850
608
|
|
|
851
|
-
export interface
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
Item: string[];
|
|
855
|
-
};
|
|
856
|
-
}
|
|
609
|
+
export interface DFUDataNonKeyedColumns17 {
|
|
610
|
+
DFUDataColumn: DFUDataColumn[];
|
|
611
|
+
}
|
|
857
612
|
|
|
858
|
-
export interface
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
Limit: long;
|
|
862
|
-
Probability: string;
|
|
863
|
-
}
|
|
613
|
+
export interface DFUDataNonKeyedColumns18 {
|
|
614
|
+
DFUDataColumn: DFUDataColumn[];
|
|
615
|
+
}
|
|
864
616
|
|
|
865
|
-
export interface
|
|
866
|
-
|
|
867
|
-
}
|
|
617
|
+
export interface DFUDataNonKeyedColumns19 {
|
|
618
|
+
DFUDataColumn: DFUDataColumn[];
|
|
619
|
+
}
|
|
868
620
|
|
|
869
|
-
export interface
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
621
|
+
export interface DFUDataNonKeyedColumns20 {
|
|
622
|
+
DFUDataColumn: DFUDataColumn[];
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
export interface DFUGetDataColumnsResponse {
|
|
626
|
+
Exceptions: Exceptions;
|
|
627
|
+
LogicalName: string;
|
|
628
|
+
StartIndex: long;
|
|
629
|
+
EndIndex: long;
|
|
630
|
+
DFUDataKeyedColumns1: {
|
|
631
|
+
DFUDataColumn: DFUDataColumn[];
|
|
632
|
+
};
|
|
633
|
+
DFUDataKeyedColumns2: {
|
|
634
|
+
DFUDataColumn: DFUDataColumn[];
|
|
635
|
+
};
|
|
636
|
+
DFUDataKeyedColumns3: {
|
|
637
|
+
DFUDataColumn: DFUDataColumn[];
|
|
638
|
+
};
|
|
639
|
+
DFUDataKeyedColumns4: {
|
|
640
|
+
DFUDataColumn: DFUDataColumn[];
|
|
641
|
+
};
|
|
642
|
+
DFUDataKeyedColumns5: {
|
|
643
|
+
DFUDataColumn: DFUDataColumn[];
|
|
644
|
+
};
|
|
645
|
+
DFUDataKeyedColumns6: {
|
|
646
|
+
DFUDataColumn: DFUDataColumn[];
|
|
647
|
+
};
|
|
648
|
+
DFUDataKeyedColumns7: {
|
|
649
|
+
DFUDataColumn: DFUDataColumn[];
|
|
650
|
+
};
|
|
651
|
+
DFUDataKeyedColumns8: {
|
|
652
|
+
DFUDataColumn: DFUDataColumn[];
|
|
653
|
+
};
|
|
654
|
+
DFUDataKeyedColumns9: {
|
|
655
|
+
DFUDataColumn: DFUDataColumn[];
|
|
656
|
+
};
|
|
657
|
+
DFUDataKeyedColumns10: {
|
|
658
|
+
DFUDataColumn: DFUDataColumn[];
|
|
659
|
+
};
|
|
660
|
+
DFUDataKeyedColumns11: {
|
|
661
|
+
DFUDataColumn: DFUDataColumn[];
|
|
662
|
+
};
|
|
663
|
+
DFUDataKeyedColumns12: {
|
|
664
|
+
DFUDataColumn: DFUDataColumn[];
|
|
665
|
+
};
|
|
666
|
+
DFUDataKeyedColumns13: {
|
|
667
|
+
DFUDataColumn: DFUDataColumn[];
|
|
668
|
+
};
|
|
669
|
+
DFUDataKeyedColumns14: {
|
|
670
|
+
DFUDataColumn: DFUDataColumn[];
|
|
671
|
+
};
|
|
672
|
+
DFUDataKeyedColumns15: {
|
|
673
|
+
DFUDataColumn: DFUDataColumn[];
|
|
674
|
+
};
|
|
675
|
+
DFUDataKeyedColumns16: {
|
|
676
|
+
DFUDataColumn: DFUDataColumn[];
|
|
677
|
+
};
|
|
678
|
+
DFUDataKeyedColumns17: {
|
|
679
|
+
DFUDataColumn: DFUDataColumn[];
|
|
680
|
+
};
|
|
681
|
+
DFUDataKeyedColumns18: {
|
|
682
|
+
DFUDataColumn: DFUDataColumn[];
|
|
683
|
+
};
|
|
684
|
+
DFUDataKeyedColumns19: {
|
|
685
|
+
DFUDataColumn: DFUDataColumn[];
|
|
686
|
+
};
|
|
687
|
+
DFUDataKeyedColumns20: {
|
|
688
|
+
DFUDataColumn: DFUDataColumn[];
|
|
689
|
+
};
|
|
690
|
+
DFUDataNonKeyedColumns1: {
|
|
691
|
+
DFUDataColumn: DFUDataColumn[];
|
|
692
|
+
};
|
|
693
|
+
DFUDataNonKeyedColumns2: {
|
|
694
|
+
DFUDataColumn: DFUDataColumn[];
|
|
695
|
+
};
|
|
696
|
+
DFUDataNonKeyedColumns3: {
|
|
697
|
+
DFUDataColumn: DFUDataColumn[];
|
|
698
|
+
};
|
|
699
|
+
DFUDataNonKeyedColumns4: {
|
|
700
|
+
DFUDataColumn: DFUDataColumn[];
|
|
701
|
+
};
|
|
702
|
+
DFUDataNonKeyedColumns5: {
|
|
703
|
+
DFUDataColumn: DFUDataColumn[];
|
|
704
|
+
};
|
|
705
|
+
DFUDataNonKeyedColumns6: {
|
|
706
|
+
DFUDataColumn: DFUDataColumn[];
|
|
707
|
+
};
|
|
708
|
+
DFUDataNonKeyedColumns7: {
|
|
709
|
+
DFUDataColumn: DFUDataColumn[];
|
|
710
|
+
};
|
|
711
|
+
DFUDataNonKeyedColumns8: {
|
|
712
|
+
DFUDataColumn: DFUDataColumn[];
|
|
713
|
+
};
|
|
714
|
+
DFUDataNonKeyedColumns9: {
|
|
715
|
+
DFUDataColumn: DFUDataColumn[];
|
|
716
|
+
};
|
|
717
|
+
DFUDataNonKeyedColumns10: {
|
|
718
|
+
DFUDataColumn: DFUDataColumn[];
|
|
719
|
+
};
|
|
720
|
+
DFUDataNonKeyedColumns11: {
|
|
721
|
+
DFUDataColumn: DFUDataColumn[];
|
|
722
|
+
};
|
|
723
|
+
DFUDataNonKeyedColumns12: {
|
|
724
|
+
DFUDataColumn: DFUDataColumn[];
|
|
725
|
+
};
|
|
726
|
+
DFUDataNonKeyedColumns13: {
|
|
727
|
+
DFUDataColumn: DFUDataColumn[];
|
|
728
|
+
};
|
|
729
|
+
DFUDataNonKeyedColumns14: {
|
|
730
|
+
DFUDataColumn: DFUDataColumn[];
|
|
731
|
+
};
|
|
732
|
+
DFUDataNonKeyedColumns15: {
|
|
733
|
+
DFUDataColumn: DFUDataColumn[];
|
|
734
|
+
};
|
|
735
|
+
DFUDataNonKeyedColumns16: {
|
|
736
|
+
DFUDataColumn: DFUDataColumn[];
|
|
737
|
+
};
|
|
738
|
+
DFUDataNonKeyedColumns17: {
|
|
739
|
+
DFUDataColumn: DFUDataColumn[];
|
|
740
|
+
};
|
|
741
|
+
DFUDataNonKeyedColumns18: {
|
|
742
|
+
DFUDataColumn: DFUDataColumn[];
|
|
743
|
+
};
|
|
744
|
+
DFUDataNonKeyedColumns19: {
|
|
745
|
+
DFUDataColumn: DFUDataColumn[];
|
|
746
|
+
};
|
|
747
|
+
DFUDataNonKeyedColumns20: {
|
|
748
|
+
DFUDataColumn: DFUDataColumn[];
|
|
749
|
+
};
|
|
750
|
+
RowCount: long;
|
|
751
|
+
ShowColumns: string;
|
|
752
|
+
ChooseFile: int;
|
|
753
|
+
Cluster: string;
|
|
754
|
+
ClusterType: string;
|
|
755
|
+
}
|
|
756
|
+
|
|
757
|
+
export interface DFUGetFileMetaDataRequest {
|
|
758
|
+
LogicalFileName?: string;
|
|
759
|
+
ClusterName?: string;
|
|
760
|
+
IncludeXmlSchema?: boolean;
|
|
761
|
+
AddHeaderInXmlSchema?: boolean;
|
|
762
|
+
IncludeXmlXPathSchema?: boolean;
|
|
763
|
+
AddHeaderInXmlXPathSchema?: boolean;
|
|
764
|
+
}
|
|
765
|
+
|
|
766
|
+
export interface DFUGetFileMetaDataResponse {
|
|
767
|
+
Exceptions: Exceptions;
|
|
768
|
+
TotalColumnCount: int;
|
|
769
|
+
KeyedColumnCount: int;
|
|
770
|
+
DataColumns: DataColumns;
|
|
771
|
+
XmlSchema: string;
|
|
772
|
+
XmlXPathSchema: string;
|
|
773
|
+
TotalResultRows: long;
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
export interface DFUInfoRequest {
|
|
777
|
+
Name?: string;
|
|
778
|
+
Cluster?: string;
|
|
779
|
+
UpdateDescription?: boolean;
|
|
780
|
+
QuerySet?: string;
|
|
781
|
+
Query?: string;
|
|
782
|
+
FileDesc?: string;
|
|
783
|
+
IncludeJsonTypeInfo?: boolean;
|
|
784
|
+
IncludeBinTypeInfo?: boolean;
|
|
785
|
+
Protect?: DFUChangeProtection;
|
|
786
|
+
Restrict?: DFUChangeRestriction;
|
|
787
|
+
}
|
|
788
|
+
|
|
789
|
+
export interface Stat {
|
|
897
790
|
MinSkew: string;
|
|
898
791
|
MaxSkew: string;
|
|
899
792
|
MinSkewInt64: long;
|
|
900
793
|
MaxSkewInt64: long;
|
|
901
794
|
MinSkewPart: long;
|
|
902
795
|
MaxSkewPart: long;
|
|
903
|
-
}
|
|
904
|
-
|
|
796
|
+
}
|
|
797
|
+
|
|
798
|
+
export interface DFUPart {
|
|
799
|
+
Id: int;
|
|
800
|
+
Copy: int;
|
|
801
|
+
Ip: string;
|
|
802
|
+
Partsize: string;
|
|
803
|
+
PartSizeInt64: long;
|
|
804
|
+
CompressedSize: long;
|
|
805
|
+
}
|
|
806
|
+
|
|
807
|
+
export interface DFUFileParts {
|
|
808
|
+
DFUPart: DFUPart[];
|
|
809
|
+
}
|
|
810
|
+
|
|
811
|
+
export interface DFUFilePartsOnCluster {
|
|
812
|
+
Cluster: string;
|
|
813
|
+
BaseDir: string;
|
|
814
|
+
ReplicateDir: string;
|
|
815
|
+
Replicate: boolean;
|
|
816
|
+
CanReplicate: boolean;
|
|
817
|
+
DFUFileParts: {
|
|
818
|
+
DFUPart: DFUPart[];
|
|
819
|
+
};
|
|
820
|
+
}
|
|
821
|
+
|
|
822
|
+
export interface DFUFilePartsOnClusters {
|
|
905
823
|
DFUFilePartsOnCluster: DFUFilePartsOnCluster[];
|
|
906
|
-
}
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
subfiles: {
|
|
824
|
+
}
|
|
825
|
+
|
|
826
|
+
export interface subfiles {
|
|
910
827
|
Item: string[];
|
|
911
|
-
}
|
|
912
|
-
|
|
828
|
+
}
|
|
829
|
+
|
|
830
|
+
export interface Superfiles {
|
|
913
831
|
DFULogicalFile: DFULogicalFile[];
|
|
914
|
-
}
|
|
915
|
-
|
|
832
|
+
}
|
|
833
|
+
|
|
834
|
+
export interface DFUFileProtect {
|
|
835
|
+
Owner: string;
|
|
836
|
+
Modified: string;
|
|
837
|
+
}
|
|
838
|
+
|
|
839
|
+
export interface ProtectList {
|
|
916
840
|
DFUFileProtect: DFUFileProtect[];
|
|
917
|
-
}
|
|
918
|
-
|
|
919
|
-
Graphs
|
|
841
|
+
}
|
|
842
|
+
|
|
843
|
+
export interface Graphs {
|
|
920
844
|
ECLGraph: string[];
|
|
921
|
-
}
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
BrowseData: boolean;
|
|
929
|
-
jsonInfo: string;
|
|
930
|
-
binInfo: base64Binary;
|
|
931
|
-
PackageID: string;
|
|
932
|
-
Partition: {
|
|
845
|
+
}
|
|
846
|
+
|
|
847
|
+
export interface FieldNames {
|
|
848
|
+
Item: string[];
|
|
849
|
+
}
|
|
850
|
+
|
|
851
|
+
export interface Partition {
|
|
933
852
|
FieldMask: long;
|
|
934
853
|
FieldNames: {
|
|
935
854
|
Item: string[];
|
|
936
855
|
};
|
|
937
|
-
}
|
|
938
|
-
|
|
856
|
+
}
|
|
857
|
+
|
|
858
|
+
export interface DFUFileBloom {
|
|
859
|
+
FieldMask: long;
|
|
860
|
+
FieldNames: FieldNames;
|
|
861
|
+
Limit: long;
|
|
862
|
+
Probability: string;
|
|
863
|
+
}
|
|
864
|
+
|
|
865
|
+
export interface Blooms {
|
|
939
866
|
DFUFileBloom: DFUFileBloom[];
|
|
940
|
-
}
|
|
941
|
-
ExpireDays: int;
|
|
942
|
-
KeyType: string;
|
|
943
|
-
AtRestCost: double;
|
|
944
|
-
AccessCost: double;
|
|
945
|
-
}
|
|
867
|
+
}
|
|
946
868
|
|
|
947
|
-
export interface
|
|
948
|
-
Exceptions: Exceptions;
|
|
949
|
-
FileDetail: {
|
|
869
|
+
export interface FileDetail {
|
|
950
870
|
Name: string;
|
|
951
871
|
Filename: string;
|
|
952
872
|
Prefix: string;
|
|
@@ -1022,442 +942,524 @@ export interface DFUInfoResponse {
|
|
|
1022
942
|
KeyType: string;
|
|
1023
943
|
AtRestCost: double;
|
|
1024
944
|
AccessCost: double;
|
|
1025
|
-
|
|
1026
|
-
}
|
|
1027
|
-
|
|
1028
|
-
export interface
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
945
|
+
ExpirationDate: string;
|
|
946
|
+
}
|
|
947
|
+
|
|
948
|
+
export interface DFUInfoResponse {
|
|
949
|
+
Exceptions: Exceptions;
|
|
950
|
+
FileDetail: {
|
|
951
|
+
Name: string;
|
|
952
|
+
Filename: string;
|
|
953
|
+
Prefix: string;
|
|
954
|
+
NodeGroup: string;
|
|
955
|
+
NumParts: int;
|
|
956
|
+
Description: string;
|
|
957
|
+
Dir: string;
|
|
958
|
+
PathMask: string;
|
|
959
|
+
Filesize: string;
|
|
960
|
+
FileSizeInt64: long;
|
|
961
|
+
RecordSize: string;
|
|
962
|
+
RecordCount: string;
|
|
963
|
+
RecordSizeInt64: long;
|
|
964
|
+
RecordCountInt64: long;
|
|
965
|
+
Wuid: string;
|
|
966
|
+
Owner: string;
|
|
967
|
+
JobName: string;
|
|
968
|
+
Persistent: string;
|
|
969
|
+
Format: string;
|
|
970
|
+
MaxRecordSize: string;
|
|
971
|
+
CsvSeparate: string;
|
|
972
|
+
CsvQuote: string;
|
|
973
|
+
CsvTerminate: string;
|
|
974
|
+
CsvEscape: string;
|
|
975
|
+
Modified: string;
|
|
976
|
+
Ecl: string;
|
|
977
|
+
Stat: {
|
|
978
|
+
MinSkew: string;
|
|
979
|
+
MaxSkew: string;
|
|
980
|
+
MinSkewInt64: long;
|
|
981
|
+
MaxSkewInt64: long;
|
|
982
|
+
MinSkewPart: long;
|
|
983
|
+
MaxSkewPart: long;
|
|
984
|
+
};
|
|
985
|
+
DFUFilePartsOnClusters: {
|
|
986
|
+
DFUFilePartsOnCluster: DFUFilePartsOnCluster[];
|
|
987
|
+
};
|
|
988
|
+
isSuperfile: boolean;
|
|
989
|
+
ShowFileContent: boolean;
|
|
990
|
+
subfiles: {
|
|
991
|
+
Item: string[];
|
|
992
|
+
};
|
|
993
|
+
Superfiles: {
|
|
994
|
+
DFULogicalFile: DFULogicalFile[];
|
|
995
|
+
};
|
|
996
|
+
ProtectList: {
|
|
997
|
+
DFUFileProtect: DFUFileProtect[];
|
|
998
|
+
};
|
|
999
|
+
FromRoxieCluster: boolean;
|
|
1000
|
+
Graphs: {
|
|
1001
|
+
ECLGraph: string[];
|
|
1002
|
+
};
|
|
1003
|
+
UserPermission: string;
|
|
1004
|
+
ContentType: string;
|
|
1005
|
+
CompressedFileSize: long;
|
|
1006
|
+
PercentCompressed: string;
|
|
1007
|
+
IsCompressed: boolean;
|
|
1008
|
+
IsRestricted: boolean;
|
|
1009
|
+
BrowseData: boolean;
|
|
1010
|
+
jsonInfo: string;
|
|
1011
|
+
binInfo: base64Binary;
|
|
1012
|
+
PackageID: string;
|
|
1013
|
+
Partition: {
|
|
1014
|
+
FieldMask: long;
|
|
1015
|
+
FieldNames: {
|
|
1016
|
+
Item: string[];
|
|
1017
|
+
};
|
|
1018
|
+
};
|
|
1019
|
+
Blooms: {
|
|
1020
|
+
DFUFileBloom: DFUFileBloom[];
|
|
1021
|
+
};
|
|
1022
|
+
ExpireDays: int;
|
|
1023
|
+
KeyType: string;
|
|
1024
|
+
AtRestCost: double;
|
|
1025
|
+
AccessCost: double;
|
|
1026
|
+
ExpirationDate: string;
|
|
1027
|
+
};
|
|
1028
|
+
}
|
|
1029
|
+
|
|
1030
|
+
export interface DFUQueryRequest {
|
|
1031
|
+
Prefix?: string;
|
|
1032
|
+
NodeGroup?: string;
|
|
1033
|
+
ContentType?: string;
|
|
1034
|
+
LogicalName?: string;
|
|
1035
|
+
Owner?: string;
|
|
1036
|
+
StartDate?: string;
|
|
1037
|
+
EndDate?: string;
|
|
1038
|
+
FileType?: string;
|
|
1039
|
+
FileSizeFrom?: long;
|
|
1040
|
+
FileSizeTo?: long;
|
|
1041
|
+
FirstN?: int;
|
|
1042
|
+
PageSize?: int;
|
|
1043
|
+
PageStartFrom?: int;
|
|
1044
|
+
Sortby?: string;
|
|
1045
|
+
Descending?: boolean;
|
|
1046
|
+
OneLevelDirFileReturn?: boolean;
|
|
1047
|
+
CacheHint?: long;
|
|
1048
|
+
MaxNumberOfFiles?: int;
|
|
1049
|
+
IncludeSuperOwner?: boolean;
|
|
1050
|
+
StartAccessedTime?: string;
|
|
1051
|
+
EndAccessedTime?: string;
|
|
1052
|
+
MaxSkewFrom?: long;
|
|
1053
|
+
MaxSkewTo?: long;
|
|
1054
|
+
MinSkewFrom?: long;
|
|
1055
|
+
MinSkewTo?: long;
|
|
1056
|
+
}
|
|
1057
|
+
|
|
1058
|
+
export interface DFUQueryResponse {
|
|
1059
|
+
Exceptions: Exceptions;
|
|
1060
|
+
DFULogicalFiles: DFULogicalFiles;
|
|
1061
|
+
Prefix: string;
|
|
1062
|
+
NodeGroup: string;
|
|
1063
|
+
LogicalName: string;
|
|
1064
|
+
Description: string;
|
|
1065
|
+
Owner: string;
|
|
1066
|
+
StartDate: string;
|
|
1067
|
+
EndDate: string;
|
|
1068
|
+
FileType: string;
|
|
1069
|
+
FileSizeFrom: long;
|
|
1070
|
+
FileSizeTo: long;
|
|
1071
|
+
FirstN: int;
|
|
1072
|
+
PageSize: int;
|
|
1073
|
+
PageStartFrom: long;
|
|
1074
|
+
LastPageFrom: long;
|
|
1075
|
+
PageEndAt: long;
|
|
1076
|
+
PrevPageFrom: long;
|
|
1077
|
+
NextPageFrom: long;
|
|
1078
|
+
NumFiles: long;
|
|
1079
|
+
Sortby: string;
|
|
1080
|
+
Descending: boolean;
|
|
1081
|
+
BasicQuery: string;
|
|
1082
|
+
ParametersForPaging: string;
|
|
1083
|
+
Filters: string;
|
|
1084
|
+
CacheHint: long;
|
|
1085
|
+
IsSubsetOfFiles: boolean;
|
|
1086
|
+
Warning: string;
|
|
1087
|
+
}
|
|
1088
|
+
|
|
1089
|
+
export interface DFURecordTypeInfoRequest {
|
|
1090
|
+
Name?: string;
|
|
1091
|
+
IncludeJsonTypeInfo?: boolean;
|
|
1092
|
+
IncludeBinTypeInfo?: boolean;
|
|
1093
|
+
}
|
|
1101
1094
|
|
|
1102
|
-
export interface
|
|
1103
|
-
|
|
1104
|
-
|
|
1095
|
+
export interface DFURecordTypeInfoResponse {
|
|
1096
|
+
jsonInfo: string;
|
|
1097
|
+
binInfo: base64Binary;
|
|
1098
|
+
}
|
|
1105
1099
|
|
|
1106
|
-
export interface
|
|
1107
|
-
|
|
1108
|
-
}
|
|
1100
|
+
export interface DFUSearchRequest {
|
|
1101
|
+
ShowExample?: string;
|
|
1102
|
+
}
|
|
1109
1103
|
|
|
1110
|
-
export interface
|
|
1111
|
-
Exceptions: Exceptions;
|
|
1112
|
-
ShowExample: string;
|
|
1113
|
-
ClusterNames: {
|
|
1104
|
+
export interface ClusterNames {
|
|
1114
1105
|
ClusterName: string[];
|
|
1115
|
-
}
|
|
1116
|
-
FileTypes: {
|
|
1117
|
-
FileType: string[];
|
|
1118
|
-
};
|
|
1119
|
-
}
|
|
1120
|
-
|
|
1121
|
-
export interface DFUSearchDataRequest {
|
|
1122
|
-
Cluster?: string;
|
|
1123
|
-
ClusterType?: string;
|
|
1124
|
-
OpenLogicalName?: string;
|
|
1125
|
-
FilterBy?: string;
|
|
1126
|
-
ShowColumns?: string;
|
|
1127
|
-
ChooseFile?: int;
|
|
1128
|
-
StartIndex?: long;
|
|
1129
|
-
EndIndex?: long;
|
|
1130
|
-
LogicalName?: string;
|
|
1131
|
-
ParentName?: string;
|
|
1132
|
-
StartForGoback?: long;
|
|
1133
|
-
CountForGoback?: int;
|
|
1134
|
-
Start?: long;
|
|
1135
|
-
Count?: int;
|
|
1136
|
-
File?: string;
|
|
1137
|
-
Key?: string;
|
|
1138
|
-
SchemaOnly?: boolean;
|
|
1139
|
-
RoxieSelections?: boolean;
|
|
1140
|
-
DisableUppercaseTranslation?: boolean;
|
|
1141
|
-
SelectedKey?: string;
|
|
1142
|
-
}
|
|
1106
|
+
}
|
|
1143
1107
|
|
|
1144
|
-
export interface
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
LogicalName: string;
|
|
1148
|
-
ParentName: string;
|
|
1149
|
-
StartIndex: long;
|
|
1150
|
-
EndIndex: long;
|
|
1151
|
-
DFUDataKeyedColumns1: DFUDataKeyedColumns1;
|
|
1152
|
-
DFUDataKeyedColumns2: DFUDataKeyedColumns2;
|
|
1153
|
-
DFUDataKeyedColumns3: DFUDataKeyedColumns3;
|
|
1154
|
-
DFUDataKeyedColumns4: DFUDataKeyedColumns4;
|
|
1155
|
-
DFUDataKeyedColumns5: DFUDataKeyedColumns5;
|
|
1156
|
-
DFUDataKeyedColumns6: DFUDataKeyedColumns6;
|
|
1157
|
-
DFUDataKeyedColumns7: DFUDataKeyedColumns7;
|
|
1158
|
-
DFUDataKeyedColumns8: DFUDataKeyedColumns8;
|
|
1159
|
-
DFUDataKeyedColumns9: DFUDataKeyedColumns9;
|
|
1160
|
-
DFUDataKeyedColumns10: DFUDataKeyedColumns10;
|
|
1161
|
-
DFUDataKeyedColumns11: DFUDataKeyedColumns11;
|
|
1162
|
-
DFUDataKeyedColumns12: DFUDataKeyedColumns12;
|
|
1163
|
-
DFUDataKeyedColumns13: DFUDataKeyedColumns13;
|
|
1164
|
-
DFUDataKeyedColumns14: DFUDataKeyedColumns14;
|
|
1165
|
-
DFUDataKeyedColumns15: DFUDataKeyedColumns15;
|
|
1166
|
-
DFUDataKeyedColumns16: DFUDataKeyedColumns16;
|
|
1167
|
-
DFUDataKeyedColumns17: DFUDataKeyedColumns17;
|
|
1168
|
-
DFUDataKeyedColumns18: DFUDataKeyedColumns18;
|
|
1169
|
-
DFUDataKeyedColumns19: DFUDataKeyedColumns19;
|
|
1170
|
-
DFUDataKeyedColumns20: DFUDataKeyedColumns20;
|
|
1171
|
-
DFUDataNonKeyedColumns1: DFUDataNonKeyedColumns1;
|
|
1172
|
-
DFUDataNonKeyedColumns2: DFUDataNonKeyedColumns2;
|
|
1173
|
-
DFUDataNonKeyedColumns3: DFUDataNonKeyedColumns3;
|
|
1174
|
-
DFUDataNonKeyedColumns4: DFUDataNonKeyedColumns4;
|
|
1175
|
-
DFUDataNonKeyedColumns5: DFUDataNonKeyedColumns5;
|
|
1176
|
-
DFUDataNonKeyedColumns6: DFUDataNonKeyedColumns6;
|
|
1177
|
-
DFUDataNonKeyedColumns7: DFUDataNonKeyedColumns7;
|
|
1178
|
-
DFUDataNonKeyedColumns8: DFUDataNonKeyedColumns8;
|
|
1179
|
-
DFUDataNonKeyedColumns9: DFUDataNonKeyedColumns9;
|
|
1180
|
-
DFUDataNonKeyedColumns10: DFUDataNonKeyedColumns10;
|
|
1181
|
-
DFUDataNonKeyedColumns11: DFUDataNonKeyedColumns11;
|
|
1182
|
-
DFUDataNonKeyedColumns12: DFUDataNonKeyedColumns12;
|
|
1183
|
-
DFUDataNonKeyedColumns13: DFUDataNonKeyedColumns13;
|
|
1184
|
-
DFUDataNonKeyedColumns14: DFUDataNonKeyedColumns14;
|
|
1185
|
-
DFUDataNonKeyedColumns15: DFUDataNonKeyedColumns15;
|
|
1186
|
-
DFUDataNonKeyedColumns16: DFUDataNonKeyedColumns16;
|
|
1187
|
-
DFUDataNonKeyedColumns17: DFUDataNonKeyedColumns17;
|
|
1188
|
-
DFUDataNonKeyedColumns18: DFUDataNonKeyedColumns18;
|
|
1189
|
-
DFUDataNonKeyedColumns19: DFUDataNonKeyedColumns19;
|
|
1190
|
-
DFUDataNonKeyedColumns20: DFUDataNonKeyedColumns20;
|
|
1191
|
-
RowCount: long;
|
|
1192
|
-
ShowColumns: string;
|
|
1193
|
-
ChooseFile: int;
|
|
1194
|
-
Name: string;
|
|
1195
|
-
FilterBy: string;
|
|
1196
|
-
FilterForGoBack: string;
|
|
1197
|
-
ColumnsHidden: ColumnsHidden;
|
|
1198
|
-
ColumnCount: int;
|
|
1199
|
-
StartForGoback: long;
|
|
1200
|
-
CountForGoback: int;
|
|
1201
|
-
Start: long;
|
|
1202
|
-
Count: long;
|
|
1203
|
-
PageSize: long;
|
|
1204
|
-
Total: long;
|
|
1205
|
-
Result: string;
|
|
1206
|
-
MsgToDisplay: string;
|
|
1207
|
-
Cluster: string;
|
|
1208
|
-
ClusterType: string;
|
|
1209
|
-
File: string;
|
|
1210
|
-
Key: string;
|
|
1211
|
-
SchemaOnly: boolean;
|
|
1212
|
-
RoxieSelections: boolean;
|
|
1213
|
-
DisableUppercaseTranslation: boolean;
|
|
1214
|
-
AutoUppercaseTranslation: boolean;
|
|
1215
|
-
SelectedKey: string;
|
|
1216
|
-
}
|
|
1217
|
-
|
|
1218
|
-
export interface DFUSpaceRequest {
|
|
1219
|
-
CountBy?: string;
|
|
1220
|
-
ScopeUnder?: string;
|
|
1221
|
-
OwnerUnder?: string;
|
|
1222
|
-
Interval?: string;
|
|
1223
|
-
StartDate?: string;
|
|
1224
|
-
EndDate?: string;
|
|
1225
|
-
}
|
|
1226
|
-
|
|
1227
|
-
export interface DFUSpaceItem {
|
|
1228
|
-
Name: string;
|
|
1229
|
-
NumOfFiles: string;
|
|
1230
|
-
NumOfFilesUnknown: string;
|
|
1231
|
-
TotalSize: string;
|
|
1232
|
-
LargestFile: string;
|
|
1233
|
-
LargestSize: string;
|
|
1234
|
-
SmallestFile: string;
|
|
1235
|
-
SmallestSize: string;
|
|
1236
|
-
NumOfFilesInt64: long;
|
|
1237
|
-
NumOfFilesUnknownInt64: long;
|
|
1238
|
-
TotalSizeInt64: long;
|
|
1239
|
-
LargestSizeInt64: long;
|
|
1240
|
-
SmallestSizeInt64: long;
|
|
1241
|
-
}
|
|
1108
|
+
export interface FileTypes {
|
|
1109
|
+
FileType: string[];
|
|
1110
|
+
}
|
|
1242
1111
|
|
|
1243
|
-
export interface
|
|
1244
|
-
|
|
1245
|
-
|
|
1112
|
+
export interface DFUSearchResponse {
|
|
1113
|
+
Exceptions: Exceptions;
|
|
1114
|
+
ShowExample: string;
|
|
1115
|
+
ClusterNames: {
|
|
1116
|
+
ClusterName: string[];
|
|
1117
|
+
};
|
|
1118
|
+
FileTypes: {
|
|
1119
|
+
FileType: string[];
|
|
1120
|
+
};
|
|
1121
|
+
}
|
|
1246
1122
|
|
|
1247
|
-
export interface
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1123
|
+
export interface DFUSearchDataRequest {
|
|
1124
|
+
Cluster?: string;
|
|
1125
|
+
ClusterType?: string;
|
|
1126
|
+
OpenLogicalName?: string;
|
|
1127
|
+
FilterBy?: string;
|
|
1128
|
+
ShowColumns?: string;
|
|
1129
|
+
ChooseFile?: int;
|
|
1130
|
+
StartIndex?: long;
|
|
1131
|
+
EndIndex?: long;
|
|
1132
|
+
LogicalName?: string;
|
|
1133
|
+
ParentName?: string;
|
|
1134
|
+
StartForGoback?: long;
|
|
1135
|
+
CountForGoback?: int;
|
|
1136
|
+
Start?: long;
|
|
1137
|
+
Count?: int;
|
|
1138
|
+
File?: string;
|
|
1139
|
+
Key?: string;
|
|
1140
|
+
SchemaOnly?: boolean;
|
|
1141
|
+
RoxieSelections?: boolean;
|
|
1142
|
+
DisableUppercaseTranslation?: boolean;
|
|
1143
|
+
SelectedKey?: string;
|
|
1144
|
+
}
|
|
1145
|
+
|
|
1146
|
+
export interface DFUSearchDataResponse {
|
|
1147
|
+
Exceptions: Exceptions;
|
|
1148
|
+
OpenLogicalName: string;
|
|
1149
|
+
LogicalName: string;
|
|
1150
|
+
ParentName: string;
|
|
1151
|
+
StartIndex: long;
|
|
1152
|
+
EndIndex: long;
|
|
1153
|
+
DFUDataKeyedColumns1: DFUDataKeyedColumns1;
|
|
1154
|
+
DFUDataKeyedColumns2: DFUDataKeyedColumns2;
|
|
1155
|
+
DFUDataKeyedColumns3: DFUDataKeyedColumns3;
|
|
1156
|
+
DFUDataKeyedColumns4: DFUDataKeyedColumns4;
|
|
1157
|
+
DFUDataKeyedColumns5: DFUDataKeyedColumns5;
|
|
1158
|
+
DFUDataKeyedColumns6: DFUDataKeyedColumns6;
|
|
1159
|
+
DFUDataKeyedColumns7: DFUDataKeyedColumns7;
|
|
1160
|
+
DFUDataKeyedColumns8: DFUDataKeyedColumns8;
|
|
1161
|
+
DFUDataKeyedColumns9: DFUDataKeyedColumns9;
|
|
1162
|
+
DFUDataKeyedColumns10: DFUDataKeyedColumns10;
|
|
1163
|
+
DFUDataKeyedColumns11: DFUDataKeyedColumns11;
|
|
1164
|
+
DFUDataKeyedColumns12: DFUDataKeyedColumns12;
|
|
1165
|
+
DFUDataKeyedColumns13: DFUDataKeyedColumns13;
|
|
1166
|
+
DFUDataKeyedColumns14: DFUDataKeyedColumns14;
|
|
1167
|
+
DFUDataKeyedColumns15: DFUDataKeyedColumns15;
|
|
1168
|
+
DFUDataKeyedColumns16: DFUDataKeyedColumns16;
|
|
1169
|
+
DFUDataKeyedColumns17: DFUDataKeyedColumns17;
|
|
1170
|
+
DFUDataKeyedColumns18: DFUDataKeyedColumns18;
|
|
1171
|
+
DFUDataKeyedColumns19: DFUDataKeyedColumns19;
|
|
1172
|
+
DFUDataKeyedColumns20: DFUDataKeyedColumns20;
|
|
1173
|
+
DFUDataNonKeyedColumns1: DFUDataNonKeyedColumns1;
|
|
1174
|
+
DFUDataNonKeyedColumns2: DFUDataNonKeyedColumns2;
|
|
1175
|
+
DFUDataNonKeyedColumns3: DFUDataNonKeyedColumns3;
|
|
1176
|
+
DFUDataNonKeyedColumns4: DFUDataNonKeyedColumns4;
|
|
1177
|
+
DFUDataNonKeyedColumns5: DFUDataNonKeyedColumns5;
|
|
1178
|
+
DFUDataNonKeyedColumns6: DFUDataNonKeyedColumns6;
|
|
1179
|
+
DFUDataNonKeyedColumns7: DFUDataNonKeyedColumns7;
|
|
1180
|
+
DFUDataNonKeyedColumns8: DFUDataNonKeyedColumns8;
|
|
1181
|
+
DFUDataNonKeyedColumns9: DFUDataNonKeyedColumns9;
|
|
1182
|
+
DFUDataNonKeyedColumns10: DFUDataNonKeyedColumns10;
|
|
1183
|
+
DFUDataNonKeyedColumns11: DFUDataNonKeyedColumns11;
|
|
1184
|
+
DFUDataNonKeyedColumns12: DFUDataNonKeyedColumns12;
|
|
1185
|
+
DFUDataNonKeyedColumns13: DFUDataNonKeyedColumns13;
|
|
1186
|
+
DFUDataNonKeyedColumns14: DFUDataNonKeyedColumns14;
|
|
1187
|
+
DFUDataNonKeyedColumns15: DFUDataNonKeyedColumns15;
|
|
1188
|
+
DFUDataNonKeyedColumns16: DFUDataNonKeyedColumns16;
|
|
1189
|
+
DFUDataNonKeyedColumns17: DFUDataNonKeyedColumns17;
|
|
1190
|
+
DFUDataNonKeyedColumns18: DFUDataNonKeyedColumns18;
|
|
1191
|
+
DFUDataNonKeyedColumns19: DFUDataNonKeyedColumns19;
|
|
1192
|
+
DFUDataNonKeyedColumns20: DFUDataNonKeyedColumns20;
|
|
1193
|
+
RowCount: long;
|
|
1194
|
+
ShowColumns: string;
|
|
1195
|
+
ChooseFile: int;
|
|
1196
|
+
Name: string;
|
|
1197
|
+
FilterBy: string;
|
|
1198
|
+
FilterForGoBack: string;
|
|
1199
|
+
ColumnsHidden: ColumnsHidden;
|
|
1200
|
+
ColumnCount: int;
|
|
1201
|
+
StartForGoback: long;
|
|
1202
|
+
CountForGoback: int;
|
|
1203
|
+
Start: long;
|
|
1204
|
+
Count: long;
|
|
1205
|
+
PageSize: long;
|
|
1206
|
+
Total: long;
|
|
1207
|
+
Result: string;
|
|
1208
|
+
MsgToDisplay: string;
|
|
1209
|
+
Cluster: string;
|
|
1210
|
+
ClusterType: string;
|
|
1211
|
+
File: string;
|
|
1212
|
+
Key: string;
|
|
1213
|
+
SchemaOnly: boolean;
|
|
1214
|
+
RoxieSelections: boolean;
|
|
1215
|
+
DisableUppercaseTranslation: boolean;
|
|
1216
|
+
AutoUppercaseTranslation: boolean;
|
|
1217
|
+
SelectedKey: string;
|
|
1218
|
+
}
|
|
1219
|
+
|
|
1220
|
+
export interface DFUSpaceRequest {
|
|
1221
|
+
CountBy?: string;
|
|
1222
|
+
ScopeUnder?: string;
|
|
1223
|
+
OwnerUnder?: string;
|
|
1224
|
+
Interval?: string;
|
|
1225
|
+
StartDate?: string;
|
|
1226
|
+
EndDate?: string;
|
|
1227
|
+
}
|
|
1228
|
+
|
|
1229
|
+
export interface DFUSpaceItem {
|
|
1230
|
+
Name: string;
|
|
1231
|
+
NumOfFiles: string;
|
|
1232
|
+
NumOfFilesUnknown: string;
|
|
1233
|
+
TotalSize: string;
|
|
1234
|
+
LargestFile: string;
|
|
1235
|
+
LargestSize: string;
|
|
1236
|
+
SmallestFile: string;
|
|
1237
|
+
SmallestSize: string;
|
|
1238
|
+
NumOfFilesInt64: long;
|
|
1239
|
+
NumOfFilesUnknownInt64: long;
|
|
1240
|
+
TotalSizeInt64: long;
|
|
1241
|
+
LargestSizeInt64: long;
|
|
1242
|
+
SmallestSizeInt64: long;
|
|
1243
|
+
}
|
|
1244
|
+
|
|
1245
|
+
export interface DFUSpaceItems {
|
|
1256
1246
|
DFUSpaceItem: DFUSpaceItem[];
|
|
1257
|
-
}
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1247
|
+
}
|
|
1248
|
+
|
|
1249
|
+
export interface DFUSpaceResponse {
|
|
1250
|
+
Exceptions: Exceptions;
|
|
1251
|
+
CountBy: string;
|
|
1252
|
+
ScopeUnder: string;
|
|
1253
|
+
OwnerUnder: string;
|
|
1254
|
+
Interval: string;
|
|
1255
|
+
StartDate: string;
|
|
1256
|
+
EndDate: string;
|
|
1257
|
+
DFUSpaceItems: {
|
|
1258
|
+
DFUSpaceItem: DFUSpaceItem[];
|
|
1259
|
+
};
|
|
1260
|
+
}
|
|
1265
1261
|
|
|
1266
|
-
export interface
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1262
|
+
export interface EclRecordTypeInfoRequest {
|
|
1263
|
+
Ecl?: string;
|
|
1264
|
+
IncludeJsonTypeInfo?: boolean;
|
|
1265
|
+
IncludeBinTypeInfo?: boolean;
|
|
1266
|
+
}
|
|
1270
1267
|
|
|
1271
|
-
export interface
|
|
1272
|
-
|
|
1273
|
-
|
|
1268
|
+
export interface EclRecordTypeInfoResponse {
|
|
1269
|
+
jsonInfo: string;
|
|
1270
|
+
binInfo: base64Binary;
|
|
1271
|
+
}
|
|
1274
1272
|
|
|
1275
|
-
export interface
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
Timestamp: string;
|
|
1279
|
-
IP: string;
|
|
1280
|
-
Path: string;
|
|
1281
|
-
Owner: string;
|
|
1282
|
-
Workunit: string;
|
|
1283
|
-
}
|
|
1273
|
+
export interface EraseHistoryRequest {
|
|
1274
|
+
Name?: string;
|
|
1275
|
+
}
|
|
1284
1276
|
|
|
1285
|
-
export interface
|
|
1286
|
-
|
|
1287
|
-
|
|
1277
|
+
export interface Origin {
|
|
1278
|
+
Name: string;
|
|
1279
|
+
Operation: string;
|
|
1280
|
+
Timestamp: string;
|
|
1281
|
+
IP: string;
|
|
1282
|
+
Path: string;
|
|
1283
|
+
Owner: string;
|
|
1284
|
+
Workunit: string;
|
|
1285
|
+
}
|
|
1288
1286
|
|
|
1289
|
-
export interface
|
|
1290
|
-
Exceptions: Exceptions;
|
|
1291
|
-
History: {
|
|
1287
|
+
export interface History {
|
|
1292
1288
|
Origin: Origin[];
|
|
1293
|
-
}
|
|
1294
|
-
}
|
|
1289
|
+
}
|
|
1295
1290
|
|
|
1296
|
-
export interface
|
|
1297
|
-
|
|
1298
|
-
|
|
1291
|
+
export interface EraseHistoryResponse {
|
|
1292
|
+
Exceptions: Exceptions;
|
|
1293
|
+
History: {
|
|
1294
|
+
Origin: Origin[];
|
|
1295
|
+
};
|
|
1296
|
+
}
|
|
1299
1297
|
|
|
1300
|
-
export interface
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
}
|
|
1298
|
+
export interface ListHistoryRequest {
|
|
1299
|
+
Name?: string;
|
|
1300
|
+
}
|
|
1304
1301
|
|
|
1305
|
-
export interface
|
|
1302
|
+
export interface ListHistoryResponse {
|
|
1303
|
+
Exceptions: Exceptions;
|
|
1304
|
+
History: History;
|
|
1305
|
+
}
|
|
1306
1306
|
|
|
1307
|
-
|
|
1307
|
+
export interface WsDfuPingRequest {
|
|
1308
1308
|
|
|
1309
|
-
|
|
1309
|
+
}
|
|
1310
1310
|
|
|
1311
|
-
|
|
1311
|
+
export interface WsDfuPingResponse {
|
|
1312
1312
|
|
|
1313
|
-
|
|
1314
|
-
name?: string;
|
|
1315
|
-
}
|
|
1313
|
+
}
|
|
1316
1314
|
|
|
1317
|
-
export interface
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
}
|
|
1315
|
+
export interface SavexmlRequest {
|
|
1316
|
+
name?: string;
|
|
1317
|
+
}
|
|
1321
1318
|
|
|
1322
|
-
export interface
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
before?: string;
|
|
1327
|
-
delete?: boolean;
|
|
1328
|
-
removeSuperfile?: boolean;
|
|
1329
|
-
}
|
|
1319
|
+
export interface SavexmlResponse {
|
|
1320
|
+
Exceptions: Exceptions;
|
|
1321
|
+
xmlmap: base64Binary;
|
|
1322
|
+
}
|
|
1330
1323
|
|
|
1331
|
-
export interface
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1324
|
+
export interface SuperfileActionRequest {
|
|
1325
|
+
action?: string;
|
|
1326
|
+
superfile?: string;
|
|
1327
|
+
subfiles?: subfiles;
|
|
1328
|
+
before?: string;
|
|
1329
|
+
delete?: boolean;
|
|
1330
|
+
removeSuperfile?: boolean;
|
|
1331
|
+
}
|
|
1336
1332
|
|
|
1337
|
-
export interface
|
|
1338
|
-
|
|
1339
|
-
|
|
1333
|
+
export interface SuperfileActionResponse {
|
|
1334
|
+
Exceptions: Exceptions;
|
|
1335
|
+
superfile: string;
|
|
1336
|
+
retcode: int;
|
|
1337
|
+
}
|
|
1340
1338
|
|
|
1341
|
-
export interface
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1339
|
+
export interface SuperfileListRequest {
|
|
1340
|
+
superfile?: string;
|
|
1341
|
+
}
|
|
1342
|
+
|
|
1343
|
+
export interface SuperfileListResponse {
|
|
1344
|
+
Exceptions: Exceptions;
|
|
1345
|
+
superfile: string;
|
|
1346
|
+
subfiles: subfiles;
|
|
1347
|
+
}
|
|
1346
1348
|
|
|
1347
1349
|
}
|
|
1348
1350
|
|
|
1349
1351
|
export class DfuServiceBase extends Service {
|
|
1350
1352
|
|
|
1351
|
-
constructor(optsConnection: IOptions | IConnection) {
|
|
1352
|
-
super(optsConnection, "WsDfu", "1.63");
|
|
1353
|
-
}
|
|
1353
|
+
constructor(optsConnection: IOptions | IConnection) {
|
|
1354
|
+
super(optsConnection, "WsDfu", "1.63");
|
|
1355
|
+
}
|
|
1354
1356
|
|
|
1355
|
-
Add(request: WsDfu.AddRequest): Promise<WsDfu.AddResponse> {
|
|
1356
|
-
|
|
1357
|
-
}
|
|
1357
|
+
Add(request: WsDfu.AddRequest): Promise<WsDfu.AddResponse> {
|
|
1358
|
+
return this._connection.send("Add", request, "json", false, undefined, "AddResponse");
|
|
1359
|
+
}
|
|
1358
1360
|
|
|
1359
|
-
AddRemote(request: WsDfu.AddRemoteRequest): Promise<WsDfu.AddRemoteResponse> {
|
|
1360
|
-
|
|
1361
|
-
}
|
|
1361
|
+
AddRemote(request: WsDfu.AddRemoteRequest): Promise<WsDfu.AddRemoteResponse> {
|
|
1362
|
+
return this._connection.send("AddRemote", request, "json", false, undefined, "AddRemoteResponse");
|
|
1363
|
+
}
|
|
1362
1364
|
|
|
1363
|
-
AddtoSuperfile(request: WsDfu.AddtoSuperfileRequest): Promise<WsDfu.AddtoSuperfileResponse> {
|
|
1364
|
-
|
|
1365
|
-
}
|
|
1365
|
+
AddtoSuperfile(request: WsDfu.AddtoSuperfileRequest): Promise<WsDfu.AddtoSuperfileResponse> {
|
|
1366
|
+
return this._connection.send("AddtoSuperfile", request, "json", false, undefined, "AddtoSuperfileResponse");
|
|
1367
|
+
}
|
|
1366
1368
|
|
|
1367
|
-
DFUArrayAction(request: WsDfu.DFUArrayActionRequest): Promise<WsDfu.DFUArrayActionResponse> {
|
|
1368
|
-
|
|
1369
|
-
}
|
|
1369
|
+
DFUArrayAction(request: WsDfu.DFUArrayActionRequest): Promise<WsDfu.DFUArrayActionResponse> {
|
|
1370
|
+
return this._connection.send("DFUArrayAction", request, "json", false, undefined, "DFUArrayActionResponse");
|
|
1371
|
+
}
|
|
1370
1372
|
|
|
1371
|
-
DFUBrowseData(request: WsDfu.DFUBrowseDataRequest): Promise<WsDfu.DFUBrowseDataResponse> {
|
|
1372
|
-
|
|
1373
|
-
}
|
|
1373
|
+
DFUBrowseData(request: WsDfu.DFUBrowseDataRequest): Promise<WsDfu.DFUBrowseDataResponse> {
|
|
1374
|
+
return this._connection.send("DFUBrowseData", request, "json", false, undefined, "DFUBrowseDataResponse");
|
|
1375
|
+
}
|
|
1374
1376
|
|
|
1375
|
-
DFUDefFile(request: WsDfu.DFUDefFileRequest): Promise<WsDfu.DFUDefFileResponse> {
|
|
1376
|
-
|
|
1377
|
-
}
|
|
1377
|
+
DFUDefFile(request: WsDfu.DFUDefFileRequest): Promise<WsDfu.DFUDefFileResponse> {
|
|
1378
|
+
return this._connection.send("DFUDefFile", request, "json", false, undefined, "DFUDefFileResponse");
|
|
1379
|
+
}
|
|
1378
1380
|
|
|
1379
|
-
DFUFileAccess(request: WsDfu.DFUFileAccessRequest): Promise<WsDfu.DFUFileAccessResponse> {
|
|
1380
|
-
|
|
1381
|
-
}
|
|
1381
|
+
DFUFileAccess(request: WsDfu.DFUFileAccessRequest): Promise<WsDfu.DFUFileAccessResponse> {
|
|
1382
|
+
return this._connection.send("DFUFileAccess", request, "json", false, undefined, "DFUFileAccessResponse");
|
|
1383
|
+
}
|
|
1382
1384
|
|
|
1383
|
-
DFUFileAccessV2(request: WsDfu.DFUFileAccessV2Request): Promise<WsDfu.DFUFileAccessResponse> {
|
|
1384
|
-
|
|
1385
|
-
}
|
|
1385
|
+
DFUFileAccessV2(request: WsDfu.DFUFileAccessV2Request): Promise<WsDfu.DFUFileAccessResponse> {
|
|
1386
|
+
return this._connection.send("DFUFileAccessV2", request, "json", false, undefined, "DFUFileAccessResponse");
|
|
1387
|
+
}
|
|
1386
1388
|
|
|
1387
|
-
DFUFileCreate(request: WsDfu.DFUFileCreateRequest): Promise<WsDfu.DFUFileCreateResponse> {
|
|
1388
|
-
|
|
1389
|
-
}
|
|
1389
|
+
DFUFileCreate(request: WsDfu.DFUFileCreateRequest): Promise<WsDfu.DFUFileCreateResponse> {
|
|
1390
|
+
return this._connection.send("DFUFileCreate", request, "json", false, undefined, "DFUFileCreateResponse");
|
|
1391
|
+
}
|
|
1390
1392
|
|
|
1391
|
-
DFUFileCreateV2(request: WsDfu.DFUFileCreateV2Request): Promise<WsDfu.DFUFileCreateResponse> {
|
|
1392
|
-
|
|
1393
|
-
}
|
|
1393
|
+
DFUFileCreateV2(request: WsDfu.DFUFileCreateV2Request): Promise<WsDfu.DFUFileCreateResponse> {
|
|
1394
|
+
return this._connection.send("DFUFileCreateV2", request, "json", false, undefined, "DFUFileCreateResponse");
|
|
1395
|
+
}
|
|
1394
1396
|
|
|
1395
|
-
DFUFilePublish(request: WsDfu.DFUFilePublishRequest): Promise<WsDfu.DFUFilePublishResponse> {
|
|
1396
|
-
|
|
1397
|
-
}
|
|
1397
|
+
DFUFilePublish(request: WsDfu.DFUFilePublishRequest): Promise<WsDfu.DFUFilePublishResponse> {
|
|
1398
|
+
return this._connection.send("DFUFilePublish", request, "json", false, undefined, "DFUFilePublishResponse");
|
|
1399
|
+
}
|
|
1398
1400
|
|
|
1399
|
-
DFUFileView(request: WsDfu.DFUFileViewRequest): Promise<WsDfu.DFUFileViewResponse> {
|
|
1400
|
-
|
|
1401
|
-
}
|
|
1401
|
+
DFUFileView(request: WsDfu.DFUFileViewRequest): Promise<WsDfu.DFUFileViewResponse> {
|
|
1402
|
+
return this._connection.send("DFUFileView", request, "json", false, undefined, "DFUFileViewResponse");
|
|
1403
|
+
}
|
|
1402
1404
|
|
|
1403
|
-
DFUGetDataColumns(request: WsDfu.DFUGetDataColumnsRequest): Promise<WsDfu.DFUGetDataColumnsResponse> {
|
|
1404
|
-
|
|
1405
|
-
}
|
|
1405
|
+
DFUGetDataColumns(request: WsDfu.DFUGetDataColumnsRequest): Promise<WsDfu.DFUGetDataColumnsResponse> {
|
|
1406
|
+
return this._connection.send("DFUGetDataColumns", request, "json", false, undefined, "DFUGetDataColumnsResponse");
|
|
1407
|
+
}
|
|
1406
1408
|
|
|
1407
|
-
DFUGetFileMetaData(request: WsDfu.DFUGetFileMetaDataRequest): Promise<WsDfu.DFUGetFileMetaDataResponse> {
|
|
1408
|
-
|
|
1409
|
-
}
|
|
1409
|
+
DFUGetFileMetaData(request: WsDfu.DFUGetFileMetaDataRequest): Promise<WsDfu.DFUGetFileMetaDataResponse> {
|
|
1410
|
+
return this._connection.send("DFUGetFileMetaData", request, "json", false, undefined, "DFUGetFileMetaDataResponse");
|
|
1411
|
+
}
|
|
1410
1412
|
|
|
1411
|
-
DFUInfo(request: WsDfu.DFUInfoRequest): Promise<WsDfu.DFUInfoResponse> {
|
|
1412
|
-
|
|
1413
|
-
}
|
|
1413
|
+
DFUInfo(request: WsDfu.DFUInfoRequest): Promise<WsDfu.DFUInfoResponse> {
|
|
1414
|
+
return this._connection.send("DFUInfo", request, "json", false, undefined, "DFUInfoResponse");
|
|
1415
|
+
}
|
|
1414
1416
|
|
|
1415
|
-
DFUQuery(request: WsDfu.DFUQueryRequest): Promise<WsDfu.DFUQueryResponse> {
|
|
1416
|
-
|
|
1417
|
-
}
|
|
1417
|
+
DFUQuery(request: WsDfu.DFUQueryRequest): Promise<WsDfu.DFUQueryResponse> {
|
|
1418
|
+
return this._connection.send("DFUQuery", request, "json", false, undefined, "DFUQueryResponse");
|
|
1419
|
+
}
|
|
1418
1420
|
|
|
1419
|
-
DFURecordTypeInfo(request: WsDfu.DFURecordTypeInfoRequest): Promise<WsDfu.DFURecordTypeInfoResponse> {
|
|
1420
|
-
|
|
1421
|
-
}
|
|
1421
|
+
DFURecordTypeInfo(request: WsDfu.DFURecordTypeInfoRequest): Promise<WsDfu.DFURecordTypeInfoResponse> {
|
|
1422
|
+
return this._connection.send("DFURecordTypeInfo", request, "json", false, undefined, "DFURecordTypeInfoResponse");
|
|
1423
|
+
}
|
|
1422
1424
|
|
|
1423
|
-
DFUSearch(request: WsDfu.DFUSearchRequest): Promise<WsDfu.DFUSearchResponse> {
|
|
1424
|
-
|
|
1425
|
-
}
|
|
1425
|
+
DFUSearch(request: WsDfu.DFUSearchRequest): Promise<WsDfu.DFUSearchResponse> {
|
|
1426
|
+
return this._connection.send("DFUSearch", request, "json", false, undefined, "DFUSearchResponse");
|
|
1427
|
+
}
|
|
1426
1428
|
|
|
1427
|
-
DFUSearchData(request: WsDfu.DFUSearchDataRequest): Promise<WsDfu.DFUSearchDataResponse> {
|
|
1428
|
-
|
|
1429
|
-
}
|
|
1429
|
+
DFUSearchData(request: WsDfu.DFUSearchDataRequest): Promise<WsDfu.DFUSearchDataResponse> {
|
|
1430
|
+
return this._connection.send("DFUSearchData", request, "json", false, undefined, "DFUSearchDataResponse");
|
|
1431
|
+
}
|
|
1430
1432
|
|
|
1431
|
-
DFUSpace(request: WsDfu.DFUSpaceRequest): Promise<WsDfu.DFUSpaceResponse> {
|
|
1432
|
-
|
|
1433
|
-
}
|
|
1433
|
+
DFUSpace(request: WsDfu.DFUSpaceRequest): Promise<WsDfu.DFUSpaceResponse> {
|
|
1434
|
+
return this._connection.send("DFUSpace", request, "json", false, undefined, "DFUSpaceResponse");
|
|
1435
|
+
}
|
|
1434
1436
|
|
|
1435
|
-
EclRecordTypeInfo(request: WsDfu.EclRecordTypeInfoRequest): Promise<WsDfu.EclRecordTypeInfoResponse> {
|
|
1436
|
-
|
|
1437
|
-
}
|
|
1437
|
+
EclRecordTypeInfo(request: WsDfu.EclRecordTypeInfoRequest): Promise<WsDfu.EclRecordTypeInfoResponse> {
|
|
1438
|
+
return this._connection.send("EclRecordTypeInfo", request, "json", false, undefined, "EclRecordTypeInfoResponse");
|
|
1439
|
+
}
|
|
1438
1440
|
|
|
1439
|
-
EraseHistory(request: WsDfu.EraseHistoryRequest): Promise<WsDfu.EraseHistoryResponse> {
|
|
1440
|
-
|
|
1441
|
-
}
|
|
1441
|
+
EraseHistory(request: WsDfu.EraseHistoryRequest): Promise<WsDfu.EraseHistoryResponse> {
|
|
1442
|
+
return this._connection.send("EraseHistory", request, "json", false, undefined, "EraseHistoryResponse");
|
|
1443
|
+
}
|
|
1442
1444
|
|
|
1443
|
-
ListHistory(request: WsDfu.ListHistoryRequest): Promise<WsDfu.ListHistoryResponse> {
|
|
1444
|
-
|
|
1445
|
-
}
|
|
1445
|
+
ListHistory(request: WsDfu.ListHistoryRequest): Promise<WsDfu.ListHistoryResponse> {
|
|
1446
|
+
return this._connection.send("ListHistory", request, "json", false, undefined, "ListHistoryResponse");
|
|
1447
|
+
}
|
|
1446
1448
|
|
|
1447
|
-
Ping(request: WsDfu.WsDfuPingRequest): Promise<WsDfu.WsDfuPingResponse> {
|
|
1448
|
-
|
|
1449
|
-
}
|
|
1449
|
+
Ping(request: WsDfu.WsDfuPingRequest): Promise<WsDfu.WsDfuPingResponse> {
|
|
1450
|
+
return this._connection.send("Ping", request, "json", false, undefined, "WsDfuPingResponse");
|
|
1451
|
+
}
|
|
1450
1452
|
|
|
1451
|
-
Savexml(request: WsDfu.SavexmlRequest): Promise<WsDfu.SavexmlResponse> {
|
|
1452
|
-
|
|
1453
|
-
}
|
|
1453
|
+
Savexml(request: WsDfu.SavexmlRequest): Promise<WsDfu.SavexmlResponse> {
|
|
1454
|
+
return this._connection.send("Savexml", request, "json", false, undefined, "SavexmlResponse");
|
|
1455
|
+
}
|
|
1454
1456
|
|
|
1455
|
-
SuperfileAction(request: WsDfu.SuperfileActionRequest): Promise<WsDfu.SuperfileActionResponse> {
|
|
1456
|
-
|
|
1457
|
-
}
|
|
1457
|
+
SuperfileAction(request: WsDfu.SuperfileActionRequest): Promise<WsDfu.SuperfileActionResponse> {
|
|
1458
|
+
return this._connection.send("SuperfileAction", request, "json", false, undefined, "SuperfileActionResponse");
|
|
1459
|
+
}
|
|
1458
1460
|
|
|
1459
|
-
SuperfileList(request: WsDfu.SuperfileListRequest): Promise<WsDfu.SuperfileListResponse> {
|
|
1460
|
-
|
|
1461
|
-
}
|
|
1461
|
+
SuperfileList(request: WsDfu.SuperfileListRequest): Promise<WsDfu.SuperfileListResponse> {
|
|
1462
|
+
return this._connection.send("SuperfileList", request, "json", false, undefined, "SuperfileListResponse");
|
|
1463
|
+
}
|
|
1462
1464
|
|
|
1463
1465
|
}
|