@alicloud/dataworks-public20200518 5.3.0 → 5.4.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 CHANGED
@@ -3733,6 +3733,63 @@ export declare class DesensitizeDataResponse extends $tea.Model {
3733
3733
  [key: string]: any;
3734
3734
  });
3735
3735
  }
3736
+ export declare class DsgDesensPlanAddOrUpdateRequest extends $tea.Model {
3737
+ desensRules?: DsgDesensPlanAddOrUpdateRequestDesensRules[];
3738
+ static names(): {
3739
+ [key: string]: string;
3740
+ };
3741
+ static types(): {
3742
+ [key: string]: any;
3743
+ };
3744
+ constructor(map?: {
3745
+ [key: string]: any;
3746
+ });
3747
+ }
3748
+ export declare class DsgDesensPlanAddOrUpdateShrinkRequest extends $tea.Model {
3749
+ desensRulesShrink?: string;
3750
+ static names(): {
3751
+ [key: string]: string;
3752
+ };
3753
+ static types(): {
3754
+ [key: string]: any;
3755
+ };
3756
+ constructor(map?: {
3757
+ [key: string]: any;
3758
+ });
3759
+ }
3760
+ export declare class DsgDesensPlanAddOrUpdateResponseBody extends $tea.Model {
3761
+ data?: boolean;
3762
+ errorCode?: string;
3763
+ errorMessage?: string;
3764
+ httpStatusCode?: number;
3765
+ requestId?: string;
3766
+ success?: boolean;
3767
+ static names(): {
3768
+ [key: string]: string;
3769
+ };
3770
+ static types(): {
3771
+ [key: string]: any;
3772
+ };
3773
+ constructor(map?: {
3774
+ [key: string]: any;
3775
+ });
3776
+ }
3777
+ export declare class DsgDesensPlanAddOrUpdateResponse extends $tea.Model {
3778
+ headers?: {
3779
+ [key: string]: string;
3780
+ };
3781
+ statusCode?: number;
3782
+ body?: DsgDesensPlanAddOrUpdateResponseBody;
3783
+ static names(): {
3784
+ [key: string]: string;
3785
+ };
3786
+ static types(): {
3787
+ [key: string]: any;
3788
+ };
3789
+ constructor(map?: {
3790
+ [key: string]: any;
3791
+ });
3792
+ }
3736
3793
  export declare class DsgDesensPlanDeleteRequest extends $tea.Model {
3737
3794
  ids?: number[];
3738
3795
  sceneCode?: string;
@@ -4170,6 +4227,108 @@ export declare class DsgSceneAddOrUpdateSceneResponse extends $tea.Model {
4170
4227
  [key: string]: any;
4171
4228
  });
4172
4229
  }
4230
+ export declare class DsgSceneQuerySceneListByNameRequest extends $tea.Model {
4231
+ sceneName?: string;
4232
+ static names(): {
4233
+ [key: string]: string;
4234
+ };
4235
+ static types(): {
4236
+ [key: string]: any;
4237
+ };
4238
+ constructor(map?: {
4239
+ [key: string]: any;
4240
+ });
4241
+ }
4242
+ export declare class DsgSceneQuerySceneListByNameResponseBody extends $tea.Model {
4243
+ data?: DsgSceneQuerySceneListByNameResponseBodyData[];
4244
+ errorCode?: string;
4245
+ errorMessage?: string;
4246
+ httpStatusCode?: number;
4247
+ requestId?: string;
4248
+ success?: boolean;
4249
+ static names(): {
4250
+ [key: string]: string;
4251
+ };
4252
+ static types(): {
4253
+ [key: string]: any;
4254
+ };
4255
+ constructor(map?: {
4256
+ [key: string]: any;
4257
+ });
4258
+ }
4259
+ export declare class DsgSceneQuerySceneListByNameResponse extends $tea.Model {
4260
+ headers?: {
4261
+ [key: string]: string;
4262
+ };
4263
+ statusCode?: number;
4264
+ body?: DsgSceneQuerySceneListByNameResponseBody;
4265
+ static names(): {
4266
+ [key: string]: string;
4267
+ };
4268
+ static types(): {
4269
+ [key: string]: any;
4270
+ };
4271
+ constructor(map?: {
4272
+ [key: string]: any;
4273
+ });
4274
+ }
4275
+ export declare class DsgScenedDeleteSceneRequest extends $tea.Model {
4276
+ ids?: number[];
4277
+ static names(): {
4278
+ [key: string]: string;
4279
+ };
4280
+ static types(): {
4281
+ [key: string]: any;
4282
+ };
4283
+ constructor(map?: {
4284
+ [key: string]: any;
4285
+ });
4286
+ }
4287
+ export declare class DsgScenedDeleteSceneShrinkRequest extends $tea.Model {
4288
+ idsShrink?: string;
4289
+ static names(): {
4290
+ [key: string]: string;
4291
+ };
4292
+ static types(): {
4293
+ [key: string]: any;
4294
+ };
4295
+ constructor(map?: {
4296
+ [key: string]: any;
4297
+ });
4298
+ }
4299
+ export declare class DsgScenedDeleteSceneResponseBody extends $tea.Model {
4300
+ data?: boolean;
4301
+ errorCode?: string;
4302
+ errorMessage?: string;
4303
+ httpStatusCode?: number;
4304
+ requestId?: string;
4305
+ success?: boolean;
4306
+ static names(): {
4307
+ [key: string]: string;
4308
+ };
4309
+ static types(): {
4310
+ [key: string]: any;
4311
+ };
4312
+ constructor(map?: {
4313
+ [key: string]: any;
4314
+ });
4315
+ }
4316
+ export declare class DsgScenedDeleteSceneResponse extends $tea.Model {
4317
+ headers?: {
4318
+ [key: string]: string;
4319
+ };
4320
+ statusCode?: number;
4321
+ body?: DsgScenedDeleteSceneResponseBody;
4322
+ static names(): {
4323
+ [key: string]: string;
4324
+ };
4325
+ static types(): {
4326
+ [key: string]: any;
4327
+ };
4328
+ constructor(map?: {
4329
+ [key: string]: any;
4330
+ });
4331
+ }
4173
4332
  export declare class DsgStopSensIdentifyRequest extends $tea.Model {
4174
4333
  jobId?: number;
4175
4334
  tenantId?: string;
@@ -4457,6 +4616,120 @@ export declare class DsgUserGroupQueryUserListResponse extends $tea.Model {
4457
4616
  [key: string]: any;
4458
4617
  });
