tencentcloud-sdk-nodejs-intl-en 3.0.1228 → 3.0.1230
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/package.json +1 -1
- package/tencentcloud/bi/index.js +3 -0
- package/tencentcloud/bi/v20220105/bi_client.js +62 -0
- package/tencentcloud/bi/v20220105/index.js +4 -0
- package/tencentcloud/bi/v20220105/models.js +571 -0
- package/tencentcloud/cfg/v20210820/models.js +14 -0
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/faceid/v20180301/models.js +21 -2
- package/tencentcloud/index.js +1 -0
- package/tencentcloud/mps/v20190612/models.js +601 -112
- package/tencentcloud/mps/v20190612/mps_client.js +14 -7
- package/tencentcloud/sqlserver/v20180328/models.js +32 -16
- package/tencentcloud/teo/v20220901/models.js +5305 -1135
- package/tencentcloud/teo/v20220901/teo_client.js +672 -157
package/package.json
CHANGED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (c) 2018 Tencent. All Rights Reserved.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing,
|
|
11
|
+
* software distributed under the License is distributed on an
|
|
12
|
+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
13
|
+
* KIND, either express or implied. See the License for the
|
|
14
|
+
* specific language governing permissions and limitations
|
|
15
|
+
* under the License.
|
|
16
|
+
*/
|
|
17
|
+
const models = require("./models");
|
|
18
|
+
const AbstractClient = require('../../common/abstract_client')
|
|
19
|
+
const ApplyEmbedTokenInfo = models.ApplyEmbedTokenInfo;
|
|
20
|
+
const ApplyEmbedIntervalResponse = models.ApplyEmbedIntervalResponse;
|
|
21
|
+
const CreateDatasourceRequest = models.CreateDatasourceRequest;
|
|
22
|
+
const CreateDatasourceResponse = models.CreateDatasourceResponse;
|
|
23
|
+
const ApplyEmbedIntervalRequest = models.ApplyEmbedIntervalRequest;
|
|
24
|
+
const IdDTO = models.IdDTO;
|
|
25
|
+
const ErrorInfo = models.ErrorInfo;
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* bi client
|
|
30
|
+
* @class
|
|
31
|
+
*/
|
|
32
|
+
class BiClient extends AbstractClient {
|
|
33
|
+
|
|
34
|
+
constructor(credential, region, profile) {
|
|
35
|
+
super("bi.intl.tencentcloudapi.com", "2022-01-05", credential, region, profile);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* This API is used to create a data source.
|
|
40
|
+
* @param {CreateDatasourceRequest} req
|
|
41
|
+
* @param {function(string, CreateDatasourceResponse):void} cb
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
CreateDatasource(req, cb) {
|
|
45
|
+
let resp = new CreateDatasourceResponse();
|
|
46
|
+
this.request("CreateDatasource", req, resp, cb);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
/**
|
|
50
|
+
* This API is used to extend the available time of a token with strong authentication.
|
|
51
|
+
* @param {ApplyEmbedIntervalRequest} req
|
|
52
|
+
* @param {function(string, ApplyEmbedIntervalResponse):void} cb
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
ApplyEmbedInterval(req, cb) {
|
|
56
|
+
let resp = new ApplyEmbedIntervalResponse();
|
|
57
|
+
this.request("ApplyEmbedInterval", req, resp, cb);
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
}
|
|
62
|
+
module.exports = BiClient;
|
|
@@ -0,0 +1,571 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (c) 2018 Tencent. All Rights Reserved.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing,
|
|
11
|
+
* software distributed under the License is distributed on an
|
|
12
|
+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
13
|
+
* KIND, either express or implied. See the License for the
|
|
14
|
+
* specific language governing permissions and limitations
|
|
15
|
+
* under the License.
|
|
16
|
+
*/
|
|
17
|
+
const AbstractModel = require("../../common/abstract_model");
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* Token deferral request
|
|
21
|
+
* @class
|
|
22
|
+
*/
|
|
23
|
+
class ApplyEmbedTokenInfo extends AbstractModel {
|
|
24
|
+
constructor(){
|
|
25
|
+
super();
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* Request result.
|
|
29
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
30
|
+
* @type {boolean || null}
|
|
31
|
+
*/
|
|
32
|
+
this.Result = null;
|
|
33
|
+
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* @private
|
|
38
|
+
*/
|
|
39
|
+
deserialize(params) {
|
|
40
|
+
if (!params) {
|
|
41
|
+
return;
|
|
42
|
+
}
|
|
43
|
+
this.Result = 'Result' in params ? params.Result : null;
|
|
44
|
+
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* ApplyEmbedInterval response structure.
|
|
50
|
+
* @class
|
|
51
|
+
*/
|
|
52
|
+
class ApplyEmbedIntervalResponse extends AbstractModel {
|
|
53
|
+
constructor(){
|
|
54
|
+
super();
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* Custom error information object.
|
|
58
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
59
|
+
* @type {ErrorInfo || null}
|
|
60
|
+
*/
|
|
61
|
+
this.ErrorInfo = null;
|
|
62
|
+
|
|
63
|
+
/**
|
|
64
|
+
* Additional parameters.
|
|
65
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
66
|
+
* @type {string || null}
|
|
67
|
+
*/
|
|
68
|
+
this.Extra = null;
|
|
69
|
+
|
|
70
|
+
/**
|
|
71
|
+
* Result data.
|
|
72
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
73
|
+
* @type {ApplyEmbedTokenInfo || null}
|
|
74
|
+
*/
|
|
75
|
+
this.Data = null;
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* Result description.
|
|
79
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
80
|
+
* @type {string || null}
|
|
81
|
+
*/
|
|
82
|
+
this.Msg = null;
|
|
83
|
+
|
|
84
|
+
/**
|
|
85
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
86
|
+
* @type {string || null}
|
|
87
|
+
*/
|
|
88
|
+
this.RequestId = null;
|
|
89
|
+
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
/**
|
|
93
|
+
* @private
|
|
94
|
+
*/
|
|
95
|
+
deserialize(params) {
|
|
96
|
+
if (!params) {
|
|
97
|
+
return;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
if (params.ErrorInfo) {
|
|
101
|
+
let obj = new ErrorInfo();
|
|
102
|
+
obj.deserialize(params.ErrorInfo)
|
|
103
|
+
this.ErrorInfo = obj;
|
|
104
|
+
}
|
|
105
|
+
this.Extra = 'Extra' in params ? params.Extra : null;
|
|
106
|
+
|
|
107
|
+
if (params.Data) {
|
|
108
|
+
let obj = new ApplyEmbedTokenInfo();
|
|
109
|
+
obj.deserialize(params.Data)
|
|
110
|
+
this.Data = obj;
|
|
111
|
+
}
|
|
112
|
+
this.Msg = 'Msg' in params ? params.Msg : null;
|
|
113
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
114
|
+
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
/**
|
|
119
|
+
* CreateDatasource request structure.
|
|
120
|
+
* @class
|
|
121
|
+
*/
|
|
122
|
+
class CreateDatasourceRequest extends AbstractModel {
|
|
123
|
+
constructor(){
|
|
124
|
+
super();
|
|
125
|
+
|
|
126
|
+
/**
|
|
127
|
+
* HOST
|
|
128
|
+
* @type {string || null}
|
|
129
|
+
*/
|
|
130
|
+
this.DbHost = null;
|
|
131
|
+
|
|
132
|
+
/**
|
|
133
|
+
* Port.
|
|
134
|
+
* @type {number || null}
|
|
135
|
+
*/
|
|
136
|
+
this.DbPort = null;
|
|
137
|
+
|
|
138
|
+
/**
|
|
139
|
+
* The backend provides dictionaries: domain type. 1. Tencent Cloud, 2. local.
|
|
140
|
+
* @type {string || null}
|
|
141
|
+
*/
|
|
142
|
+
this.ServiceType = null;
|
|
143
|
+
|
|
144
|
+
/**
|
|
145
|
+
* Drive.
|
|
146
|
+
* @type {string || null}
|
|
147
|
+
*/
|
|
148
|
+
this.DbType = null;
|
|
149
|
+
|
|
150
|
+
/**
|
|
151
|
+
* Database encoding.
|
|
152
|
+
* @type {string || null}
|
|
153
|
+
*/
|
|
154
|
+
this.Charset = null;
|
|
155
|
+
|
|
156
|
+
/**
|
|
157
|
+
* Username.
|
|
158
|
+
* @type {string || null}
|
|
159
|
+
*/
|
|
160
|
+
this.DbUser = null;
|
|
161
|
+
|
|
162
|
+
/**
|
|
163
|
+
* Password.
|
|
164
|
+
* @type {string || null}
|
|
165
|
+
*/
|
|
166
|
+
this.DbPwd = null;
|
|
167
|
+
|
|
168
|
+
/**
|
|
169
|
+
* Database name.
|
|
170
|
+
* @type {string || null}
|
|
171
|
+
*/
|
|
172
|
+
this.DbName = null;
|
|
173
|
+
|
|
174
|
+
/**
|
|
175
|
+
* Database alias.
|
|
176
|
+
* @type {string || null}
|
|
177
|
+
*/
|
|
178
|
+
this.SourceName = null;
|
|
179
|
+
|
|
180
|
+
/**
|
|
181
|
+
* Project ID.
|
|
182
|
+
* @type {number || null}
|
|
183
|
+
*/
|
|
184
|
+
this.ProjectId = null;
|
|
185
|
+
|
|
186
|
+
/**
|
|
187
|
+
* Catalog value.
|
|
188
|
+
* @type {string || null}
|
|
189
|
+
*/
|
|
190
|
+
this.Catalog = null;
|
|
191
|
+
|
|
192
|
+
/**
|
|
193
|
+
* Third-party data source identifier.
|
|
194
|
+
* @type {string || null}
|
|
195
|
+
*/
|
|
196
|
+
this.DataOrigin = null;
|
|
197
|
+
|
|
198
|
+
/**
|
|
199
|
+
* Third-party project ID.
|
|
200
|
+
* @type {string || null}
|
|
201
|
+
*/
|
|
202
|
+
this.DataOriginProjectId = null;
|
|
203
|
+
|
|
204
|
+
/**
|
|
205
|
+
* Third-party data source ID.
|
|
206
|
+
* @type {string || null}
|
|
207
|
+
*/
|
|
208
|
+
this.DataOriginDatasourceId = null;
|
|
209
|
+
|
|
210
|
+
/**
|
|
211
|
+
* Extension parameter.
|
|
212
|
+
* @type {string || null}
|
|
213
|
+
*/
|
|
214
|
+
this.ExtraParam = null;
|
|
215
|
+
|
|
216
|
+
/**
|
|
217
|
+
* Unified identifier of the Tencent Cloud VPC.
|
|
218
|
+
* @type {string || null}
|
|
219
|
+
*/
|
|
220
|
+
this.UniqVpcId = null;
|
|
221
|
+
|
|
222
|
+
/**
|
|
223
|
+
* VPC IP address.
|
|
224
|
+
* @type {string || null}
|
|
225
|
+
*/
|
|
226
|
+
this.Vip = null;
|
|
227
|
+
|
|
228
|
+
/**
|
|
229
|
+
* VPC port.
|
|
230
|
+
* @type {string || null}
|
|
231
|
+
*/
|
|
232
|
+
this.Vport = null;
|
|
233
|
+
|
|
234
|
+
/**
|
|
235
|
+
* Tencent Cloud VPC identifier.
|
|
236
|
+
* @type {string || null}
|
|
237
|
+
*/
|
|
238
|
+
this.VpcId = null;
|
|
239
|
+
|
|
240
|
+
/**
|
|
241
|
+
* Operation permission limitation.
|
|
242
|
+
* @type {Array.<string> || null}
|
|
243
|
+
*/
|
|
244
|
+
this.OperationAuthLimit = null;
|
|
245
|
+
|
|
246
|
+
/**
|
|
247
|
+
* Enables VPC.
|
|
248
|
+
* @type {boolean || null}
|
|
249
|
+
*/
|
|
250
|
+
this.UseVPC = null;
|
|
251
|
+
|
|
252
|
+
/**
|
|
253
|
+
* Region.
|
|
254
|
+
* @type {string || null}
|
|
255
|
+
*/
|
|
256
|
+
this.RegionId = null;
|
|
257
|
+
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
/**
|
|
261
|
+
* @private
|
|
262
|
+
*/
|
|
263
|
+
deserialize(params) {
|
|
264
|
+
if (!params) {
|
|
265
|
+
return;
|
|
266
|
+
}
|
|
267
|
+
this.DbHost = 'DbHost' in params ? params.DbHost : null;
|
|
268
|
+
this.DbPort = 'DbPort' in params ? params.DbPort : null;
|
|
269
|
+
this.ServiceType = 'ServiceType' in params ? params.ServiceType : null;
|
|
270
|
+
this.DbType = 'DbType' in params ? params.DbType : null;
|
|
271
|
+
this.Charset = 'Charset' in params ? params.Charset : null;
|
|
272
|
+
this.DbUser = 'DbUser' in params ? params.DbUser : null;
|
|
273
|
+
this.DbPwd = 'DbPwd' in params ? params.DbPwd : null;
|
|
274
|
+
this.DbName = 'DbName' in params ? params.DbName : null;
|
|
275
|
+
this.SourceName = 'SourceName' in params ? params.SourceName : null;
|
|
276
|
+
this.ProjectId = 'ProjectId' in params ? params.ProjectId : null;
|
|
277
|
+
this.Catalog = 'Catalog' in params ? params.Catalog : null;
|
|
278
|
+
this.DataOrigin = 'DataOrigin' in params ? params.DataOrigin : null;
|
|
279
|
+
this.DataOriginProjectId = 'DataOriginProjectId' in params ? params.DataOriginProjectId : null;
|
|
280
|
+
this.DataOriginDatasourceId = 'DataOriginDatasourceId' in params ? params.DataOriginDatasourceId : null;
|
|
281
|
+
this.ExtraParam = 'ExtraParam' in params ? params.ExtraParam : null;
|
|
282
|
+
this.UniqVpcId = 'UniqVpcId' in params ? params.UniqVpcId : null;
|
|
283
|
+
this.Vip = 'Vip' in params ? params.Vip : null;
|
|
284
|
+
this.Vport = 'Vport' in params ? params.Vport : null;
|
|
285
|
+
this.VpcId = 'VpcId' in params ? params.VpcId : null;
|
|
286
|
+
this.OperationAuthLimit = 'OperationAuthLimit' in params ? params.OperationAuthLimit : null;
|
|
287
|
+
this.UseVPC = 'UseVPC' in params ? params.UseVPC : null;
|
|
288
|
+
this.RegionId = 'RegionId' in params ? params.RegionId : null;
|
|
289
|
+
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
/**
|
|
294
|
+
* CreateDatasource response structure.
|
|
295
|
+
* @class
|
|
296
|
+
*/
|
|
297
|
+
class CreateDatasourceResponse extends AbstractModel {
|
|
298
|
+
constructor(){
|
|
299
|
+
super();
|
|
300
|
+
|
|
301
|
+
/**
|
|
302
|
+
* Custom error information object.
|
|
303
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
304
|
+
* @type {ErrorInfo || null}
|
|
305
|
+
*/
|
|
306
|
+
this.ErrorInfo = null;
|
|
307
|
+
|
|
308
|
+
/**
|
|
309
|
+
* Data source ID.
|
|
310
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
311
|
+
* @type {IdDTO || null}
|
|
312
|
+
*/
|
|
313
|
+
this.Data = null;
|
|
314
|
+
|
|
315
|
+
/**
|
|
316
|
+
* Additional information.
|
|
317
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
318
|
+
* @type {string || null}
|
|
319
|
+
*/
|
|
320
|
+
this.Extra = null;
|
|
321
|
+
|
|
322
|
+
/**
|
|
323
|
+
* Prompt.
|
|
324
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
325
|
+
* @type {string || null}
|
|
326
|
+
*/
|
|
327
|
+
this.Msg = null;
|
|
328
|
+
|
|
329
|
+
/**
|
|
330
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
331
|
+
* @type {string || null}
|
|
332
|
+
*/
|
|
333
|
+
this.RequestId = null;
|
|
334
|
+
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
/**
|
|
338
|
+
* @private
|
|
339
|
+
*/
|
|
340
|
+
deserialize(params) {
|
|
341
|
+
if (!params) {
|
|
342
|
+
return;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
if (params.ErrorInfo) {
|
|
346
|
+
let obj = new ErrorInfo();
|
|
347
|
+
obj.deserialize(params.ErrorInfo)
|
|
348
|
+
this.ErrorInfo = obj;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
if (params.Data) {
|
|
352
|
+
let obj = new IdDTO();
|
|
353
|
+
obj.deserialize(params.Data)
|
|
354
|
+
this.Data = obj;
|
|
355
|
+
}
|
|
356
|
+
this.Extra = 'Extra' in params ? params.Extra : null;
|
|
357
|
+
this.Msg = 'Msg' in params ? params.Msg : null;
|
|
358
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
359
|
+
|
|
360
|
+
}
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
/**
|
|
364
|
+
* ApplyEmbedInterval request structure.
|
|
365
|
+
* @class
|
|
366
|
+
*/
|
|
367
|
+
class ApplyEmbedIntervalRequest extends AbstractModel {
|
|
368
|
+
constructor(){
|
|
369
|
+
super();
|
|
370
|
+
|
|
371
|
+
/**
|
|
372
|
+
* Shares the project ID. Required.
|
|
373
|
+
* @type {number || null}
|
|
374
|
+
*/
|
|
375
|
+
this.ProjectId = null;
|
|
376
|
+
|
|
377
|
+
/**
|
|
378
|
+
* Shares the page ID. This field is empty (0) for embedding a dashboard and is not passed for embedding ChatBI.
|
|
379
|
+
|
|
380
|
+
* @type {number || null}
|
|
381
|
+
*/
|
|
382
|
+
this.PageId = null;
|
|
383
|
+
|
|
384
|
+
/**
|
|
385
|
+
* Token requiring extension.
|
|
386
|
+
* @type {string || null}
|
|
387
|
+
*/
|
|
388
|
+
this.BIToken = null;
|
|
389
|
+
|
|
390
|
+
/**
|
|
391
|
+
* Alternate field.
|
|
392
|
+
* @type {string || null}
|
|
393
|
+
*/
|
|
394
|
+
this.ExtraParam = null;
|
|
395
|
+
|
|
396
|
+
/**
|
|
397
|
+
* embed: page/dashboard embedding.
|
|
398
|
+
chatBIEmbed: ChatBI embedding.
|
|
399
|
+
* @type {string || null}
|
|
400
|
+
*/
|
|
401
|
+
this.Intention = null;
|
|
402
|
+
|
|
403
|
+
/**
|
|
404
|
+
* panel: dashboard; page: page.
|
|
405
|
+
project, during ChatBI embedding.
|
|
406
|
+
* @type {string || null}
|
|
407
|
+
*/
|
|
408
|
+
this.Scope = null;
|
|
409
|
+
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
/**
|
|
413
|
+
* @private
|
|
414
|
+
*/
|
|
415
|
+
deserialize(params) {
|
|
416
|
+
if (!params) {
|
|
417
|
+
return;
|
|
418
|
+
}
|
|
419
|
+
this.ProjectId = 'ProjectId' in params ? params.ProjectId : null;
|
|
420
|
+
this.PageId = 'PageId' in params ? params.PageId : null;
|
|
421
|
+
this.BIToken = 'BIToken' in params ? params.BIToken : null;
|
|
422
|
+
this.ExtraParam = 'ExtraParam' in params ? params.ExtraParam : null;
|
|
423
|
+
this.Intention = 'Intention' in params ? params.Intention : null;
|
|
424
|
+
this.Scope = 'Scope' in params ? params.Scope : null;
|
|
425
|
+
|
|
426
|
+
}
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
/**
|
|
430
|
+
* Object containing only ID
|
|
431
|
+
* @class
|
|
432
|
+
*/
|
|
433
|
+
class IdDTO extends AbstractModel {
|
|
434
|
+
constructor(){
|
|
435
|
+
super();
|
|
436
|
+
|
|
437
|
+
/**
|
|
438
|
+
* Request ID.
|
|
439
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
440
|
+
* @type {number || null}
|
|
441
|
+
*/
|
|
442
|
+
this.Id = null;
|
|
443
|
+
|
|
444
|
+
/**
|
|
445
|
+
* key
|
|
446
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
447
|
+
* @type {string || null}
|
|
448
|
+
*/
|
|
449
|
+
this.AccessKey = null;
|
|
450
|
+
|
|
451
|
+
/**
|
|
452
|
+
* id
|
|
453
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
454
|
+
* @type {number || null}
|
|
455
|
+
*/
|
|
456
|
+
this.ProjectId = null;
|
|
457
|
+
|
|
458
|
+
/**
|
|
459
|
+
* Transaction ID.
|
|
460
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
461
|
+
* @type {string || null}
|
|
462
|
+
*/
|
|
463
|
+
this.TranId = null;
|
|
464
|
+
|
|
465
|
+
/**
|
|
466
|
+
* Transaction status.
|
|
467
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
468
|
+
* @type {number || null}
|
|
469
|
+
*/
|
|
470
|
+
this.TranStatus = null;
|
|
471
|
+
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
/**
|
|
475
|
+
* @private
|
|
476
|
+
*/
|
|
477
|
+
deserialize(params) {
|
|
478
|
+
if (!params) {
|
|
479
|
+
return;
|
|
480
|
+
}
|
|
481
|
+
this.Id = 'Id' in params ? params.Id : null;
|
|
482
|
+
this.AccessKey = 'AccessKey' in params ? params.AccessKey : null;
|
|
483
|
+
this.ProjectId = 'ProjectId' in params ? params.ProjectId : null;
|
|
484
|
+
this.TranId = 'TranId' in params ? params.TranId : null;
|
|
485
|
+
this.TranStatus = 'TranStatus' in params ? params.TranStatus : null;
|
|
486
|
+
|
|
487
|
+
}
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
/**
|
|
491
|
+
* Custom error information object
|
|
492
|
+
* @class
|
|
493
|
+
*/
|
|
494
|
+
class ErrorInfo extends AbstractModel {
|
|
495
|
+
constructor(){
|
|
496
|
+
super();
|
|
497
|
+
|
|
498
|
+
/**
|
|
499
|
+
* Error description field.
|
|
500
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
501
|
+
* @type {string || null}
|
|
502
|
+
*/
|
|
503
|
+
this.ErrorTip = null;
|
|
504
|
+
|
|
505
|
+
/**
|
|
506
|
+
* Original exception message.
|
|
507
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
508
|
+
* @type {string || null}
|
|
509
|
+
*/
|
|
510
|
+
this.ErrorMessage = null;
|
|
511
|
+
|
|
512
|
+
/**
|
|
513
|
+
* Error level field.
|
|
514
|
+
ERROR
|
|
515
|
+
WARN
|
|
516
|
+
INFO
|
|
517
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
518
|
+
* @type {string || null}
|
|
519
|
+
*/
|
|
520
|
+
this.ErrorLevel = null;
|
|
521
|
+
|
|
522
|
+
/**
|
|
523
|
+
* Documentation link.
|
|
524
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
525
|
+
* @type {string || null}
|
|
526
|
+
*/
|
|
527
|
+
this.DocLink = null;
|
|
528
|
+
|
|
529
|
+
/**
|
|
530
|
+
* Quick start guide.
|
|
531
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
532
|
+
* @type {string || null}
|
|
533
|
+
*/
|
|
534
|
+
this.FAQ = null;
|
|
535
|
+
|
|
536
|
+
/**
|
|
537
|
+
* Reserved field 1.
|
|
538
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
539
|
+
* @type {string || null}
|
|
540
|
+
*/
|
|
541
|
+
this.ReservedField = null;
|
|
542
|
+
|
|
543
|
+
}
|
|
544
|
+
|
|
545
|
+
/**
|
|
546
|
+
* @private
|
|
547
|
+
*/
|
|
548
|
+
deserialize(params) {
|
|
549
|
+
if (!params) {
|
|
550
|
+
return;
|
|
551
|
+
}
|
|
552
|
+
this.ErrorTip = 'ErrorTip' in params ? params.ErrorTip : null;
|
|
553
|
+
this.ErrorMessage = 'ErrorMessage' in params ? params.ErrorMessage : null;
|
|
554
|
+
this.ErrorLevel = 'ErrorLevel' in params ? params.ErrorLevel : null;
|
|
555
|
+
this.DocLink = 'DocLink' in params ? params.DocLink : null;
|
|
556
|
+
this.FAQ = 'FAQ' in params ? params.FAQ : null;
|
|
557
|
+
this.ReservedField = 'ReservedField' in params ? params.ReservedField : null;
|
|
558
|
+
|
|
559
|
+
}
|
|
560
|
+
}
|
|
561
|
+
|
|
562
|
+
module.exports = {
|
|
563
|
+
ApplyEmbedTokenInfo: ApplyEmbedTokenInfo,
|
|
564
|
+
ApplyEmbedIntervalResponse: ApplyEmbedIntervalResponse,
|
|
565
|
+
CreateDatasourceRequest: CreateDatasourceRequest,
|
|
566
|
+
CreateDatasourceResponse: CreateDatasourceResponse,
|
|
567
|
+
ApplyEmbedIntervalRequest: ApplyEmbedIntervalRequest,
|
|
568
|
+
IdDTO: IdDTO,
|
|
569
|
+
ErrorInfo: ErrorInfo,
|
|
570
|
+
|
|
571
|
+
}
|
|
@@ -3012,6 +3012,18 @@ class DescribeTaskListRequest extends AbstractModel {
|
|
|
3012
3012
|
*/
|
|
3013
3013
|
this.TaskStatusList = null;
|
|
3014
3014
|
|
|
3015
|
+
/**
|
|
3016
|
+
*
|
|
3017
|
+
* @type {string || null}
|
|
3018
|
+
*/
|
|
3019
|
+
this.ArchId = null;
|
|
3020
|
+
|
|
3021
|
+
/**
|
|
3022
|
+
*
|
|
3023
|
+
* @type {string || null}
|
|
3024
|
+
*/
|
|
3025
|
+
this.ArchName = null;
|
|
3026
|
+
|
|
3015
3027
|
}
|
|
3016
3028
|
|
|
3017
3029
|
/**
|
|
@@ -3051,6 +3063,8 @@ class DescribeTaskListRequest extends AbstractModel {
|
|
|
3051
3063
|
this.ApplicationId = 'ApplicationId' in params ? params.ApplicationId : null;
|
|
3052
3064
|
this.ApplicationName = 'ApplicationName' in params ? params.ApplicationName : null;
|
|
3053
3065
|
this.TaskStatusList = 'TaskStatusList' in params ? params.TaskStatusList : null;
|
|
3066
|
+
this.ArchId = 'ArchId' in params ? params.ArchId : null;
|
|
3067
|
+
this.ArchName = 'ArchName' in params ? params.ArchName : null;
|
|
3054
3068
|
|
|
3055
3069
|
}
|
|
3056
3070
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.1230";
|
|
2
2
|
module.exports = sdkVersion
|