@alicloud/dataworks-public20200518 6.0.0 → 6.0.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/client.d.ts +61 -16
- package/dist/client.js +67 -30
- package/dist/client.js.map +1 -1
- package/package.json +3 -3
- package/src/client.ts +88 -18
package/dist/client.d.ts
CHANGED
|
@@ -138,16 +138,33 @@ export declare class Entity extends $tea.Model {
|
|
|
138
138
|
});
|
|
139
139
|
}
|
|
140
140
|
export declare class LineageEntityVO extends $tea.Model {
|
|
141
|
+
/**
|
|
142
|
+
* @example
|
|
143
|
+
* attribute map
|
|
144
|
+
*/
|
|
145
|
+
attributes?: {
|
|
146
|
+
[key: string]: string;
|
|
147
|
+
};
|
|
141
148
|
/**
|
|
142
149
|
* @example
|
|
143
150
|
* http://domain.test.url/entity
|
|
144
151
|
*/
|
|
145
152
|
detailUrl?: string;
|
|
153
|
+
/**
|
|
154
|
+
* @example
|
|
155
|
+
* maxcompute-table
|
|
156
|
+
*/
|
|
157
|
+
entityType?: string;
|
|
146
158
|
/**
|
|
147
159
|
* @example
|
|
148
160
|
* tableName
|
|
149
161
|
*/
|
|
150
162
|
name?: string;
|
|
163
|
+
/**
|
|
164
|
+
* @example
|
|
165
|
+
* owner
|
|
166
|
+
*/
|
|
167
|
+
owner?: string;
|
|
151
168
|
/**
|
|
152
169
|
* @example
|
|
153
170
|
* dbName
|
|
@@ -168,6 +185,25 @@ export declare class LineageEntityVO extends $tea.Model {
|
|
|
168
185
|
[key: string]: any;
|
|
169
186
|
});
|
|
170
187
|
}
|
|
188
|
+
export declare class LineageRelationRegisterBulkVO extends $tea.Model {
|
|
189
|
+
/**
|
|
190
|
+
* @example
|
|
191
|
+
* 1684327487964
|
|
192
|
+
*/
|
|
193
|
+
createTimestamp?: number;
|
|
194
|
+
destEntities?: LineageEntityVO[];
|
|
195
|
+
relationship?: RelationshipVO;
|
|
196
|
+
srcEntities?: LineageEntityVO[];
|
|
197
|
+
static names(): {
|
|
198
|
+
[key: string]: string;
|
|
199
|
+
};
|
|
200
|
+
static types(): {
|
|
201
|
+
[key: string]: any;
|
|
202
|
+
};
|
|
203
|
+
constructor(map?: {
|
|
204
|
+
[key: string]: any;
|
|
205
|
+
});
|
|
206
|
+
}
|
|
171
207
|
export declare class LineageRelationRegisterVO extends $tea.Model {
|
|
172
208
|
/**
|
|
173
209
|
* @example
|
|
@@ -188,11 +224,15 @@ export declare class LineageRelationRegisterVO extends $tea.Model {
|
|
|
188
224
|
});
|
|
189
225
|
}
|
|
190
226
|
export declare class RelationshipVO extends $tea.Model {
|
|
227
|
+
attributes?: {
|
|
228
|
+
[key: string]: string;
|
|
229
|
+
};
|
|
230
|
+
relationshipGuid?: string;
|
|
191
231
|
/**
|
|
192
232
|
* @example
|
|
193
233
|
* sql
|
|
194
234
|
*/
|
|
195
|
-
|
|
235
|
+
relationshipType?: string;
|
|
196
236
|
static names(): {
|
|
197
237
|
[key: string]: string;
|
|
198
238
|
};
|
|
@@ -8520,6 +8560,7 @@ export declare class DeleteLineageRelationRequest extends $tea.Model {
|
|
|
8520
8560
|
* dfazcdfdfccdedd
|
|
8521
8561
|
*/
|
|
8522
8562
|
relationshipGuid?: string;
|
|
8563
|
+
relationshipType?: string;
|
|
8523
8564
|
/**
|
|
8524
8565
|
* @remarks
|
|
8525
8566
|
* The unique identifier of the source entity.
|
|
@@ -14706,7 +14747,11 @@ export declare class GetDISyncTaskResponse extends $tea.Model {
|
|
|
14706
14747
|
export declare class GetDagRequest extends $tea.Model {
|
|
14707
14748
|
/**
|
|
14708
14749
|
* @remarks
|
|
14709
|
-
* The DAG
|
|
14750
|
+
* The ID of the DAG. You can use one of the following method to obtain the ID:
|
|
14751
|
+
*
|
|
14752
|
+
* * Call the [RunCycleDagNodes](https://help.aliyun.com/document_detail/2780209.html) operation and obtain the value of the **Data** response parameter.
|
|
14753
|
+
* * Call the [RunSmokeTest](https://help.aliyun.com/document_detail/2780210.html) operation and obtain the value of the **Data** response parameter.
|
|
14754
|
+
* * Call the [RunManualDagNodes](https://help.aliyun.com/document_detail/2780218.html) operation and obtain the value of the **DagId** response parameter.
|
|
14710
14755
|
*
|
|
14711
14756
|
* This parameter is required.
|
|
14712
14757
|
*
|
|
@@ -35213,7 +35258,7 @@ export declare class UpdateDataSourceRequest extends $tea.Model {
|
|
|
35213
35258
|
* @remarks
|
|
35214
35259
|
* The details about the data source. You are not allowed to change the type of the data source. For example, you are not allowed to change the data source type from MaxCompute to MySQL. Examples of details of some common data sources:
|
|
35215
35260
|
*
|
|
35216
|
-
* *
|
|
35261
|
+
* * odps
|
|
35217
35262
|
*
|
|
35218
35263
|
* {
|
|
35219
35264
|
* "accessId": "xssssss",
|
|
@@ -35224,7 +35269,7 @@ export declare class UpdateDataSourceRequest extends $tea.Model {
|
|
|
35224
35269
|
* "tag": "public"
|
|
35225
35270
|
* }
|
|
35226
35271
|
*
|
|
35227
|
-
* *
|
|
35272
|
+
* * mysql
|
|
35228
35273
|
*
|
|
35229
35274
|
* {
|
|
35230
35275
|
* "database": "xsaxsa",
|
|
@@ -35236,7 +35281,7 @@ export declare class UpdateDataSourceRequest extends $tea.Model {
|
|
|
35236
35281
|
* "username": "xsaxsa"
|
|
35237
35282
|
* }
|
|
35238
35283
|
*
|
|
35239
|
-
* *
|
|
35284
|
+
* * rds
|
|
35240
35285
|
*
|
|
35241
35286
|
* {
|
|
35242
35287
|
* "configType": 1,
|
|
@@ -35248,7 +35293,7 @@ export declare class UpdateDataSourceRequest extends $tea.Model {
|
|
|
35248
35293
|
* "rdsOwnerId": "11111111"
|
|
35249
35294
|
* }
|
|
35250
35295
|
*
|
|
35251
|
-
* *
|
|
35296
|
+
* * oss
|
|
35252
35297
|
*
|
|
35253
35298
|
* {
|
|
35254
35299
|
* "accessId": "sssssxx",
|
|
@@ -35258,7 +35303,7 @@ export declare class UpdateDataSourceRequest extends $tea.Model {
|
|
|
35258
35303
|
* "tag": "public"
|
|
35259
35304
|
* }
|
|
35260
35305
|
*
|
|
35261
|
-
* *
|
|
35306
|
+
* * sqlserver
|
|
35262
35307
|
*
|
|
35263
35308
|
* {
|
|
35264
35309
|
* "jdbcUrl": "jdbc:sqlserver://xsaxsa-xsaxsa.database.xxx.cn:123;DatabaseName=xsxs-xsxs",
|
|
@@ -35267,7 +35312,7 @@ export declare class UpdateDataSourceRequest extends $tea.Model {
|
|
|
35267
35312
|
* "username": "sxaxacdacdd"
|
|
35268
35313
|
* }
|
|
35269
35314
|
*
|
|
35270
|
-
* *
|
|
35315
|
+
* * polardb
|
|
35271
35316
|
*
|
|
35272
35317
|
* {
|
|
35273
35318
|
* "clusterId": "pc-sdadsadsa",
|
|
@@ -35279,7 +35324,7 @@ export declare class UpdateDataSourceRequest extends $tea.Model {
|
|
|
35279
35324
|
* "username": "asdadsads"
|
|
35280
35325
|
* }
|
|
35281
35326
|
*
|
|
35282
|
-
* *
|
|
35327
|
+
* * oracle
|
|
35283
35328
|
*
|
|
35284
35329
|
* {
|
|
35285
35330
|
* "jdbcUrl": "jdbc:oracle:saaa:@xxxxx:1521:PROD",
|
|
@@ -35288,7 +35333,7 @@ export declare class UpdateDataSourceRequest extends $tea.Model {
|
|
|
35288
35333
|
* "username": "sasfadfa"
|
|
35289
35334
|
* }
|
|
35290
35335
|
*
|
|
35291
|
-
* *
|
|
35336
|
+
* * mongodb
|
|
35292
35337
|
*
|
|
35293
35338
|
* {
|
|
35294
35339
|
* "address": "[\\"xsaxxsa.mongodb.rds.aliyuncs.com:3717\\"]",
|
|
@@ -35298,7 +35343,7 @@ export declare class UpdateDataSourceRequest extends $tea.Model {
|
|
|
35298
35343
|
* "username": "dsadsadas"
|
|
35299
35344
|
* }
|
|
35300
35345
|
*
|
|
35301
|
-
* *
|
|
35346
|
+
* * emr
|
|
35302
35347
|
*
|
|
35303
35348
|
* {
|
|
35304
35349
|
* "accessId": "xsaxsa",
|
|
@@ -35314,7 +35359,7 @@ export declare class UpdateDataSourceRequest extends $tea.Model {
|
|
|
35314
35359
|
* "emrProjectId": "FP-sdadsad"
|
|
35315
35360
|
* }
|
|
35316
35361
|
*
|
|
35317
|
-
* *
|
|
35362
|
+
* * postgresql
|
|
35318
35363
|
*
|
|
35319
35364
|
* {
|
|
35320
35365
|
* "jdbcUrl": "jdbc:postgresql://xxxx:1921/ssss",
|
|
@@ -35323,7 +35368,7 @@ export declare class UpdateDataSourceRequest extends $tea.Model {
|
|
|
35323
35368
|
* "username": "sdsasda"
|
|
35324
35369
|
* }
|
|
35325
35370
|
*
|
|
35326
|
-
* *
|
|
35371
|
+
* * analyticdb_for_mysql
|
|
35327
35372
|
*
|
|
35328
35373
|
* {
|
|
35329
35374
|
* "instanceId": "am-sadsada",
|
|
@@ -35333,7 +35378,7 @@ export declare class UpdateDataSourceRequest extends $tea.Model {
|
|
|
35333
35378
|
* "connectionString": "am-xssxsxs.ads.aliyuncs.com:3306"
|
|
35334
35379
|
* }
|
|
35335
35380
|
*
|
|
35336
|
-
* *
|
|
35381
|
+
* * hybriddb_for_postgresql
|
|
35337
35382
|
*
|
|
35338
35383
|
* {
|
|
35339
35384
|
* "connectionString": "gp-xsaxsaxa-master.gpdbmaster.rds.aliyuncs.com",
|
|
@@ -35345,7 +35390,7 @@ export declare class UpdateDataSourceRequest extends $tea.Model {
|
|
|
35345
35390
|
* "username": "sadsad"
|
|
35346
35391
|
* }
|
|
35347
35392
|
*
|
|
35348
|
-
* *
|
|
35393
|
+
* * holo
|
|
35349
35394
|
*
|
|
35350
35395
|
* {
|
|
35351
35396
|
* "accessId": "xsaxsaxs",
|
|
@@ -35355,7 +35400,7 @@ export declare class UpdateDataSourceRequest extends $tea.Model {
|
|
|
35355
35400
|
* "tag": "aliyun"
|
|
35356
35401
|
* }
|
|
35357
35402
|
*
|
|
35358
|
-
* *
|
|
35403
|
+
* * kafka
|
|
35359
35404
|
*
|
|
35360
35405
|
* {
|
|
35361
35406
|
* "instanceId": "xsax-cn-xsaxsa",
|