4459
4618
  }
4619
+ export declare class DsgWhiteListAddOrUpdateRequest extends $tea.Model {
4620
+ whiteLists?: DsgWhiteListAddOrUpdateRequestWhiteLists[];
4621
+ static names(): {
4622
+ [key: string]: string;
4623
+ };
4624
+ static types(): {
4625
+ [key: string]: any;
4626
+ };
4627
+ constructor(map?: {
4628
+ [key: string]: any;
4629
+ });
4630
+ }
4631
+ export declare class DsgWhiteListAddOrUpdateShrinkRequest extends $tea.Model {
4632
+ whiteListsShrink?: string;
4633
+ static names(): {
4634
+ [key: string]: string;
4635
+ };
4636
+ static types(): {
4637
+ [key: string]: any;
4638
+ };
4639
+ constructor(map?: {
4640
+ [key: string]: any;
4641
+ });
4642
+ }
4643
+ export declare class DsgWhiteListAddOrUpdateResponseBody extends $tea.Model {
4644
+ data?: boolean;
4645
+ errorCode?: string;
4646
+ errorMessage?: string;
4647
+ httpStatusCode?: number;
4648
+ requestId?: string;
4649
+ success?: boolean;
4650
+ static names(): {
4651
+ [key: string]: string;
4652
+ };
4653
+ static types(): {
4654
+ [key: string]: any;
4655
+ };
4656
+ constructor(map?: {
4657
+ [key: string]: any;
4658
+ });
4659
+ }
4660
+ export declare class DsgWhiteListAddOrUpdateResponse extends $tea.Model {
4661
+ headers?: {
4662
+ [key: string]: string;
4663
+ };
4664
+ statusCode?: number;
4665
+ body?: DsgWhiteListAddOrUpdateResponseBody;
4666
+ static names(): {
4667
+ [key: string]: string;
4668
+ };
4669
+ static types(): {
4670
+ [key: string]: any;
4671
+ };
4672
+ constructor(map?: {
4673
+ [key: string]: any;
4674
+ });
4675
+ }
4676
+ export declare class DsgWhiteListDeleteListRequest extends $tea.Model {
4677
+ ids?: number[];
4678
+ static names(): {
4679
+ [key: string]: string;
4680
+ };
4681
+ static types(): {
4682
+ [key: string]: any;
4683
+ };
4684
+ constructor(map?: {
4685
+ [key: string]: any;
4686
+ });
4687
+ }
4688
+ export declare class DsgWhiteListDeleteListShrinkRequest extends $tea.Model {
4689
+ idsShrink?: string;
4690
+ static names(): {
4691
+ [key: string]: string;
4692
+ };
4693
+ static types(): {
4694
+ [key: string]: any;
4695
+ };
4696
+ constructor(map?: {
4697
+ [key: string]: any;
4698
+ });
4699
+ }
4700
+ export declare class DsgWhiteListDeleteListResponseBody extends $tea.Model {
4701
+ data?: boolean;
4702
+ errorCode?: string;
4703
+ errorMessage?: string;
4704
+ httpStatusCode?: number;
4705
+ requestId?: string;
4706
+ success?: boolean;
4707
+ static names(): {
4708
+ [key: string]: string;
4709
+ };
4710
+ static types(): {
4711
+ [key: string]: any;
4712
+ };
4713
+ constructor(map?: {
4714
+ [key: string]: any;
4715
+ });
4716
+ }
4717
+ export declare class DsgWhiteListDeleteListResponse extends $tea.Model {
4718
+ headers?: {
4719
+ [key: string]: string;
4720
+ };
4721
+ statusCode?: number;
4722
+ body?: DsgWhiteListDeleteListResponseBody;
4723
+ static names(): {
4724
+ [key: string]: string;
4725
+ };
4726
+ static types(): {
4727
+ [key: string]: any;
4728
+ };
4729
+ constructor(map?: {
4730
+ [key: string]: any;
4731
+ });
4732
+ }
4460
4733
  export declare class DsgWhiteListQueryListRequest extends $tea.Model {
4461
4734
  dataType?: string;
4462
4735
  pageNumber?: number;
@@ -15080,6 +15353,40 @@ export declare class DeployDISyncTaskResponseBodyData extends $tea.Model {
15080
15353
  [key: string]: any;
15081
15354
  });
15082
15355
  }
15356
+ export declare class DsgDesensPlanAddOrUpdateRequestDesensRulesDesensPlan extends $tea.Model {
15357
+ desensPlanType?: string;
15358
+ extParam?: {
15359
+ [key: string]: any;
15360
+ };
15361
+ static names(): {
15362
+ [key: string]: string;
15363
+ };
15364
+ static types(): {
15365
+ [key: string]: any;
15366
+ };
15367
+ constructor(map?: {
15368
+ [key: string]: any;
15369
+ });
15370
+ }
15371
+ export declare class DsgDesensPlanAddOrUpdateRequestDesensRules extends $tea.Model {
15372
+ checkWatermark?: boolean;
15373
+ dataType?: string;
15374
+ desensPlan?: DsgDesensPlanAddOrUpdateRequestDesensRulesDesensPlan;
15375
+ id?: number;
15376
+ owner?: string;
15377
+ ruleName?: string;
15378
+ sceneIds?: number[];
15379
+ status?: number;
15380
+ static names(): {
15381
+ [key: string]: string;
15382
+ };
15383
+ static types(): {
15384
+ [key: string]: any;
15385
+ };
15386
+ constructor(map?: {
15387
+ [key: string]: any;
15388
+ });
15389
+ }
15083
15390
  export declare class DsgDesensPlanQueryListResponseBodyPageDataDataDesensPlan extends $tea.Model {
15084
15391
  desensPlanType?: string;
15085
15392
  extParam?: {
@@ -15213,6 +15520,39 @@ export declare class DsgSceneAddOrUpdateSceneRequestScenes extends $tea.Model {
15213
15520
  [key: string]: any;
15214
15521
  });
15215
15522
  }
15523
+ export declare class DsgSceneQuerySceneListByNameResponseBodyDataProjects extends $tea.Model {
15524
+ clusterId?: string;
15525
+ dbType?: string;
15526
+ projectName?: string;
15527
+ static names(): {
15528
+ [key: string]: string;
15529
+ };
15530
+ static types(): {
15531
+ [key: string]: any;
15532
+ };
15533
+ constructor(map?: {
15534
+ [key: string]: any;
15535
+ });
15536
+ }
15537
+ export declare class DsgSceneQuerySceneListByNameResponseBodyData extends $tea.Model {
15538
+ children?: any[];
15539
+ desc?: string;
15540
+ id?: number;
15541
+ projects?: DsgSceneQuerySceneListByNameResponseBodyDataProjects[];
15542
+ sceneCode?: string;
15543
+ sceneLevel?: number;
15544
+ sceneName?: string;
15545
+ userGroups?: string;
15546
+ static names(): {
15547
+ [key: string]: string;
15548
+ };
15549
+ static types(): {
15550
+ [key: string]: any;
15551
+ };
15552
+ constructor(map?: {
15553
+ [key: string]: any;
15554
+ });
15555
+ }
15216
15556
  export declare class DsgUserGroupAddOrUpdateRequestUserGroups extends $tea.Model {
15217
15557
  accounts?: string[];
15218
15558
  id?: number;
@@ -15278,6 +15618,22 @@ export declare class DsgUserGroupQueryUserListResponseBodyData extends $tea.Mode
15278
15618
  [key: string]: any;
15279
15619
  });
15280
15620
  }
15621
+ export declare class DsgWhiteListAddOrUpdateRequestWhiteLists extends $tea.Model {
15622
+ endTime?: string;
15623
+ id?: number;
15624
+ ruleId?: number;
15625
+ startTime?: string;
15626
+ userGroupIds?: number[];
15627
+ static names(): {
15628
+ [key: string]: string;
15629
+ };
15630
+ static types(): {
15631
+ [key: string]: any;
15632
+ };
15633
+ constructor(map?: {
15634
+ [key: string]: any;
15635
+ });
15636
+ }
15281
15637
  export declare class DsgWhiteListQueryListResponseBodyPageDataData extends $tea.Model {
15282
15638
  endTime?: string;
15283
15639
  gmtCreate?: string;
@@ -17822,11 +18178,16 @@ export declare class GetNodeResponseBodyData extends $tea.Model {
17822
18178
  baselineId?: number;
17823
18179
  businessId?: number;
17824
18180
  connection?: string;
18181
+ createTime?: number;
17825
18182
  cronExpress?: string;
18183
+ deployDate?: number;
17826
18184
  description?: string;
17827
18185
  dqcDescription?: string;
17828
18186
  dqcType?: number;
18187
+ fileId?: number;
17829
18188
  fileType?: number;
18189
+ fileVersion?: number;
18190
+ modifyTime?: number;
17830
18191
  nodeId?: number;
17831
18192
  nodeName?: string;
17832
18193
  ownerId?: string;
@@ -17861,6 +18222,7 @@ export declare class GetNodeChildrenResponseBodyDataNodes extends $tea.Model {
17861
18222
  projectId?: number;
17862
18223
  repeatability?: boolean;
17863
18224
  schedulerType?: string;
18225
+ stepType?: string;
17864
18226
  static names(): {
17865
18227
  [key: string]: string;
17866
18228
  };
@@ -17909,6 +18271,7 @@ export declare class GetNodeParentsResponseBodyDataNodes extends $tea.Model {
17909
18271
  projectId?: number;
17910
18272
  repeatability?: boolean;
17911
18273
  schedulerType?: string;
18274
+ stepType?: string;
17912
18275
  static names(): {
17913
18276
  [key: string]: string;
17914
18277
  };
@@ -20327,11 +20690,16 @@ export declare class ListNodesResponseBodyDataNodes extends $tea.Model {
20327
20690
  baselineId?: number;
20328
20691
  businessId?: number;
20329
20692
  connection?: string;
20693
+ createTime?: number;
20330
20694
  cronExpress?: string;
20695
+ deployDate?: number;
20331
20696
  description?: string;
20332
20697
  dqcDescription?: string;
20333
20698
  dqcType?: number;
20699
+ fileId?: number;
20334
20700
  fileType?: number;
20701
+ fileVersion?: number;
20702
+ modifyTime?: number;
20335
20703
  nodeId?: number;
20336
20704
  nodeName?: string;
20337
20705
  ownerId?: string;
@@ -21885,7 +22253,7 @@ export default class Client extends OpenApi {
21885
22253
  */
21886
22254
  abolishDataServiceApi(request: AbolishDataServiceApiRequest): Promise<AbolishDataServiceApiResponse>;
21887
22255
  /**
21888
- * @summary The operation that you want to perform. Set the value to **AddMetaCollectionEntity**.
22256
+ * @summary Adds an entity to a collection.
21889
22257
  *
21890
22258
  * @param request AddMetaCollectionEntityRequest
21891
22259
  * @param runtime runtime options for this request RuntimeOptions
@@ -21893,7 +22261,7 @@ export default class Client extends OpenApi {
21893
22261
  */
21894
22262
  addMetaCollectionEntityWithOptions(request: AddMetaCollectionEntityRequest, runtime: $Util.RuntimeOptions): Promise<AddMetaCollectionEntityResponse>;
21895
22263
  /**
21896
- * @summary The operation that you want to perform. Set the value to **AddMetaCollectionEntity**.
22264
+ * @summary Adds an entity to a collection.
21897
22265
  *
21898
22266
  * @param request AddMetaCollectionEntityRequest
21899
22267
  * @return AddMetaCollectionEntityResponse
@@ -22106,7 +22474,7 @@ export default class Client extends OpenApi {
22106
22474
  */
22107
22475
  createDIJob(request: CreateDIJobRequest): Promise<CreateDIJobResponse>;
22108
22476
  /**
22109
- * @description DataWorks allows you to use only the CreateDISyncTask operation to create a batch synchronization node in Data Integration. To create a real-time synchronization node or a synchronization solution, you must first call the [GenerateDISyncTaskConfigForCreating](https://help.aliyun.com/document_detail/383463.html) operation to generate the ID of an asynchronous thread and call the [QueryDISyncTaskConfigProcessResult](https://help.aliyun.com/document_detail/383465.html) operation to obtain the asynchronously generated parameters based on the ID. Then, you can call the CreateDISyncTask operation and use the parameters as request parameters to create a real-time synchronization node or a synchronization solution in Data Integration.
22477
+ * @summary Creates a data synchronization task.
22110
22478
  *
22111
22479
  * @param request CreateDISyncTaskRequest
22112
22480
  * @param runtime runtime options for this request RuntimeOptions
@@ -22114,7 +22482,7 @@ export default class Client extends OpenApi {
22114
22482
  */
22115
22483
  createDISyncTaskWithOptions(request: CreateDISyncTaskRequest, runtime: $Util.RuntimeOptions): Promise<CreateDISyncTaskResponse>;
22116
22484
  /**
22117
- * @description DataWorks allows you to use only the CreateDISyncTask operation to create a batch synchronization node in Data Integration. To create a real-time synchronization node or a synchronization solution, you must first call the [GenerateDISyncTaskConfigForCreating](https://help.aliyun.com/document_detail/383463.html) operation to generate the ID of an asynchronous thread and call the [QueryDISyncTaskConfigProcessResult](https://help.aliyun.com/document_detail/383465.html) operation to obtain the asynchronously generated parameters based on the ID. Then, you can call the CreateDISyncTask operation and use the parameters as request parameters to create a real-time synchronization node or a synchronization solution in Data Integration.
22485
+ * @summary Creates a data synchronization task.
22118
22486
  *
22119
22487
  * @param request CreateDISyncTaskRequest
22120
22488
  * @return CreateDISyncTaskResponse
@@ -22500,12 +22868,16 @@ export default class Client extends OpenApi {
22500
22868
  */
22501
22869
  createTableLevel(request: CreateTableLevelRequest): Promise<CreateTableLevelResponse>;
22502
22870
  /**
22871
+ * @summary Creates a table folder. This API operation will be replaced soon. We recommend that you do not call this API operation.
22872
+ *
22503
22873
  * @param request CreateTableThemeRequest
22504
22874
  * @param runtime runtime options for this request RuntimeOptions
22505
22875
  * @return CreateTableThemeResponse
22506
22876
  */
22507
22877
  createTableThemeWithOptions(request: CreateTableThemeRequest, runtime: $Util.RuntimeOptions): Promise<CreateTableThemeResponse>;
22508
22878
  /**
22879
+ * @summary Creates a table folder. This API operation will be replaced soon. We recommend that you do not call this API operation.
22880
+ *
22509
22881
  * @param request CreateTableThemeRequest
22510
22882
  * @return CreateTableThemeResponse
22511
22883
  */
@@ -22908,6 +23280,21 @@ export default class Client extends OpenApi {
22908
23280
  * @return DesensitizeDataResponse
22909
23281
  */
22910
23282
  desensitizeData(request: DesensitizeDataRequest): Promise<DesensitizeDataResponse>;
23283
+ /**
23284
+ * @summary 新增或编辑脱敏规则
23285
+ *
23286
+ * @param tmpReq DsgDesensPlanAddOrUpdateRequest
23287
+ * @param runtime runtime options for this request RuntimeOptions
23288
+ * @return DsgDesensPlanAddOrUpdateResponse
23289
+ */
23290
+ dsgDesensPlanAddOrUpdateWithOptions(tmpReq: DsgDesensPlanAddOrUpdateRequest, runtime: $Util.RuntimeOptions): Promise<DsgDesensPlanAddOrUpdateResponse>;
23291
+ /**
23292
+ * @summary 新增或编辑脱敏规则
23293
+ *
23294
+ * @param request DsgDesensPlanAddOrUpdateRequest
23295
+ * @return DsgDesensPlanAddOrUpdateResponse
23296
+ */
23297
+ dsgDesensPlanAddOrUpdate(request: DsgDesensPlanAddOrUpdateRequest): Promise<DsgDesensPlanAddOrUpdateResponse>;
22911
23298
  /**
22912
23299
  * @summary 删除脱敏规则
22913
23300
  *
@@ -23024,6 +23411,36 @@ export default class Client extends OpenApi {
23024
23411
  * @return DsgSceneAddOrUpdateSceneResponse
23025
23412
  */
23026
23413
  dsgSceneAddOrUpdateScene(request: DsgSceneAddOrUpdateSceneRequest): Promise<DsgSceneAddOrUpdateSceneResponse>;
23414
+ /**
23415
+ * @summary 查询场景列表
23416
+ *
23417
+ * @param request DsgSceneQuerySceneListByNameRequest
23418
+ * @param runtime runtime options for this request RuntimeOptions
23419
+ * @return DsgSceneQuerySceneListByNameResponse
23420
+ */
23421
+ dsgSceneQuerySceneListByNameWithOptions(request: DsgSceneQuerySceneListByNameRequest, runtime: $Util.RuntimeOptions): Promise<DsgSceneQuerySceneListByNameResponse>;
23422
+ /**
23423
+ * @summary 查询场景列表
23424
+ *
23425
+ * @param request DsgSceneQuerySceneListByNameRequest
23426
+ * @return DsgSceneQuerySceneListByNameResponse
23427
+ */
23428
+ dsgSceneQuerySceneListByName(request: DsgSceneQuerySceneListByNameRequest): Promise<DsgSceneQuerySceneListByNameResponse>;
23429
+ /**
23430
+ * @summary 删除二级场景
23431
+ *
23432
+ * @param tmpReq DsgScenedDeleteSceneRequest
23433
+ * @param runtime runtime options for this request RuntimeOptions
23434
+ * @return DsgScenedDeleteSceneResponse
23435
+ */
23436
+ dsgScenedDeleteSceneWithOptions(tmpReq: DsgScenedDeleteSceneRequest, runtime: $Util.RuntimeOptions): Promise<DsgScenedDeleteSceneResponse>;
23437
+ /**
23438
+ * @summary 删除二级场景
23439
+ *
23440
+ * @param request DsgScenedDeleteSceneRequest
23441
+ * @return DsgScenedDeleteSceneResponse
23442
+ */
23443
+ dsgScenedDeleteScene(request: DsgScenedDeleteSceneRequest): Promise<DsgScenedDeleteSceneResponse>;
23027
23444
  /**
23028
23445
  * @summary 识别任务停止
23029
23446
  *
@@ -23109,6 +23526,36 @@ export default class Client extends OpenApi {
23109
23526
  * @return DsgUserGroupQueryUserListResponse
23110
23527
  */
23111
23528
  dsgUserGroupQueryUserList(): Promise<DsgUserGroupQueryUserListResponse>;
23529
+ /**
23530
+ * @summary 新增或编辑脱敏白名单
23531
+ *
23532
+ * @param tmpReq DsgWhiteListAddOrUpdateRequest
23533
+ * @param runtime runtime options for this request RuntimeOptions
23534
+ * @return DsgWhiteListAddOrUpdateResponse
23535
+ */
23536
+ dsgWhiteListAddOrUpdateWithOptions(tmpReq: DsgWhiteListAddOrUpdateRequest, runtime: $Util.RuntimeOptions): Promise<DsgWhiteListAddOrUpdateResponse>;
23537
+ /**
23538
+ * @summary 新增或编辑脱敏白名单
23539
+ *
23540
+ * @param request DsgWhiteListAddOrUpdateRequest
23541
+ * @return DsgWhiteListAddOrUpdateResponse
23542
+ */
23543
+ dsgWhiteListAddOrUpdate(request: DsgWhiteListAddOrUpdateRequest): Promise<DsgWhiteListAddOrUpdateResponse>;
23544
+ /**
23545
+ * @summary 删除脱敏白名单
23546
+ *
23547
+ * @param tmpReq DsgWhiteListDeleteListRequest
23548
+ * @param runtime runtime options for this request RuntimeOptions
23549
+ * @return DsgWhiteListDeleteListResponse
23550
+ */
23551
+ dsgWhiteListDeleteListWithOptions(tmpReq: DsgWhiteListDeleteListRequest, runtime: $Util.RuntimeOptions): Promise<DsgWhiteListDeleteListResponse>;
23552
+ /**
23553
+ * @summary 删除脱敏白名单
23554
+ *
23555
+ * @param request DsgWhiteListDeleteListRequest
23556
+ * @return DsgWhiteListDeleteListResponse
23557
+ */
23558
+ dsgWhiteListDeleteList(request: DsgWhiteListDeleteListRequest): Promise<DsgWhiteListDeleteListResponse>;
23112
23559
  /**
23113
23560
  * @summary 查询脱敏白名单
23114
23561
  *
@@ -23789,9 +24236,7 @@ export default class Client extends OpenApi {
23789
24236
  */
23790
24237
  getMetaDBTableList(request: GetMetaDBTableListRequest): Promise<GetMetaDBTableListResponse>;
23791
24238
  /**
23792
- * @summary The operation that you want to perform. Set the value to **GetMetaTableBasicInfo**.
23793
- *
23794
- * @description ****
24239
+ * @summary Queries the basic information about a metatable.
23795
24240
  *
23796
24241
  * @param request GetMetaTableBasicInfoRequest
23797
24242
  * @param runtime runtime options for this request RuntimeOptions
@@ -23799,9 +24244,7 @@ export default class Client extends OpenApi {
23799
24244
  */
23800
24245
  getMetaTableBasicInfoWithOptions(request: GetMetaTableBasicInfoRequest, runtime: $Util.RuntimeOptions): Promise<GetMetaTableBasicInfoResponse>;
23801
24246
  /**
23802
- * @summary The operation that you want to perform. Set the value to **GetMetaTableBasicInfo**.
23803
- *
23804
- * @description ****
24247
+ * @summary Queries the basic information about a metatable.
23805
24248
  *
23806
24249
  * @param request GetMetaTableBasicInfoRequest
23807
24250
  * @return GetMetaTableBasicInfoResponse
@@ -23883,12 +24326,16 @@ export default class Client extends OpenApi {
23883
24326
  */
23884
24327
  getMetaTableLineage(request: GetMetaTableLineageRequest): Promise<GetMetaTableLineageResponse>;
23885
24328
  /**
24329
+ * @summary Queries metatables in a specified category.
24330
+ *
23886
24331
  * @param request GetMetaTableListByCategoryRequest
23887
24332
  * @param runtime runtime options for this request RuntimeOptions
23888
24333
  * @return GetMetaTableListByCategoryResponse
23889
24334
  */
23890
24335
  getMetaTableListByCategoryWithOptions(request: GetMetaTableListByCategoryRequest, runtime: $Util.RuntimeOptions): Promise<GetMetaTableListByCategoryResponse>;
23891
24336
  /**
24337
+ * @summary Queries metatables in a specified category.
24338
+ *
23892
24339
  * @param request GetMetaTableListByCategoryRequest
23893
24340
  * @return GetMetaTableListByCategoryResponse
23894
24341
  */
@@ -23905,9 +24352,9 @@ export default class Client extends OpenApi {
23905
24352
  */
23906
24353
  getMetaTableOutput(request: GetMetaTableOutputRequest): Promise<GetMetaTableOutputResponse>;
23907
24354
  /**
23908
- * @summary For more information about the example on how to use the GetMetaTablePartition operation, see [Examples of DataWorks API operations](https://developer.aliyun.com/article/780879?groupCode=dataworks).
24355
+ * @summary Queries the partitions of a metatable.
23909
24356
  *
23910
- * @description The operation that you want to perform. Set the value to **GetMetaTablePartition**.
24357
+ * @description You can call this operation to query only the partitions of a metatable in a MaxCompute or E-MapReduce (EMR) compute engine instance.
23911
24358
  *
23912
24359
  * @param tmpReq GetMetaTablePartitionRequest
23913
24360
  * @param runtime runtime options for this request RuntimeOptions
@@ -23915,9 +24362,9 @@ export default class Client extends OpenApi {
23915
24362
  */
23916
24363
  getMetaTablePartitionWithOptions(tmpReq: GetMetaTablePartitionRequest, runtime: $Util.RuntimeOptions): Promise<GetMetaTablePartitionResponse>;
23917
24364
  /**
23918
- * @summary For more information about the example on how to use the GetMetaTablePartition operation, see [Examples of DataWorks API operations](https://developer.aliyun.com/article/780879?groupCode=dataworks).
24365
+ * @summary Queries the partitions of a metatable.
23919
24366
  *
23920
- * @description The operation that you want to perform. Set the value to **GetMetaTablePartition**.
24367
+ * @description You can call this operation to query only the partitions of a metatable in a MaxCompute or E-MapReduce (EMR) compute engine instance.
23921
24368
  *
23922
24369
  * @param request GetMetaTablePartitionRequest
23923
24370
  * @return GetMetaTablePartitionResponse
@@ -24036,12 +24483,16 @@ export default class Client extends OpenApi {
24036
24483
  */
24037
24484
  getNodeOnBaseline(request: GetNodeOnBaselineRequest): Promise<GetNodeOnBaselineResponse>;
24038
24485
  /**
24486
+ * @summary Queries the ancestor nodes of a node.
24487
+ *
24039
24488
  * @param request GetNodeParentsRequest
24040
24489
  * @param runtime runtime options for this request RuntimeOptions
24041
24490
  * @return GetNodeParentsResponse
24042
24491
  */
24043
24492
  getNodeParentsWithOptions(request: GetNodeParentsRequest, runtime: $Util.RuntimeOptions): Promise<GetNodeParentsResponse>;
24044
24493
  /**
24494
+ * @summary Queries the ancestor nodes of a node.
24495
+ *
24045
24496
  * @param request GetNodeParentsRequest
24046
24497
  * @return GetNodeParentsResponse
24047
24498
  */
@@ -24181,12 +24632,22 @@ export default class Client extends OpenApi {
24181
24632
  */
24182
24633
  getQualityRule(request: GetQualityRuleRequest): Promise<GetQualityRuleResponse>;
24183
24634
  /**
24635
+ * @summary Queries the details of a custom alert rule.
24636
+ *
24637
+ * @description ## Debugging
24638
+ * [OpenAPI Explorer automatically calculates the signature value. For your convenience, we recommend that you call this operation in OpenAPI Explorer. OpenAPI Explorer dynamically generates the sample code of the operation for different SDKs.](https://api.aliyun.com/#product=dataworks-public\\&api=GetRemind\\&type=RPC\\&version=2020-05-18)
24639
+ *
24184
24640
  * @param request GetRemindRequest
24185
24641
  * @param runtime runtime options for this request RuntimeOptions
24186
24642
  * @return GetRemindResponse
24187
24643
  */
24188
24644
  getRemindWithOptions(request: GetRemindRequest, runtime: $Util.RuntimeOptions): Promise<GetRemindResponse>;
24189
24645
  /**
24646
+ * @summary Queries the details of a custom alert rule.
24647
+ *
24648
+ * @description ## Debugging
24649
+ * [OpenAPI Explorer automatically calculates the signature value. For your convenience, we recommend that you call this operation in OpenAPI Explorer. OpenAPI Explorer dynamically generates the sample code of the operation for different SDKs.](https://api.aliyun.com/#product=dataworks-public\\&api=GetRemind\\&type=RPC\\&version=2020-05-18)
24650
+ *
24190
24651
  * @param request GetRemindRequest
24191
24652
  * @return GetRemindResponse
24192
24653
  */
@@ -24330,12 +24791,16 @@ export default class Client extends OpenApi {
24330
24791
  */
24331
24792
  listBusiness(request: ListBusinessRequest): Promise<ListBusinessResponse>;
24332
24793
  /**
24794
+ * @summary Queries compute engine instances.
24795
+ *
24333
24796
  * @param request ListCalcEnginesRequest
24334
24797
  * @param runtime runtime options for this request RuntimeOptions
24335
24798
  * @return ListCalcEnginesResponse
24336
24799
  */
24337
24800
  listCalcEnginesWithOptions(request: ListCalcEnginesRequest, runtime: $Util.RuntimeOptions): Promise<ListCalcEnginesResponse>;
24338
24801
  /**
24802
+ * @summary Queries compute engine instances.
24803
+ *
24339
24804
  * @param request ListCalcEnginesRequest
24340
24805
  * @return ListCalcEnginesResponse
24341
24806
  */
@@ -24778,7 +25243,7 @@ export default class Client extends OpenApi {
24778
25243
  */
24779
25244
  listManualDagInstances(request: ListManualDagInstancesRequest): Promise<ListManualDagInstancesResponse>;
24780
25245
  /**
24781
- * @summary The operation that you want to perform. Set the value to **ListMetaCollectionEntities**.
25246
+ * @summary Queries the entities in a collection.
24782
25247
  *
24783
25248
  * @param request ListMetaCollectionEntitiesRequest
24784
25249
  * @param runtime runtime options for this request RuntimeOptions
@@ -24786,16 +25251,16 @@ export default class Client extends OpenApi {
24786
25251
  */
24787
25252
  listMetaCollectionEntitiesWithOptions(request: ListMetaCollectionEntitiesRequest, runtime: $Util.RuntimeOptions): Promise<ListMetaCollectionEntitiesResponse>;
24788
25253
  /**
24789
- * @summary The operation that you want to perform. Set the value to **ListMetaCollectionEntities**.
25254
+ * @summary Queries the entities in a collection.
24790
25255
  *
24791
25256
  * @param request ListMetaCollectionEntitiesRequest
24792
25257
  * @return ListMetaCollectionEntitiesResponse
24793
25258
  */
24794
25259
  listMetaCollectionEntities(request: ListMetaCollectionEntitiesRequest): Promise<ListMetaCollectionEntitiesResponse>;
24795
25260
  /**
24796
- * @summary The type can be ALBUM or ALBUM_CATEGORY. ALBUM indicates data albums. ALBUM_CATEGORY indicates categories.
25261
+ * @summary Queries information about collections. Collections include data albums that are displayed on the DataMap page and categories that are created in the data albums. You can call this API operation to query collections by type.
24797
25262
  *
24798
- * @description You can configure only one of the Creator, Administrator, and Follower parameters.
25263
+ * @description The type can be ALBUM or ALBUM_CATEGORY. ALBUM indicates data albums. ALBUM_CATEGORY indicates categories.
24799
25264
  *
24800
25265
  * @param request ListMetaCollectionsRequest
24801
25266
  * @param runtime runtime options for this request RuntimeOptions
@@ -24803,9 +25268,9 @@ export default class Client extends OpenApi {
24803
25268
  */
24804
25269
  listMetaCollectionsWithOptions(request: ListMetaCollectionsRequest, runtime: $Util.RuntimeOptions): Promise<ListMetaCollectionsResponse>;
24805
25270
  /**
24806
- * @summary The type can be ALBUM or ALBUM_CATEGORY. ALBUM indicates data albums. ALBUM_CATEGORY indicates categories.
25271
+ * @summary Queries information about collections. Collections include data albums that are displayed on the DataMap page and categories that are created in the data albums. You can call this API operation to query collections by type.
24807
25272
  *
24808
- * @description You can configure only one of the Creator, Administrator, and Follower parameters.
25273
+ * @description The type can be ALBUM or ALBUM_CATEGORY. ALBUM indicates data albums. ALBUM_CATEGORY indicates categories.
24809
25274
  *
24810
25275
  * @param request ListMetaCollectionsRequest
24811
25276
  * @return ListMetaCollectionsResponse
@@ -24942,18 +25407,25 @@ export default class Client extends OpenApi {
24942
25407
  */
24943
25408
  listProjectIds(request: ListProjectIdsRequest): Promise<ListProjectIdsResponse>;
24944
25409
  /**
25410
+ * @summary Queries members in a DataWorks workspace.
25411
+ *
24945
25412
  * @param request ListProjectMembersRequest
24946
25413
  * @param runtime runtime options for this request RuntimeOptions
24947
25414
  * @return ListProjectMembersResponse
24948
25415
  */
24949
25416
  listProjectMembersWithOptions(request: ListProjectMembersRequest, runtime: $Util.RuntimeOptions): Promise<ListProjectMembersResponse>;
24950
25417
  /**
25418
+ * @summary Queries members in a DataWorks workspace.
25419
+ *
24951
25420
  * @param request ListProjectMembersRequest
24952
25421
  * @return ListProjectMembersResponse
24953
25422
  */
24954
25423
  listProjectMembers(request: ListProjectMembersRequest): Promise<ListProjectMembersResponse>;
24955
25424
  /**
24956
- * @summary Dataworks ID of the workspace.
25425
+ * @summary A topic is added to describe how to call the ListProjectRoles operation to query all roles in a workspace.
25426
+ *
25427
+ * @description ## Debugging
25428
+ * [OpenAPI Explorer automatically calculates the signature value. For your convenience, we recommend that you call this operation in OpenAPI Explorer. OpenAPI Explorer dynamically generates the sample code of the operation for different SDKs.](https://api.aliyun.com/#product=dataworks-public\\&api=ListProjectRoles\\&type=RPC\\&version=2020-05-18)
24957
25429
  *
24958
25430
  * @param request ListProjectRolesRequest
24959
25431
  * @param runtime runtime options for this request RuntimeOptions
@@ -24961,7 +25433,10 @@ export default class Client extends OpenApi {
24961
25433
  */
24962
25434
  listProjectRolesWithOptions(request: ListProjectRolesRequest, runtime: $Util.RuntimeOptions): Promise<ListProjectRolesResponse>;
24963
25435
  /**
24964
- * @summary Dataworks ID of the workspace.
25436
+ * @summary A topic is added to describe how to call the ListProjectRoles operation to query all roles in a workspace.
25437
+ *
25438
+ * @description ## Debugging
25439
+ * [OpenAPI Explorer automatically calculates the signature value. For your convenience, we recommend that you call this operation in OpenAPI Explorer. OpenAPI Explorer dynamically generates the sample code of the operation for different SDKs.](https://api.aliyun.com/#product=dataworks-public\\&api=ListProjectRoles\\&type=RPC\\&version=2020-05-18)
24965
25440
  *
24966
25441
  * @param request ListProjectRolesRequest
24967
25442
  * @return ListProjectRolesResponse
@@ -25106,23 +25581,31 @@ export default class Client extends OpenApi {
25106
25581
  */
25107
25582
  listSuccessInstanceAmount(request: ListSuccessInstanceAmountRequest): Promise<ListSuccessInstanceAmountResponse>;
25108
25583
  /**
25584
+ * @summary Queries table levels. This API operation will be replaced soon. We recommend that you do not call this API operation.
25585
+ *
25109
25586
  * @param request ListTableLevelRequest
25110
25587
  * @param runtime runtime options for this request RuntimeOptions
25111
25588
  * @return ListTableLevelResponse
25112
25589
  */
25113
25590
  listTableLevelWithOptions(request: ListTableLevelRequest, runtime: $Util.RuntimeOptions): Promise<ListTableLevelResponse>;
25114
25591
  /**
25592
+ * @summary Queries table levels. This API operation will be replaced soon. We recommend that you do not call this API operation.
25593
+ *
25115
25594
  * @param request ListTableLevelRequest
25116
25595
  * @return ListTableLevelResponse
25117
25596
  */
25118
25597
  listTableLevel(request: ListTableLevelRequest): Promise<ListTableLevelResponse>;
25119
25598
  /**
25599
+ * @summary Queries table folders. This API operation will be replaced soon. We recommend that you do not call this API operation.
25600
+ *
25120
25601
  * @param request ListTableThemeRequest
25121
25602
  * @param runtime runtime options for this request RuntimeOptions
25122
25603
  * @return ListTableThemeResponse
25123
25604
  */
25124
25605
  listTableThemeWithOptions(request: ListTableThemeRequest, runtime: $Util.RuntimeOptions): Promise<ListTableThemeResponse>;
25125
25606
  /**
25607
+ * @summary Queries table folders. This API operation will be replaced soon. We recommend that you do not call this API operation.
25608
+ *
25126
25609
  * @param request ListTableThemeRequest
25127
25610
  * @return ListTableThemeResponse
25128
25611
  */
@@ -25991,12 +26474,16 @@ export default class Client extends OpenApi {
25991
26474
  */
25992
26475
  updateMetaCollection(request: UpdateMetaCollectionRequest): Promise<UpdateMetaCollectionResponse>;
25993
26476
  /**
26477
+ * @summary Updates the metadata information about a table.
26478
+ *
25994
26479
  * @param request UpdateMetaTableRequest
25995
26480
  * @param runtime runtime options for this request RuntimeOptions
25996
26481
  * @return UpdateMetaTableResponse
25997
26482
  */
25998
26483
  updateMetaTableWithOptions(request: UpdateMetaTableRequest, runtime: $Util.RuntimeOptions): Promise<UpdateMetaTableResponse>;
25999
26484
  /**
26485
+ * @summary Updates the metadata information about a table.
26486
+ *
26000
26487
  * @param request UpdateMetaTableRequest
26001
26488
  * @return UpdateMetaTableResponse
26002
26489
  */