@alicloud/dms-enterprise20181101 1.35.0 → 1.35.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 +2998 -657
- package/dist/client.js +2991 -649
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +2993 -650
package/dist/client.d.ts
CHANGED
|
@@ -11407,6 +11407,7 @@ export declare class CreateDataArchiveOrderRequestParamVariables extends $tea.Mo
|
|
|
11407
11407
|
export declare class CreateDataArchiveOrderRequestParam extends $tea.Model {
|
|
11408
11408
|
archiveMethod?: string;
|
|
11409
11409
|
cronStr?: string;
|
|
11410
|
+
databaseId?: string;
|
|
11410
11411
|
logic?: boolean;
|
|
11411
11412
|
orderAfter?: string[];
|
|
11412
11413
|
runMethod?: string;
|
|
@@ -16471,1363 +16472,3703 @@ export default class Client extends OpenApi {
|
|
|
16471
16472
|
getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: {
|
|
16472
16473
|
[key: string]: string;
|
|
16473
16474
|
}, endpoint: string): string;
|
|
16475
|
+
/**
|
|
16476
|
+
* @summary Adds a masking rule.
|
|
16477
|
+
*
|
|
16478
|
+
* @param request AddDesensitizationRuleRequest
|
|
16479
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16480
|
+
* @return AddDesensitizationRuleResponse
|
|
16481
|
+
*/
|
|
16474
16482
|
addDesensitizationRuleWithOptions(request: AddDesensitizationRuleRequest, runtime: $Util.RuntimeOptions): Promise<AddDesensitizationRuleResponse>;
|
|
16483
|
+
/**
|
|
16484
|
+
* @summary Adds a masking rule.
|
|
16485
|
+
*
|
|
16486
|
+
* @param request AddDesensitizationRuleRequest
|
|
16487
|
+
* @return AddDesensitizationRuleResponse
|
|
16488
|
+
*/
|
|
16475
16489
|
addDesensitizationRule(request: AddDesensitizationRuleRequest): Promise<AddDesensitizationRuleResponse>;
|
|
16490
|
+
/**
|
|
16491
|
+
* @summary 添加实例
|
|
16492
|
+
*
|
|
16493
|
+
* @param request AddInstanceRequest
|
|
16494
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16495
|
+
* @return AddInstanceResponse
|
|
16496
|
+
*/
|
|
16476
16497
|
addInstanceWithOptions(request: AddInstanceRequest, runtime: $Util.RuntimeOptions): Promise<AddInstanceResponse>;
|
|
16498
|
+
/**
|
|
16499
|
+
* @summary 添加实例
|
|
16500
|
+
*
|
|
16501
|
+
* @param request AddInstanceRequest
|
|
16502
|
+
* @return AddInstanceResponse
|
|
16503
|
+
*/
|
|
16477
16504
|
addInstance(request: AddInstanceRequest): Promise<AddInstanceResponse>;
|
|
16478
16505
|
/**
|
|
16479
|
-
|
|
16480
|
-
|
|
16481
|
-
|
|
16482
|
-
|
|
16483
|
-
|
|
16484
|
-
|
|
16485
|
-
|
|
16486
|
-
|
|
16487
|
-
|
|
16506
|
+
* @summary Adds a workspace administrator, a workspace member, or a task flow developer in Data Management (DMS).
|
|
16507
|
+
*
|
|
16508
|
+
* @description You must call this operation as a DMS administrator, a database administrator (DBA), or a workspace administrator.
|
|
16509
|
+
* Usage notes:
|
|
16510
|
+
* * Before you call this operation to add a user as a task flow developer, make sure that you have added the user as a workspace member.
|
|
16511
|
+
* * You cannot call this operation to transfer the ownership of a task flow. To transfer the ownership of a task flow, call the [ChangLhDagOwner](https://help.aliyun.com/document_detail/424761.html) operation.
|
|
16512
|
+
* * For more information about workspace roles and permissions, see [Manage permissions on a workspace](https://help.aliyun.com/document_detail/410893.html).
|
|
16513
|
+
*
|
|
16514
|
+
* @param tmpReq AddLhMembersRequest
|
|
16515
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16516
|
+
* @return AddLhMembersResponse
|
|
16488
16517
|
*/
|
|
16489
16518
|
addLhMembersWithOptions(tmpReq: AddLhMembersRequest, runtime: $Util.RuntimeOptions): Promise<AddLhMembersResponse>;
|
|
16490
16519
|
/**
|
|
16491
|
-
|
|
16492
|
-
|
|
16493
|
-
|
|
16494
|
-
|
|
16495
|
-
|
|
16496
|
-
|
|
16497
|
-
|
|
16498
|
-
|
|
16520
|
+
* @summary Adds a workspace administrator, a workspace member, or a task flow developer in Data Management (DMS).
|
|
16521
|
+
*
|
|
16522
|
+
* @description You must call this operation as a DMS administrator, a database administrator (DBA), or a workspace administrator.
|
|
16523
|
+
* Usage notes:
|
|
16524
|
+
* * Before you call this operation to add a user as a task flow developer, make sure that you have added the user as a workspace member.
|
|
16525
|
+
* * You cannot call this operation to transfer the ownership of a task flow. To transfer the ownership of a task flow, call the [ChangLhDagOwner](https://help.aliyun.com/document_detail/424761.html) operation.
|
|
16526
|
+
* * For more information about workspace roles and permissions, see [Manage permissions on a workspace](https://help.aliyun.com/document_detail/410893.html).
|
|
16527
|
+
*
|
|
16528
|
+
* @param request AddLhMembersRequest
|
|
16529
|
+
* @return AddLhMembersResponse
|
|
16499
16530
|
*/
|
|
16500
16531
|
addLhMembers(request: AddLhMembersRequest): Promise<AddLhMembersResponse>;
|
|
16532
|
+
/**
|
|
16533
|
+
* @summary Adds a routing algorithm to a logical table.
|
|
16534
|
+
*
|
|
16535
|
+
* @param request AddLogicTableRouteConfigRequest
|
|
16536
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16537
|
+
* @return AddLogicTableRouteConfigResponse
|
|
16538
|
+
*/
|
|
16501
16539
|
addLogicTableRouteConfigWithOptions(request: AddLogicTableRouteConfigRequest, runtime: $Util.RuntimeOptions): Promise<AddLogicTableRouteConfigResponse>;
|
|
16540
|
+
/**
|
|
16541
|
+
* @summary Adds a routing algorithm to a logical table.
|
|
16542
|
+
*
|
|
16543
|
+
* @param request AddLogicTableRouteConfigRequest
|
|
16544
|
+
* @return AddLogicTableRouteConfigResponse
|
|
16545
|
+
*/
|
|
16502
16546
|
addLogicTableRouteConfig(request: AddLogicTableRouteConfigRequest): Promise<AddLogicTableRouteConfigResponse>;
|
|
16503
16547
|
/**
|
|
16504
|
-
|
|
16505
|
-
|
|
16506
|
-
|
|
16507
|
-
|
|
16508
|
-
|
|
16509
|
-
|
|
16510
|
-
|
|
16548
|
+
* @summary Adds directed edges for an existing task node.
|
|
16549
|
+
*
|
|
16550
|
+
* @description When you add directed edges for a task node, take note of the following limits:
|
|
16551
|
+
* 1. The endpoints of the specified edge exist in the Directed Acyclic Graph (DAG) of the task flow specified by DagId.
|
|
16552
|
+
* 2. After a backward edge is added, the DAG does not contain loops.
|
|
16553
|
+
*
|
|
16554
|
+
* @param tmpReq AddTaskFlowEdgesRequest
|
|
16555
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16556
|
+
* @return AddTaskFlowEdgesResponse
|
|
16511
16557
|
*/
|
|
16512
16558
|
addTaskFlowEdgesWithOptions(tmpReq: AddTaskFlowEdgesRequest, runtime: $Util.RuntimeOptions): Promise<AddTaskFlowEdgesResponse>;
|
|
16513
16559
|
/**
|
|
16514
|
-
|
|
16515
|
-
|
|
16516
|
-
|
|
16517
|
-
|
|
16518
|
-
|
|
16519
|
-
|
|
16560
|
+
* @summary Adds directed edges for an existing task node.
|
|
16561
|
+
*
|
|
16562
|
+
* @description When you add directed edges for a task node, take note of the following limits:
|
|
16563
|
+
* 1. The endpoints of the specified edge exist in the Directed Acyclic Graph (DAG) of the task flow specified by DagId.
|
|
16564
|
+
* 2. After a backward edge is added, the DAG does not contain loops.
|
|
16565
|
+
*
|
|
16566
|
+
* @param request AddTaskFlowEdgesRequest
|
|
16567
|
+
* @return AddTaskFlowEdgesResponse
|
|
16520
16568
|
*/
|
|
16521
16569
|
addTaskFlowEdges(request: AddTaskFlowEdgesRequest): Promise<AddTaskFlowEdgesResponse>;
|
|
16522
16570
|
/**
|
|
16523
|
-
|
|
16524
|
-
|
|
16525
|
-
|
|
16526
|
-
|
|
16527
|
-
|
|
16528
|
-
|
|
16529
|
-
|
|
16571
|
+
* @summary Analyzes the lineage (dependencies and influence) between tables and between fields in SQL statements.
|
|
16572
|
+
*
|
|
16573
|
+
* @description The following conditions must be met before you call this API operation.
|
|
16574
|
+
* * The database instance is of one of the following types: ApsaraDB RDS for MySQL, PolarDB for MySQL, AnalyticDB for MySQL, ApsaraDB RDS for PostgreSQL, PolarDB for PostgreSQL, AnalyticDB for PostgreSQL, Oracle, and openGauss.
|
|
16575
|
+
* * A database instance is managed in Security Collaboration mode. For more information about control modes, see [Control modes](https://help.aliyun.com/document_detail/151629.html).
|
|
16576
|
+
*
|
|
16577
|
+
* @param request AnalyzeSQLLineageRequest
|
|
16578
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16579
|
+
* @return AnalyzeSQLLineageResponse
|
|
16530
16580
|
*/
|
|
16531
16581
|
analyzeSQLLineageWithOptions(request: AnalyzeSQLLineageRequest, runtime: $Util.RuntimeOptions): Promise<AnalyzeSQLLineageResponse>;
|
|
16532
16582
|
/**
|
|
16533
|
-
|
|
16534
|
-
|
|
16535
|
-
|
|
16536
|
-
|
|
16537
|
-
|
|
16538
|
-
|
|
16583
|
+
* @summary Analyzes the lineage (dependencies and influence) between tables and between fields in SQL statements.
|
|
16584
|
+
*
|
|
16585
|
+
* @description The following conditions must be met before you call this API operation.
|
|
16586
|
+
* * The database instance is of one of the following types: ApsaraDB RDS for MySQL, PolarDB for MySQL, AnalyticDB for MySQL, ApsaraDB RDS for PostgreSQL, PolarDB for PostgreSQL, AnalyticDB for PostgreSQL, Oracle, and openGauss.
|
|
16587
|
+
* * A database instance is managed in Security Collaboration mode. For more information about control modes, see [Control modes](https://help.aliyun.com/document_detail/151629.html).
|
|
16588
|
+
*
|
|
16589
|
+
* @param request AnalyzeSQLLineageRequest
|
|
16590
|
+
* @return AnalyzeSQLLineageResponse
|
|
16539
16591
|
*/
|
|
16540
16592
|
analyzeSQLLineage(request: AnalyzeSQLLineageRequest): Promise<AnalyzeSQLLineageResponse>;
|
|
16593
|
+
/**
|
|
16594
|
+
* @summary Reviews a ticket.
|
|
16595
|
+
*
|
|
16596
|
+
* @param request ApproveOrderRequest
|
|
16597
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16598
|
+
* @return ApproveOrderResponse
|
|
16599
|
+
*/
|
|
16541
16600
|
approveOrderWithOptions(request: ApproveOrderRequest, runtime: $Util.RuntimeOptions): Promise<ApproveOrderResponse>;
|
|
16601
|
+
/**
|
|
16602
|
+
* @summary Reviews a ticket.
|
|
16603
|
+
*
|
|
16604
|
+
* @param request ApproveOrderRequest
|
|
16605
|
+
* @return ApproveOrderResponse
|
|
16606
|
+
*/
|
|
16542
16607
|
approveOrder(request: ApproveOrderRequest): Promise<ApproveOrderResponse>;
|
|
16543
16608
|
/**
|
|
16544
|
-
|
|
16545
|
-
|
|
16546
|
-
|
|
16547
|
-
|
|
16548
|
-
|
|
16609
|
+
* @summary Backfills data for task orchestration.
|
|
16610
|
+
*
|
|
16611
|
+
* @description During a data backfill, task flows are run in sequence based on their dates. You can specify whether task flows are run in chronological or reverse chronological order. After the data backfill is complete, you can specify a date or date range, and a node range to run task flows.
|
|
16612
|
+
*
|
|
16613
|
+
* @param tmpReq BackFillRequest
|
|
16614
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16615
|
+
* @return BackFillResponse
|
|
16549
16616
|
*/
|
|
16550
16617
|
backFillWithOptions(tmpReq: BackFillRequest, runtime: $Util.RuntimeOptions): Promise<BackFillResponse>;
|
|
16551
16618
|
/**
|
|
16552
|
-
|
|
16553
|
-
|
|
16554
|
-
|
|
16555
|
-
|
|
16619
|
+
* @summary Backfills data for task orchestration.
|
|
16620
|
+
*
|
|
16621
|
+
* @description During a data backfill, task flows are run in sequence based on their dates. You can specify whether task flows are run in chronological or reverse chronological order. After the data backfill is complete, you can specify a date or date range, and a node range to run task flows.
|
|
16622
|
+
*
|
|
16623
|
+
* @param request BackFillRequest
|
|
16624
|
+
* @return BackFillResponse
|
|
16556
16625
|
*/
|
|
16557
16626
|
backFill(request: BackFillRequest): Promise<BackFillResponse>;
|
|
16627
|
+
/**
|
|
16628
|
+
* @summary Purchases a pay-as-you-go Data Management (DMS) resource.
|
|
16629
|
+
*
|
|
16630
|
+
* @param request BuyPayAsYouGoOrderRequest
|
|
16631
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16632
|
+
* @return BuyPayAsYouGoOrderResponse
|
|
16633
|
+
*/
|
|
16558
16634
|
buyPayAsYouGoOrderWithOptions(request: BuyPayAsYouGoOrderRequest, runtime: $Util.RuntimeOptions): Promise<BuyPayAsYouGoOrderResponse>;
|
|
16635
|
+
/**
|
|
16636
|
+
* @summary Purchases a pay-as-you-go Data Management (DMS) resource.
|
|
16637
|
+
*
|
|
16638
|
+
* @param request BuyPayAsYouGoOrderRequest
|
|
16639
|
+
* @return BuyPayAsYouGoOrderResponse
|
|
16640
|
+
*/
|
|
16559
16641
|
buyPayAsYouGoOrder(request: BuyPayAsYouGoOrderRequest): Promise<BuyPayAsYouGoOrderResponse>;
|
|
16642
|
+
/**
|
|
16643
|
+
* @summary Adjusts the sensitivity level of one or more fields.
|
|
16644
|
+
*
|
|
16645
|
+
* @param request ChangeColumnSecLevelRequest
|
|
16646
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16647
|
+
* @return ChangeColumnSecLevelResponse
|
|
16648
|
+
*/
|
|
16560
16649
|
changeColumnSecLevelWithOptions(request: ChangeColumnSecLevelRequest, runtime: $Util.RuntimeOptions): Promise<ChangeColumnSecLevelResponse>;
|
|
16650
|
+
/**
|
|
16651
|
+
* @summary Adjusts the sensitivity level of one or more fields.
|
|
16652
|
+
*
|
|
16653
|
+
* @param request ChangeColumnSecLevelRequest
|
|
16654
|
+
* @return ChangeColumnSecLevelResponse
|
|
16655
|
+
*/
|
|
16561
16656
|
changeColumnSecLevel(request: ChangeColumnSecLevelRequest): Promise<ChangeColumnSecLevelResponse>;
|
|
16657
|
+
/**
|
|
16658
|
+
* @summary 修改字段敏感序列
|
|
16659
|
+
*
|
|
16660
|
+
* @param request ChangeColumnSecurityLevelRequest
|
|
16661
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16662
|
+
* @return ChangeColumnSecurityLevelResponse
|
|
16663
|
+
*/
|
|
16562
16664
|
changeColumnSecurityLevelWithOptions(request: ChangeColumnSecurityLevelRequest, runtime: $Util.RuntimeOptions): Promise<ChangeColumnSecurityLevelResponse>;
|
|
16665
|
+
/**
|
|
16666
|
+
* @summary 修改字段敏感序列
|
|
16667
|
+
*
|
|
16668
|
+
* @param request ChangeColumnSecurityLevelRequest
|
|
16669
|
+
* @return ChangeColumnSecurityLevelResponse
|
|
16670
|
+
*/
|
|
16563
16671
|
changeColumnSecurityLevel(request: ChangeColumnSecurityLevelRequest): Promise<ChangeColumnSecurityLevelResponse>;
|
|
16564
16672
|
/**
|
|
16565
|
-
|
|
16566
|
-
|
|
16567
|
-
|
|
16568
|
-
|
|
16569
|
-
|
|
16570
|
-
|
|
16571
|
-
|
|
16673
|
+
* @summary 移交数仓开发任务流
|
|
16674
|
+
*
|
|
16675
|
+
* @description Usage notes:
|
|
16676
|
+
* * If you call this operation to transfer the ownership of a published task flow, the ownership transfer does not take effect.
|
|
16677
|
+
* * You can call the [ReDeployLhDagVersion](https://help.aliyun.com/document_detail/424712.html) operation to redeploy a published version of a task flow.
|
|
16678
|
+
*
|
|
16679
|
+
* @param request ChangeLhDagOwnerRequest
|
|
16680
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16681
|
+
* @return ChangeLhDagOwnerResponse
|
|
16572
16682
|
*/
|
|
16573
16683
|
changeLhDagOwnerWithOptions(request: ChangeLhDagOwnerRequest, runtime: $Util.RuntimeOptions): Promise<ChangeLhDagOwnerResponse>;
|
|
16574
16684
|
/**
|
|
16575
|
-
|
|
16576
|
-
|
|
16577
|
-
|
|
16578
|
-
|
|
16579
|
-
|
|
16580
|
-
|
|
16685
|
+
* @summary 移交数仓开发任务流
|
|
16686
|
+
*
|
|
16687
|
+
* @description Usage notes:
|
|
16688
|
+
* * If you call this operation to transfer the ownership of a published task flow, the ownership transfer does not take effect.
|
|
16689
|
+
* * You can call the [ReDeployLhDagVersion](https://help.aliyun.com/document_detail/424712.html) operation to redeploy a published version of a task flow.
|
|
16690
|
+
*
|
|
16691
|
+
* @param request ChangeLhDagOwnerRequest
|
|
16692
|
+
* @return ChangeLhDagOwnerResponse
|
|
16581
16693
|
*/
|
|
16582
16694
|
changeLhDagOwner(request: ChangeLhDagOwnerRequest): Promise<ChangeLhDagOwnerResponse>;
|
|
16695
|
+
/**
|
|
16696
|
+
* @summary Closes a ticket.
|
|
16697
|
+
*
|
|
16698
|
+
* @param request CloseOrderRequest
|
|
16699
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16700
|
+
* @return CloseOrderResponse
|
|
16701
|
+
*/
|
|
16583
16702
|
closeOrderWithOptions(request: CloseOrderRequest, runtime: $Util.RuntimeOptions): Promise<CloseOrderResponse>;
|
|
16703
|
+
/**
|
|
16704
|
+
* @summary Closes a ticket.
|
|
16705
|
+
*
|
|
16706
|
+
* @param request CloseOrderRequest
|
|
16707
|
+
* @return CloseOrderResponse
|
|
16708
|
+
*/
|
|
16584
16709
|
closeOrder(request: CloseOrderRequest): Promise<CloseOrderResponse>;
|
|
16585
16710
|
/**
|
|
16586
|
-
|
|
16587
|
-
|
|
16588
|
-
|
|
16589
|
-
|
|
16590
|
-
|
|
16711
|
+
* @summary Creates a permission template
|
|
16712
|
+
*
|
|
16713
|
+
* @description You are a database administrator (DBA) or a Data Management (DMS) administrator. For more information about how to view system roles, see [View system roles](https://help.aliyun.com/document_detail/324212.html).
|
|
16714
|
+
*
|
|
16715
|
+
* @param request CreateAuthorityTemplateRequest
|
|
16716
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16717
|
+
* @return CreateAuthorityTemplateResponse
|
|
16591
16718
|
*/
|
|
16592
16719
|
createAuthorityTemplateWithOptions(request: CreateAuthorityTemplateRequest, runtime: $Util.RuntimeOptions): Promise<CreateAuthorityTemplateResponse>;
|
|
16593
16720
|
/**
|
|
16594
|
-
|
|
16595
|
-
|
|
16596
|
-
|
|
16597
|
-
|
|
16721
|
+
* @summary Creates a permission template
|
|
16722
|
+
*
|
|
16723
|
+
* @description You are a database administrator (DBA) or a Data Management (DMS) administrator. For more information about how to view system roles, see [View system roles](https://help.aliyun.com/document_detail/324212.html).
|
|
16724
|
+
*
|
|
16725
|
+
* @param request CreateAuthorityTemplateRequest
|
|
16726
|
+
* @return CreateAuthorityTemplateResponse
|
|
16598
16727
|
*/
|
|
16599
16728
|
createAuthorityTemplate(request: CreateAuthorityTemplateRequest): Promise<CreateAuthorityTemplateResponse>;
|
|
16729
|
+
/**
|
|
16730
|
+
* @summary Creates data archiving tickets.
|
|
16731
|
+
*
|
|
16732
|
+
* @param tmpReq CreateDataArchiveOrderRequest
|
|
16733
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16734
|
+
* @return CreateDataArchiveOrderResponse
|
|
16735
|
+
*/
|
|
16600
16736
|
createDataArchiveOrderWithOptions(tmpReq: CreateDataArchiveOrderRequest, runtime: $Util.RuntimeOptions): Promise<CreateDataArchiveOrderResponse>;
|
|
16737
|
+
/**
|
|
16738
|
+
* @summary Creates data archiving tickets.
|
|
16739
|
+
*
|
|
16740
|
+
* @param request CreateDataArchiveOrderRequest
|
|
16741
|
+
* @return CreateDataArchiveOrderResponse
|
|
16742
|
+
*/
|
|
16601
16743
|
createDataArchiveOrder(request: CreateDataArchiveOrderRequest): Promise<CreateDataArchiveOrderResponse>;
|
|
16602
16744
|
/**
|
|
16603
|
-
|
|
16604
|
-
|
|
16605
|
-
|
|
16606
|
-
|
|
16607
|
-
|
|
16745
|
+
* @summary Creates a ticket for changing data in Data Management (DMS).
|
|
16746
|
+
*
|
|
16747
|
+
* @description For more information about the Normal Data Modify feature, see [Change regular data](https://help.aliyun.com/document_detail/58419.html).
|
|
16748
|
+
*
|
|
16749
|
+
* @param tmpReq CreateDataCorrectOrderRequest
|
|
16750
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16751
|
+
* @return CreateDataCorrectOrderResponse
|
|
16608
16752
|
*/
|
|
16609
16753
|
createDataCorrectOrderWithOptions(tmpReq: CreateDataCorrectOrderRequest, runtime: $Util.RuntimeOptions): Promise<CreateDataCorrectOrderResponse>;
|
|
16610
16754
|
/**
|
|
16611
|
-
|
|
16612
|
-
|
|
16613
|
-
|
|
16614
|
-
|
|
16755
|
+
* @summary Creates a ticket for changing data in Data Management (DMS).
|
|
16756
|
+
*
|
|
16757
|
+
* @description For more information about the Normal Data Modify feature, see [Change regular data](https://help.aliyun.com/document_detail/58419.html).
|
|
16758
|
+
*
|
|
16759
|
+
* @param request CreateDataCorrectOrderRequest
|
|
16760
|
+
* @return CreateDataCorrectOrderResponse
|
|
16615
16761
|
*/
|
|
16616
16762
|
createDataCorrectOrder(request: CreateDataCorrectOrderRequest): Promise<CreateDataCorrectOrderResponse>;
|
|
16617
16763
|
/**
|
|
16618
|
-
|
|
16619
|
-
|
|
16620
|
-
|
|
16621
|
-
|
|
16622
|
-
|
|
16623
|
-
|
|
16764
|
+
* @summary Creates a ticket for clearing historical data.
|
|
16765
|
+
*
|
|
16766
|
+
* @description For more information about the historical data cleaning, see [Clear historical data](https://help.aliyun.com/document_detail/162507.html).
|
|
16767
|
+
* This operation can be used only for MySQL databases.
|
|
16768
|
+
*
|
|
16769
|
+
* @param tmpReq CreateDataCronClearOrderRequest
|
|
16770
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16771
|
+
* @return CreateDataCronClearOrderResponse
|
|
16624
16772
|
*/
|
|
16625
16773
|
createDataCronClearOrderWithOptions(tmpReq: CreateDataCronClearOrderRequest, runtime: $Util.RuntimeOptions): Promise<CreateDataCronClearOrderResponse>;
|
|
16626
16774
|
/**
|
|
16627
|
-
|
|
16628
|
-
|
|
16629
|
-
|
|
16630
|
-
|
|
16631
|
-
|
|
16775
|
+
* @summary Creates a ticket for clearing historical data.
|
|
16776
|
+
*
|
|
16777
|
+
* @description For more information about the historical data cleaning, see [Clear historical data](https://help.aliyun.com/document_detail/162507.html).
|
|
16778
|
+
* This operation can be used only for MySQL databases.
|
|
16779
|
+
*
|
|
16780
|
+
* @param request CreateDataCronClearOrderRequest
|
|
16781
|
+
* @return CreateDataCronClearOrderResponse
|
|
16632
16782
|
*/
|
|
16633
16783
|
createDataCronClearOrder(request: CreateDataCronClearOrderRequest): Promise<CreateDataCronClearOrderResponse>;
|
|
16784
|
+
/**
|
|
16785
|
+
* @summary Creates a ticket to export an SQL result set.
|
|
16786
|
+
*
|
|
16787
|
+
* @param tmpReq CreateDataExportOrderRequest
|
|
16788
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16789
|
+
* @return CreateDataExportOrderResponse
|
|
16790
|
+
*/
|
|
16634
16791
|
createDataExportOrderWithOptions(tmpReq: CreateDataExportOrderRequest, runtime: $Util.RuntimeOptions): Promise<CreateDataExportOrderResponse>;
|
|
16792
|
+
/**
|
|
16793
|
+
* @summary Creates a ticket to export an SQL result set.
|
|
16794
|
+
*
|
|
16795
|
+
* @param request CreateDataExportOrderRequest
|
|
16796
|
+
* @return CreateDataExportOrderResponse
|
|
16797
|
+
*/
|
|
16635
16798
|
createDataExportOrder(request: CreateDataExportOrderRequest): Promise<CreateDataExportOrderResponse>;
|
|
16636
16799
|
/**
|
|
16637
|
-
|
|
16638
|
-
|
|
16639
|
-
|
|
16640
|
-
|
|
16641
|
-
|
|
16800
|
+
* @summary Creates a ticket for importing data to Data Management (DMS).
|
|
16801
|
+
*
|
|
16802
|
+
* @description For more information about the Large Data Import feature, see [Import data](https://help.aliyun.com/document_detail/161439.html).
|
|
16803
|
+
*
|
|
16804
|
+
* @param tmpReq CreateDataImportOrderRequest
|
|
16805
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16806
|
+
* @return CreateDataImportOrderResponse
|
|
16642
16807
|
*/
|
|
16643
16808
|
createDataImportOrderWithOptions(tmpReq: CreateDataImportOrderRequest, runtime: $Util.RuntimeOptions): Promise<CreateDataImportOrderResponse>;
|
|
16644
16809
|
/**
|
|
16645
|
-
|
|
16646
|
-
|
|
16647
|
-
|
|
16648
|
-
|
|
16810
|
+
* @summary Creates a ticket for importing data to Data Management (DMS).
|
|
16811
|
+
*
|
|
16812
|
+
* @description For more information about the Large Data Import feature, see [Import data](https://help.aliyun.com/document_detail/161439.html).
|
|
16813
|
+
*
|
|
16814
|
+
* @param request CreateDataImportOrderRequest
|
|
16815
|
+
* @return CreateDataImportOrderResponse
|
|
16649
16816
|
*/
|
|
16650
16817
|
createDataImportOrder(request: CreateDataImportOrderRequest): Promise<CreateDataImportOrderResponse>;
|
|
16651
16818
|
/**
|
|
16652
|
-
|
|
16653
|
-
|
|
16654
|
-
|
|
16655
|
-
|
|
16656
|
-
|
|
16819
|
+
* @summary Creates a data tracking ticket.
|
|
16820
|
+
*
|
|
16821
|
+
* @description This operation is available only for instances that are managed in Security Collaboration mode.
|
|
16822
|
+
*
|
|
16823
|
+
* @param tmpReq CreateDataTrackOrderRequest
|
|
16824
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16825
|
+
* @return CreateDataTrackOrderResponse
|
|
16657
16826
|
*/
|
|
16658
16827
|
createDataTrackOrderWithOptions(tmpReq: CreateDataTrackOrderRequest, runtime: $Util.RuntimeOptions): Promise<CreateDataTrackOrderResponse>;
|
|
16659
16828
|
/**
|
|
16660
|
-
|
|
16661
|
-
|
|
16662
|
-
|
|
16663
|
-
|
|
16829
|
+
* @summary Creates a data tracking ticket.
|
|
16830
|
+
*
|
|
16831
|
+
* @description This operation is available only for instances that are managed in Security Collaboration mode.
|
|
16832
|
+
*
|
|
16833
|
+
* @param request CreateDataTrackOrderRequest
|
|
16834
|
+
* @return CreateDataTrackOrderResponse
|
|
16664
16835
|
*/
|
|
16665
16836
|
createDataTrackOrder(request: CreateDataTrackOrderRequest): Promise<CreateDataTrackOrderResponse>;
|
|
16837
|
+
/**
|
|
16838
|
+
* @summary Creates a database export ticket.
|
|
16839
|
+
*
|
|
16840
|
+
* @param tmpReq CreateDatabaseExportOrderRequest
|
|
16841
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16842
|
+
* @return CreateDatabaseExportOrderResponse
|
|
16843
|
+
*/
|
|
16666
16844
|
createDatabaseExportOrderWithOptions(tmpReq: CreateDatabaseExportOrderRequest, runtime: $Util.RuntimeOptions): Promise<CreateDatabaseExportOrderResponse>;
|
|
16845
|
+
/**
|
|
16846
|
+
* @summary Creates a database export ticket.
|
|
16847
|
+
*
|
|
16848
|
+
* @param request CreateDatabaseExportOrderRequest
|
|
16849
|
+
* @return CreateDatabaseExportOrderResponse
|
|
16850
|
+
*/
|
|
16667
16851
|
createDatabaseExportOrder(request: CreateDatabaseExportOrderRequest): Promise<CreateDatabaseExportOrderResponse>;
|
|
16668
16852
|
/**
|
|
16669
|
-
|
|
16670
|
-
|
|
16671
|
-
|
|
16672
|
-
|
|
16673
|
-
|
|
16674
|
-
|
|
16853
|
+
* @summary 创建无锁变更工单
|
|
16854
|
+
*
|
|
16855
|
+
* @description For more information about the lock-free change feature, see [Overview](https://help.aliyun.com/document_detail/207847.html).
|
|
16856
|
+
* This operation can be used only for instances that are managed in Stable Change or Security Collaboration mode. For more information, see [Change data without the need to lock tables](https://help.aliyun.com/document_detail/96145.html) and [Change schemas without locking tables](https://help.aliyun.com/document_detail/98373.html).
|
|
16857
|
+
*
|
|
16858
|
+
* @param tmpReq CreateFreeLockCorrectOrderRequest
|
|
16859
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16860
|
+
* @return CreateFreeLockCorrectOrderResponse
|
|
16675
16861
|
*/
|
|
16676
16862
|
createFreeLockCorrectOrderWithOptions(tmpReq: CreateFreeLockCorrectOrderRequest, runtime: $Util.RuntimeOptions): Promise<CreateFreeLockCorrectOrderResponse>;
|
|
16677
16863
|
/**
|
|
16678
|
-
|
|
16679
|
-
|
|
16680
|
-
|
|
16681
|
-
|
|
16682
|
-
|
|
16864
|
+
* @summary 创建无锁变更工单
|
|
16865
|
+
*
|
|
16866
|
+
* @description For more information about the lock-free change feature, see [Overview](https://help.aliyun.com/document_detail/207847.html).
|
|
16867
|
+
* This operation can be used only for instances that are managed in Stable Change or Security Collaboration mode. For more information, see [Change data without the need to lock tables](https://help.aliyun.com/document_detail/96145.html) and [Change schemas without locking tables](https://help.aliyun.com/document_detail/98373.html).
|
|
16868
|
+
*
|
|
16869
|
+
* @param request CreateFreeLockCorrectOrderRequest
|
|
16870
|
+
* @return CreateFreeLockCorrectOrderResponse
|
|
16683
16871
|
*/
|
|
16684
16872
|
createFreeLockCorrectOrder(request: CreateFreeLockCorrectOrderRequest): Promise<CreateFreeLockCorrectOrderResponse>;
|
|
16685
16873
|
/**
|
|
16686
|
-
|
|
16687
|
-
|
|
16688
|
-
|
|
16689
|
-
|
|
16690
|
-
|
|
16691
|
-
|
|
16874
|
+
* @summary Creates a workspace for data warehouse development in Data Management (DMS).
|
|
16875
|
+
*
|
|
16876
|
+
* @description * The workspace name must be unique within a tenant. If a workspace with the same name already exists within the tenant, the call may fail.
|
|
16877
|
+
* * You can call the [GetLhSpaceByName](https://help.aliyun.com/document_detail/424379.html) operation to query whether a workspace with a specific name already exists as a DMS administrator or database administrator (DBA).
|
|
16878
|
+
*
|
|
16879
|
+
* @param request CreateLakeHouseSpaceRequest
|
|
16880
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16881
|
+
* @return CreateLakeHouseSpaceResponse
|
|
16692
16882
|
*/
|
|
16693
16883
|
createLakeHouseSpaceWithOptions(request: CreateLakeHouseSpaceRequest, runtime: $Util.RuntimeOptions): Promise<CreateLakeHouseSpaceResponse>;
|
|
16694
16884
|
/**
|
|
16695
|
-
|
|
16696
|
-
|
|
16697
|
-
|
|
16698
|
-
|
|
16699
|
-
|
|
16885
|
+
* @summary Creates a workspace for data warehouse development in Data Management (DMS).
|
|
16886
|
+
*
|
|
16887
|
+
* @description * The workspace name must be unique within a tenant. If a workspace with the same name already exists within the tenant, the call may fail.
|
|
16888
|
+
* * You can call the [GetLhSpaceByName](https://help.aliyun.com/document_detail/424379.html) operation to query whether a workspace with a specific name already exists as a DMS administrator or database administrator (DBA).
|
|
16889
|
+
*
|
|
16890
|
+
* @param request CreateLakeHouseSpaceRequest
|
|
16891
|
+
* @return CreateLakeHouseSpaceResponse
|
|
16700
16892
|
*/
|
|
16701
16893
|
createLakeHouseSpace(request: CreateLakeHouseSpaceRequest): Promise<CreateLakeHouseSpaceResponse>;
|
|
16894
|
+
/**
|
|
16895
|
+
* @summary Creates a logical database in Database Management (DMS).
|
|
16896
|
+
*
|
|
16897
|
+
* @param tmpReq CreateLogicDatabaseRequest
|
|
16898
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16899
|
+
* @return CreateLogicDatabaseResponse
|
|
16900
|
+
*/
|
|
16702
16901
|
createLogicDatabaseWithOptions(tmpReq: CreateLogicDatabaseRequest, runtime: $Util.RuntimeOptions): Promise<CreateLogicDatabaseResponse>;
|
|
16902
|
+
/**
|
|
16903
|
+
* @summary Creates a logical database in Database Management (DMS).
|
|
16904
|
+
*
|
|
16905
|
+
* @param request CreateLogicDatabaseRequest
|
|
16906
|
+
* @return CreateLogicDatabaseResponse
|
|
16907
|
+
*/
|
|
16703
16908
|
createLogicDatabase(request: CreateLogicDatabaseRequest): Promise<CreateLogicDatabaseResponse>;
|
|
16704
16909
|
/**
|
|
16705
|
-
|
|
16706
|
-
|
|
16707
|
-
|
|
16708
|
-
|
|
16709
|
-
|
|
16710
|
-
|
|
16711
|
-
|
|
16712
|
-
|
|
16713
|
-
|
|
16910
|
+
* @summary Creates a ticket in Data Management (DMS).
|
|
16911
|
+
*
|
|
16912
|
+
* @description To facilitate ticket creation, you can call the following dedicated operations to create some types of tickets:
|
|
16913
|
+
* * [CreateDataCorrectOrder](https://help.aliyun.com/document_detail/208388.html): creates a regular data change ticket.
|
|
16914
|
+
* * [CreateDataCronClearOrder](https://help.aliyun.com/document_detail/208385.html): creates a ticket to clear historical data.
|
|
16915
|
+
* * [CreateDataImportOrder](https://help.aliyun.com/document_detail/208387.html): creates a data import ticket.
|
|
16916
|
+
* * [CreateFreeLockCorrectOrder](https://help.aliyun.com/document_detail/208386.html): creates a lock-free change ticket.
|
|
16917
|
+
*
|
|
16918
|
+
* @param tmpReq CreateOrderRequest
|
|
16919
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16920
|
+
* @return CreateOrderResponse
|
|
16714
16921
|
*/
|
|
16715
16922
|
createOrderWithOptions(tmpReq: CreateOrderRequest, runtime: $Util.RuntimeOptions): Promise<CreateOrderResponse>;
|
|
16716
16923
|
/**
|
|
16717
|
-
|
|
16718
|
-
|
|
16719
|
-
|
|
16720
|
-
|
|
16721
|
-
|
|
16722
|
-
|
|
16723
|
-
|
|
16724
|
-
|
|
16924
|
+
* @summary Creates a ticket in Data Management (DMS).
|
|
16925
|
+
*
|
|
16926
|
+
* @description To facilitate ticket creation, you can call the following dedicated operations to create some types of tickets:
|
|
16927
|
+
* * [CreateDataCorrectOrder](https://help.aliyun.com/document_detail/208388.html): creates a regular data change ticket.
|
|
16928
|
+
* * [CreateDataCronClearOrder](https://help.aliyun.com/document_detail/208385.html): creates a ticket to clear historical data.
|
|
16929
|
+
* * [CreateDataImportOrder](https://help.aliyun.com/document_detail/208387.html): creates a data import ticket.
|
|
16930
|
+
* * [CreateFreeLockCorrectOrder](https://help.aliyun.com/document_detail/208386.html): creates a lock-free change ticket.
|
|
16931
|
+
*
|
|
16932
|
+
* @param request CreateOrderRequest
|
|
16933
|
+
* @return CreateOrderResponse
|
|
16725
16934
|
*/
|
|
16726
16935
|
createOrder(request: CreateOrderRequest): Promise<CreateOrderResponse>;
|
|
16936
|
+
/**
|
|
16937
|
+
* @summary 创建可编程对象变更工单
|
|
16938
|
+
*
|
|
16939
|
+
* @param tmpReq CreateProcCorrectOrderRequest
|
|
16940
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16941
|
+
* @return CreateProcCorrectOrderResponse
|
|
16942
|
+
*/
|
|
16727
16943
|
createProcCorrectOrderWithOptions(tmpReq: CreateProcCorrectOrderRequest, runtime: $Util.RuntimeOptions): Promise<CreateProcCorrectOrderResponse>;
|
|
16944
|
+
/**
|
|
16945
|
+
* @summary 创建可编程对象变更工单
|
|
16946
|
+
*
|
|
16947
|
+
* @param request CreateProcCorrectOrderRequest
|
|
16948
|
+
* @return CreateProcCorrectOrderResponse
|
|
16949
|
+
*/
|
|
16728
16950
|
createProcCorrectOrder(request: CreateProcCorrectOrderRequest): Promise<CreateProcCorrectOrderResponse>;
|
|
16729
16951
|
/**
|
|
16730
|
-
|
|
16731
|
-
|
|
16732
|
-
|
|
16733
|
-
|
|
16734
|
-
|
|
16735
|
-
|
|
16736
|
-
|
|
16952
|
+
* @summary Enables the secure access proxy feature for a database instance.
|
|
16953
|
+
*
|
|
16954
|
+
* @description - The database instance runs the MySQL or MariaDB database engine. For example, the database instance can be an ApsaraDB RDS for MySQL instance, a PolarDB for MySQL cluster, a Distributed Relational Database Service (DRDS) cluster, or an AnalyticDB for MySQL cluster. The database instance can also be a self-managed MySQL or MariaDB database, or a MySQL or MariaDB database in a third-party cloud.
|
|
16955
|
+
* - The database instance resides in the China (Hangzhou) or China (Beijing) region.
|
|
16956
|
+
* - You are a Data Management (DMS) administrator, a database administrator (DBA), or the owner of the database instance.
|
|
16957
|
+
*
|
|
16958
|
+
* @param request CreateProxyRequest
|
|
16959
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16960
|
+
* @return CreateProxyResponse
|
|
16737
16961
|
*/
|
|
16738
16962
|
createProxyWithOptions(request: CreateProxyRequest, runtime: $Util.RuntimeOptions): Promise<CreateProxyResponse>;
|
|
16739
16963
|
/**
|
|
16740
|
-
|
|
16741
|
-
|
|
16742
|
-
|
|
16743
|
-
|
|
16744
|
-
|
|
16745
|
-
|
|
16964
|
+
* @summary Enables the secure access proxy feature for a database instance.
|
|
16965
|
+
*
|
|
16966
|
+
* @description - The database instance runs the MySQL or MariaDB database engine. For example, the database instance can be an ApsaraDB RDS for MySQL instance, a PolarDB for MySQL cluster, a Distributed Relational Database Service (DRDS) cluster, or an AnalyticDB for MySQL cluster. The database instance can also be a self-managed MySQL or MariaDB database, or a MySQL or MariaDB database in a third-party cloud.
|
|
16967
|
+
* - The database instance resides in the China (Hangzhou) or China (Beijing) region.
|
|
16968
|
+
* - You are a Data Management (DMS) administrator, a database administrator (DBA), or the owner of the database instance.
|
|
16969
|
+
*
|
|
16970
|
+
* @param request CreateProxyRequest
|
|
16971
|
+
* @return CreateProxyResponse
|
|
16746
16972
|
*/
|
|
16747
16973
|
createProxy(request: CreateProxyRequest): Promise<CreateProxyResponse>;
|
|
16748
16974
|
/**
|
|
16749
|
-
|
|
16750
|
-
|
|
16751
|
-
|
|
16752
|
-
|
|
16753
|
-
|
|
16754
|
-
|
|
16975
|
+
* @summary You can call the CreateProxyAccess to authorize users to access the DB instance through the Data Security Protection agent.
|
|
16976
|
+
*
|
|
16977
|
+
* @description - The data security protection feature is enabled for the instance.
|
|
16978
|
+
* - Your user role is the administrator role, DBA role, or the owner of data security protection for the current instance.
|
|
16979
|
+
*
|
|
16980
|
+
* @param request CreateProxyAccessRequest
|
|
16981
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
16982
|
+
* @return CreateProxyAccessResponse
|
|
16755
16983
|
*/
|
|
16756
16984
|
createProxyAccessWithOptions(request: CreateProxyAccessRequest, runtime: $Util.RuntimeOptions): Promise<CreateProxyAccessResponse>;
|
|
16757
16985
|
/**
|
|
16758
|
-
|
|
16759
|
-
|
|
16760
|
-
|
|
16761
|
-
|
|
16762
|
-
|
|
16986
|
+
* @summary You can call the CreateProxyAccess to authorize users to access the DB instance through the Data Security Protection agent.
|
|
16987
|
+
*
|
|
16988
|
+
* @description - The data security protection feature is enabled for the instance.
|
|
16989
|
+
* - Your user role is the administrator role, DBA role, or the owner of data security protection for the current instance.
|
|
16990
|
+
*
|
|
16991
|
+
* @param request CreateProxyAccessRequest
|
|
16992
|
+
* @return CreateProxyAccessResponse
|
|
16763
16993
|
*/
|
|
16764
16994
|
createProxyAccess(request: CreateProxyAccessRequest): Promise<CreateProxyAccessResponse>;
|
|
16995
|
+
/**
|
|
16996
|
+
* @summary Executes a schema design ticket.
|
|
16997
|
+
*
|
|
16998
|
+
* @param request CreatePublishGroupTaskRequest
|
|
16999
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17000
|
+
* @return CreatePublishGroupTaskResponse
|
|
17001
|
+
*/
|
|
16765
17002
|
createPublishGroupTaskWithOptions(request: CreatePublishGroupTaskRequest, runtime: $Util.RuntimeOptions): Promise<CreatePublishGroupTaskResponse>;
|
|
17003
|
+
/**
|
|
17004
|
+
* @summary Executes a schema design ticket.
|
|
17005
|
+
*
|
|
17006
|
+
* @param request CreatePublishGroupTaskRequest
|
|
17007
|
+
* @return CreatePublishGroupTaskResponse
|
|
17008
|
+
*/
|
|
16766
17009
|
createPublishGroupTask(request: CreatePublishGroupTaskRequest): Promise<CreatePublishGroupTaskResponse>;
|
|
16767
17010
|
/**
|
|
16768
|
-
|
|
16769
|
-
|
|
16770
|
-
|
|
16771
|
-
|
|
16772
|
-
|
|
16773
|
-
|
|
17011
|
+
* @summary Creates a SQL review ticket.
|
|
17012
|
+
*
|
|
17013
|
+
* @description You can call this operation only for database instances that are managed in Security Collaboration mode.
|
|
17014
|
+
* For more information about the SQL review feature, see [SQL review](https://help.aliyun.com/document_detail/60374.html).
|
|
17015
|
+
*
|
|
17016
|
+
* @param tmpReq CreateSQLReviewOrderRequest
|
|
17017
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17018
|
+
* @return CreateSQLReviewOrderResponse
|
|
16774
17019
|
*/
|
|
16775
17020
|
createSQLReviewOrderWithOptions(tmpReq: CreateSQLReviewOrderRequest, runtime: $Util.RuntimeOptions): Promise<CreateSQLReviewOrderResponse>;
|
|
16776
17021
|
/**
|
|
16777
|
-
|
|
16778
|
-
|
|
16779
|
-
|
|
16780
|
-
|
|
16781
|
-
|
|
17022
|
+
* @summary Creates a SQL review ticket.
|
|
17023
|
+
*
|
|
17024
|
+
* @description You can call this operation only for database instances that are managed in Security Collaboration mode.
|
|
17025
|
+
* For more information about the SQL review feature, see [SQL review](https://help.aliyun.com/document_detail/60374.html).
|
|
17026
|
+
*
|
|
17027
|
+
* @param request CreateSQLReviewOrderRequest
|
|
17028
|
+
* @return CreateSQLReviewOrderResponse
|
|
16782
17029
|
*/
|
|
16783
17030
|
createSQLReviewOrder(request: CreateSQLReviewOrderRequest): Promise<CreateSQLReviewOrderResponse>;
|
|
17031
|
+
/**
|
|
17032
|
+
* @summary Creates a business scenario to group task flows by business scenario.
|
|
17033
|
+
*
|
|
17034
|
+
* @param request CreateScenarioRequest
|
|
17035
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17036
|
+
* @return CreateScenarioResponse
|
|
17037
|
+
*/
|
|
16784
17038
|
createScenarioWithOptions(request: CreateScenarioRequest, runtime: $Util.RuntimeOptions): Promise<CreateScenarioResponse>;
|
|
17039
|
+
/**
|
|
17040
|
+
* @summary Creates a business scenario to group task flows by business scenario.
|
|
17041
|
+
*
|
|
17042
|
+
* @param request CreateScenarioRequest
|
|
17043
|
+
* @return CreateScenarioResponse
|
|
17044
|
+
*/
|
|
16785
17045
|
createScenario(request: CreateScenarioRequest): Promise<CreateScenarioResponse>;
|
|
17046
|
+
/**
|
|
17047
|
+
* @summary Creates a security rule set.
|
|
17048
|
+
*
|
|
17049
|
+
* @param request CreateStandardGroupRequest
|
|
17050
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17051
|
+
* @return CreateStandardGroupResponse
|
|
17052
|
+
*/
|
|
16786
17053
|
createStandardGroupWithOptions(request: CreateStandardGroupRequest, runtime: $Util.RuntimeOptions): Promise<CreateStandardGroupResponse>;
|
|
17054
|
+
/**
|
|
17055
|
+
* @summary Creates a security rule set.
|
|
17056
|
+
*
|
|
17057
|
+
* @param request CreateStandardGroupRequest
|
|
17058
|
+
* @return CreateStandardGroupResponse
|
|
17059
|
+
*/
|
|
16787
17060
|
createStandardGroup(request: CreateStandardGroupRequest): Promise<CreateStandardGroupResponse>;
|
|
17061
|
+
/**
|
|
17062
|
+
* @summary Creates a schema synchronization ticket.
|
|
17063
|
+
*
|
|
17064
|
+
* @param tmpReq CreateStructSyncOrderRequest
|
|
17065
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17066
|
+
* @return CreateStructSyncOrderResponse
|
|
17067
|
+
*/
|
|
16788
17068
|
createStructSyncOrderWithOptions(tmpReq: CreateStructSyncOrderRequest, runtime: $Util.RuntimeOptions): Promise<CreateStructSyncOrderResponse>;
|
|
17069
|
+
/**
|
|
17070
|
+
* @summary Creates a schema synchronization ticket.
|
|
17071
|
+
*
|
|
17072
|
+
* @param request CreateStructSyncOrderRequest
|
|
17073
|
+
* @return CreateStructSyncOrderResponse
|
|
17074
|
+
*/
|
|
16789
17075
|
createStructSyncOrder(request: CreateStructSyncOrderRequest): Promise<CreateStructSyncOrderResponse>;
|
|
17076
|
+
/**
|
|
17077
|
+
* @summary Creates a task node for a task flow.
|
|
17078
|
+
*
|
|
17079
|
+
* @param request CreateTaskRequest
|
|
17080
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17081
|
+
* @return CreateTaskResponse
|
|
17082
|
+
*/
|
|
16790
17083
|
createTaskWithOptions(request: CreateTaskRequest, runtime: $Util.RuntimeOptions): Promise<CreateTaskResponse>;
|
|
17084
|
+
/**
|
|
17085
|
+
* @summary Creates a task node for a task flow.
|
|
17086
|
+
*
|
|
17087
|
+
* @param request CreateTaskRequest
|
|
17088
|
+
* @return CreateTaskResponse
|
|
17089
|
+
*/
|
|
16791
17090
|
createTask(request: CreateTaskRequest): Promise<CreateTaskResponse>;
|
|
17091
|
+
/**
|
|
17092
|
+
* @summary Creates a task flow.
|
|
17093
|
+
*
|
|
17094
|
+
* @param request CreateTaskFlowRequest
|
|
17095
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17096
|
+
* @return CreateTaskFlowResponse
|
|
17097
|
+
*/
|
|
16792
17098
|
createTaskFlowWithOptions(request: CreateTaskFlowRequest, runtime: $Util.RuntimeOptions): Promise<CreateTaskFlowResponse>;
|
|
17099
|
+
/**
|
|
17100
|
+
* @summary Creates a task flow.
|
|
17101
|
+
*
|
|
17102
|
+
* @param request CreateTaskFlowRequest
|
|
17103
|
+
* @return CreateTaskFlowResponse
|
|
17104
|
+
*/
|
|
16793
17105
|
createTaskFlow(request: CreateTaskFlowRequest): Promise<CreateTaskFlowResponse>;
|
|
17106
|
+
/**
|
|
17107
|
+
* @summary 创建上传附件任务
|
|
17108
|
+
*
|
|
17109
|
+
* @param request CreateUploadFileJobRequest
|
|
17110
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17111
|
+
* @return CreateUploadFileJobResponse
|
|
17112
|
+
*/
|
|
16794
17113
|
createUploadFileJobWithOptions(request: CreateUploadFileJobRequest, runtime: $Util.RuntimeOptions): Promise<CreateUploadFileJobResponse>;
|
|
17114
|
+
/**
|
|
17115
|
+
* @summary 创建上传附件任务
|
|
17116
|
+
*
|
|
17117
|
+
* @param request CreateUploadFileJobRequest
|
|
17118
|
+
* @return CreateUploadFileJobResponse
|
|
17119
|
+
*/
|
|
16795
17120
|
createUploadFileJob(request: CreateUploadFileJobRequest): Promise<CreateUploadFileJobResponse>;
|
|
17121
|
+
/**
|
|
17122
|
+
* @summary Creates a task to upload an Object Storage Service (OSS) file and obtain the key of the task.
|
|
17123
|
+
*
|
|
17124
|
+
* @param tmpReq CreateUploadOSSFileJobRequest
|
|
17125
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17126
|
+
* @return CreateUploadOSSFileJobResponse
|
|
17127
|
+
*/
|
|
16796
17128
|
createUploadOSSFileJobWithOptions(tmpReq: CreateUploadOSSFileJobRequest, runtime: $Util.RuntimeOptions): Promise<CreateUploadOSSFileJobResponse>;
|
|
17129
|
+
/**
|
|
17130
|
+
* @summary Creates a task to upload an Object Storage Service (OSS) file and obtain the key of the task.
|
|
17131
|
+
*
|
|
17132
|
+
* @param request CreateUploadOSSFileJobRequest
|
|
17133
|
+
* @return CreateUploadOSSFileJobResponse
|
|
17134
|
+
*/
|
|
16797
17135
|
createUploadOSSFileJob(request: CreateUploadOSSFileJobRequest): Promise<CreateUploadOSSFileJobResponse>;
|
|
17136
|
+
/**
|
|
17137
|
+
* @summary 删除权限模版
|
|
17138
|
+
*
|
|
17139
|
+
* @param request DeleteAuthorityTemplateRequest
|
|
17140
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17141
|
+
* @return DeleteAuthorityTemplateResponse
|
|
17142
|
+
*/
|
|
16798
17143
|
deleteAuthorityTemplateWithOptions(request: DeleteAuthorityTemplateRequest, runtime: $Util.RuntimeOptions): Promise<DeleteAuthorityTemplateResponse>;
|
|
17144
|
+
/**
|
|
17145
|
+
* @summary 删除权限模版
|
|
17146
|
+
*
|
|
17147
|
+
* @param request DeleteAuthorityTemplateRequest
|
|
17148
|
+
* @return DeleteAuthorityTemplateResponse
|
|
17149
|
+
*/
|
|
16799
17150
|
deleteAuthorityTemplate(request: DeleteAuthorityTemplateRequest): Promise<DeleteAuthorityTemplateResponse>;
|
|
16800
17151
|
/**
|
|
16801
|
-
|
|
16802
|
-
|
|
16803
|
-
|
|
16804
|
-
|
|
16805
|
-
|
|
17152
|
+
* @summary Removes a database instance from Data Management (DMS).
|
|
17153
|
+
*
|
|
17154
|
+
* @description Note: You can call this operation only to remove a database instance from the instance list of DMS. The instance is not deleted or shut down.
|
|
17155
|
+
*
|
|
17156
|
+
* @param request DeleteInstanceRequest
|
|
17157
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17158
|
+
* @return DeleteInstanceResponse
|
|
16806
17159
|
*/
|
|
16807
17160
|
deleteInstanceWithOptions(request: DeleteInstanceRequest, runtime: $Util.RuntimeOptions): Promise<DeleteInstanceResponse>;
|
|
16808
17161
|
/**
|
|
16809
|
-
|
|
16810
|
-
|
|
16811
|
-
|
|
16812
|
-
|
|
17162
|
+
* @summary Removes a database instance from Data Management (DMS).
|
|
17163
|
+
*
|
|
17164
|
+
* @description Note: You can call this operation only to remove a database instance from the instance list of DMS. The instance is not deleted or shut down.
|
|
17165
|
+
*
|
|
17166
|
+
* @param request DeleteInstanceRequest
|
|
17167
|
+
* @return DeleteInstanceResponse
|
|
16813
17168
|
*/
|
|
16814
17169
|
deleteInstance(request: DeleteInstanceRequest): Promise<DeleteInstanceResponse>;
|
|
17170
|
+
/**
|
|
17171
|
+
* @summary Deletes a workspace.
|
|
17172
|
+
*
|
|
17173
|
+
* @param request DeleteLakeHouseSpaceRequest
|
|
17174
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17175
|
+
* @return DeleteLakeHouseSpaceResponse
|
|
17176
|
+
*/
|
|
16815
17177
|
deleteLakeHouseSpaceWithOptions(request: DeleteLakeHouseSpaceRequest, runtime: $Util.RuntimeOptions): Promise<DeleteLakeHouseSpaceResponse>;
|
|
17178
|
+
/**
|
|
17179
|
+
* @summary Deletes a workspace.
|
|
17180
|
+
*
|
|
17181
|
+
* @param request DeleteLakeHouseSpaceRequest
|
|
17182
|
+
* @return DeleteLakeHouseSpaceResponse
|
|
17183
|
+
*/
|
|
16816
17184
|
deleteLakeHouseSpace(request: DeleteLakeHouseSpaceRequest): Promise<DeleteLakeHouseSpaceResponse>;
|
|
16817
17185
|
/**
|
|
16818
|
-
|
|
16819
|
-
|
|
16820
|
-
|
|
16821
|
-
|
|
16822
|
-
|
|
16823
|
-
|
|
17186
|
+
* @summary 删除数仓空间成员
|
|
17187
|
+
*
|
|
17188
|
+
* @description You must call this operation as a DMS administrator, a database administrator (DBA), or a workspace administrator.
|
|
17189
|
+
* You cannot call this operation to transfer the ownership of a task flow. To transfer the ownership of a task flow, call the [ChangLhDagOwner](https://help.aliyun.com/document_detail/424761.html) operation.
|
|
17190
|
+
*
|
|
17191
|
+
* @param tmpReq DeleteLhMembersRequest
|
|
17192
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17193
|
+
* @return DeleteLhMembersResponse
|
|
16824
17194
|
*/
|
|
16825
17195
|
deleteLhMembersWithOptions(tmpReq: DeleteLhMembersRequest, runtime: $Util.RuntimeOptions): Promise<DeleteLhMembersResponse>;
|
|
16826
17196
|
/**
|
|
16827
|
-
|
|
16828
|
-
|
|
16829
|
-
|
|
16830
|
-
|
|
16831
|
-
|
|
17197
|
+
* @summary 删除数仓空间成员
|
|
17198
|
+
*
|
|
17199
|
+
* @description You must call this operation as a DMS administrator, a database administrator (DBA), or a workspace administrator.
|
|
17200
|
+
* You cannot call this operation to transfer the ownership of a task flow. To transfer the ownership of a task flow, call the [ChangLhDagOwner](https://help.aliyun.com/document_detail/424761.html) operation.
|
|
17201
|
+
*
|
|
17202
|
+
* @param request DeleteLhMembersRequest
|
|
17203
|
+
* @return DeleteLhMembersResponse
|
|
16832
17204
|
*/
|
|
16833
17205
|
deleteLhMembers(request: DeleteLhMembersRequest): Promise<DeleteLhMembersResponse>;
|
|
17206
|
+
/**
|
|
17207
|
+
* @summary Deletes a logical database in Database Management (DMS). This operation only deletes the specified logical database but does not delete physical databases.
|
|
17208
|
+
*
|
|
17209
|
+
* @param request DeleteLogicDatabaseRequest
|
|
17210
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17211
|
+
* @return DeleteLogicDatabaseResponse
|
|
17212
|
+
*/
|
|
16834
17213
|
deleteLogicDatabaseWithOptions(request: DeleteLogicDatabaseRequest, runtime: $Util.RuntimeOptions): Promise<DeleteLogicDatabaseResponse>;
|
|
17214
|
+
/**
|
|
17215
|
+
* @summary Deletes a logical database in Database Management (DMS). This operation only deletes the specified logical database but does not delete physical databases.
|
|
17216
|
+
*
|
|
17217
|
+
* @param request DeleteLogicDatabaseRequest
|
|
17218
|
+
* @return DeleteLogicDatabaseResponse
|
|
17219
|
+
*/
|
|
16835
17220
|
deleteLogicDatabase(request: DeleteLogicDatabaseRequest): Promise<DeleteLogicDatabaseResponse>;
|
|
17221
|
+
/**
|
|
17222
|
+
* @summary Deletes the routing algorithm of a logical table.
|
|
17223
|
+
*
|
|
17224
|
+
* @param request DeleteLogicTableRouteConfigRequest
|
|
17225
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17226
|
+
* @return DeleteLogicTableRouteConfigResponse
|
|
17227
|
+
*/
|
|
16836
17228
|
deleteLogicTableRouteConfigWithOptions(request: DeleteLogicTableRouteConfigRequest, runtime: $Util.RuntimeOptions): Promise<DeleteLogicTableRouteConfigResponse>;
|
|
17229
|
+
/**
|
|
17230
|
+
* @summary Deletes the routing algorithm of a logical table.
|
|
17231
|
+
*
|
|
17232
|
+
* @param request DeleteLogicTableRouteConfigRequest
|
|
17233
|
+
* @return DeleteLogicTableRouteConfigResponse
|
|
17234
|
+
*/
|
|
16837
17235
|
deleteLogicTableRouteConfig(request: DeleteLogicTableRouteConfigRequest): Promise<DeleteLogicTableRouteConfigResponse>;
|
|
16838
17236
|
/**
|
|
16839
|
-
|
|
16840
|
-
|
|
16841
|
-
|
|
16842
|
-
|
|
16843
|
-
|
|
17237
|
+
* @summary You can call this operation to disable the data security protection proxy of a DB instance.
|
|
17238
|
+
*
|
|
17239
|
+
* @description After you disable this feature, your DB instance loses the JDBC protocol. All authorization information is recycled.
|
|
17240
|
+
*
|
|
17241
|
+
* @param request DeleteProxyRequest
|
|
17242
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17243
|
+
* @return DeleteProxyResponse
|
|
16844
17244
|
*/
|
|
16845
17245
|
deleteProxyWithOptions(request: DeleteProxyRequest, runtime: $Util.RuntimeOptions): Promise<DeleteProxyResponse>;
|
|
16846
17246
|
/**
|
|
16847
|
-
|
|
16848
|
-
|
|
16849
|
-
|
|
16850
|
-
|
|
17247
|
+
* @summary You can call this operation to disable the data security protection proxy of a DB instance.
|
|
17248
|
+
*
|
|
17249
|
+
* @description After you disable this feature, your DB instance loses the JDBC protocol. All authorization information is recycled.
|
|
17250
|
+
*
|
|
17251
|
+
* @param request DeleteProxyRequest
|
|
17252
|
+
* @return DeleteProxyResponse
|
|
16851
17253
|
*/
|
|
16852
17254
|
deleteProxy(request: DeleteProxyRequest): Promise<DeleteProxyResponse>;
|
|
17255
|
+
/**
|
|
17256
|
+
* @summary You can call this operation to DeleteProxyAccess reclaim the data security protection authorization of the target user.
|
|
17257
|
+
*
|
|
17258
|
+
* @param request DeleteProxyAccessRequest
|
|
17259
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17260
|
+
* @return DeleteProxyAccessResponse
|
|
17261
|
+
*/
|
|
16853
17262
|
deleteProxyAccessWithOptions(request: DeleteProxyAccessRequest, runtime: $Util.RuntimeOptions): Promise<DeleteProxyAccessResponse>;
|
|
17263
|
+
/**
|
|
17264
|
+
* @summary You can call this operation to DeleteProxyAccess reclaim the data security protection authorization of the target user.
|
|
17265
|
+
*
|
|
17266
|
+
* @param request DeleteProxyAccessRequest
|
|
17267
|
+
* @return DeleteProxyAccessResponse
|
|
17268
|
+
*/
|
|
16854
17269
|
deleteProxyAccess(request: DeleteProxyAccessRequest): Promise<DeleteProxyAccessResponse>;
|
|
16855
17270
|
/**
|
|
16856
|
-
|
|
16857
|
-
|
|
16858
|
-
|
|
16859
|
-
|
|
16860
|
-
|
|
17271
|
+
* @summary Deletes a business scenario.
|
|
17272
|
+
*
|
|
17273
|
+
* @description When you call this operation, make sure that no task flow is specified in the business scenario.
|
|
17274
|
+
*
|
|
17275
|
+
* @param request DeleteScenarioRequest
|
|
17276
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17277
|
+
* @return DeleteScenarioResponse
|
|
16861
17278
|
*/
|
|
16862
17279
|
deleteScenarioWithOptions(request: DeleteScenarioRequest, runtime: $Util.RuntimeOptions): Promise<DeleteScenarioResponse>;
|
|
16863
17280
|
/**
|
|
16864
|
-
|
|
16865
|
-
|
|
16866
|
-
|
|
16867
|
-
|
|
17281
|
+
* @summary Deletes a business scenario.
|
|
17282
|
+
*
|
|
17283
|
+
* @description When you call this operation, make sure that no task flow is specified in the business scenario.
|
|
17284
|
+
*
|
|
17285
|
+
* @param request DeleteScenarioRequest
|
|
17286
|
+
* @return DeleteScenarioResponse
|
|
16868
17287
|
*/
|
|
16869
17288
|
deleteScenario(request: DeleteScenarioRequest): Promise<DeleteScenarioResponse>;
|
|
17289
|
+
/**
|
|
17290
|
+
* @summary 删除安全规则
|
|
17291
|
+
*
|
|
17292
|
+
* @param request DeleteStandardGroupRequest
|
|
17293
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17294
|
+
* @return DeleteStandardGroupResponse
|
|
17295
|
+
*/
|
|
16870
17296
|
deleteStandardGroupWithOptions(request: DeleteStandardGroupRequest, runtime: $Util.RuntimeOptions): Promise<DeleteStandardGroupResponse>;
|
|
17297
|
+
/**
|
|
17298
|
+
* @summary 删除安全规则
|
|
17299
|
+
*
|
|
17300
|
+
* @param request DeleteStandardGroupRequest
|
|
17301
|
+
* @return DeleteStandardGroupResponse
|
|
17302
|
+
*/
|
|
16871
17303
|
deleteStandardGroup(request: DeleteStandardGroupRequest): Promise<DeleteStandardGroupResponse>;
|
|
17304
|
+
/**
|
|
17305
|
+
* @summary Deletes a task in a specified task flow.
|
|
17306
|
+
*
|
|
17307
|
+
* @param request DeleteTaskRequest
|
|
17308
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17309
|
+
* @return DeleteTaskResponse
|
|
17310
|
+
*/
|
|
16872
17311
|
deleteTaskWithOptions(request: DeleteTaskRequest, runtime: $Util.RuntimeOptions): Promise<DeleteTaskResponse>;
|
|
17312
|
+
/**
|
|
17313
|
+
* @summary Deletes a task in a specified task flow.
|
|
17314
|
+
*
|
|
17315
|
+
* @param request DeleteTaskRequest
|
|
17316
|
+
* @return DeleteTaskResponse
|
|
17317
|
+
*/
|
|
16873
17318
|
deleteTask(request: DeleteTaskRequest): Promise<DeleteTaskResponse>;
|
|
17319
|
+
/**
|
|
17320
|
+
* @summary Deletes a task flow.
|
|
17321
|
+
*
|
|
17322
|
+
* @param request DeleteTaskFlowRequest
|
|
17323
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17324
|
+
* @return DeleteTaskFlowResponse
|
|
17325
|
+
*/
|
|
16874
17326
|
deleteTaskFlowWithOptions(request: DeleteTaskFlowRequest, runtime: $Util.RuntimeOptions): Promise<DeleteTaskFlowResponse>;
|
|
17327
|
+
/**
|
|
17328
|
+
* @summary Deletes a task flow.
|
|
17329
|
+
*
|
|
17330
|
+
* @param request DeleteTaskFlowRequest
|
|
17331
|
+
* @return DeleteTaskFlowResponse
|
|
17332
|
+
*/
|
|
16875
17333
|
deleteTaskFlow(request: DeleteTaskFlowRequest): Promise<DeleteTaskFlowResponse>;
|
|
16876
17334
|
/**
|
|
16877
|
-
|
|
16878
|
-
|
|
16879
|
-
|
|
16880
|
-
|
|
16881
|
-
|
|
17335
|
+
* @summary Deletes task flow edges based on multiple conditions.
|
|
17336
|
+
*
|
|
17337
|
+
* @description This operation is used for multi-condition query. You can call it to delete the edges of a specified task flow that meet all specified conditions.
|
|
17338
|
+
*
|
|
17339
|
+
* @param request DeleteTaskFlowEdgesByConditionRequest
|
|
17340
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17341
|
+
* @return DeleteTaskFlowEdgesByConditionResponse
|
|
16882
17342
|
*/
|
|
16883
17343
|
deleteTaskFlowEdgesByConditionWithOptions(request: DeleteTaskFlowEdgesByConditionRequest, runtime: $Util.RuntimeOptions): Promise<DeleteTaskFlowEdgesByConditionResponse>;
|
|
16884
17344
|
/**
|
|
16885
|
-
|
|
16886
|
-
|
|
16887
|
-
|
|
16888
|
-
|
|
17345
|
+
* @summary Deletes task flow edges based on multiple conditions.
|
|
17346
|
+
*
|
|
17347
|
+
* @description This operation is used for multi-condition query. You can call it to delete the edges of a specified task flow that meet all specified conditions.
|
|
17348
|
+
*
|
|
17349
|
+
* @param request DeleteTaskFlowEdgesByConditionRequest
|
|
17350
|
+
* @return DeleteTaskFlowEdgesByConditionResponse
|
|
16889
17351
|
*/
|
|
16890
17352
|
deleteTaskFlowEdgesByCondition(request: DeleteTaskFlowEdgesByConditionRequest): Promise<DeleteTaskFlowEdgesByConditionResponse>;
|
|
16891
17353
|
/**
|
|
16892
|
-
|
|
16893
|
-
|
|
16894
|
-
|
|
16895
|
-
|
|
16896
|
-
|
|
16897
|
-
|
|
17354
|
+
* @summary Deletes an Alibaba Cloud account that is no longer used.
|
|
17355
|
+
*
|
|
17356
|
+
* @description The effect of deleting a user by calling this operation is the same as that of deleting a user by choosing System Management > User Management in the DMS Enterprise console. The administrator of DMS Enterprise can call this operation to delete a user that is no longer used from DMS Enterprise. After the user is deleted, the data source permission, data owner configuration, and database administrator (DBA) configuration of the corresponding Alibaba Cloud account or Resource Access Management (RAM) user are revoked and become invalid.
|
|
17357
|
+
* > This operation only removes the association of the Alibaba Cloud account or RAM user with DMS Enterprise of the enterprise, rather than actually deleting the Alibaba Cloud account or RAM user. After the user is deleted, the Alibaba Cloud account or RAM user cannot log on to DMS Enterprise, unless the user is added to DMS Enterprise again.
|
|
17358
|
+
*
|
|
17359
|
+
* @param request DeleteUserRequest
|
|
17360
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17361
|
+
* @return DeleteUserResponse
|
|
16898
17362
|
*/
|
|
16899
17363
|
deleteUserWithOptions(request: DeleteUserRequest, runtime: $Util.RuntimeOptions): Promise<DeleteUserResponse>;
|
|
16900
17364
|
/**
|
|
16901
|
-
|
|
16902
|
-
|
|
16903
|
-
|
|
16904
|
-
|
|
16905
|
-
|
|
17365
|
+
* @summary Deletes an Alibaba Cloud account that is no longer used.
|
|
17366
|
+
*
|
|
17367
|
+
* @description The effect of deleting a user by calling this operation is the same as that of deleting a user by choosing System Management > User Management in the DMS Enterprise console. The administrator of DMS Enterprise can call this operation to delete a user that is no longer used from DMS Enterprise. After the user is deleted, the data source permission, data owner configuration, and database administrator (DBA) configuration of the corresponding Alibaba Cloud account or Resource Access Management (RAM) user are revoked and become invalid.
|
|
17368
|
+
* > This operation only removes the association of the Alibaba Cloud account or RAM user with DMS Enterprise of the enterprise, rather than actually deleting the Alibaba Cloud account or RAM user. After the user is deleted, the Alibaba Cloud account or RAM user cannot log on to DMS Enterprise, unless the user is added to DMS Enterprise again.
|
|
17369
|
+
*
|
|
17370
|
+
* @param request DeleteUserRequest
|
|
17371
|
+
* @return DeleteUserResponse
|
|
16906
17372
|
*/
|
|
16907
17373
|
deleteUser(request: DeleteUserRequest): Promise<DeleteUserResponse>;
|
|
16908
17374
|
/**
|
|
16909
|
-
|
|
16910
|
-
|
|
16911
|
-
|
|
16912
|
-
|
|
16913
|
-
|
|
16914
|
-
|
|
17375
|
+
* @summary You can call this operation to disable a user that is temporarily not used in Data Management (DMS) Enterprise.
|
|
17376
|
+
*
|
|
17377
|
+
* @description The effect of disabling a user by calling this operation is the same as that of disabling a user by choosing System Management > User Management in the DMS Enterprise console. The administrator of DMS Enterprise can call this operation to disable a user that is temporarily not used in DMS Enterprise. After the user is disabled, the data source permission, data owner configuration, and database administrator (DBA) configuration of the corresponding Alibaba Cloud account or Resource Access Management (RAM) user are revoked and become invalid.
|
|
17378
|
+
* > This operation only stops the Alibaba Cloud account or RAM user from logging on to DMS Enterprise of the enterprise, rather than actually disabling the Alibaba Cloud account or RAM user. After the user is disabled, the Alibaba Cloud account or RAM user cannot log on to DMS Enterprise, unless the user is enabled again. The disabled user, however, still exists in DMS Enterprise.
|
|
17379
|
+
*
|
|
17380
|
+
* @param request DisableUserRequest
|
|
17381
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17382
|
+
* @return DisableUserResponse
|
|
16915
17383
|
*/
|
|
16916
17384
|
disableUserWithOptions(request: DisableUserRequest, runtime: $Util.RuntimeOptions): Promise<DisableUserResponse>;
|
|
16917
17385
|
/**
|
|
16918
|
-
|
|
16919
|
-
|
|
16920
|
-
|
|
16921
|
-
|
|
16922
|
-
|
|
17386
|
+
* @summary You can call this operation to disable a user that is temporarily not used in Data Management (DMS) Enterprise.
|
|
17387
|
+
*
|
|
17388
|
+
* @description The effect of disabling a user by calling this operation is the same as that of disabling a user by choosing System Management > User Management in the DMS Enterprise console. The administrator of DMS Enterprise can call this operation to disable a user that is temporarily not used in DMS Enterprise. After the user is disabled, the data source permission, data owner configuration, and database administrator (DBA) configuration of the corresponding Alibaba Cloud account or Resource Access Management (RAM) user are revoked and become invalid.
|
|
17389
|
+
* > This operation only stops the Alibaba Cloud account or RAM user from logging on to DMS Enterprise of the enterprise, rather than actually disabling the Alibaba Cloud account or RAM user. After the user is disabled, the Alibaba Cloud account or RAM user cannot log on to DMS Enterprise, unless the user is enabled again. The disabled user, however, still exists in DMS Enterprise.
|
|
17390
|
+
*
|
|
17391
|
+
* @param request DisableUserRequest
|
|
17392
|
+
* @return DisableUserResponse
|
|
16923
17393
|
*/
|
|
16924
17394
|
disableUser(request: DisableUserRequest): Promise<DisableUserResponse>;
|
|
17395
|
+
/**
|
|
17396
|
+
* @summary Downloads the parsing result of a data tracking task.
|
|
17397
|
+
*
|
|
17398
|
+
* @param tmpReq DownloadDataTrackResultRequest
|
|
17399
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17400
|
+
* @return DownloadDataTrackResultResponse
|
|
17401
|
+
*/
|
|
16925
17402
|
downloadDataTrackResultWithOptions(tmpReq: DownloadDataTrackResultRequest, runtime: $Util.RuntimeOptions): Promise<DownloadDataTrackResultResponse>;
|
|
17403
|
+
/**
|
|
17404
|
+
* @summary Downloads the parsing result of a data tracking task.
|
|
17405
|
+
*
|
|
17406
|
+
* @param request DownloadDataTrackResultRequest
|
|
17407
|
+
* @return DownloadDataTrackResultResponse
|
|
17408
|
+
*/
|
|
16926
17409
|
downloadDataTrackResult(request: DownloadDataTrackResultRequest): Promise<DownloadDataTrackResultResponse>;
|
|
17410
|
+
/**
|
|
17411
|
+
* @summary Modifies the information about a logical database.
|
|
17412
|
+
*
|
|
17413
|
+
* @param tmpReq EditLogicDatabaseRequest
|
|
17414
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17415
|
+
* @return EditLogicDatabaseResponse
|
|
17416
|
+
*/
|
|
16927
17417
|
editLogicDatabaseWithOptions(tmpReq: EditLogicDatabaseRequest, runtime: $Util.RuntimeOptions): Promise<EditLogicDatabaseResponse>;
|
|
17418
|
+
/**
|
|
17419
|
+
* @summary Modifies the information about a logical database.
|
|
17420
|
+
*
|
|
17421
|
+
* @param request EditLogicDatabaseRequest
|
|
17422
|
+
* @return EditLogicDatabaseResponse
|
|
17423
|
+
*/
|
|
16928
17424
|
editLogicDatabase(request: EditLogicDatabaseRequest): Promise<EditLogicDatabaseResponse>;
|
|
16929
17425
|
/**
|
|
16930
|
-
|
|
16931
|
-
|
|
16932
|
-
|
|
16933
|
-
|
|
16934
|
-
|
|
16935
|
-
|
|
17426
|
+
* @summary You can call this operation to enable a user that has been disabled in Data Management (DMS) Enterprise.
|
|
17427
|
+
*
|
|
17428
|
+
* @description The effect of enabling a user by calling this operation is the same as that of enabling a user by choosing System Management > User Management in the DMS Enterprise console. The administrator of DMS Enterprise can call this operation to enable a user that has been disabled in DMS Enterprise. After the user is enabled, the corresponding Alibaba Cloud account or Resource Access Management (RAM) user can continue to log on to DMS Enterprise and perform relevant operations.
|
|
17429
|
+
* > This operation only enables the Alibaba Cloud account or RAM user to log on to DMS Enterprise of the enterprise and perform relevant operations, rather than granting other permissions to the Alibaba Cloud account or RAM user.
|
|
17430
|
+
*
|
|
17431
|
+
* @param request EnableUserRequest
|
|
17432
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17433
|
+
* @return EnableUserResponse
|
|
16936
17434
|
*/
|
|
16937
17435
|
enableUserWithOptions(request: EnableUserRequest, runtime: $Util.RuntimeOptions): Promise<EnableUserResponse>;
|
|
16938
17436
|
/**
|
|
16939
|
-
|
|
16940
|
-
|
|
16941
|
-
|
|
16942
|
-
|
|
16943
|
-
|
|
17437
|
+
* @summary You can call this operation to enable a user that has been disabled in Data Management (DMS) Enterprise.
|
|
17438
|
+
*
|
|
17439
|
+
* @description The effect of enabling a user by calling this operation is the same as that of enabling a user by choosing System Management > User Management in the DMS Enterprise console. The administrator of DMS Enterprise can call this operation to enable a user that has been disabled in DMS Enterprise. After the user is enabled, the corresponding Alibaba Cloud account or Resource Access Management (RAM) user can continue to log on to DMS Enterprise and perform relevant operations.
|
|
17440
|
+
* > This operation only enables the Alibaba Cloud account or RAM user to log on to DMS Enterprise of the enterprise and perform relevant operations, rather than granting other permissions to the Alibaba Cloud account or RAM user.
|
|
17441
|
+
*
|
|
17442
|
+
* @param request EnableUserRequest
|
|
17443
|
+
* @return EnableUserResponse
|
|
16944
17444
|
*/
|
|
16945
17445
|
enableUser(request: EnableUserRequest): Promise<EnableUserResponse>;
|
|
17446
|
+
/**
|
|
17447
|
+
* @summary Submits a ticket for data change.
|
|
17448
|
+
*
|
|
17449
|
+
* @param tmpReq ExecuteDataCorrectRequest
|
|
17450
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17451
|
+
* @return ExecuteDataCorrectResponse
|
|
17452
|
+
*/
|
|
16946
17453
|
executeDataCorrectWithOptions(tmpReq: ExecuteDataCorrectRequest, runtime: $Util.RuntimeOptions): Promise<ExecuteDataCorrectResponse>;
|
|
17454
|
+
/**
|
|
17455
|
+
* @summary Submits a ticket for data change.
|
|
17456
|
+
*
|
|
17457
|
+
* @param request ExecuteDataCorrectRequest
|
|
17458
|
+
* @return ExecuteDataCorrectResponse
|
|
17459
|
+
*/
|
|
16947
17460
|
executeDataCorrect(request: ExecuteDataCorrectRequest): Promise<ExecuteDataCorrectResponse>;
|
|
17461
|
+
/**
|
|
17462
|
+
* @summary Executes a data export ticket.
|
|
17463
|
+
*
|
|
17464
|
+
* @param tmpReq ExecuteDataExportRequest
|
|
17465
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17466
|
+
* @return ExecuteDataExportResponse
|
|
17467
|
+
*/
|
|
16948
17468
|
executeDataExportWithOptions(tmpReq: ExecuteDataExportRequest, runtime: $Util.RuntimeOptions): Promise<ExecuteDataExportResponse>;
|
|
17469
|
+
/**
|
|
17470
|
+
* @summary Executes a data export ticket.
|
|
17471
|
+
*
|
|
17472
|
+
* @param request ExecuteDataExportRequest
|
|
17473
|
+
* @return ExecuteDataExportResponse
|
|
17474
|
+
*/
|
|
16949
17475
|
executeDataExport(request: ExecuteDataExportRequest): Promise<ExecuteDataExportResponse>;
|
|
16950
17476
|
/**
|
|
16951
|
-
|
|
16952
|
-
|
|
16953
|
-
|
|
16954
|
-
|
|
16955
|
-
|
|
17477
|
+
* @summary Executes SQL statements.
|
|
17478
|
+
*
|
|
17479
|
+
* @description You can call this operation only for instances that are managed in Security Collaboration mode.
|
|
17480
|
+
*
|
|
17481
|
+
* @param request ExecuteScriptRequest
|
|
17482
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17483
|
+
* @return ExecuteScriptResponse
|
|
16956
17484
|
*/
|
|
16957
17485
|
executeScriptWithOptions(request: ExecuteScriptRequest, runtime: $Util.RuntimeOptions): Promise<ExecuteScriptResponse>;
|
|
16958
17486
|
/**
|
|
16959
|
-
|
|
16960
|
-
|
|
16961
|
-
|
|
16962
|
-
|
|
17487
|
+
* @summary Executes SQL statements.
|
|
17488
|
+
*
|
|
17489
|
+
* @description You can call this operation only for instances that are managed in Security Collaboration mode.
|
|
17490
|
+
*
|
|
17491
|
+
* @param request ExecuteScriptRequest
|
|
17492
|
+
* @return ExecuteScriptResponse
|
|
16963
17493
|
*/
|
|
16964
17494
|
executeScript(request: ExecuteScriptRequest): Promise<ExecuteScriptResponse>;
|
|
16965
17495
|
/**
|
|
16966
|
-
|
|
16967
|
-
|
|
16968
|
-
|
|
16969
|
-
|
|
16970
|
-
|
|
16971
|
-
|
|
17496
|
+
* @summary Executes a schema synchronization task.
|
|
17497
|
+
*
|
|
17498
|
+
* @description If the security rules of an instance indicate that a ticket must be approved before you perform schema synchronization, you can call the [SubmitStructSyncOrderApproval](https://help.aliyun.com/document_detail/206166.html) operation to submit the ticket for approval.
|
|
17499
|
+
* > You can call the [GetStructSyncJobDetail](https://help.aliyun.com/document_detail/206160.html) operation to query whether you need to submit a ticket for approval.
|
|
17500
|
+
*
|
|
17501
|
+
* @param request ExecuteStructSyncRequest
|
|
17502
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17503
|
+
* @return ExecuteStructSyncResponse
|
|
16972
17504
|
*/
|
|
16973
17505
|
executeStructSyncWithOptions(request: ExecuteStructSyncRequest, runtime: $Util.RuntimeOptions): Promise<ExecuteStructSyncResponse>;
|
|
16974
17506
|
/**
|
|
16975
|
-
|
|
16976
|
-
|
|
16977
|
-
|
|
16978
|
-
|
|
16979
|
-
|
|
17507
|
+
* @summary Executes a schema synchronization task.
|
|
17508
|
+
*
|
|
17509
|
+
* @description If the security rules of an instance indicate that a ticket must be approved before you perform schema synchronization, you can call the [SubmitStructSyncOrderApproval](https://help.aliyun.com/document_detail/206166.html) operation to submit the ticket for approval.
|
|
17510
|
+
* > You can call the [GetStructSyncJobDetail](https://help.aliyun.com/document_detail/206160.html) operation to query whether you need to submit a ticket for approval.
|
|
17511
|
+
*
|
|
17512
|
+
* @param request ExecuteStructSyncRequest
|
|
17513
|
+
* @return ExecuteStructSyncResponse
|
|
16980
17514
|
*/
|
|
16981
17515
|
executeStructSync(request: ExecuteStructSyncRequest): Promise<ExecuteStructSyncResponse>;
|
|
17516
|
+
/**
|
|
17517
|
+
* @summary Queries the approval details of a ticket.
|
|
17518
|
+
*
|
|
17519
|
+
* @param request GetApprovalDetailRequest
|
|
17520
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17521
|
+
* @return GetApprovalDetailResponse
|
|
17522
|
+
*/
|
|
16982
17523
|
getApprovalDetailWithOptions(request: GetApprovalDetailRequest, runtime: $Util.RuntimeOptions): Promise<GetApprovalDetailResponse>;
|
|
17524
|
+
/**
|
|
17525
|
+
* @summary Queries the approval details of a ticket.
|
|
17526
|
+
*
|
|
17527
|
+
* @param request GetApprovalDetailRequest
|
|
17528
|
+
* @return GetApprovalDetailResponse
|
|
17529
|
+
*/
|
|
16983
17530
|
getApprovalDetail(request: GetApprovalDetailRequest): Promise<GetApprovalDetailResponse>;
|
|
16984
17531
|
/**
|
|
16985
|
-
|
|
16986
|
-
|
|
16987
|
-
|
|
16988
|
-
|
|
16989
|
-
|
|
17532
|
+
* @summary Queries the information about a permission template.
|
|
17533
|
+
*
|
|
17534
|
+
* @description You must be a Data Management (DMS) administrator or a database administrator (DBA). For more information about how to view system roles, see [View system roles](https://help.aliyun.com/document_detail/324212.html).
|
|
17535
|
+
*
|
|
17536
|
+
* @param request GetAuthorityTemplateRequest
|
|
17537
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17538
|
+
* @return GetAuthorityTemplateResponse
|
|
16990
17539
|
*/
|
|
16991
17540
|
getAuthorityTemplateWithOptions(request: GetAuthorityTemplateRequest, runtime: $Util.RuntimeOptions): Promise<GetAuthorityTemplateResponse>;
|
|
16992
17541
|
/**
|
|
16993
|
-
|
|
16994
|
-
|
|
16995
|
-
|
|
16996
|
-
|
|
17542
|
+
* @summary Queries the information about a permission template.
|
|
17543
|
+
*
|
|
17544
|
+
* @description You must be a Data Management (DMS) administrator or a database administrator (DBA). For more information about how to view system roles, see [View system roles](https://help.aliyun.com/document_detail/324212.html).
|
|
17545
|
+
*
|
|
17546
|
+
* @param request GetAuthorityTemplateRequest
|
|
17547
|
+
* @return GetAuthorityTemplateResponse
|
|
16997
17548
|
*/
|
|
16998
17549
|
getAuthorityTemplate(request: GetAuthorityTemplateRequest): Promise<GetAuthorityTemplateResponse>;
|
|
16999
17550
|
/**
|
|
17000
|
-
|
|
17001
|
-
|
|
17002
|
-
|
|
17003
|
-
|
|
17004
|
-
|
|
17551
|
+
* @summary Queries the resources in a permission template.
|
|
17552
|
+
*
|
|
17553
|
+
* @description You are a database administrator (DBA) or a Data Management (DMS) administrator. For more information about how to view system roles, see [View system roles](https://help.aliyun.com/document_detail/324212.html).
|
|
17554
|
+
*
|
|
17555
|
+
* @param request GetAuthorityTemplateItemRequest
|
|
17556
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17557
|
+
* @return GetAuthorityTemplateItemResponse
|
|
17005
17558
|
*/
|
|
17006
17559
|
getAuthorityTemplateItemWithOptions(request: GetAuthorityTemplateItemRequest, runtime: $Util.RuntimeOptions): Promise<GetAuthorityTemplateItemResponse>;
|
|
17007
17560
|
/**
|
|
17008
|
-
|
|
17009
|
-
|
|
17010
|
-
|
|
17011
|
-
|
|
17561
|
+
* @summary Queries the resources in a permission template.
|
|
17562
|
+
*
|
|
17563
|
+
* @description You are a database administrator (DBA) or a Data Management (DMS) administrator. For more information about how to view system roles, see [View system roles](https://help.aliyun.com/document_detail/324212.html).
|
|
17564
|
+
*
|
|
17565
|
+
* @param request GetAuthorityTemplateItemRequest
|
|
17566
|
+
* @return GetAuthorityTemplateItemResponse
|
|
17012
17567
|
*/
|
|
17013
17568
|
getAuthorityTemplateItem(request: GetAuthorityTemplateItemRequest): Promise<GetAuthorityTemplateItemResponse>;
|
|
17569
|
+
/**
|
|
17570
|
+
* @summary 获取实例绑定的分类分级模板
|
|
17571
|
+
*
|
|
17572
|
+
* @param request GetClassificationTemplateRequest
|
|
17573
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17574
|
+
* @return GetClassificationTemplateResponse
|
|
17575
|
+
*/
|
|
17014
17576
|
getClassificationTemplateWithOptions(request: GetClassificationTemplateRequest, runtime: $Util.RuntimeOptions): Promise<GetClassificationTemplateResponse>;
|
|
17577
|
+
/**
|
|
17578
|
+
* @summary 获取实例绑定的分类分级模板
|
|
17579
|
+
*
|
|
17580
|
+
* @param request GetClassificationTemplateRequest
|
|
17581
|
+
* @return GetClassificationTemplateResponse
|
|
17582
|
+
*/
|
|
17015
17583
|
getClassificationTemplate(request: GetClassificationTemplateRequest): Promise<GetClassificationTemplateResponse>;
|
|
17584
|
+
/**
|
|
17585
|
+
* @summary Queries the log that records the scheduling details of an SQL task.
|
|
17586
|
+
*
|
|
17587
|
+
* @param request GetDBTaskSQLJobLogRequest
|
|
17588
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17589
|
+
* @return GetDBTaskSQLJobLogResponse
|
|
17590
|
+
*/
|
|
17016
17591
|
getDBTaskSQLJobLogWithOptions(request: GetDBTaskSQLJobLogRequest, runtime: $Util.RuntimeOptions): Promise<GetDBTaskSQLJobLogResponse>;
|
|
17592
|
+
/**
|
|
17593
|
+
* @summary Queries the log that records the scheduling details of an SQL task.
|
|
17594
|
+
*
|
|
17595
|
+
* @param request GetDBTaskSQLJobLogRequest
|
|
17596
|
+
* @return GetDBTaskSQLJobLogResponse
|
|
17597
|
+
*/
|
|
17017
17598
|
getDBTaskSQLJobLog(request: GetDBTaskSQLJobLogRequest): Promise<GetDBTaskSQLJobLogResponse>;
|
|
17599
|
+
/**
|
|
17600
|
+
* @summary Queries the topologies of a logical database and its physical database shards.
|
|
17601
|
+
*
|
|
17602
|
+
* @param request GetDBTopologyRequest
|
|
17603
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17604
|
+
* @return GetDBTopologyResponse
|
|
17605
|
+
*/
|
|
17018
17606
|
getDBTopologyWithOptions(request: GetDBTopologyRequest, runtime: $Util.RuntimeOptions): Promise<GetDBTopologyResponse>;
|
|
17607
|
+
/**
|
|
17608
|
+
* @summary Queries the topologies of a logical database and its physical database shards.
|
|
17609
|
+
*
|
|
17610
|
+
* @param request GetDBTopologyRequest
|
|
17611
|
+
* @return GetDBTopologyResponse
|
|
17612
|
+
*/
|
|
17019
17613
|
getDBTopology(request: GetDBTopologyRequest): Promise<GetDBTopologyResponse>;
|
|
17614
|
+
/**
|
|
17615
|
+
* @summary Queries the statistics of data archiving orders, including the number of successful archiving tickets, the number of failed archiving tickets, the number of in-progress archiving tickets, and the total number of archiving tickets.
|
|
17616
|
+
*
|
|
17617
|
+
* @param request GetDataArchiveCountRequest
|
|
17618
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17619
|
+
* @return GetDataArchiveCountResponse
|
|
17620
|
+
*/
|
|
17020
17621
|
getDataArchiveCountWithOptions(request: GetDataArchiveCountRequest, runtime: $Util.RuntimeOptions): Promise<GetDataArchiveCountResponse>;
|
|
17622
|
+
/**
|
|
17623
|
+
* @summary Queries the statistics of data archiving orders, including the number of successful archiving tickets, the number of failed archiving tickets, the number of in-progress archiving tickets, and the total number of archiving tickets.
|
|
17624
|
+
*
|
|
17625
|
+
* @param request GetDataArchiveCountRequest
|
|
17626
|
+
* @return GetDataArchiveCountResponse
|
|
17627
|
+
*/
|
|
17021
17628
|
getDataArchiveCount(request: GetDataArchiveCountRequest): Promise<GetDataArchiveCountResponse>;
|
|
17629
|
+
/**
|
|
17630
|
+
* @summary Queries the details of a data archiving ticket.
|
|
17631
|
+
*
|
|
17632
|
+
* @param request GetDataArchiveOrderDetailRequest
|
|
17633
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17634
|
+
* @return GetDataArchiveOrderDetailResponse
|
|
17635
|
+
*/
|
|
17022
17636
|
getDataArchiveOrderDetailWithOptions(request: GetDataArchiveOrderDetailRequest, runtime: $Util.RuntimeOptions): Promise<GetDataArchiveOrderDetailResponse>;
|
|
17637
|
+
/**
|
|
17638
|
+
* @summary Queries the details of a data archiving ticket.
|
|
17639
|
+
*
|
|
17640
|
+
* @param request GetDataArchiveOrderDetailRequest
|
|
17641
|
+
* @return GetDataArchiveOrderDetailResponse
|
|
17642
|
+
*/
|
|
17023
17643
|
getDataArchiveOrderDetail(request: GetDataArchiveOrderDetailRequest): Promise<GetDataArchiveOrderDetailResponse>;
|
|
17644
|
+
/**
|
|
17645
|
+
* @summary Queries the download URL of the backup file for a data change ticket in Data Management (DMS).
|
|
17646
|
+
*
|
|
17647
|
+
* @param tmpReq GetDataCorrectBackupFilesRequest
|
|
17648
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17649
|
+
* @return GetDataCorrectBackupFilesResponse
|
|
17650
|
+
*/
|
|
17024
17651
|
getDataCorrectBackupFilesWithOptions(tmpReq: GetDataCorrectBackupFilesRequest, runtime: $Util.RuntimeOptions): Promise<GetDataCorrectBackupFilesResponse>;
|
|
17652
|
+
/**
|
|
17653
|
+
* @summary Queries the download URL of the backup file for a data change ticket in Data Management (DMS).
|
|
17654
|
+
*
|
|
17655
|
+
* @param request GetDataCorrectBackupFilesRequest
|
|
17656
|
+
* @return GetDataCorrectBackupFilesResponse
|
|
17657
|
+
*/
|
|
17025
17658
|
getDataCorrectBackupFiles(request: GetDataCorrectBackupFilesRequest): Promise<GetDataCorrectBackupFilesResponse>;
|
|
17659
|
+
/**
|
|
17660
|
+
* @summary Queries the information about a data change ticket in Data Management (DMS).
|
|
17661
|
+
*
|
|
17662
|
+
* @param request GetDataCorrectOrderDetailRequest
|
|
17663
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17664
|
+
* @return GetDataCorrectOrderDetailResponse
|
|
17665
|
+
*/
|
|
17026
17666
|
getDataCorrectOrderDetailWithOptions(request: GetDataCorrectOrderDetailRequest, runtime: $Util.RuntimeOptions): Promise<GetDataCorrectOrderDetailResponse>;
|
|
17667
|
+
/**
|
|
17668
|
+
* @summary Queries the information about a data change ticket in Data Management (DMS).
|
|
17669
|
+
*
|
|
17670
|
+
* @param request GetDataCorrectOrderDetailRequest
|
|
17671
|
+
* @return GetDataCorrectOrderDetailResponse
|
|
17672
|
+
*/
|
|
17027
17673
|
getDataCorrectOrderDetail(request: GetDataCorrectOrderDetailRequest): Promise<GetDataCorrectOrderDetailResponse>;
|
|
17674
|
+
/**
|
|
17675
|
+
* @summary Queries the download URL of the rollback attachment submitted along with a data change ticket.
|
|
17676
|
+
*
|
|
17677
|
+
* @param request GetDataCorrectRollbackFileRequest
|
|
17678
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17679
|
+
* @return GetDataCorrectRollbackFileResponse
|
|
17680
|
+
*/
|
|
17028
17681
|
getDataCorrectRollbackFileWithOptions(request: GetDataCorrectRollbackFileRequest, runtime: $Util.RuntimeOptions): Promise<GetDataCorrectRollbackFileResponse>;
|
|
17682
|
+
/**
|
|
17683
|
+
* @summary Queries the download URL of the rollback attachment submitted along with a data change ticket.
|
|
17684
|
+
*
|
|
17685
|
+
* @param request GetDataCorrectRollbackFileRequest
|
|
17686
|
+
* @return GetDataCorrectRollbackFileResponse
|
|
17687
|
+
*/
|
|
17029
17688
|
getDataCorrectRollbackFile(request: GetDataCorrectRollbackFileRequest): Promise<GetDataCorrectRollbackFileResponse>;
|
|
17030
17689
|
/**
|
|
17031
|
-
|
|
17032
|
-
|
|
17033
|
-
|
|
17034
|
-
|
|
17035
|
-
|
|
17690
|
+
* @summary Queries the download URL of the SQL script for a data change task.
|
|
17691
|
+
*
|
|
17692
|
+
* @description This operation applies to [regular data change](https://help.aliyun.com/document_detail/58419.html) and [batch data import](https://help.aliyun.com/document_detail/144643.html).
|
|
17693
|
+
*
|
|
17694
|
+
* @param request GetDataCorrectSQLFileRequest
|
|
17695
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17696
|
+
* @return GetDataCorrectSQLFileResponse
|
|
17036
17697
|
*/
|
|
17037
17698
|
getDataCorrectSQLFileWithOptions(request: GetDataCorrectSQLFileRequest, runtime: $Util.RuntimeOptions): Promise<GetDataCorrectSQLFileResponse>;
|
|
17038
17699
|
/**
|
|
17039
|
-
|
|
17040
|
-
|
|
17041
|
-
|
|
17042
|
-
|
|
17700
|
+
* @summary Queries the download URL of the SQL script for a data change task.
|
|
17701
|
+
*
|
|
17702
|
+
* @description This operation applies to [regular data change](https://help.aliyun.com/document_detail/58419.html) and [batch data import](https://help.aliyun.com/document_detail/144643.html).
|
|
17703
|
+
*
|
|
17704
|
+
* @param request GetDataCorrectSQLFileRequest
|
|
17705
|
+
* @return GetDataCorrectSQLFileResponse
|
|
17043
17706
|
*/
|
|
17044
17707
|
getDataCorrectSQLFile(request: GetDataCorrectSQLFileRequest): Promise<GetDataCorrectSQLFileResponse>;
|
|
17708
|
+
/**
|
|
17709
|
+
* @summary Queries the information about a data change, lock-free data change, or data import task.
|
|
17710
|
+
*
|
|
17711
|
+
* @param request GetDataCorrectTaskDetailRequest
|
|
17712
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17713
|
+
* @return GetDataCorrectTaskDetailResponse
|
|
17714
|
+
*/
|
|
17045
17715
|
getDataCorrectTaskDetailWithOptions(request: GetDataCorrectTaskDetailRequest, runtime: $Util.RuntimeOptions): Promise<GetDataCorrectTaskDetailResponse>;
|
|
17716
|
+
/**
|
|
17717
|
+
* @summary Queries the information about a data change, lock-free data change, or data import task.
|
|
17718
|
+
*
|
|
17719
|
+
* @param request GetDataCorrectTaskDetailRequest
|
|
17720
|
+
* @return GetDataCorrectTaskDetailResponse
|
|
17721
|
+
*/
|
|
17046
17722
|
getDataCorrectTaskDetail(request: GetDataCorrectTaskDetailRequest): Promise<GetDataCorrectTaskDetailResponse>;
|
|
17723
|
+
/**
|
|
17724
|
+
* @summary Queries the scheduling configuration of a ticket for cleaning up historical data.
|
|
17725
|
+
*
|
|
17726
|
+
* @param request GetDataCronClearConfigRequest
|
|
17727
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17728
|
+
* @return GetDataCronClearConfigResponse
|
|
17729
|
+
*/
|
|
17047
17730
|
getDataCronClearConfigWithOptions(request: GetDataCronClearConfigRequest, runtime: $Util.RuntimeOptions): Promise<GetDataCronClearConfigResponse>;
|
|
17731
|
+
/**
|
|
17732
|
+
* @summary Queries the scheduling configuration of a ticket for cleaning up historical data.
|
|
17733
|
+
*
|
|
17734
|
+
* @param request GetDataCronClearConfigRequest
|
|
17735
|
+
* @return GetDataCronClearConfigResponse
|
|
17736
|
+
*/
|
|
17048
17737
|
getDataCronClearConfig(request: GetDataCronClearConfigRequest): Promise<GetDataCronClearConfigResponse>;
|
|
17738
|
+
/**
|
|
17739
|
+
* @summary Queries the details of a historical data cleansing ticket.
|
|
17740
|
+
*
|
|
17741
|
+
* @param request GetDataCronClearTaskDetailListRequest
|
|
17742
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17743
|
+
* @return GetDataCronClearTaskDetailListResponse
|
|
17744
|
+
*/
|
|
17049
17745
|
getDataCronClearTaskDetailListWithOptions(request: GetDataCronClearTaskDetailListRequest, runtime: $Util.RuntimeOptions): Promise<GetDataCronClearTaskDetailListResponse>;
|
|
17746
|
+
/**
|
|
17747
|
+
* @summary Queries the details of a historical data cleansing ticket.
|
|
17748
|
+
*
|
|
17749
|
+
* @param request GetDataCronClearTaskDetailListRequest
|
|
17750
|
+
* @return GetDataCronClearTaskDetailListResponse
|
|
17751
|
+
*/
|
|
17050
17752
|
getDataCronClearTaskDetailList(request: GetDataCronClearTaskDetailListRequest): Promise<GetDataCronClearTaskDetailListResponse>;
|
|
17753
|
+
/**
|
|
17754
|
+
* @summary Queries the download URL of the file that records the export results for a data export ticket in Data Management (DMS).
|
|
17755
|
+
*
|
|
17756
|
+
* @param request GetDataExportDownloadURLRequest
|
|
17757
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17758
|
+
* @return GetDataExportDownloadURLResponse
|
|
17759
|
+
*/
|
|
17051
17760
|
getDataExportDownloadURLWithOptions(request: GetDataExportDownloadURLRequest, runtime: $Util.RuntimeOptions): Promise<GetDataExportDownloadURLResponse>;
|
|
17761
|
+
/**
|
|
17762
|
+
* @summary Queries the download URL of the file that records the export results for a data export ticket in Data Management (DMS).
|
|
17763
|
+
*
|
|
17764
|
+
* @param request GetDataExportDownloadURLRequest
|
|
17765
|
+
* @return GetDataExportDownloadURLResponse
|
|
17766
|
+
*/
|
|
17052
17767
|
getDataExportDownloadURL(request: GetDataExportDownloadURLRequest): Promise<GetDataExportDownloadURLResponse>;
|
|
17768
|
+
/**
|
|
17769
|
+
* @summary Queries the information about a data export ticket.
|
|
17770
|
+
*
|
|
17771
|
+
* @param request GetDataExportOrderDetailRequest
|
|
17772
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17773
|
+
* @return GetDataExportOrderDetailResponse
|
|
17774
|
+
*/
|
|
17053
17775
|
getDataExportOrderDetailWithOptions(request: GetDataExportOrderDetailRequest, runtime: $Util.RuntimeOptions): Promise<GetDataExportOrderDetailResponse>;
|
|
17776
|
+
/**
|
|
17777
|
+
* @summary Queries the information about a data export ticket.
|
|
17778
|
+
*
|
|
17779
|
+
* @param request GetDataExportOrderDetailRequest
|
|
17780
|
+
* @return GetDataExportOrderDetailResponse
|
|
17781
|
+
*/
|
|
17054
17782
|
getDataExportOrderDetail(request: GetDataExportOrderDetailRequest): Promise<GetDataExportOrderDetailResponse>;
|
|
17783
|
+
/**
|
|
17784
|
+
* @summary Queries the precheck details of an SQL result set export ticket.
|
|
17785
|
+
*
|
|
17786
|
+
* @param request GetDataExportPreCheckDetailRequest
|
|
17787
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17788
|
+
* @return GetDataExportPreCheckDetailResponse
|
|
17789
|
+
*/
|
|
17055
17790
|
getDataExportPreCheckDetailWithOptions(request: GetDataExportPreCheckDetailRequest, runtime: $Util.RuntimeOptions): Promise<GetDataExportPreCheckDetailResponse>;
|
|
17791
|
+
/**
|
|
17792
|
+
* @summary Queries the precheck details of an SQL result set export ticket.
|
|
17793
|
+
*
|
|
17794
|
+
* @param request GetDataExportPreCheckDetailRequest
|
|
17795
|
+
* @return GetDataExportPreCheckDetailResponse
|
|
17796
|
+
*/
|
|
17056
17797
|
getDataExportPreCheckDetail(request: GetDataExportPreCheckDetailRequest): Promise<GetDataExportPreCheckDetailResponse>;
|
|
17057
17798
|
/**
|
|
17058
|
-
|
|
17059
|
-
|
|
17060
|
-
|
|
17061
|
-
|
|
17062
|
-
|
|
17799
|
+
* @summary Queries the SQL statements used for data import in a ticket.
|
|
17800
|
+
*
|
|
17801
|
+
* @description You can call this operation only if the data is imported in security mode in your data import ticket.
|
|
17802
|
+
*
|
|
17803
|
+
* @param request GetDataImportSQLRequest
|
|
17804
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17805
|
+
* @return GetDataImportSQLResponse
|
|
17063
17806
|
*/
|
|
17064
17807
|
getDataImportSQLWithOptions(request: GetDataImportSQLRequest, runtime: $Util.RuntimeOptions): Promise<GetDataImportSQLResponse>;
|
|
17065
17808
|
/**
|
|
17066
|
-
|
|
17067
|
-
|
|
17068
|
-
|
|
17069
|
-
|
|
17809
|
+
* @summary Queries the SQL statements used for data import in a ticket.
|
|
17810
|
+
*
|
|
17811
|
+
* @description You can call this operation only if the data is imported in security mode in your data import ticket.
|
|
17812
|
+
*
|
|
17813
|
+
* @param request GetDataImportSQLRequest
|
|
17814
|
+
* @return GetDataImportSQLResponse
|
|
17070
17815
|
*/
|
|
17071
17816
|
getDataImportSQL(request: GetDataImportSQLRequest): Promise<GetDataImportSQLResponse>;
|
|
17817
|
+
/**
|
|
17818
|
+
* @summary Queries the progress of a data tracking task.
|
|
17819
|
+
*
|
|
17820
|
+
* @param request GetDataTrackJobDegreeRequest
|
|
17821
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17822
|
+
* @return GetDataTrackJobDegreeResponse
|
|
17823
|
+
*/
|
|
17072
17824
|
getDataTrackJobDegreeWithOptions(request: GetDataTrackJobDegreeRequest, runtime: $Util.RuntimeOptions): Promise<GetDataTrackJobDegreeResponse>;
|
|
17825
|
+
/**
|
|
17826
|
+
* @summary Queries the progress of a data tracking task.
|
|
17827
|
+
*
|
|
17828
|
+
* @param request GetDataTrackJobDegreeRequest
|
|
17829
|
+
* @return GetDataTrackJobDegreeResponse
|
|
17830
|
+
*/
|
|
17073
17831
|
getDataTrackJobDegree(request: GetDataTrackJobDegreeRequest): Promise<GetDataTrackJobDegreeResponse>;
|
|
17832
|
+
/**
|
|
17833
|
+
* @summary Queries the metadata of tables involved in a data tracking task.
|
|
17834
|
+
*
|
|
17835
|
+
* @param request GetDataTrackJobTableMetaRequest
|
|
17836
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17837
|
+
* @return GetDataTrackJobTableMetaResponse
|
|
17838
|
+
*/
|
|
17074
17839
|
getDataTrackJobTableMetaWithOptions(request: GetDataTrackJobTableMetaRequest, runtime: $Util.RuntimeOptions): Promise<GetDataTrackJobTableMetaResponse>;
|
|
17840
|
+
/**
|
|
17841
|
+
* @summary Queries the metadata of tables involved in a data tracking task.
|
|
17842
|
+
*
|
|
17843
|
+
* @param request GetDataTrackJobTableMetaRequest
|
|
17844
|
+
* @return GetDataTrackJobTableMetaResponse
|
|
17845
|
+
*/
|
|
17075
17846
|
getDataTrackJobTableMeta(request: GetDataTrackJobTableMetaRequest): Promise<GetDataTrackJobTableMetaResponse>;
|
|
17847
|
+
/**
|
|
17848
|
+
* @summary Queries the details of a data tracking ticket.
|
|
17849
|
+
*
|
|
17850
|
+
* @param request GetDataTrackOrderDetailRequest
|
|
17851
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17852
|
+
* @return GetDataTrackOrderDetailResponse
|
|
17853
|
+
*/
|
|
17076
17854
|
getDataTrackOrderDetailWithOptions(request: GetDataTrackOrderDetailRequest, runtime: $Util.RuntimeOptions): Promise<GetDataTrackOrderDetailResponse>;
|
|
17855
|
+
/**
|
|
17856
|
+
* @summary Queries the details of a data tracking ticket.
|
|
17857
|
+
*
|
|
17858
|
+
* @param request GetDataTrackOrderDetailRequest
|
|
17859
|
+
* @return GetDataTrackOrderDetailResponse
|
|
17860
|
+
*/
|
|
17077
17861
|
getDataTrackOrderDetail(request: GetDataTrackOrderDetailRequest): Promise<GetDataTrackOrderDetailResponse>;
|
|
17862
|
+
/**
|
|
17863
|
+
* @summary Queries details of a specific database.
|
|
17864
|
+
*
|
|
17865
|
+
* @param request GetDatabaseRequest
|
|
17866
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17867
|
+
* @return GetDatabaseResponse
|
|
17868
|
+
*/
|
|
17078
17869
|
getDatabaseWithOptions(request: GetDatabaseRequest, runtime: $Util.RuntimeOptions): Promise<GetDatabaseResponse>;
|
|
17870
|
+
/**
|
|
17871
|
+
* @summary Queries details of a specific database.
|
|
17872
|
+
*
|
|
17873
|
+
* @param request GetDatabaseRequest
|
|
17874
|
+
* @return GetDatabaseResponse
|
|
17875
|
+
*/
|
|
17079
17876
|
getDatabase(request: GetDatabaseRequest): Promise<GetDatabaseResponse>;
|
|
17877
|
+
/**
|
|
17878
|
+
* @summary Queries the details of a database export ticket.
|
|
17879
|
+
*
|
|
17880
|
+
* @param request GetDatabaseExportOrderDetailRequest
|
|
17881
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17882
|
+
* @return GetDatabaseExportOrderDetailResponse
|
|
17883
|
+
*/
|
|
17080
17884
|
getDatabaseExportOrderDetailWithOptions(request: GetDatabaseExportOrderDetailRequest, runtime: $Util.RuntimeOptions): Promise<GetDatabaseExportOrderDetailResponse>;
|
|
17885
|
+
/**
|
|
17886
|
+
* @summary Queries the details of a database export ticket.
|
|
17887
|
+
*
|
|
17888
|
+
* @param request GetDatabaseExportOrderDetailRequest
|
|
17889
|
+
* @return GetDatabaseExportOrderDetailResponse
|
|
17890
|
+
*/
|
|
17081
17891
|
getDatabaseExportOrderDetail(request: GetDatabaseExportOrderDetailRequest): Promise<GetDatabaseExportOrderDetailResponse>;
|
|
17892
|
+
/**
|
|
17893
|
+
* @summary 获取数据库导出下载地址
|
|
17894
|
+
*
|
|
17895
|
+
* @param request GetDbExportDownloadURLRequest
|
|
17896
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17897
|
+
* @return GetDbExportDownloadURLResponse
|
|
17898
|
+
*/
|
|
17082
17899
|
getDbExportDownloadURLWithOptions(request: GetDbExportDownloadURLRequest, runtime: $Util.RuntimeOptions): Promise<GetDbExportDownloadURLResponse>;
|
|
17900
|
+
/**
|
|
17901
|
+
* @summary 获取数据库导出下载地址
|
|
17902
|
+
*
|
|
17903
|
+
* @param request GetDbExportDownloadURLRequest
|
|
17904
|
+
* @return GetDbExportDownloadURLResponse
|
|
17905
|
+
*/
|
|
17083
17906
|
getDbExportDownloadURL(request: GetDbExportDownloadURLRequest): Promise<GetDbExportDownloadURLResponse>;
|
|
17907
|
+
/**
|
|
17908
|
+
* @summary Queries the details of a database instance.
|
|
17909
|
+
*
|
|
17910
|
+
* @param request GetInstanceRequest
|
|
17911
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17912
|
+
* @return GetInstanceResponse
|
|
17913
|
+
*/
|
|
17084
17914
|
getInstanceWithOptions(request: GetInstanceRequest, runtime: $Util.RuntimeOptions): Promise<GetInstanceResponse>;
|
|
17915
|
+
/**
|
|
17916
|
+
* @summary Queries the details of a database instance.
|
|
17917
|
+
*
|
|
17918
|
+
* @param request GetInstanceRequest
|
|
17919
|
+
* @return GetInstanceResponse
|
|
17920
|
+
*/
|
|
17085
17921
|
getInstance(request: GetInstanceRequest): Promise<GetInstanceResponse>;
|
|
17086
17922
|
/**
|
|
17087
|
-
|
|
17088
|
-
|
|
17089
|
-
|
|
17090
|
-
|
|
17091
|
-
|
|
17923
|
+
* @summary Queries the minimum scheduling cycle of a task flow when a service level agreement (SLA) timeout rule is configured for the task flow.
|
|
17924
|
+
*
|
|
17925
|
+
* @description The scheduling cycle of a task flow must be greater than the minimum scheduling cycle configured in the SLA rule for the task flow.
|
|
17926
|
+
*
|
|
17927
|
+
* @param request GetIntervalLimitOfSLARequest
|
|
17928
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17929
|
+
* @return GetIntervalLimitOfSLAResponse
|
|
17092
17930
|
*/
|
|
17093
17931
|
getIntervalLimitOfSLAWithOptions(request: GetIntervalLimitOfSLARequest, runtime: $Util.RuntimeOptions): Promise<GetIntervalLimitOfSLAResponse>;
|
|
17094
17932
|
/**
|
|
17095
|
-
|
|
17096
|
-
|
|
17097
|
-
|
|
17098
|
-
|
|
17933
|
+
* @summary Queries the minimum scheduling cycle of a task flow when a service level agreement (SLA) timeout rule is configured for the task flow.
|
|
17934
|
+
*
|
|
17935
|
+
* @description The scheduling cycle of a task flow must be greater than the minimum scheduling cycle configured in the SLA rule for the task flow.
|
|
17936
|
+
*
|
|
17937
|
+
* @param request GetIntervalLimitOfSLARequest
|
|
17938
|
+
* @return GetIntervalLimitOfSLAResponse
|
|
17099
17939
|
*/
|
|
17100
17940
|
getIntervalLimitOfSLA(request: GetIntervalLimitOfSLARequest): Promise<GetIntervalLimitOfSLAResponse>;
|
|
17101
17941
|
/**
|
|
17102
|
-
|
|
17103
|
-
|
|
17104
|
-
|
|
17105
|
-
|
|
17106
|
-
|
|
17942
|
+
* @summary Queries the information about a workspace based on the workspace name in Data Management (DMS).
|
|
17943
|
+
*
|
|
17944
|
+
* @description You are a DMS administrator or a database administrator (DBA).
|
|
17945
|
+
*
|
|
17946
|
+
* @param request GetLhSpaceByNameRequest
|
|
17947
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17948
|
+
* @return GetLhSpaceByNameResponse
|
|
17107
17949
|
*/
|
|
17108
17950
|
getLhSpaceByNameWithOptions(request: GetLhSpaceByNameRequest, runtime: $Util.RuntimeOptions): Promise<GetLhSpaceByNameResponse>;
|
|
17109
17951
|
/**
|
|
17110
|
-
|
|
17111
|
-
|
|
17112
|
-
|
|
17113
|
-
|
|
17952
|
+
* @summary Queries the information about a workspace based on the workspace name in Data Management (DMS).
|
|
17953
|
+
*
|
|
17954
|
+
* @description You are a DMS administrator or a database administrator (DBA).
|
|
17955
|
+
*
|
|
17956
|
+
* @param request GetLhSpaceByNameRequest
|
|
17957
|
+
* @return GetLhSpaceByNameResponse
|
|
17114
17958
|
*/
|
|
17115
17959
|
getLhSpaceByName(request: GetLhSpaceByNameRequest): Promise<GetLhSpaceByNameResponse>;
|
|
17960
|
+
/**
|
|
17961
|
+
* @summary Queries the details of a logical database.
|
|
17962
|
+
*
|
|
17963
|
+
* @param request GetLogicDatabaseRequest
|
|
17964
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17965
|
+
* @return GetLogicDatabaseResponse
|
|
17966
|
+
*/
|
|
17116
17967
|
getLogicDatabaseWithOptions(request: GetLogicDatabaseRequest, runtime: $Util.RuntimeOptions): Promise<GetLogicDatabaseResponse>;
|
|
17968
|
+
/**
|
|
17969
|
+
* @summary Queries the details of a logical database.
|
|
17970
|
+
*
|
|
17971
|
+
* @param request GetLogicDatabaseRequest
|
|
17972
|
+
* @return GetLogicDatabaseResponse
|
|
17973
|
+
*/
|
|
17117
17974
|
getLogicDatabase(request: GetLogicDatabaseRequest): Promise<GetLogicDatabaseResponse>;
|
|
17118
17975
|
/**
|
|
17119
|
-
|
|
17120
|
-
|
|
17121
|
-
|
|
17122
|
-
|
|
17123
|
-
|
|
17976
|
+
* @summary Queries the details of columns in a table.
|
|
17977
|
+
*
|
|
17978
|
+
* @description You can call this operation only for database instances whose control mode is Security Collaboration.
|
|
17979
|
+
*
|
|
17980
|
+
* @param request GetMetaTableColumnRequest
|
|
17981
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
17982
|
+
* @return GetMetaTableColumnResponse
|
|
17124
17983
|
*/
|
|
17125
17984
|
getMetaTableColumnWithOptions(request: GetMetaTableColumnRequest, runtime: $Util.RuntimeOptions): Promise<GetMetaTableColumnResponse>;
|
|
17126
17985
|
/**
|
|
17127
|
-
|
|
17128
|
-
|
|
17129
|
-
|
|
17130
|
-
|
|
17986
|
+
* @summary Queries the details of columns in a table.
|
|
17987
|
+
*
|
|
17988
|
+
* @description You can call this operation only for database instances whose control mode is Security Collaboration.
|
|
17989
|
+
*
|
|
17990
|
+
* @param request GetMetaTableColumnRequest
|
|
17991
|
+
* @return GetMetaTableColumnResponse
|
|
17131
17992
|
*/
|
|
17132
17993
|
getMetaTableColumn(request: GetMetaTableColumnRequest): Promise<GetMetaTableColumnResponse>;
|
|
17133
17994
|
/**
|
|
17134
|
-
|
|
17135
|
-
|
|
17136
|
-
|
|
17137
|
-
|
|
17138
|
-
|
|
17995
|
+
* @summary Queries the details of columns and indexes in a table.
|
|
17996
|
+
*
|
|
17997
|
+
* @description You can call this operation only for database instances whose control mode is Security Collaboration.
|
|
17998
|
+
*
|
|
17999
|
+
* @param request GetMetaTableDetailInfoRequest
|
|
18000
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18001
|
+
* @return GetMetaTableDetailInfoResponse
|
|
17139
18002
|
*/
|
|
17140
18003
|
getMetaTableDetailInfoWithOptions(request: GetMetaTableDetailInfoRequest, runtime: $Util.RuntimeOptions): Promise<GetMetaTableDetailInfoResponse>;
|
|
17141
18004
|
/**
|
|
17142
|
-
|
|
17143
|
-
|
|
17144
|
-
|
|
17145
|
-
|
|
18005
|
+
* @summary Queries the details of columns and indexes in a table.
|
|
18006
|
+
*
|
|
18007
|
+
* @description You can call this operation only for database instances whose control mode is Security Collaboration.
|
|
18008
|
+
*
|
|
18009
|
+
* @param request GetMetaTableDetailInfoRequest
|
|
18010
|
+
* @return GetMetaTableDetailInfoResponse
|
|
17146
18011
|
*/
|
|
17147
18012
|
getMetaTableDetailInfo(request: GetMetaTableDetailInfoRequest): Promise<GetMetaTableDetailInfoResponse>;
|
|
18013
|
+
/**
|
|
18014
|
+
* @summary Queries the details and progress of an OnlineDDL task.
|
|
18015
|
+
*
|
|
18016
|
+
* @param request GetOnlineDDLProgressRequest
|
|
18017
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18018
|
+
* @return GetOnlineDDLProgressResponse
|
|
18019
|
+
*/
|
|
17148
18020
|
getOnlineDDLProgressWithOptions(request: GetOnlineDDLProgressRequest, runtime: $Util.RuntimeOptions): Promise<GetOnlineDDLProgressResponse>;
|
|
18021
|
+
/**
|
|
18022
|
+
* @summary Queries the details and progress of an OnlineDDL task.
|
|
18023
|
+
*
|
|
18024
|
+
* @param request GetOnlineDDLProgressRequest
|
|
18025
|
+
* @return GetOnlineDDLProgressResponse
|
|
18026
|
+
*/
|
|
17149
18027
|
getOnlineDDLProgress(request: GetOnlineDDLProgressRequest): Promise<GetOnlineDDLProgressResponse>;
|
|
17150
18028
|
/**
|
|
17151
|
-
|
|
17152
|
-
|
|
17153
|
-
|
|
17154
|
-
|
|
17155
|
-
|
|
18029
|
+
* @summary Queries the details of operation logs that are generated in a specified period of time.
|
|
18030
|
+
*
|
|
18031
|
+
* @description Prerequisites: You are an administrator of Data Management (DMS) or a security administrator. You can call the [ListUsers](https://help.aliyun.com/document_detail/141938.html) or [GetUser](https://help.aliyun.com/document_detail/147098.html) operation to obtain your user role from the RoleIdList parameter that is returned.
|
|
18032
|
+
*
|
|
18033
|
+
* @param request GetOpLogRequest
|
|
18034
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18035
|
+
* @return GetOpLogResponse
|
|
17156
18036
|
*/
|
|
17157
18037
|
getOpLogWithOptions(request: GetOpLogRequest, runtime: $Util.RuntimeOptions): Promise<GetOpLogResponse>;
|
|
17158
18038
|
/**
|
|
17159
|
-
|
|
17160
|
-
|
|
17161
|
-
|
|
17162
|
-
|
|
18039
|
+
* @summary Queries the details of operation logs that are generated in a specified period of time.
|
|
18040
|
+
*
|
|
18041
|
+
* @description Prerequisites: You are an administrator of Data Management (DMS) or a security administrator. You can call the [ListUsers](https://help.aliyun.com/document_detail/141938.html) or [GetUser](https://help.aliyun.com/document_detail/147098.html) operation to obtain your user role from the RoleIdList parameter that is returned.
|
|
18042
|
+
*
|
|
18043
|
+
* @param request GetOpLogRequest
|
|
18044
|
+
* @return GetOpLogResponse
|
|
17163
18045
|
*/
|
|
17164
18046
|
getOpLog(request: GetOpLogRequest): Promise<GetOpLogResponse>;
|
|
18047
|
+
/**
|
|
18048
|
+
* @summary Queries the download URL of the attachment of a ticket.
|
|
18049
|
+
*
|
|
18050
|
+
* @param request GetOrderAttachmentFileRequest
|
|
18051
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18052
|
+
* @return GetOrderAttachmentFileResponse
|
|
18053
|
+
*/
|
|
17165
18054
|
getOrderAttachmentFileWithOptions(request: GetOrderAttachmentFileRequest, runtime: $Util.RuntimeOptions): Promise<GetOrderAttachmentFileResponse>;
|
|
18055
|
+
/**
|
|
18056
|
+
* @summary Queries the download URL of the attachment of a ticket.
|
|
18057
|
+
*
|
|
18058
|
+
* @param request GetOrderAttachmentFileRequest
|
|
18059
|
+
* @return GetOrderAttachmentFileResponse
|
|
18060
|
+
*/
|
|
17166
18061
|
getOrderAttachmentFile(request: GetOrderAttachmentFileRequest): Promise<GetOrderAttachmentFileResponse>;
|
|
18062
|
+
/**
|
|
18063
|
+
* @summary Queries the basic information about a ticket.
|
|
18064
|
+
*
|
|
18065
|
+
* @param request GetOrderBaseInfoRequest
|
|
18066
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18067
|
+
* @return GetOrderBaseInfoResponse
|
|
18068
|
+
*/
|
|
17167
18069
|
getOrderBaseInfoWithOptions(request: GetOrderBaseInfoRequest, runtime: $Util.RuntimeOptions): Promise<GetOrderBaseInfoResponse>;
|
|
18070
|
+
/**
|
|
18071
|
+
* @summary Queries the basic information about a ticket.
|
|
18072
|
+
*
|
|
18073
|
+
* @param request GetOrderBaseInfoRequest
|
|
18074
|
+
* @return GetOrderBaseInfoResponse
|
|
18075
|
+
*/
|
|
17168
18076
|
getOrderBaseInfo(request: GetOrderBaseInfoRequest): Promise<GetOrderBaseInfoResponse>;
|
|
18077
|
+
/**
|
|
18078
|
+
* @summary Queries the details of the Database-OWNER, Table-OWNER, and Instance-OWNER tickets.
|
|
18079
|
+
*
|
|
18080
|
+
* @param request GetOwnerApplyOrderDetailRequest
|
|
18081
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18082
|
+
* @return GetOwnerApplyOrderDetailResponse
|
|
18083
|
+
*/
|
|
17169
18084
|
getOwnerApplyOrderDetailWithOptions(request: GetOwnerApplyOrderDetailRequest, runtime: $Util.RuntimeOptions): Promise<GetOwnerApplyOrderDetailResponse>;
|
|
18085
|
+
/**
|
|
18086
|
+
* @summary Queries the details of the Database-OWNER, Table-OWNER, and Instance-OWNER tickets.
|
|
18087
|
+
*
|
|
18088
|
+
* @param request GetOwnerApplyOrderDetailRequest
|
|
18089
|
+
* @return GetOwnerApplyOrderDetailResponse
|
|
18090
|
+
*/
|
|
17170
18091
|
getOwnerApplyOrderDetail(request: GetOwnerApplyOrderDetailRequest): Promise<GetOwnerApplyOrderDetailResponse>;
|
|
18092
|
+
/**
|
|
18093
|
+
* @summary 获取数据归档工单任务实例
|
|
18094
|
+
*
|
|
18095
|
+
* @param request GetPagedInstanceRequest
|
|
18096
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18097
|
+
* @return GetPagedInstanceResponse
|
|
18098
|
+
*/
|
|
17171
18099
|
getPagedInstanceWithOptions(request: GetPagedInstanceRequest, runtime: $Util.RuntimeOptions): Promise<GetPagedInstanceResponse>;
|
|
18100
|
+
/**
|
|
18101
|
+
* @summary 获取数据归档工单任务实例
|
|
18102
|
+
*
|
|
18103
|
+
* @param request GetPagedInstanceRequest
|
|
18104
|
+
* @return GetPagedInstanceResponse
|
|
18105
|
+
*/
|
|
17172
18106
|
getPagedInstance(request: GetPagedInstanceRequest): Promise<GetPagedInstanceResponse>;
|
|
17173
18107
|
/**
|
|
17174
|
-
|
|
17175
|
-
|
|
17176
|
-
|
|
17177
|
-
|
|
17178
|
-
|
|
18108
|
+
* @summary Queries the details of a ticket that applies for permissions.
|
|
18109
|
+
*
|
|
18110
|
+
* @description You can call this operation to query the information about tickets that apply for permissions on databases, tables, and sensitive columns.
|
|
18111
|
+
*
|
|
18112
|
+
* @param request GetPermApplyOrderDetailRequest
|
|
18113
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18114
|
+
* @return GetPermApplyOrderDetailResponse
|
|
17179
18115
|
*/
|
|
17180
18116
|
getPermApplyOrderDetailWithOptions(request: GetPermApplyOrderDetailRequest, runtime: $Util.RuntimeOptions): Promise<GetPermApplyOrderDetailResponse>;
|
|
17181
18117
|
/**
|
|
17182
|
-
|
|
17183
|
-
|
|
17184
|
-
|
|
17185
|
-
|
|
18118
|
+
* @summary Queries the details of a ticket that applies for permissions.
|
|
18119
|
+
*
|
|
18120
|
+
* @description You can call this operation to query the information about tickets that apply for permissions on databases, tables, and sensitive columns.
|
|
18121
|
+
*
|
|
18122
|
+
* @param request GetPermApplyOrderDetailRequest
|
|
18123
|
+
* @return GetPermApplyOrderDetailResponse
|
|
17186
18124
|
*/
|
|
17187
18125
|
getPermApplyOrderDetail(request: GetPermApplyOrderDetailRequest): Promise<GetPermApplyOrderDetailResponse>;
|
|
18126
|
+
/**
|
|
18127
|
+
* @summary Queries the details of a physical database.
|
|
18128
|
+
*
|
|
18129
|
+
* @param request GetPhysicalDatabaseRequest
|
|
18130
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18131
|
+
* @return GetPhysicalDatabaseResponse
|
|
18132
|
+
*/
|
|
17188
18133
|
getPhysicalDatabaseWithOptions(request: GetPhysicalDatabaseRequest, runtime: $Util.RuntimeOptions): Promise<GetPhysicalDatabaseResponse>;
|
|
17189
|
-
getPhysicalDatabase(request: GetPhysicalDatabaseRequest): Promise<GetPhysicalDatabaseResponse>;
|
|
17190
|
-
getProxyWithOptions(request: GetProxyRequest, runtime: $Util.RuntimeOptions): Promise<GetProxyResponse>;
|
|
17191
|
-
getProxy(request: GetProxyRequest): Promise<GetProxyResponse>;
|
|
17192
|
-
getProxyAccessWithOptions(request: GetProxyAccessRequest, runtime: $Util.RuntimeOptions): Promise<GetProxyAccessResponse>;
|
|
17193
|
-
getProxyAccess(request: GetProxyAccessRequest): Promise<GetProxyAccessResponse>;
|
|
17194
|
-
getRuleNumLimitOfSLAWithOptions(request: GetRuleNumLimitOfSLARequest, runtime: $Util.RuntimeOptions): Promise<GetRuleNumLimitOfSLAResponse>;
|
|
17195
|
-
getRuleNumLimitOfSLA(request: GetRuleNumLimitOfSLARequest): Promise<GetRuleNumLimitOfSLAResponse>;
|
|
17196
18134
|
/**
|
|
17197
|
-
|
|
17198
|
-
|
|
17199
|
-
|
|
17200
|
-
|
|
17201
|
-
* @return GetSQLReviewCheckResultStatusResponse
|
|
18135
|
+
* @summary Queries the details of a physical database.
|
|
18136
|
+
*
|
|
18137
|
+
* @param request GetPhysicalDatabaseRequest
|
|
18138
|
+
* @return GetPhysicalDatabaseResponse
|
|
17202
18139
|
*/
|
|
17203
|
-
|
|
18140
|
+
getPhysicalDatabase(request: GetPhysicalDatabaseRequest): Promise<GetPhysicalDatabaseResponse>;
|
|
17204
18141
|
/**
|
|
17205
|
-
|
|
17206
|
-
|
|
17207
|
-
|
|
17208
|
-
|
|
18142
|
+
* @summary Queries the details of a secure access proxy.
|
|
18143
|
+
*
|
|
18144
|
+
* @param request GetProxyRequest
|
|
18145
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18146
|
+
* @return GetProxyResponse
|
|
18147
|
+
*/
|
|
18148
|
+
getProxyWithOptions(request: GetProxyRequest, runtime: $Util.RuntimeOptions): Promise<GetProxyResponse>;
|
|
18149
|
+
/**
|
|
18150
|
+
* @summary Queries the details of a secure access proxy.
|
|
18151
|
+
*
|
|
18152
|
+
* @param request GetProxyRequest
|
|
18153
|
+
* @return GetProxyResponse
|
|
18154
|
+
*/
|
|
18155
|
+
getProxy(request: GetProxyRequest): Promise<GetProxyResponse>;
|
|
18156
|
+
/**
|
|
18157
|
+
* @summary Queries the authorization information about the secure access proxy feature.
|
|
18158
|
+
*
|
|
18159
|
+
* @param request GetProxyAccessRequest
|
|
18160
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18161
|
+
* @return GetProxyAccessResponse
|
|
18162
|
+
*/
|
|
18163
|
+
getProxyAccessWithOptions(request: GetProxyAccessRequest, runtime: $Util.RuntimeOptions): Promise<GetProxyAccessResponse>;
|
|
18164
|
+
/**
|
|
18165
|
+
* @summary Queries the authorization information about the secure access proxy feature.
|
|
18166
|
+
*
|
|
18167
|
+
* @param request GetProxyAccessRequest
|
|
18168
|
+
* @return GetProxyAccessResponse
|
|
18169
|
+
*/
|
|
18170
|
+
getProxyAccess(request: GetProxyAccessRequest): Promise<GetProxyAccessResponse>;
|
|
18171
|
+
/**
|
|
18172
|
+
* @summary Queries the maximum number of custom service-level agreement (SLA) rules for task orchestration.
|
|
18173
|
+
*
|
|
18174
|
+
* @param request GetRuleNumLimitOfSLARequest
|
|
18175
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18176
|
+
* @return GetRuleNumLimitOfSLAResponse
|
|
18177
|
+
*/
|
|
18178
|
+
getRuleNumLimitOfSLAWithOptions(request: GetRuleNumLimitOfSLARequest, runtime: $Util.RuntimeOptions): Promise<GetRuleNumLimitOfSLAResponse>;
|
|
18179
|
+
/**
|
|
18180
|
+
* @summary Queries the maximum number of custom service-level agreement (SLA) rules for task orchestration.
|
|
18181
|
+
*
|
|
18182
|
+
* @param request GetRuleNumLimitOfSLARequest
|
|
18183
|
+
* @return GetRuleNumLimitOfSLAResponse
|
|
18184
|
+
*/
|
|
18185
|
+
getRuleNumLimitOfSLA(request: GetRuleNumLimitOfSLARequest): Promise<GetRuleNumLimitOfSLAResponse>;
|
|
18186
|
+
/**
|
|
18187
|
+
* @summary Queries the result of an SQL review.
|
|
18188
|
+
*
|
|
18189
|
+
* @description For more information about the SQL review feature, see [SQL review](https://help.aliyun.com/document_detail/60374.html).
|
|
18190
|
+
*
|
|
18191
|
+
* @param request GetSQLReviewCheckResultStatusRequest
|
|
18192
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18193
|
+
* @return GetSQLReviewCheckResultStatusResponse
|
|
18194
|
+
*/
|
|
18195
|
+
getSQLReviewCheckResultStatusWithOptions(request: GetSQLReviewCheckResultStatusRequest, runtime: $Util.RuntimeOptions): Promise<GetSQLReviewCheckResultStatusResponse>;
|
|
18196
|
+
/**
|
|
18197
|
+
* @summary Queries the result of an SQL review.
|
|
18198
|
+
*
|
|
18199
|
+
* @description For more information about the SQL review feature, see [SQL review](https://help.aliyun.com/document_detail/60374.html).
|
|
18200
|
+
*
|
|
18201
|
+
* @param request GetSQLReviewCheckResultStatusRequest
|
|
18202
|
+
* @return GetSQLReviewCheckResultStatusResponse
|
|
17209
18203
|
*/
|
|
17210
18204
|
getSQLReviewCheckResultStatus(request: GetSQLReviewCheckResultStatusRequest): Promise<GetSQLReviewCheckResultStatusResponse>;
|
|
17211
18205
|
/**
|
|
17212
|
-
|
|
17213
|
-
|
|
17214
|
-
|
|
17215
|
-
|
|
17216
|
-
|
|
18206
|
+
* @summary Queries the details of optimization suggestions. The operation applies only to the tickets for the data changes and SQL review.
|
|
18207
|
+
*
|
|
18208
|
+
* @description For more information about the SQL review feature, see [SQL review](https://help.aliyun.com/document_detail/60374.html).
|
|
18209
|
+
*
|
|
18210
|
+
* @param request GetSQLReviewOptimizeDetailRequest
|
|
18211
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18212
|
+
* @return GetSQLReviewOptimizeDetailResponse
|
|
17217
18213
|
*/
|
|
17218
18214
|
getSQLReviewOptimizeDetailWithOptions(request: GetSQLReviewOptimizeDetailRequest, runtime: $Util.RuntimeOptions): Promise<GetSQLReviewOptimizeDetailResponse>;
|
|
17219
18215
|
/**
|
|
17220
|
-
|
|
17221
|
-
|
|
17222
|
-
|
|
17223
|
-
|
|
18216
|
+
* @summary Queries the details of optimization suggestions. The operation applies only to the tickets for the data changes and SQL review.
|
|
18217
|
+
*
|
|
18218
|
+
* @description For more information about the SQL review feature, see [SQL review](https://help.aliyun.com/document_detail/60374.html).
|
|
18219
|
+
*
|
|
18220
|
+
* @param request GetSQLReviewOptimizeDetailRequest
|
|
18221
|
+
* @return GetSQLReviewOptimizeDetailResponse
|
|
17224
18222
|
*/
|
|
17225
18223
|
getSQLReviewOptimizeDetail(request: GetSQLReviewOptimizeDetailRequest): Promise<GetSQLReviewOptimizeDetailResponse>;
|
|
18224
|
+
/**
|
|
18225
|
+
* @summary 获取安全规则
|
|
18226
|
+
*
|
|
18227
|
+
* @param request GetStandardGroupRequest
|
|
18228
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18229
|
+
* @return GetStandardGroupResponse
|
|
18230
|
+
*/
|
|
17226
18231
|
getStandardGroupWithOptions(request: GetStandardGroupRequest, runtime: $Util.RuntimeOptions): Promise<GetStandardGroupResponse>;
|
|
18232
|
+
/**
|
|
18233
|
+
* @summary 获取安全规则
|
|
18234
|
+
*
|
|
18235
|
+
* @param request GetStandardGroupRequest
|
|
18236
|
+
* @return GetStandardGroupResponse
|
|
18237
|
+
*/
|
|
17227
18238
|
getStandardGroup(request: GetStandardGroupRequest): Promise<GetStandardGroupResponse>;
|
|
18239
|
+
/**
|
|
18240
|
+
* @summary Queries the SQL statements that are involved in a schema synchronization ticket.
|
|
18241
|
+
*
|
|
18242
|
+
* @param request GetStructSyncExecSqlDetailRequest
|
|
18243
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18244
|
+
* @return GetStructSyncExecSqlDetailResponse
|
|
18245
|
+
*/
|
|
17228
18246
|
getStructSyncExecSqlDetailWithOptions(request: GetStructSyncExecSqlDetailRequest, runtime: $Util.RuntimeOptions): Promise<GetStructSyncExecSqlDetailResponse>;
|
|
18247
|
+
/**
|
|
18248
|
+
* @summary Queries the SQL statements that are involved in a schema synchronization ticket.
|
|
18249
|
+
*
|
|
18250
|
+
* @param request GetStructSyncExecSqlDetailRequest
|
|
18251
|
+
* @return GetStructSyncExecSqlDetailResponse
|
|
18252
|
+
*/
|
|
17229
18253
|
getStructSyncExecSqlDetail(request: GetStructSyncExecSqlDetailRequest): Promise<GetStructSyncExecSqlDetailResponse>;
|
|
18254
|
+
/**
|
|
18255
|
+
* @summary Queries the analysis result of a schema synchronization task.
|
|
18256
|
+
*
|
|
18257
|
+
* @param request GetStructSyncJobAnalyzeResultRequest
|
|
18258
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18259
|
+
* @return GetStructSyncJobAnalyzeResultResponse
|
|
18260
|
+
*/
|
|
17230
18261
|
getStructSyncJobAnalyzeResultWithOptions(request: GetStructSyncJobAnalyzeResultRequest, runtime: $Util.RuntimeOptions): Promise<GetStructSyncJobAnalyzeResultResponse>;
|
|
18262
|
+
/**
|
|
18263
|
+
* @summary Queries the analysis result of a schema synchronization task.
|
|
18264
|
+
*
|
|
18265
|
+
* @param request GetStructSyncJobAnalyzeResultRequest
|
|
18266
|
+
* @return GetStructSyncJobAnalyzeResultResponse
|
|
18267
|
+
*/
|
|
17231
18268
|
getStructSyncJobAnalyzeResult(request: GetStructSyncJobAnalyzeResultRequest): Promise<GetStructSyncJobAnalyzeResultResponse>;
|
|
18269
|
+
/**
|
|
18270
|
+
* @summary Queries the information of a schema synchronization task.
|
|
18271
|
+
*
|
|
18272
|
+
* @param request GetStructSyncJobDetailRequest
|
|
18273
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18274
|
+
* @return GetStructSyncJobDetailResponse
|
|
18275
|
+
*/
|
|
17232
18276
|
getStructSyncJobDetailWithOptions(request: GetStructSyncJobDetailRequest, runtime: $Util.RuntimeOptions): Promise<GetStructSyncJobDetailResponse>;
|
|
18277
|
+
/**
|
|
18278
|
+
* @summary Queries the information of a schema synchronization task.
|
|
18279
|
+
*
|
|
18280
|
+
* @param request GetStructSyncJobDetailRequest
|
|
18281
|
+
* @return GetStructSyncJobDetailResponse
|
|
18282
|
+
*/
|
|
17233
18283
|
getStructSyncJobDetail(request: GetStructSyncJobDetailRequest): Promise<GetStructSyncJobDetailResponse>;
|
|
18284
|
+
/**
|
|
18285
|
+
* @summary Queries the details of a schema synchronization ticket.
|
|
18286
|
+
*
|
|
18287
|
+
* @param request GetStructSyncOrderDetailRequest
|
|
18288
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18289
|
+
* @return GetStructSyncOrderDetailResponse
|
|
18290
|
+
*/
|
|
17234
18291
|
getStructSyncOrderDetailWithOptions(request: GetStructSyncOrderDetailRequest, runtime: $Util.RuntimeOptions): Promise<GetStructSyncOrderDetailResponse>;
|
|
18292
|
+
/**
|
|
18293
|
+
* @summary Queries the details of a schema synchronization ticket.
|
|
18294
|
+
*
|
|
18295
|
+
* @param request GetStructSyncOrderDetailRequest
|
|
18296
|
+
* @return GetStructSyncOrderDetailResponse
|
|
18297
|
+
*/
|
|
17235
18298
|
getStructSyncOrderDetail(request: GetStructSyncOrderDetailRequest): Promise<GetStructSyncOrderDetailResponse>;
|
|
18299
|
+
/**
|
|
18300
|
+
* @summary Queries the topology of a data table.
|
|
18301
|
+
*
|
|
18302
|
+
* @param request GetTableDBTopologyRequest
|
|
18303
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18304
|
+
* @return GetTableDBTopologyResponse
|
|
18305
|
+
*/
|
|
17236
18306
|
getTableDBTopologyWithOptions(request: GetTableDBTopologyRequest, runtime: $Util.RuntimeOptions): Promise<GetTableDBTopologyResponse>;
|
|
18307
|
+
/**
|
|
18308
|
+
* @summary Queries the topology of a data table.
|
|
18309
|
+
*
|
|
18310
|
+
* @param request GetTableDBTopologyRequest
|
|
18311
|
+
* @return GetTableDBTopologyResponse
|
|
18312
|
+
*/
|
|
17237
18313
|
getTableDBTopology(request: GetTableDBTopologyRequest): Promise<GetTableDBTopologyResponse>;
|
|
18314
|
+
/**
|
|
18315
|
+
* @summary 获取结构设计项目的流程信息
|
|
18316
|
+
*
|
|
18317
|
+
* @param request GetTableDesignProjectFlowRequest
|
|
18318
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18319
|
+
* @return GetTableDesignProjectFlowResponse
|
|
18320
|
+
*/
|
|
17238
18321
|
getTableDesignProjectFlowWithOptions(request: GetTableDesignProjectFlowRequest, runtime: $Util.RuntimeOptions): Promise<GetTableDesignProjectFlowResponse>;
|
|
18322
|
+
/**
|
|
18323
|
+
* @summary 获取结构设计项目的流程信息
|
|
18324
|
+
*
|
|
18325
|
+
* @param request GetTableDesignProjectFlowRequest
|
|
18326
|
+
* @return GetTableDesignProjectFlowResponse
|
|
18327
|
+
*/
|
|
17239
18328
|
getTableDesignProjectFlow(request: GetTableDesignProjectFlowRequest): Promise<GetTableDesignProjectFlowResponse>;
|
|
18329
|
+
/**
|
|
18330
|
+
* @summary 获取结构设计项目的详细信息
|
|
18331
|
+
*
|
|
18332
|
+
* @param request GetTableDesignProjectInfoRequest
|
|
18333
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18334
|
+
* @return GetTableDesignProjectInfoResponse
|
|
18335
|
+
*/
|
|
17240
18336
|
getTableDesignProjectInfoWithOptions(request: GetTableDesignProjectInfoRequest, runtime: $Util.RuntimeOptions): Promise<GetTableDesignProjectInfoResponse>;
|
|
18337
|
+
/**
|
|
18338
|
+
* @summary 获取结构设计项目的详细信息
|
|
18339
|
+
*
|
|
18340
|
+
* @param request GetTableDesignProjectInfoRequest
|
|
18341
|
+
* @return GetTableDesignProjectInfoResponse
|
|
18342
|
+
*/
|
|
17241
18343
|
getTableDesignProjectInfo(request: GetTableDesignProjectInfoRequest): Promise<GetTableDesignProjectInfoResponse>;
|
|
18344
|
+
/**
|
|
18345
|
+
* @summary Queries the topology of a table.
|
|
18346
|
+
*
|
|
18347
|
+
* @param request GetTableTopologyRequest
|
|
18348
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18349
|
+
* @return GetTableTopologyResponse
|
|
18350
|
+
*/
|
|
17242
18351
|
getTableTopologyWithOptions(request: GetTableTopologyRequest, runtime: $Util.RuntimeOptions): Promise<GetTableTopologyResponse>;
|
|
18352
|
+
/**
|
|
18353
|
+
* @summary Queries the topology of a table.
|
|
18354
|
+
*
|
|
18355
|
+
* @param request GetTableTopologyRequest
|
|
18356
|
+
* @return GetTableTopologyResponse
|
|
18357
|
+
*/
|
|
17243
18358
|
getTableTopology(request: GetTableTopologyRequest): Promise<GetTableTopologyResponse>;
|
|
18359
|
+
/**
|
|
18360
|
+
* @summary Queries the configurations, including time variables, of a specified task node based on the task node ID.
|
|
18361
|
+
*
|
|
18362
|
+
* @param request GetTaskRequest
|
|
18363
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18364
|
+
* @return GetTaskResponse
|
|
18365
|
+
*/
|
|
17244
18366
|
getTaskWithOptions(request: GetTaskRequest, runtime: $Util.RuntimeOptions): Promise<GetTaskResponse>;
|
|
18367
|
+
/**
|
|
18368
|
+
* @summary Queries the configurations, including time variables, of a specified task node based on the task node ID.
|
|
18369
|
+
*
|
|
18370
|
+
* @param request GetTaskRequest
|
|
18371
|
+
* @return GetTaskResponse
|
|
18372
|
+
*/
|
|
17245
18373
|
getTask(request: GetTaskRequest): Promise<GetTaskResponse>;
|
|
18374
|
+
/**
|
|
18375
|
+
* @summary Queries the Directed Acyclic Graph (DAG) of a task flow.
|
|
18376
|
+
*
|
|
18377
|
+
* @param request GetTaskFlowGraphRequest
|
|
18378
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18379
|
+
* @return GetTaskFlowGraphResponse
|
|
18380
|
+
*/
|
|
17246
18381
|
getTaskFlowGraphWithOptions(request: GetTaskFlowGraphRequest, runtime: $Util.RuntimeOptions): Promise<GetTaskFlowGraphResponse>;
|
|
18382
|
+
/**
|
|
18383
|
+
* @summary Queries the Directed Acyclic Graph (DAG) of a task flow.
|
|
18384
|
+
*
|
|
18385
|
+
* @param request GetTaskFlowGraphRequest
|
|
18386
|
+
* @return GetTaskFlowGraphResponse
|
|
18387
|
+
*/
|
|
17247
18388
|
getTaskFlowGraph(request: GetTaskFlowGraphRequest): Promise<GetTaskFlowGraphResponse>;
|
|
18389
|
+
/**
|
|
18390
|
+
* @summary Queries the notification settings for task flows.
|
|
18391
|
+
*
|
|
18392
|
+
* @param request GetTaskFlowNotificationRequest
|
|
18393
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18394
|
+
* @return GetTaskFlowNotificationResponse
|
|
18395
|
+
*/
|
|
17248
18396
|
getTaskFlowNotificationWithOptions(request: GetTaskFlowNotificationRequest, runtime: $Util.RuntimeOptions): Promise<GetTaskFlowNotificationResponse>;
|
|
18397
|
+
/**
|
|
18398
|
+
* @summary Queries the notification settings for task flows.
|
|
18399
|
+
*
|
|
18400
|
+
* @param request GetTaskFlowNotificationRequest
|
|
18401
|
+
* @return GetTaskFlowNotificationResponse
|
|
18402
|
+
*/
|
|
17249
18403
|
getTaskFlowNotification(request: GetTaskFlowNotificationRequest): Promise<GetTaskFlowNotificationResponse>;
|
|
18404
|
+
/**
|
|
18405
|
+
* @summary Queries the information about the nodes in an execution record of a task flow.
|
|
18406
|
+
*
|
|
18407
|
+
* @param request GetTaskInstanceRelationRequest
|
|
18408
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18409
|
+
* @return GetTaskInstanceRelationResponse
|
|
18410
|
+
*/
|
|
17250
18411
|
getTaskInstanceRelationWithOptions(request: GetTaskInstanceRelationRequest, runtime: $Util.RuntimeOptions): Promise<GetTaskInstanceRelationResponse>;
|
|
18412
|
+
/**
|
|
18413
|
+
* @summary Queries the information about the nodes in an execution record of a task flow.
|
|
18414
|
+
*
|
|
18415
|
+
* @param request GetTaskInstanceRelationRequest
|
|
18416
|
+
* @return GetTaskInstanceRelationResponse
|
|
18417
|
+
*/
|
|
17251
18418
|
getTaskInstanceRelation(request: GetTaskInstanceRelationRequest): Promise<GetTaskInstanceRelationResponse>;
|
|
18419
|
+
/**
|
|
18420
|
+
* @summary Queries the information about a user.
|
|
18421
|
+
*
|
|
18422
|
+
* @param request GetUserRequest
|
|
18423
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18424
|
+
* @return GetUserResponse
|
|
18425
|
+
*/
|
|
17252
18426
|
getUserWithOptions(request: GetUserRequest, runtime: $Util.RuntimeOptions): Promise<GetUserResponse>;
|
|
18427
|
+
/**
|
|
18428
|
+
* @summary Queries the information about a user.
|
|
18429
|
+
*
|
|
18430
|
+
* @param request GetUserRequest
|
|
18431
|
+
* @return GetUserResponse
|
|
18432
|
+
*/
|
|
17253
18433
|
getUser(request: GetUserRequest): Promise<GetUserResponse>;
|
|
18434
|
+
/**
|
|
18435
|
+
* @summary Queries details of the active tenant.
|
|
18436
|
+
*
|
|
18437
|
+
* @param request GetUserActiveTenantRequest
|
|
18438
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18439
|
+
* @return GetUserActiveTenantResponse
|
|
18440
|
+
*/
|
|
17254
18441
|
getUserActiveTenantWithOptions(request: GetUserActiveTenantRequest, runtime: $Util.RuntimeOptions): Promise<GetUserActiveTenantResponse>;
|
|
18442
|
+
/**
|
|
18443
|
+
* @summary Queries details of the active tenant.
|
|
18444
|
+
*
|
|
18445
|
+
* @param request GetUserActiveTenantRequest
|
|
18446
|
+
* @return GetUserActiveTenantResponse
|
|
18447
|
+
*/
|
|
17255
18448
|
getUserActiveTenant(request: GetUserActiveTenantRequest): Promise<GetUserActiveTenantResponse>;
|
|
18449
|
+
/**
|
|
18450
|
+
* @summary Obtains the information of a file upload task.
|
|
18451
|
+
*
|
|
18452
|
+
* @param request GetUserUploadFileJobRequest
|
|
18453
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18454
|
+
* @return GetUserUploadFileJobResponse
|
|
18455
|
+
*/
|
|
17256
18456
|
getUserUploadFileJobWithOptions(request: GetUserUploadFileJobRequest, runtime: $Util.RuntimeOptions): Promise<GetUserUploadFileJobResponse>;
|
|
18457
|
+
/**
|
|
18458
|
+
* @summary Obtains the information of a file upload task.
|
|
18459
|
+
*
|
|
18460
|
+
* @param request GetUserUploadFileJobRequest
|
|
18461
|
+
* @return GetUserUploadFileJobResponse
|
|
18462
|
+
*/
|
|
17257
18463
|
getUserUploadFileJob(request: GetUserUploadFileJobRequest): Promise<GetUserUploadFileJobResponse>;
|
|
17258
18464
|
/**
|
|
17259
|
-
|
|
17260
|
-
|
|
17261
|
-
|
|
17262
|
-
|
|
17263
|
-
|
|
18465
|
+
* @summary Grants permissions on resources to users by using a permission template.
|
|
18466
|
+
*
|
|
18467
|
+
* @description You must be a database administrator (DBA) or a Data Management (DMS) administrator. For more information about how to view system roles, see [View system roles](https://help.aliyun.com/document_detail/324212.html).
|
|
18468
|
+
*
|
|
18469
|
+
* @param request GrantTemplateAuthorityRequest
|
|
18470
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18471
|
+
* @return GrantTemplateAuthorityResponse
|
|
17264
18472
|
*/
|
|
17265
18473
|
grantTemplateAuthorityWithOptions(request: GrantTemplateAuthorityRequest, runtime: $Util.RuntimeOptions): Promise<GrantTemplateAuthorityResponse>;
|
|
17266
18474
|
/**
|
|
17267
|
-
|
|
17268
|
-
|
|
17269
|
-
|
|
17270
|
-
|
|
18475
|
+
* @summary Grants permissions on resources to users by using a permission template.
|
|
18476
|
+
*
|
|
18477
|
+
* @description You must be a database administrator (DBA) or a Data Management (DMS) administrator. For more information about how to view system roles, see [View system roles](https://help.aliyun.com/document_detail/324212.html).
|
|
18478
|
+
*
|
|
18479
|
+
* @param request GrantTemplateAuthorityRequest
|
|
18480
|
+
* @return GrantTemplateAuthorityResponse
|
|
17271
18481
|
*/
|
|
17272
18482
|
grantTemplateAuthority(request: GrantTemplateAuthorityRequest): Promise<GrantTemplateAuthorityResponse>;
|
|
18483
|
+
/**
|
|
18484
|
+
* @summary Grants permissions on an instance, a database, or a table to a user.
|
|
18485
|
+
*
|
|
18486
|
+
* @param request GrantUserPermissionRequest
|
|
18487
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18488
|
+
* @return GrantUserPermissionResponse
|
|
18489
|
+
*/
|
|
17273
18490
|
grantUserPermissionWithOptions(request: GrantUserPermissionRequest, runtime: $Util.RuntimeOptions): Promise<GrantUserPermissionResponse>;
|
|
18491
|
+
/**
|
|
18492
|
+
* @summary Grants permissions on an instance, a database, or a table to a user.
|
|
18493
|
+
*
|
|
18494
|
+
* @param request GrantUserPermissionRequest
|
|
18495
|
+
* @return GrantUserPermissionResponse
|
|
18496
|
+
*/
|
|
17274
18497
|
grantUserPermission(request: GrantUserPermissionRequest): Promise<GrantUserPermissionResponse>;
|
|
18498
|
+
/**
|
|
18499
|
+
* @summary You can call this operation to obtain the authorization password of the security protection agent InspectProxyAccessSecret.
|
|
18500
|
+
*
|
|
18501
|
+
* @param request InspectProxyAccessSecretRequest
|
|
18502
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18503
|
+
* @return InspectProxyAccessSecretResponse
|
|
18504
|
+
*/
|
|
17275
18505
|
inspectProxyAccessSecretWithOptions(request: InspectProxyAccessSecretRequest, runtime: $Util.RuntimeOptions): Promise<InspectProxyAccessSecretResponse>;
|
|
18506
|
+
/**
|
|
18507
|
+
* @summary You can call this operation to obtain the authorization password of the security protection agent InspectProxyAccessSecret.
|
|
18508
|
+
*
|
|
18509
|
+
* @param request InspectProxyAccessSecretRequest
|
|
18510
|
+
* @return InspectProxyAccessSecretResponse
|
|
18511
|
+
*/
|
|
17276
18512
|
inspectProxyAccessSecret(request: InspectProxyAccessSecretRequest): Promise<InspectProxyAccessSecretResponse>;
|
|
18513
|
+
/**
|
|
18514
|
+
* @summary 获取权限模版列表
|
|
18515
|
+
*
|
|
18516
|
+
* @param request ListAuthorityTemplateRequest
|
|
18517
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18518
|
+
* @return ListAuthorityTemplateResponse
|
|
18519
|
+
*/
|
|
17277
18520
|
listAuthorityTemplateWithOptions(request: ListAuthorityTemplateRequest, runtime: $Util.RuntimeOptions): Promise<ListAuthorityTemplateResponse>;
|
|
18521
|
+
/**
|
|
18522
|
+
* @summary 获取权限模版列表
|
|
18523
|
+
*
|
|
18524
|
+
* @param request ListAuthorityTemplateRequest
|
|
18525
|
+
* @return ListAuthorityTemplateResponse
|
|
18526
|
+
*/
|
|
17278
18527
|
listAuthorityTemplate(request: ListAuthorityTemplateRequest): Promise<ListAuthorityTemplateResponse>;
|
|
18528
|
+
/**
|
|
18529
|
+
* @summary Queries the classification templates.
|
|
18530
|
+
*
|
|
18531
|
+
* @param request ListClassificationTemplatesRequest
|
|
18532
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18533
|
+
* @return ListClassificationTemplatesResponse
|
|
18534
|
+
*/
|
|
17279
18535
|
listClassificationTemplatesWithOptions(request: ListClassificationTemplatesRequest, runtime: $Util.RuntimeOptions): Promise<ListClassificationTemplatesResponse>;
|
|
18536
|
+
/**
|
|
18537
|
+
* @summary Queries the classification templates.
|
|
18538
|
+
*
|
|
18539
|
+
* @param request ListClassificationTemplatesRequest
|
|
18540
|
+
* @return ListClassificationTemplatesResponse
|
|
18541
|
+
*/
|
|
17280
18542
|
listClassificationTemplates(request: ListClassificationTemplatesRequest): Promise<ListClassificationTemplatesResponse>;
|
|
17281
18543
|
/**
|
|
17282
|
-
|
|
17283
|
-
|
|
17284
|
-
|
|
17285
|
-
|
|
17286
|
-
|
|
18544
|
+
* @summary Returns the column information of a table.
|
|
18545
|
+
*
|
|
18546
|
+
* @description You can call this operation only for database instances whose control mode is Security Collaboration.
|
|
18547
|
+
*
|
|
18548
|
+
* @param request ListColumnsRequest
|
|
18549
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18550
|
+
* @return ListColumnsResponse
|
|
17287
18551
|
*/
|
|
17288
18552
|
listColumnsWithOptions(request: ListColumnsRequest, runtime: $Util.RuntimeOptions): Promise<ListColumnsResponse>;
|
|
17289
18553
|
/**
|
|
17290
|
-
|
|
17291
|
-
|
|
17292
|
-
|
|
17293
|
-
|
|
18554
|
+
* @summary Returns the column information of a table.
|
|
18555
|
+
*
|
|
18556
|
+
* @description You can call this operation only for database instances whose control mode is Security Collaboration.
|
|
18557
|
+
*
|
|
18558
|
+
* @param request ListColumnsRequest
|
|
18559
|
+
* @return ListColumnsResponse
|
|
17294
18560
|
*/
|
|
17295
18561
|
listColumns(request: ListColumnsRequest): Promise<ListColumnsResponse>;
|
|
18562
|
+
/**
|
|
18563
|
+
* @summary Queries the published versions of a task flow.
|
|
18564
|
+
*
|
|
18565
|
+
* @param request ListDAGVersionsRequest
|
|
18566
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18567
|
+
* @return ListDAGVersionsResponse
|
|
18568
|
+
*/
|
|
17296
18569
|
listDAGVersionsWithOptions(request: ListDAGVersionsRequest, runtime: $Util.RuntimeOptions): Promise<ListDAGVersionsResponse>;
|
|
18570
|
+
/**
|
|
18571
|
+
* @summary Queries the published versions of a task flow.
|
|
18572
|
+
*
|
|
18573
|
+
* @param request ListDAGVersionsRequest
|
|
18574
|
+
* @return ListDAGVersionsResponse
|
|
18575
|
+
*/
|
|
17297
18576
|
listDAGVersions(request: ListDAGVersionsRequest): Promise<ListDAGVersionsResponse>;
|
|
18577
|
+
/**
|
|
18578
|
+
* @summary Queries a list of SQL tasks.
|
|
18579
|
+
*
|
|
18580
|
+
* @param request ListDBTaskSQLJobRequest
|
|
18581
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18582
|
+
* @return ListDBTaskSQLJobResponse
|
|
18583
|
+
*/
|
|
17298
18584
|
listDBTaskSQLJobWithOptions(request: ListDBTaskSQLJobRequest, runtime: $Util.RuntimeOptions): Promise<ListDBTaskSQLJobResponse>;
|
|
18585
|
+
/**
|
|
18586
|
+
* @summary Queries a list of SQL tasks.
|
|
18587
|
+
*
|
|
18588
|
+
* @param request ListDBTaskSQLJobRequest
|
|
18589
|
+
* @return ListDBTaskSQLJobResponse
|
|
18590
|
+
*/
|
|
17299
18591
|
listDBTaskSQLJob(request: ListDBTaskSQLJobRequest): Promise<ListDBTaskSQLJobResponse>;
|
|
18592
|
+
/**
|
|
18593
|
+
* @summary Queries the details of an SQL task.
|
|
18594
|
+
*
|
|
18595
|
+
* @param request ListDBTaskSQLJobDetailRequest
|
|
18596
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18597
|
+
* @return ListDBTaskSQLJobDetailResponse
|
|
18598
|
+
*/
|
|
17300
18599
|
listDBTaskSQLJobDetailWithOptions(request: ListDBTaskSQLJobDetailRequest, runtime: $Util.RuntimeOptions): Promise<ListDBTaskSQLJobDetailResponse>;
|
|
18600
|
+
/**
|
|
18601
|
+
* @summary Queries the details of an SQL task.
|
|
18602
|
+
*
|
|
18603
|
+
* @param request ListDBTaskSQLJobDetailRequest
|
|
18604
|
+
* @return ListDBTaskSQLJobDetailResponse
|
|
18605
|
+
*/
|
|
17301
18606
|
listDBTaskSQLJobDetail(request: ListDBTaskSQLJobDetailRequest): Promise<ListDBTaskSQLJobDetailResponse>;
|
|
18607
|
+
/**
|
|
18608
|
+
* @summary Queries the publishing details of a schema design ticket.
|
|
18609
|
+
*
|
|
18610
|
+
* @param request ListDDLPublishRecordsRequest
|
|
18611
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18612
|
+
* @return ListDDLPublishRecordsResponse
|
|
18613
|
+
*/
|
|
17302
18614
|
listDDLPublishRecordsWithOptions(request: ListDDLPublishRecordsRequest, runtime: $Util.RuntimeOptions): Promise<ListDDLPublishRecordsResponse>;
|
|
18615
|
+
/**
|
|
18616
|
+
* @summary Queries the publishing details of a schema design ticket.
|
|
18617
|
+
*
|
|
18618
|
+
* @param request ListDDLPublishRecordsRequest
|
|
18619
|
+
* @return ListDDLPublishRecordsResponse
|
|
18620
|
+
*/
|
|
17303
18621
|
listDDLPublishRecords(request: ListDDLPublishRecordsRequest): Promise<ListDDLPublishRecordsResponse>;
|
|
17304
18622
|
/**
|
|
17305
|
-
|
|
17306
|
-
|
|
17307
|
-
|
|
17308
|
-
|
|
17309
|
-
|
|
18623
|
+
* @summary Queries the databases that are involved in the precheck of a data change ticket.
|
|
18624
|
+
*
|
|
18625
|
+
* @description For more information about the Normal Data Modify feature, see [Change regular data](https://help.aliyun.com/document_detail/58419.html).
|
|
18626
|
+
*
|
|
18627
|
+
* @param request ListDataCorrectPreCheckDBRequest
|
|
18628
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18629
|
+
* @return ListDataCorrectPreCheckDBResponse
|
|
17310
18630
|
*/
|
|
17311
18631
|
listDataCorrectPreCheckDBWithOptions(request: ListDataCorrectPreCheckDBRequest, runtime: $Util.RuntimeOptions): Promise<ListDataCorrectPreCheckDBResponse>;
|
|
17312
18632
|
/**
|
|
17313
|
-
|
|
17314
|
-
|
|
17315
|
-
|
|
17316
|
-
|
|
18633
|
+
* @summary Queries the databases that are involved in the precheck of a data change ticket.
|
|
18634
|
+
*
|
|
18635
|
+
* @description For more information about the Normal Data Modify feature, see [Change regular data](https://help.aliyun.com/document_detail/58419.html).
|
|
18636
|
+
*
|
|
18637
|
+
* @param request ListDataCorrectPreCheckDBRequest
|
|
18638
|
+
* @return ListDataCorrectPreCheckDBResponse
|
|
17317
18639
|
*/
|
|
17318
18640
|
listDataCorrectPreCheckDB(request: ListDataCorrectPreCheckDBRequest): Promise<ListDataCorrectPreCheckDBResponse>;
|
|
17319
18641
|
/**
|
|
17320
|
-
|
|
17321
|
-
|
|
17322
|
-
|
|
17323
|
-
|
|
17324
|
-
|
|
18642
|
+
* @summary Queries the precheck information about an SQL statement that is specified in a data change ticket.
|
|
18643
|
+
*
|
|
18644
|
+
* @description For more information about the Normal Data Modify feature, see [Change regular data](https://help.aliyun.com/document_detail/58419.html).
|
|
18645
|
+
*
|
|
18646
|
+
* @param request ListDataCorrectPreCheckSQLRequest
|
|
18647
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18648
|
+
* @return ListDataCorrectPreCheckSQLResponse
|
|
17325
18649
|
*/
|
|
17326
18650
|
listDataCorrectPreCheckSQLWithOptions(request: ListDataCorrectPreCheckSQLRequest, runtime: $Util.RuntimeOptions): Promise<ListDataCorrectPreCheckSQLResponse>;
|
|
17327
18651
|
/**
|
|
17328
|
-
|
|
17329
|
-
|
|
17330
|
-
|
|
17331
|
-
|
|
18652
|
+
* @summary Queries the precheck information about an SQL statement that is specified in a data change ticket.
|
|
18653
|
+
*
|
|
18654
|
+
* @description For more information about the Normal Data Modify feature, see [Change regular data](https://help.aliyun.com/document_detail/58419.html).
|
|
18655
|
+
*
|
|
18656
|
+
* @param request ListDataCorrectPreCheckSQLRequest
|
|
18657
|
+
* @return ListDataCorrectPreCheckSQLResponse
|
|
17332
18658
|
*/
|
|
17333
18659
|
listDataCorrectPreCheckSQL(request: ListDataCorrectPreCheckSQLRequest): Promise<ListDataCorrectPreCheckSQLResponse>;
|
|
17334
18660
|
/**
|
|
17335
|
-
|
|
17336
|
-
|
|
17337
|
-
|
|
17338
|
-
|
|
17339
|
-
|
|
18661
|
+
* @summary Queries the precheck information of SQL statements used for data import in a ticket.
|
|
18662
|
+
*
|
|
18663
|
+
* @description You can call this operation only if the data is imported in security mode in your data import ticket.
|
|
18664
|
+
*
|
|
18665
|
+
* @param request ListDataImportSQLPreCheckDetailRequest
|
|
18666
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18667
|
+
* @return ListDataImportSQLPreCheckDetailResponse
|
|
17340
18668
|
*/
|
|
17341
18669
|
listDataImportSQLPreCheckDetailWithOptions(request: ListDataImportSQLPreCheckDetailRequest, runtime: $Util.RuntimeOptions): Promise<ListDataImportSQLPreCheckDetailResponse>;
|
|
17342
18670
|
/**
|
|
17343
|
-
|
|
17344
|
-
|
|
17345
|
-
|
|
17346
|
-
|
|
18671
|
+
* @summary Queries the precheck information of SQL statements used for data import in a ticket.
|
|
18672
|
+
*
|
|
18673
|
+
* @description You can call this operation only if the data is imported in security mode in your data import ticket.
|
|
18674
|
+
*
|
|
18675
|
+
* @param request ListDataImportSQLPreCheckDetailRequest
|
|
18676
|
+
* @return ListDataImportSQLPreCheckDetailResponse
|
|
17347
18677
|
*/
|
|
17348
18678
|
listDataImportSQLPreCheckDetail(request: ListDataImportSQLPreCheckDetailRequest): Promise<ListDataImportSQLPreCheckDetailResponse>;
|
|
17349
18679
|
/**
|
|
17350
|
-
|
|
17351
|
-
|
|
17352
|
-
|
|
17353
|
-
|
|
17354
|
-
|
|
18680
|
+
* @summary Queries the types of SQL statements used for data import in a ticket.
|
|
18681
|
+
*
|
|
18682
|
+
* @description You can call this operation only if the data is imported in security mode in your data import ticket.
|
|
18683
|
+
*
|
|
18684
|
+
* @param request ListDataImportSQLTypeRequest
|
|
18685
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18686
|
+
* @return ListDataImportSQLTypeResponse
|
|
17355
18687
|
*/
|
|
17356
18688
|
listDataImportSQLTypeWithOptions(request: ListDataImportSQLTypeRequest, runtime: $Util.RuntimeOptions): Promise<ListDataImportSQLTypeResponse>;
|
|
17357
18689
|
/**
|
|
17358
|
-
|
|
17359
|
-
|
|
17360
|
-
|
|
17361
|
-
|
|
18690
|
+
* @summary Queries the types of SQL statements used for data import in a ticket.
|
|
18691
|
+
*
|
|
18692
|
+
* @description You can call this operation only if the data is imported in security mode in your data import ticket.
|
|
18693
|
+
*
|
|
18694
|
+
* @param request ListDataImportSQLTypeRequest
|
|
18695
|
+
* @return ListDataImportSQLTypeResponse
|
|
17362
18696
|
*/
|
|
17363
18697
|
listDataImportSQLType(request: ListDataImportSQLTypeRequest): Promise<ListDataImportSQLTypeResponse>;
|
|
18698
|
+
/**
|
|
18699
|
+
* @summary Queries the permissions of users on a database.
|
|
18700
|
+
*
|
|
18701
|
+
* @param request ListDatabaseUserPermssionsRequest
|
|
18702
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18703
|
+
* @return ListDatabaseUserPermssionsResponse
|
|
18704
|
+
*/
|
|
17364
18705
|
listDatabaseUserPermssionsWithOptions(request: ListDatabaseUserPermssionsRequest, runtime: $Util.RuntimeOptions): Promise<ListDatabaseUserPermssionsResponse>;
|
|
18706
|
+
/**
|
|
18707
|
+
* @summary Queries the permissions of users on a database.
|
|
18708
|
+
*
|
|
18709
|
+
* @param request ListDatabaseUserPermssionsRequest
|
|
18710
|
+
* @return ListDatabaseUserPermssionsResponse
|
|
18711
|
+
*/
|
|
17365
18712
|
listDatabaseUserPermssions(request: ListDatabaseUserPermssionsRequest): Promise<ListDatabaseUserPermssionsResponse>;
|
|
18713
|
+
/**
|
|
18714
|
+
* @summary Queries the databases in a database instance.
|
|
18715
|
+
*
|
|
18716
|
+
* @param request ListDatabasesRequest
|
|
18717
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18718
|
+
* @return ListDatabasesResponse
|
|
18719
|
+
*/
|
|
17366
18720
|
listDatabasesWithOptions(request: ListDatabasesRequest, runtime: $Util.RuntimeOptions): Promise<ListDatabasesResponse>;
|
|
18721
|
+
/**
|
|
18722
|
+
* @summary Queries the databases in a database instance.
|
|
18723
|
+
*
|
|
18724
|
+
* @param request ListDatabasesRequest
|
|
18725
|
+
* @return ListDatabasesResponse
|
|
18726
|
+
*/
|
|
17367
18727
|
listDatabases(request: ListDatabasesRequest): Promise<ListDatabasesResponse>;
|
|
18728
|
+
/**
|
|
18729
|
+
* @summary Queries the default service level agreement (SLA) timeout rules.
|
|
18730
|
+
*
|
|
18731
|
+
* @param request ListDefaultSLARulesRequest
|
|
18732
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18733
|
+
* @return ListDefaultSLARulesResponse
|
|
18734
|
+
*/
|
|
17368
18735
|
listDefaultSLARulesWithOptions(request: ListDefaultSLARulesRequest, runtime: $Util.RuntimeOptions): Promise<ListDefaultSLARulesResponse>;
|
|
18736
|
+
/**
|
|
18737
|
+
* @summary Queries the default service level agreement (SLA) timeout rules.
|
|
18738
|
+
*
|
|
18739
|
+
* @param request ListDefaultSLARulesRequest
|
|
18740
|
+
* @return ListDefaultSLARulesResponse
|
|
18741
|
+
*/
|
|
17369
18742
|
listDefaultSLARules(request: ListDefaultSLARulesRequest): Promise<ListDefaultSLARulesResponse>;
|
|
18743
|
+
/**
|
|
18744
|
+
* @summary Queries masking rules.
|
|
18745
|
+
*
|
|
18746
|
+
* @param request ListDesensitizationRuleRequest
|
|
18747
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18748
|
+
* @return ListDesensitizationRuleResponse
|
|
18749
|
+
*/
|
|
17370
18750
|
listDesensitizationRuleWithOptions(request: ListDesensitizationRuleRequest, runtime: $Util.RuntimeOptions): Promise<ListDesensitizationRuleResponse>;
|
|
18751
|
+
/**
|
|
18752
|
+
* @summary Queries masking rules.
|
|
18753
|
+
*
|
|
18754
|
+
* @param request ListDesensitizationRuleRequest
|
|
18755
|
+
* @return ListDesensitizationRuleResponse
|
|
18756
|
+
*/
|
|
17371
18757
|
listDesensitizationRule(request: ListDesensitizationRuleRequest): Promise<ListDesensitizationRuleResponse>;
|
|
18758
|
+
/**
|
|
18759
|
+
* @summary Queries valid orders.
|
|
18760
|
+
*
|
|
18761
|
+
* @param request ListEffectiveOrdersRequest
|
|
18762
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18763
|
+
* @return ListEffectiveOrdersResponse
|
|
18764
|
+
*/
|
|
17372
18765
|
listEffectiveOrdersWithOptions(request: ListEffectiveOrdersRequest, runtime: $Util.RuntimeOptions): Promise<ListEffectiveOrdersResponse>;
|
|
18766
|
+
/**
|
|
18767
|
+
* @summary Queries valid orders.
|
|
18768
|
+
*
|
|
18769
|
+
* @param request ListEffectiveOrdersRequest
|
|
18770
|
+
* @return ListEffectiveOrdersResponse
|
|
18771
|
+
*/
|
|
17373
18772
|
listEffectiveOrders(request: ListEffectiveOrdersRequest): Promise<ListEffectiveOrdersResponse>;
|
|
18773
|
+
/**
|
|
18774
|
+
* @summary Queries the indexes of a table.
|
|
18775
|
+
*
|
|
18776
|
+
* @param request ListIndexesRequest
|
|
18777
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18778
|
+
* @return ListIndexesResponse
|
|
18779
|
+
*/
|
|
17374
18780
|
listIndexesWithOptions(request: ListIndexesRequest, runtime: $Util.RuntimeOptions): Promise<ListIndexesResponse>;
|
|
18781
|
+
/**
|
|
18782
|
+
* @summary Queries the indexes of a table.
|
|
18783
|
+
*
|
|
18784
|
+
* @param request ListIndexesRequest
|
|
18785
|
+
* @return ListIndexesResponse
|
|
18786
|
+
*/
|
|
17375
18787
|
listIndexes(request: ListIndexesRequest): Promise<ListIndexesResponse>;
|
|
18788
|
+
/**
|
|
18789
|
+
* @summary Queries the logon records of an instance.
|
|
18790
|
+
*
|
|
18791
|
+
* @param request ListInstanceLoginAuditLogRequest
|
|
18792
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18793
|
+
* @return ListInstanceLoginAuditLogResponse
|
|
18794
|
+
*/
|
|
17376
18795
|
listInstanceLoginAuditLogWithOptions(request: ListInstanceLoginAuditLogRequest, runtime: $Util.RuntimeOptions): Promise<ListInstanceLoginAuditLogResponse>;
|
|
18796
|
+
/**
|
|
18797
|
+
* @summary Queries the logon records of an instance.
|
|
18798
|
+
*
|
|
18799
|
+
* @param request ListInstanceLoginAuditLogRequest
|
|
18800
|
+
* @return ListInstanceLoginAuditLogResponse
|
|
18801
|
+
*/
|
|
17377
18802
|
listInstanceLoginAuditLog(request: ListInstanceLoginAuditLogRequest): Promise<ListInstanceLoginAuditLogResponse>;
|
|
18803
|
+
/**
|
|
18804
|
+
* @summary Queries the permissions of a user on a specific instance.
|
|
18805
|
+
*
|
|
18806
|
+
* @param request ListInstanceUserPermissionsRequest
|
|
18807
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18808
|
+
* @return ListInstanceUserPermissionsResponse
|
|
18809
|
+
*/
|
|
17378
18810
|
listInstanceUserPermissionsWithOptions(request: ListInstanceUserPermissionsRequest, runtime: $Util.RuntimeOptions): Promise<ListInstanceUserPermissionsResponse>;
|
|
18811
|
+
/**
|
|
18812
|
+
* @summary Queries the permissions of a user on a specific instance.
|
|
18813
|
+
*
|
|
18814
|
+
* @param request ListInstanceUserPermissionsRequest
|
|
18815
|
+
* @return ListInstanceUserPermissionsResponse
|
|
18816
|
+
*/
|
|
17379
18817
|
listInstanceUserPermissions(request: ListInstanceUserPermissionsRequest): Promise<ListInstanceUserPermissionsResponse>;
|
|
18818
|
+
/**
|
|
18819
|
+
* @summary Queries the information about database instances.
|
|
18820
|
+
*
|
|
18821
|
+
* @param request ListInstancesRequest
|
|
18822
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18823
|
+
* @return ListInstancesResponse
|
|
18824
|
+
*/
|
|
17380
18825
|
listInstancesWithOptions(request: ListInstancesRequest, runtime: $Util.RuntimeOptions): Promise<ListInstancesResponse>;
|
|
18826
|
+
/**
|
|
18827
|
+
* @summary Queries the information about database instances.
|
|
18828
|
+
*
|
|
18829
|
+
* @param request ListInstancesRequest
|
|
18830
|
+
* @return ListInstancesResponse
|
|
18831
|
+
*/
|
|
17381
18832
|
listInstances(request: ListInstancesRequest): Promise<ListInstancesResponse>;
|
|
17382
18833
|
/**
|
|
17383
|
-
|
|
17384
|
-
|
|
17385
|
-
|
|
17386
|
-
|
|
17387
|
-
|
|
17388
|
-
|
|
18834
|
+
* @summary Queries the task flows corresponding to a specific business scenario in a workspace in Data Management (DMS).
|
|
18835
|
+
*
|
|
18836
|
+
* @description * Before you call this operation, make sure that you have the access permissions on the workspace. If you do not have the access permissions on the workspace, you can contact a DMS administrator, database administrator (DBA), or workspace administrator to add you as a member of the workspace. The [AddLhMembers](https://help.aliyun.com/document_detail/424759.html) operation can be called to add a workspace member.
|
|
18837
|
+
* * If you are a DMS administrator or a workspace administrator, you can query the business scenarios and task flows related to a user in a workspace based on the user ID.
|
|
18838
|
+
*
|
|
18839
|
+
* @param request ListLhTaskFlowAndScenarioRequest
|
|
18840
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18841
|
+
* @return ListLhTaskFlowAndScenarioResponse
|
|
17389
18842
|
*/
|
|
17390
18843
|
listLhTaskFlowAndScenarioWithOptions(request: ListLhTaskFlowAndScenarioRequest, runtime: $Util.RuntimeOptions): Promise<ListLhTaskFlowAndScenarioResponse>;
|
|
17391
18844
|
/**
|
|
17392
|
-
|
|
17393
|
-
|
|
17394
|
-
|
|
17395
|
-
|
|
17396
|
-
|
|
18845
|
+
* @summary Queries the task flows corresponding to a specific business scenario in a workspace in Data Management (DMS).
|
|
18846
|
+
*
|
|
18847
|
+
* @description * Before you call this operation, make sure that you have the access permissions on the workspace. If you do not have the access permissions on the workspace, you can contact a DMS administrator, database administrator (DBA), or workspace administrator to add you as a member of the workspace. The [AddLhMembers](https://help.aliyun.com/document_detail/424759.html) operation can be called to add a workspace member.
|
|
18848
|
+
* * If you are a DMS administrator or a workspace administrator, you can query the business scenarios and task flows related to a user in a workspace based on the user ID.
|
|
18849
|
+
*
|
|
18850
|
+
* @param request ListLhTaskFlowAndScenarioRequest
|
|
18851
|
+
* @return ListLhTaskFlowAndScenarioResponse
|
|
17397
18852
|
*/
|
|
17398
18853
|
listLhTaskFlowAndScenario(request: ListLhTaskFlowAndScenarioRequest): Promise<ListLhTaskFlowAndScenarioResponse>;
|
|
18854
|
+
/**
|
|
18855
|
+
* @summary Queries the details of logical databases.
|
|
18856
|
+
*
|
|
18857
|
+
* @param request ListLogicDatabasesRequest
|
|
18858
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18859
|
+
* @return ListLogicDatabasesResponse
|
|
18860
|
+
*/
|
|
17399
18861
|
listLogicDatabasesWithOptions(request: ListLogicDatabasesRequest, runtime: $Util.RuntimeOptions): Promise<ListLogicDatabasesResponse>;
|
|
18862
|
+
/**
|
|
18863
|
+
* @summary Queries the details of logical databases.
|
|
18864
|
+
*
|
|
18865
|
+
* @param request ListLogicDatabasesRequest
|
|
18866
|
+
* @return ListLogicDatabasesResponse
|
|
18867
|
+
*/
|
|
17400
18868
|
listLogicDatabases(request: ListLogicDatabasesRequest): Promise<ListLogicDatabasesResponse>;
|
|
18869
|
+
/**
|
|
18870
|
+
* @summary Queries the routing algorithms of a logical table.
|
|
18871
|
+
*
|
|
18872
|
+
* @param request ListLogicTableRouteConfigRequest
|
|
18873
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18874
|
+
* @return ListLogicTableRouteConfigResponse
|
|
18875
|
+
*/
|
|
17401
18876
|
listLogicTableRouteConfigWithOptions(request: ListLogicTableRouteConfigRequest, runtime: $Util.RuntimeOptions): Promise<ListLogicTableRouteConfigResponse>;
|
|
18877
|
+
/**
|
|
18878
|
+
* @summary Queries the routing algorithms of a logical table.
|
|
18879
|
+
*
|
|
18880
|
+
* @param request ListLogicTableRouteConfigRequest
|
|
18881
|
+
* @return ListLogicTableRouteConfigResponse
|
|
18882
|
+
*/
|
|
17402
18883
|
listLogicTableRouteConfig(request: ListLogicTableRouteConfigRequest): Promise<ListLogicTableRouteConfigResponse>;
|
|
18884
|
+
/**
|
|
18885
|
+
* @summary Queries the details of the logical tables in a logical database.
|
|
18886
|
+
*
|
|
18887
|
+
* @param request ListLogicTablesRequest
|
|
18888
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18889
|
+
* @return ListLogicTablesResponse
|
|
18890
|
+
*/
|
|
17403
18891
|
listLogicTablesWithOptions(request: ListLogicTablesRequest, runtime: $Util.RuntimeOptions): Promise<ListLogicTablesResponse>;
|
|
18892
|
+
/**
|
|
18893
|
+
* @summary Queries the details of the logical tables in a logical database.
|
|
18894
|
+
*
|
|
18895
|
+
* @param request ListLogicTablesRequest
|
|
18896
|
+
* @return ListLogicTablesResponse
|
|
18897
|
+
*/
|
|
17404
18898
|
listLogicTables(request: ListLogicTablesRequest): Promise<ListLogicTablesResponse>;
|
|
18899
|
+
/**
|
|
18900
|
+
* @summary Queries tickets in Data Management (DMS).
|
|
18901
|
+
*
|
|
18902
|
+
* @param request ListOrdersRequest
|
|
18903
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18904
|
+
* @return ListOrdersResponse
|
|
18905
|
+
*/
|
|
17405
18906
|
listOrdersWithOptions(request: ListOrdersRequest, runtime: $Util.RuntimeOptions): Promise<ListOrdersResponse>;
|
|
18907
|
+
/**
|
|
18908
|
+
* @summary Queries tickets in Data Management (DMS).
|
|
18909
|
+
*
|
|
18910
|
+
* @param request ListOrdersRequest
|
|
18911
|
+
* @return ListOrdersResponse
|
|
18912
|
+
*/
|
|
17406
18913
|
listOrders(request: ListOrdersRequest): Promise<ListOrdersResponse>;
|
|
18914
|
+
/**
|
|
18915
|
+
* @summary Queries the proxies that are generated by the secure access proxy feature.
|
|
18916
|
+
*
|
|
18917
|
+
* @param request ListProxiesRequest
|
|
18918
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18919
|
+
* @return ListProxiesResponse
|
|
18920
|
+
*/
|
|
17407
18921
|
listProxiesWithOptions(request: ListProxiesRequest, runtime: $Util.RuntimeOptions): Promise<ListProxiesResponse>;
|
|
18922
|
+
/**
|
|
18923
|
+
* @summary Queries the proxies that are generated by the secure access proxy feature.
|
|
18924
|
+
*
|
|
18925
|
+
* @param request ListProxiesRequest
|
|
18926
|
+
* @return ListProxiesResponse
|
|
18927
|
+
*/
|
|
17408
18928
|
listProxies(request: ListProxiesRequest): Promise<ListProxiesResponse>;
|
|
18929
|
+
/**
|
|
18930
|
+
* @summary Queries information about users that are authorized to access a database instance by using the secure access proxy feature.
|
|
18931
|
+
*
|
|
18932
|
+
* @param request ListProxyAccessesRequest
|
|
18933
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18934
|
+
* @return ListProxyAccessesResponse
|
|
18935
|
+
*/
|
|
17409
18936
|
listProxyAccessesWithOptions(request: ListProxyAccessesRequest, runtime: $Util.RuntimeOptions): Promise<ListProxyAccessesResponse>;
|
|
18937
|
+
/**
|
|
18938
|
+
* @summary Queries information about users that are authorized to access a database instance by using the secure access proxy feature.
|
|
18939
|
+
*
|
|
18940
|
+
* @param request ListProxyAccessesRequest
|
|
18941
|
+
* @return ListProxyAccessesResponse
|
|
18942
|
+
*/
|
|
17410
18943
|
listProxyAccesses(request: ListProxyAccessesRequest): Promise<ListProxyAccessesResponse>;
|
|
18944
|
+
/**
|
|
18945
|
+
* @summary 操作审计-数据安全代理SQL执行列表
|
|
18946
|
+
*
|
|
18947
|
+
* @param request ListProxySQLExecAuditLogRequest
|
|
18948
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18949
|
+
* @return ListProxySQLExecAuditLogResponse
|
|
18950
|
+
*/
|
|
17411
18951
|
listProxySQLExecAuditLogWithOptions(request: ListProxySQLExecAuditLogRequest, runtime: $Util.RuntimeOptions): Promise<ListProxySQLExecAuditLogResponse>;
|
|
18952
|
+
/**
|
|
18953
|
+
* @summary 操作审计-数据安全代理SQL执行列表
|
|
18954
|
+
*
|
|
18955
|
+
* @param request ListProxySQLExecAuditLogRequest
|
|
18956
|
+
* @return ListProxySQLExecAuditLogResponse
|
|
18957
|
+
*/
|
|
17412
18958
|
listProxySQLExecAuditLog(request: ListProxySQLExecAuditLogRequest): Promise<ListProxySQLExecAuditLogResponse>;
|
|
18959
|
+
/**
|
|
18960
|
+
* @summary Queries the custom service level agreement (SLA) rules.
|
|
18961
|
+
*
|
|
18962
|
+
* @param request ListSLARulesRequest
|
|
18963
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18964
|
+
* @return ListSLARulesResponse
|
|
18965
|
+
*/
|
|
17413
18966
|
listSLARulesWithOptions(request: ListSLARulesRequest, runtime: $Util.RuntimeOptions): Promise<ListSLARulesResponse>;
|
|
18967
|
+
/**
|
|
18968
|
+
* @summary Queries the custom service level agreement (SLA) rules.
|
|
18969
|
+
*
|
|
18970
|
+
* @param request ListSLARulesRequest
|
|
18971
|
+
* @return ListSLARulesResponse
|
|
18972
|
+
*/
|
|
17414
18973
|
listSLARules(request: ListSLARulesRequest): Promise<ListSLARulesResponse>;
|
|
18974
|
+
/**
|
|
18975
|
+
* @summary Queries SQL statements that were written on the SQLConsole tab.
|
|
18976
|
+
*
|
|
18977
|
+
* @param request ListSQLExecAuditLogRequest
|
|
18978
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18979
|
+
* @return ListSQLExecAuditLogResponse
|
|
18980
|
+
*/
|
|
17415
18981
|
listSQLExecAuditLogWithOptions(request: ListSQLExecAuditLogRequest, runtime: $Util.RuntimeOptions): Promise<ListSQLExecAuditLogResponse>;
|
|
18982
|
+
/**
|
|
18983
|
+
* @summary Queries SQL statements that were written on the SQLConsole tab.
|
|
18984
|
+
*
|
|
18985
|
+
* @param request ListSQLExecAuditLogRequest
|
|
18986
|
+
* @return ListSQLExecAuditLogResponse
|
|
18987
|
+
*/
|
|
17416
18988
|
listSQLExecAuditLog(request: ListSQLExecAuditLogRequest): Promise<ListSQLExecAuditLogResponse>;
|
|
17417
18989
|
/**
|
|
17418
|
-
|
|
17419
|
-
|
|
17420
|
-
|
|
17421
|
-
|
|
17422
|
-
|
|
18990
|
+
* @summary Queries the details of the SQL statements that are involved in an SQL review ticket.
|
|
18991
|
+
*
|
|
18992
|
+
* @description For more information about the SQL review feature, see [SQL review](https://help.aliyun.com/document_detail/60374.html).
|
|
18993
|
+
*
|
|
18994
|
+
* @param tmpReq ListSQLReviewOriginSQLRequest
|
|
18995
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
18996
|
+
* @return ListSQLReviewOriginSQLResponse
|
|
17423
18997
|
*/
|
|
17424
18998
|
listSQLReviewOriginSQLWithOptions(tmpReq: ListSQLReviewOriginSQLRequest, runtime: $Util.RuntimeOptions): Promise<ListSQLReviewOriginSQLResponse>;
|
|
17425
18999
|
/**
|
|
17426
|
-
|
|
17427
|
-
|
|
17428
|
-
|
|
17429
|
-
|
|
19000
|
+
* @summary Queries the details of the SQL statements that are involved in an SQL review ticket.
|
|
19001
|
+
*
|
|
19002
|
+
* @description For more information about the SQL review feature, see [SQL review](https://help.aliyun.com/document_detail/60374.html).
|
|
19003
|
+
*
|
|
19004
|
+
* @param request ListSQLReviewOriginSQLRequest
|
|
19005
|
+
* @return ListSQLReviewOriginSQLResponse
|
|
17430
19006
|
*/
|
|
17431
19007
|
listSQLReviewOriginSQL(request: ListSQLReviewOriginSQLRequest): Promise<ListSQLReviewOriginSQLResponse>;
|
|
19008
|
+
/**
|
|
19009
|
+
* @summary Queries business scenarios.
|
|
19010
|
+
*
|
|
19011
|
+
* @param request ListScenariosRequest
|
|
19012
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19013
|
+
* @return ListScenariosResponse
|
|
19014
|
+
*/
|
|
17432
19015
|
listScenariosWithOptions(request: ListScenariosRequest, runtime: $Util.RuntimeOptions): Promise<ListScenariosResponse>;
|
|
19016
|
+
/**
|
|
19017
|
+
* @summary Queries business scenarios.
|
|
19018
|
+
*
|
|
19019
|
+
* @param request ListScenariosRequest
|
|
19020
|
+
* @return ListScenariosResponse
|
|
19021
|
+
*/
|
|
17433
19022
|
listScenarios(request: ListScenariosRequest): Promise<ListScenariosResponse>;
|
|
19023
|
+
/**
|
|
19024
|
+
* @summary 获取敏感字段信息
|
|
19025
|
+
*
|
|
19026
|
+
* @param request ListSensitiveColumnInfoRequest
|
|
19027
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19028
|
+
* @return ListSensitiveColumnInfoResponse
|
|
19029
|
+
*/
|
|
17434
19030
|
listSensitiveColumnInfoWithOptions(request: ListSensitiveColumnInfoRequest, runtime: $Util.RuntimeOptions): Promise<ListSensitiveColumnInfoResponse>;
|
|
19031
|
+
/**
|
|
19032
|
+
* @summary 获取敏感字段信息
|
|
19033
|
+
*
|
|
19034
|
+
* @param request ListSensitiveColumnInfoRequest
|
|
19035
|
+
* @return ListSensitiveColumnInfoResponse
|
|
19036
|
+
*/
|
|
17435
19037
|
listSensitiveColumnInfo(request: ListSensitiveColumnInfoRequest): Promise<ListSensitiveColumnInfoResponse>;
|
|
19038
|
+
/**
|
|
19039
|
+
* @summary Queries sensitive fields in a table of a database.
|
|
19040
|
+
*
|
|
19041
|
+
* @param request ListSensitiveColumnsRequest
|
|
19042
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19043
|
+
* @return ListSensitiveColumnsResponse
|
|
19044
|
+
*/
|
|
17436
19045
|
listSensitiveColumnsWithOptions(request: ListSensitiveColumnsRequest, runtime: $Util.RuntimeOptions): Promise<ListSensitiveColumnsResponse>;
|
|
19046
|
+
/**
|
|
19047
|
+
* @summary Queries sensitive fields in a table of a database.
|
|
19048
|
+
*
|
|
19049
|
+
* @param request ListSensitiveColumnsRequest
|
|
19050
|
+
* @return ListSensitiveColumnsResponse
|
|
19051
|
+
*/
|
|
17437
19052
|
listSensitiveColumns(request: ListSensitiveColumnsRequest): Promise<ListSensitiveColumnsResponse>;
|
|
19053
|
+
/**
|
|
19054
|
+
* @summary Queries the details of a sensitive field.
|
|
19055
|
+
*
|
|
19056
|
+
* @param request ListSensitiveColumnsDetailRequest
|
|
19057
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19058
|
+
* @return ListSensitiveColumnsDetailResponse
|
|
19059
|
+
*/
|
|
17438
19060
|
listSensitiveColumnsDetailWithOptions(request: ListSensitiveColumnsDetailRequest, runtime: $Util.RuntimeOptions): Promise<ListSensitiveColumnsDetailResponse>;
|
|
19061
|
+
/**
|
|
19062
|
+
* @summary Queries the details of a sensitive field.
|
|
19063
|
+
*
|
|
19064
|
+
* @param request ListSensitiveColumnsDetailRequest
|
|
19065
|
+
* @return ListSensitiveColumnsDetailResponse
|
|
19066
|
+
*/
|
|
17439
19067
|
listSensitiveColumnsDetail(request: ListSensitiveColumnsDetailRequest): Promise<ListSensitiveColumnsDetailResponse>;
|
|
19068
|
+
/**
|
|
19069
|
+
* @summary Queries the audit logs for sensitive information.
|
|
19070
|
+
*
|
|
19071
|
+
* @param request ListSensitiveDataAuditLogRequest
|
|
19072
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19073
|
+
* @return ListSensitiveDataAuditLogResponse
|
|
19074
|
+
*/
|
|
17440
19075
|
listSensitiveDataAuditLogWithOptions(request: ListSensitiveDataAuditLogRequest, runtime: $Util.RuntimeOptions): Promise<ListSensitiveDataAuditLogResponse>;
|
|
19076
|
+
/**
|
|
19077
|
+
* @summary Queries the audit logs for sensitive information.
|
|
19078
|
+
*
|
|
19079
|
+
* @param request ListSensitiveDataAuditLogRequest
|
|
19080
|
+
* @return ListSensitiveDataAuditLogResponse
|
|
19081
|
+
*/
|
|
17441
19082
|
listSensitiveDataAuditLog(request: ListSensitiveDataAuditLogRequest): Promise<ListSensitiveDataAuditLogResponse>;
|
|
19083
|
+
/**
|
|
19084
|
+
* @summary Queries the sensitivity levels of a classification template.
|
|
19085
|
+
*
|
|
19086
|
+
* @param request ListSensitivityLevelRequest
|
|
19087
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19088
|
+
* @return ListSensitivityLevelResponse
|
|
19089
|
+
*/
|
|
17442
19090
|
listSensitivityLevelWithOptions(request: ListSensitivityLevelRequest, runtime: $Util.RuntimeOptions): Promise<ListSensitivityLevelResponse>;
|
|
19091
|
+
/**
|
|
19092
|
+
* @summary Queries the sensitivity levels of a classification template.
|
|
19093
|
+
*
|
|
19094
|
+
* @param request ListSensitivityLevelRequest
|
|
19095
|
+
* @return ListSensitivityLevelResponse
|
|
19096
|
+
*/
|
|
17443
19097
|
listSensitivityLevel(request: ListSensitivityLevelRequest): Promise<ListSensitivityLevelResponse>;
|
|
19098
|
+
/**
|
|
19099
|
+
* @summary Queries security rule sets.
|
|
19100
|
+
*
|
|
19101
|
+
* @param request ListStandardGroupsRequest
|
|
19102
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19103
|
+
* @return ListStandardGroupsResponse
|
|
19104
|
+
*/
|
|
17444
19105
|
listStandardGroupsWithOptions(request: ListStandardGroupsRequest, runtime: $Util.RuntimeOptions): Promise<ListStandardGroupsResponse>;
|
|
19106
|
+
/**
|
|
19107
|
+
* @summary Queries security rule sets.
|
|
19108
|
+
*
|
|
19109
|
+
* @param request ListStandardGroupsRequest
|
|
19110
|
+
* @return ListStandardGroupsResponse
|
|
19111
|
+
*/
|
|
17445
19112
|
listStandardGroups(request: ListStandardGroupsRequest): Promise<ListStandardGroupsResponse>;
|
|
17446
19113
|
/**
|
|
17447
|
-
|
|
17448
|
-
|
|
17449
|
-
|
|
17450
|
-
|
|
17451
|
-
|
|
19114
|
+
* @summary Queries the tables in a database.
|
|
19115
|
+
*
|
|
19116
|
+
* @description You can call this operation only for database instances whose control mode is Security Collaboration.
|
|
19117
|
+
*
|
|
19118
|
+
* @param request ListTablesRequest
|
|
19119
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19120
|
+
* @return ListTablesResponse
|
|
17452
19121
|
*/
|
|
17453
19122
|
listTablesWithOptions(request: ListTablesRequest, runtime: $Util.RuntimeOptions): Promise<ListTablesResponse>;
|
|
17454
19123
|
/**
|
|
17455
|
-
|
|
17456
|
-
|
|
17457
|
-
|
|
17458
|
-
|
|
19124
|
+
* @summary Queries the tables in a database.
|
|
19125
|
+
*
|
|
19126
|
+
* @description You can call this operation only for database instances whose control mode is Security Collaboration.
|
|
19127
|
+
*
|
|
19128
|
+
* @param request ListTablesRequest
|
|
19129
|
+
* @return ListTablesResponse
|
|
17459
19130
|
*/
|
|
17460
19131
|
listTables(request: ListTablesRequest): Promise<ListTablesResponse>;
|
|
19132
|
+
/**
|
|
19133
|
+
* @summary 任务编排获取任务流列表
|
|
19134
|
+
*
|
|
19135
|
+
* @param request ListTaskFlowRequest
|
|
19136
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19137
|
+
* @return ListTaskFlowResponse
|
|
19138
|
+
*/
|
|
17461
19139
|
listTaskFlowWithOptions(request: ListTaskFlowRequest, runtime: $Util.RuntimeOptions): Promise<ListTaskFlowResponse>;
|
|
19140
|
+
/**
|
|
19141
|
+
* @summary 任务编排获取任务流列表
|
|
19142
|
+
*
|
|
19143
|
+
* @param request ListTaskFlowRequest
|
|
19144
|
+
* @return ListTaskFlowResponse
|
|
19145
|
+
*/
|
|
17462
19146
|
listTaskFlow(request: ListTaskFlowRequest): Promise<ListTaskFlowResponse>;
|
|
19147
|
+
/**
|
|
19148
|
+
* @summary Queries the constants for a task flow.
|
|
19149
|
+
*
|
|
19150
|
+
* @param request ListTaskFlowConstantsRequest
|
|
19151
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19152
|
+
* @return ListTaskFlowConstantsResponse
|
|
19153
|
+
*/
|
|
17463
19154
|
listTaskFlowConstantsWithOptions(request: ListTaskFlowConstantsRequest, runtime: $Util.RuntimeOptions): Promise<ListTaskFlowConstantsResponse>;
|
|
19155
|
+
/**
|
|
19156
|
+
* @summary Queries the constants for a task flow.
|
|
19157
|
+
*
|
|
19158
|
+
* @param request ListTaskFlowConstantsRequest
|
|
19159
|
+
* @return ListTaskFlowConstantsResponse
|
|
19160
|
+
*/
|
|
17464
19161
|
listTaskFlowConstants(request: ListTaskFlowConstantsRequest): Promise<ListTaskFlowConstantsResponse>;
|
|
19162
|
+
/**
|
|
19163
|
+
* @summary Queries the users that are involved in a specified task flow.
|
|
19164
|
+
*
|
|
19165
|
+
* @param request ListTaskFlowCooperatorsRequest
|
|
19166
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19167
|
+
* @return ListTaskFlowCooperatorsResponse
|
|
19168
|
+
*/
|
|
17465
19169
|
listTaskFlowCooperatorsWithOptions(request: ListTaskFlowCooperatorsRequest, runtime: $Util.RuntimeOptions): Promise<ListTaskFlowCooperatorsResponse>;
|
|
19170
|
+
/**
|
|
19171
|
+
* @summary Queries the users that are involved in a specified task flow.
|
|
19172
|
+
*
|
|
19173
|
+
* @param request ListTaskFlowCooperatorsRequest
|
|
19174
|
+
* @return ListTaskFlowCooperatorsResponse
|
|
19175
|
+
*/
|
|
17466
19176
|
listTaskFlowCooperators(request: ListTaskFlowCooperatorsRequest): Promise<ListTaskFlowCooperatorsResponse>;
|
|
17467
19177
|
/**
|
|
17468
|
-
|
|
17469
|
-
|
|
17470
|
-
|
|
17471
|
-
|
|
17472
|
-
|
|
19178
|
+
* @summary Queries the edges of the directed acyclic graph (DAG) for a specified task flow based on multiple conditions.
|
|
19179
|
+
*
|
|
19180
|
+
* @description This operation is used for multi-condition query. You can call this operation to query the edges of a specified task flow that meet all specified conditions.
|
|
19181
|
+
*
|
|
19182
|
+
* @param request ListTaskFlowEdgesByConditionRequest
|
|
19183
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19184
|
+
* @return ListTaskFlowEdgesByConditionResponse
|
|
17473
19185
|
*/
|
|
17474
19186
|
listTaskFlowEdgesByConditionWithOptions(request: ListTaskFlowEdgesByConditionRequest, runtime: $Util.RuntimeOptions): Promise<ListTaskFlowEdgesByConditionResponse>;
|
|
17475
19187
|
/**
|
|
17476
|
-
|
|
17477
|
-
|
|
17478
|
-
|
|
17479
|
-
|
|
19188
|
+
* @summary Queries the edges of the directed acyclic graph (DAG) for a specified task flow based on multiple conditions.
|
|
19189
|
+
*
|
|
19190
|
+
* @description This operation is used for multi-condition query. You can call this operation to query the edges of a specified task flow that meet all specified conditions.
|
|
19191
|
+
*
|
|
19192
|
+
* @param request ListTaskFlowEdgesByConditionRequest
|
|
19193
|
+
* @return ListTaskFlowEdgesByConditionResponse
|
|
17480
19194
|
*/
|
|
17481
19195
|
listTaskFlowEdgesByCondition(request: ListTaskFlowEdgesByConditionRequest): Promise<ListTaskFlowEdgesByConditionResponse>;
|
|
19196
|
+
/**
|
|
19197
|
+
* @summary Queries the execution records of a task flow.
|
|
19198
|
+
*
|
|
19199
|
+
* @param request ListTaskFlowInstanceRequest
|
|
19200
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19201
|
+
* @return ListTaskFlowInstanceResponse
|
|
19202
|
+
*/
|
|
17482
19203
|
listTaskFlowInstanceWithOptions(request: ListTaskFlowInstanceRequest, runtime: $Util.RuntimeOptions): Promise<ListTaskFlowInstanceResponse>;
|
|
19204
|
+
/**
|
|
19205
|
+
* @summary Queries the execution records of a task flow.
|
|
19206
|
+
*
|
|
19207
|
+
* @param request ListTaskFlowInstanceRequest
|
|
19208
|
+
* @return ListTaskFlowInstanceResponse
|
|
19209
|
+
*/
|
|
17483
19210
|
listTaskFlowInstance(request: ListTaskFlowInstanceRequest): Promise<ListTaskFlowInstanceResponse>;
|
|
19211
|
+
/**
|
|
19212
|
+
* @summary Queries the time variables for a task flow.
|
|
19213
|
+
*
|
|
19214
|
+
* @param request ListTaskFlowTimeVariablesRequest
|
|
19215
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19216
|
+
* @return ListTaskFlowTimeVariablesResponse
|
|
19217
|
+
*/
|
|
17484
19218
|
listTaskFlowTimeVariablesWithOptions(request: ListTaskFlowTimeVariablesRequest, runtime: $Util.RuntimeOptions): Promise<ListTaskFlowTimeVariablesResponse>;
|
|
19219
|
+
/**
|
|
19220
|
+
* @summary Queries the time variables for a task flow.
|
|
19221
|
+
*
|
|
19222
|
+
* @param request ListTaskFlowTimeVariablesRequest
|
|
19223
|
+
* @return ListTaskFlowTimeVariablesResponse
|
|
19224
|
+
*/
|
|
17485
19225
|
listTaskFlowTimeVariables(request: ListTaskFlowTimeVariablesRequest): Promise<ListTaskFlowTimeVariablesResponse>;
|
|
19226
|
+
/**
|
|
19227
|
+
* @summary Queries task flows by page.
|
|
19228
|
+
*
|
|
19229
|
+
* @param tmpReq ListTaskFlowsByPageRequest
|
|
19230
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19231
|
+
* @return ListTaskFlowsByPageResponse
|
|
19232
|
+
*/
|
|
17486
19233
|
listTaskFlowsByPageWithOptions(tmpReq: ListTaskFlowsByPageRequest, runtime: $Util.RuntimeOptions): Promise<ListTaskFlowsByPageResponse>;
|
|
19234
|
+
/**
|
|
19235
|
+
* @summary Queries task flows by page.
|
|
19236
|
+
*
|
|
19237
|
+
* @param request ListTaskFlowsByPageRequest
|
|
19238
|
+
* @return ListTaskFlowsByPageResponse
|
|
19239
|
+
*/
|
|
17487
19240
|
listTaskFlowsByPage(request: ListTaskFlowsByPageRequest): Promise<ListTaskFlowsByPageResponse>;
|
|
19241
|
+
/**
|
|
19242
|
+
* @summary Queries the tasks in a specified task flow.
|
|
19243
|
+
*
|
|
19244
|
+
* @param request ListTasksInTaskFlowRequest
|
|
19245
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19246
|
+
* @return ListTasksInTaskFlowResponse
|
|
19247
|
+
*/
|
|
17488
19248
|
listTasksInTaskFlowWithOptions(request: ListTasksInTaskFlowRequest, runtime: $Util.RuntimeOptions): Promise<ListTasksInTaskFlowResponse>;
|
|
19249
|
+
/**
|
|
19250
|
+
* @summary Queries the tasks in a specified task flow.
|
|
19251
|
+
*
|
|
19252
|
+
* @param request ListTasksInTaskFlowRequest
|
|
19253
|
+
* @return ListTasksInTaskFlowResponse
|
|
19254
|
+
*/
|
|
17489
19255
|
listTasksInTaskFlow(request: ListTasksInTaskFlowRequest): Promise<ListTasksInTaskFlowResponse>;
|
|
19256
|
+
/**
|
|
19257
|
+
* @summary Queries the permissions of a specific user on a database or a table.
|
|
19258
|
+
*
|
|
19259
|
+
* @param request ListUserPermissionsRequest
|
|
19260
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19261
|
+
* @return ListUserPermissionsResponse
|
|
19262
|
+
*/
|
|
17490
19263
|
listUserPermissionsWithOptions(request: ListUserPermissionsRequest, runtime: $Util.RuntimeOptions): Promise<ListUserPermissionsResponse>;
|
|
19264
|
+
/**
|
|
19265
|
+
* @summary Queries the permissions of a specific user on a database or a table.
|
|
19266
|
+
*
|
|
19267
|
+
* @param request ListUserPermissionsRequest
|
|
19268
|
+
* @return ListUserPermissionsResponse
|
|
19269
|
+
*/
|
|
17491
19270
|
listUserPermissions(request: ListUserPermissionsRequest): Promise<ListUserPermissionsResponse>;
|
|
19271
|
+
/**
|
|
19272
|
+
* @summary 获取用户租户列表
|
|
19273
|
+
*
|
|
19274
|
+
* @param request ListUserTenantsRequest
|
|
19275
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19276
|
+
* @return ListUserTenantsResponse
|
|
19277
|
+
*/
|
|
17492
19278
|
listUserTenantsWithOptions(request: ListUserTenantsRequest, runtime: $Util.RuntimeOptions): Promise<ListUserTenantsResponse>;
|
|
19279
|
+
/**
|
|
19280
|
+
* @summary 获取用户租户列表
|
|
19281
|
+
*
|
|
19282
|
+
* @param request ListUserTenantsRequest
|
|
19283
|
+
* @return ListUserTenantsResponse
|
|
19284
|
+
*/
|
|
17493
19285
|
listUserTenants(request: ListUserTenantsRequest): Promise<ListUserTenantsResponse>;
|
|
19286
|
+
/**
|
|
19287
|
+
* @summary Queries the details of users.
|
|
19288
|
+
*
|
|
19289
|
+
* @param request ListUsersRequest
|
|
19290
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19291
|
+
* @return ListUsersResponse
|
|
19292
|
+
*/
|
|
17494
19293
|
listUsersWithOptions(request: ListUsersRequest, runtime: $Util.RuntimeOptions): Promise<ListUsersResponse>;
|
|
19294
|
+
/**
|
|
19295
|
+
* @summary Queries the details of users.
|
|
19296
|
+
*
|
|
19297
|
+
* @param request ListUsersRequest
|
|
19298
|
+
* @return ListUsersResponse
|
|
19299
|
+
*/
|
|
17495
19300
|
listUsers(request: ListUsersRequest): Promise<ListUsersResponse>;
|
|
19301
|
+
/**
|
|
19302
|
+
* @summary Queries approval nodes.
|
|
19303
|
+
*
|
|
19304
|
+
* @param request ListWorkFlowNodesRequest
|
|
19305
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19306
|
+
* @return ListWorkFlowNodesResponse
|
|
19307
|
+
*/
|
|
17496
19308
|
listWorkFlowNodesWithOptions(request: ListWorkFlowNodesRequest, runtime: $Util.RuntimeOptions): Promise<ListWorkFlowNodesResponse>;
|
|
19309
|
+
/**
|
|
19310
|
+
* @summary Queries approval nodes.
|
|
19311
|
+
*
|
|
19312
|
+
* @param request ListWorkFlowNodesRequest
|
|
19313
|
+
* @return ListWorkFlowNodesResponse
|
|
19314
|
+
*/
|
|
17497
19315
|
listWorkFlowNodes(request: ListWorkFlowNodesRequest): Promise<ListWorkFlowNodesResponse>;
|
|
19316
|
+
/**
|
|
19317
|
+
* @summary Queries approval templates.
|
|
19318
|
+
*
|
|
19319
|
+
* @param request ListWorkFlowTemplatesRequest
|
|
19320
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19321
|
+
* @return ListWorkFlowTemplatesResponse
|
|
19322
|
+
*/
|
|
17498
19323
|
listWorkFlowTemplatesWithOptions(request: ListWorkFlowTemplatesRequest, runtime: $Util.RuntimeOptions): Promise<ListWorkFlowTemplatesResponse>;
|
|
19324
|
+
/**
|
|
19325
|
+
* @summary Queries approval templates.
|
|
19326
|
+
*
|
|
19327
|
+
* @param request ListWorkFlowTemplatesRequest
|
|
19328
|
+
* @return ListWorkFlowTemplatesResponse
|
|
19329
|
+
*/
|
|
17499
19330
|
listWorkFlowTemplates(request: ListWorkFlowTemplatesRequest): Promise<ListWorkFlowTemplatesResponse>;
|
|
19331
|
+
/**
|
|
19332
|
+
* @summary Sets the status of a task flow to "Successful".
|
|
19333
|
+
*
|
|
19334
|
+
* @param request MakeTaskFlowInstanceSuccessRequest
|
|
19335
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19336
|
+
* @return MakeTaskFlowInstanceSuccessResponse
|
|
19337
|
+
*/
|
|
17500
19338
|
makeTaskFlowInstanceSuccessWithOptions(request: MakeTaskFlowInstanceSuccessRequest, runtime: $Util.RuntimeOptions): Promise<MakeTaskFlowInstanceSuccessResponse>;
|
|
19339
|
+
/**
|
|
19340
|
+
* @summary Sets the status of a task flow to "Successful".
|
|
19341
|
+
*
|
|
19342
|
+
* @param request MakeTaskFlowInstanceSuccessRequest
|
|
19343
|
+
* @return MakeTaskFlowInstanceSuccessResponse
|
|
19344
|
+
*/
|
|
17501
19345
|
makeTaskFlowInstanceSuccess(request: MakeTaskFlowInstanceSuccessRequest): Promise<MakeTaskFlowInstanceSuccessResponse>;
|
|
19346
|
+
/**
|
|
19347
|
+
* @summary Modifies the SQL script that is submitted by using a data change ticket.
|
|
19348
|
+
*
|
|
19349
|
+
* @param request ModifyDataCorrectExecSQLRequest
|
|
19350
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19351
|
+
* @return ModifyDataCorrectExecSQLResponse
|
|
19352
|
+
*/
|
|
17502
19353
|
modifyDataCorrectExecSQLWithOptions(request: ModifyDataCorrectExecSQLRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDataCorrectExecSQLResponse>;
|
|
19354
|
+
/**
|
|
19355
|
+
* @summary Modifies the SQL script that is submitted by using a data change ticket.
|
|
19356
|
+
*
|
|
19357
|
+
* @param request ModifyDataCorrectExecSQLRequest
|
|
19358
|
+
* @return ModifyDataCorrectExecSQLResponse
|
|
19359
|
+
*/
|
|
17503
19360
|
modifyDataCorrectExecSQL(request: ModifyDataCorrectExecSQLRequest): Promise<ModifyDataCorrectExecSQLResponse>;
|
|
19361
|
+
/**
|
|
19362
|
+
* @summary Modifies the masking rule bound to a specified field.
|
|
19363
|
+
*
|
|
19364
|
+
* @param request ModifyDesensitizationStrategyRequest
|
|
19365
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19366
|
+
* @return ModifyDesensitizationStrategyResponse
|
|
19367
|
+
*/
|
|
17504
19368
|
modifyDesensitizationStrategyWithOptions(request: ModifyDesensitizationStrategyRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDesensitizationStrategyResponse>;
|
|
19369
|
+
/**
|
|
19370
|
+
* @summary Modifies the masking rule bound to a specified field.
|
|
19371
|
+
*
|
|
19372
|
+
* @param request ModifyDesensitizationStrategyRequest
|
|
19373
|
+
* @return ModifyDesensitizationStrategyResponse
|
|
19374
|
+
*/
|
|
17505
19375
|
modifyDesensitizationStrategy(request: ModifyDesensitizationStrategyRequest): Promise<ModifyDesensitizationStrategyResponse>;
|
|
19376
|
+
/**
|
|
19377
|
+
* @summary 修改实例信息,同时检查该实例连通性
|
|
19378
|
+
*
|
|
19379
|
+
* @param request ModifyInstanceRequest
|
|
19380
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19381
|
+
* @return ModifyInstanceResponse
|
|
19382
|
+
*/
|
|
17506
19383
|
modifyInstanceWithOptions(request: ModifyInstanceRequest, runtime: $Util.RuntimeOptions): Promise<ModifyInstanceResponse>;
|
|
19384
|
+
/**
|
|
19385
|
+
* @summary 修改实例信息,同时检查该实例连通性
|
|
19386
|
+
*
|
|
19387
|
+
* @param request ModifyInstanceRequest
|
|
19388
|
+
* @return ModifyInstanceResponse
|
|
19389
|
+
*/
|
|
17507
19390
|
modifyInstance(request: ModifyInstanceRequest): Promise<ModifyInstanceResponse>;
|
|
19391
|
+
/**
|
|
19392
|
+
* @summary Migrates a task flow to a specified business scenario.
|
|
19393
|
+
*
|
|
19394
|
+
* @param request MoveTaskFlowToScenarioRequest
|
|
19395
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19396
|
+
* @return MoveTaskFlowToScenarioResponse
|
|
19397
|
+
*/
|
|
17508
19398
|
moveTaskFlowToScenarioWithOptions(request: MoveTaskFlowToScenarioRequest, runtime: $Util.RuntimeOptions): Promise<MoveTaskFlowToScenarioResponse>;
|
|
19399
|
+
/**
|
|
19400
|
+
* @summary Migrates a task flow to a specified business scenario.
|
|
19401
|
+
*
|
|
19402
|
+
* @param request MoveTaskFlowToScenarioRequest
|
|
19403
|
+
* @return MoveTaskFlowToScenarioResponse
|
|
19404
|
+
*/
|
|
17509
19405
|
moveTaskFlowToScenario(request: MoveTaskFlowToScenarioRequest): Promise<MoveTaskFlowToScenarioResponse>;
|
|
19406
|
+
/**
|
|
19407
|
+
* @summary Unpublishes a published task flow.
|
|
19408
|
+
*
|
|
19409
|
+
* @param request OfflineTaskFlowRequest
|
|
19410
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19411
|
+
* @return OfflineTaskFlowResponse
|
|
19412
|
+
*/
|
|
17510
19413
|
offlineTaskFlowWithOptions(request: OfflineTaskFlowRequest, runtime: $Util.RuntimeOptions): Promise<OfflineTaskFlowResponse>;
|
|
19414
|
+
/**
|
|
19415
|
+
* @summary Unpublishes a published task flow.
|
|
19416
|
+
*
|
|
19417
|
+
* @param request OfflineTaskFlowRequest
|
|
19418
|
+
* @return OfflineTaskFlowResponse
|
|
19419
|
+
*/
|
|
17511
19420
|
offlineTaskFlow(request: OfflineTaskFlowRequest): Promise<OfflineTaskFlowResponse>;
|
|
17512
19421
|
/**
|
|
17513
|
-
|
|
17514
|
-
|
|
17515
|
-
|
|
17516
|
-
|
|
17517
|
-
|
|
19422
|
+
* @summary Pauses a SQL task for data change.
|
|
19423
|
+
*
|
|
19424
|
+
* @description You can call this operation only for database instances that are managed in Security Collaboration mode.
|
|
19425
|
+
*
|
|
19426
|
+
* @param request PauseDataCorrectSQLJobRequest
|
|
19427
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19428
|
+
* @return PauseDataCorrectSQLJobResponse
|
|
17518
19429
|
*/
|
|
17519
19430
|
pauseDataCorrectSQLJobWithOptions(request: PauseDataCorrectSQLJobRequest, runtime: $Util.RuntimeOptions): Promise<PauseDataCorrectSQLJobResponse>;
|
|
17520
19431
|
/**
|
|
17521
|
-
|
|
17522
|
-
|
|
17523
|
-
|
|
17524
|
-
|
|
19432
|
+
* @summary Pauses a SQL task for data change.
|
|
19433
|
+
*
|
|
19434
|
+
* @description You can call this operation only for database instances that are managed in Security Collaboration mode.
|
|
19435
|
+
*
|
|
19436
|
+
* @param request PauseDataCorrectSQLJobRequest
|
|
19437
|
+
* @return PauseDataCorrectSQLJobResponse
|
|
17525
19438
|
*/
|
|
17526
19439
|
pauseDataCorrectSQLJob(request: PauseDataCorrectSQLJobRequest): Promise<PauseDataCorrectSQLJobResponse>;
|
|
19440
|
+
/**
|
|
19441
|
+
* @summary 创建工单审批流
|
|
19442
|
+
*
|
|
19443
|
+
* @param request PreviewWorkflowRequest
|
|
19444
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19445
|
+
* @return PreviewWorkflowResponse
|
|
19446
|
+
*/
|
|
17527
19447
|
previewWorkflowWithOptions(request: PreviewWorkflowRequest, runtime: $Util.RuntimeOptions): Promise<PreviewWorkflowResponse>;
|
|
19448
|
+
/**
|
|
19449
|
+
* @summary 创建工单审批流
|
|
19450
|
+
*
|
|
19451
|
+
* @param request PreviewWorkflowRequest
|
|
19452
|
+
* @return PreviewWorkflowResponse
|
|
19453
|
+
*/
|
|
17528
19454
|
previewWorkflow(request: PreviewWorkflowRequest): Promise<PreviewWorkflowResponse>;
|
|
19455
|
+
/**
|
|
19456
|
+
* @summary Publishes and deploys a task flow.
|
|
19457
|
+
*
|
|
19458
|
+
* @param request PublishAndDeployTaskFlowRequest
|
|
19459
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19460
|
+
* @return PublishAndDeployTaskFlowResponse
|
|
19461
|
+
*/
|
|
17529
19462
|
publishAndDeployTaskFlowWithOptions(request: PublishAndDeployTaskFlowRequest, runtime: $Util.RuntimeOptions): Promise<PublishAndDeployTaskFlowResponse>;
|
|
19463
|
+
/**
|
|
19464
|
+
* @summary Publishes and deploys a task flow.
|
|
19465
|
+
*
|
|
19466
|
+
* @param request PublishAndDeployTaskFlowRequest
|
|
19467
|
+
* @return PublishAndDeployTaskFlowResponse
|
|
19468
|
+
*/
|
|
17530
19469
|
publishAndDeployTaskFlow(request: PublishAndDeployTaskFlowRequest): Promise<PublishAndDeployTaskFlowResponse>;
|
|
19470
|
+
/**
|
|
19471
|
+
* @summary Queries the download and parsing progress of data tracking logs.
|
|
19472
|
+
*
|
|
19473
|
+
* @param request QueryDataTrackResultDownloadStatusRequest
|
|
19474
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19475
|
+
* @return QueryDataTrackResultDownloadStatusResponse
|
|
19476
|
+
*/
|
|
17531
19477
|
queryDataTrackResultDownloadStatusWithOptions(request: QueryDataTrackResultDownloadStatusRequest, runtime: $Util.RuntimeOptions): Promise<QueryDataTrackResultDownloadStatusResponse>;
|
|
19478
|
+
/**
|
|
19479
|
+
* @summary Queries the download and parsing progress of data tracking logs.
|
|
19480
|
+
*
|
|
19481
|
+
* @param request QueryDataTrackResultDownloadStatusRequest
|
|
19482
|
+
* @return QueryDataTrackResultDownloadStatusResponse
|
|
19483
|
+
*/
|
|
17532
19484
|
queryDataTrackResultDownloadStatus(request: QueryDataTrackResultDownloadStatusRequest): Promise<QueryDataTrackResultDownloadStatusResponse>;
|
|
19485
|
+
/**
|
|
19486
|
+
* @summary 部署任务流的历史版本
|
|
19487
|
+
*
|
|
19488
|
+
* @param request ReDeployLhDagVersionRequest
|
|
19489
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19490
|
+
* @return ReDeployLhDagVersionResponse
|
|
19491
|
+
*/
|
|
17533
19492
|
reDeployLhDagVersionWithOptions(request: ReDeployLhDagVersionRequest, runtime: $Util.RuntimeOptions): Promise<ReDeployLhDagVersionResponse>;
|
|
19493
|
+
/**
|
|
19494
|
+
* @summary 部署任务流的历史版本
|
|
19495
|
+
*
|
|
19496
|
+
* @param request ReDeployLhDagVersionRequest
|
|
19497
|
+
* @return ReDeployLhDagVersionResponse
|
|
19498
|
+
*/
|
|
17534
19499
|
reDeployLhDagVersion(request: ReDeployLhDagVersionRequest): Promise<ReDeployLhDagVersionResponse>;
|
|
19500
|
+
/**
|
|
19501
|
+
* @summary Reruns a task flow instance.
|
|
19502
|
+
*
|
|
19503
|
+
* @param request ReRunTaskFlowInstanceRequest
|
|
19504
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19505
|
+
* @return ReRunTaskFlowInstanceResponse
|
|
19506
|
+
*/
|
|
17535
19507
|
reRunTaskFlowInstanceWithOptions(request: ReRunTaskFlowInstanceRequest, runtime: $Util.RuntimeOptions): Promise<ReRunTaskFlowInstanceResponse>;
|
|
19508
|
+
/**
|
|
19509
|
+
* @summary Reruns a task flow instance.
|
|
19510
|
+
*
|
|
19511
|
+
* @param request ReRunTaskFlowInstanceRequest
|
|
19512
|
+
* @return ReRunTaskFlowInstanceResponse
|
|
19513
|
+
*/
|
|
17536
19514
|
reRunTaskFlowInstance(request: ReRunTaskFlowInstanceRequest): Promise<ReRunTaskFlowInstanceResponse>;
|
|
19515
|
+
/**
|
|
19516
|
+
* @summary Unsubscribes from a pay-as-you-go Data Management (DMS) resource.
|
|
19517
|
+
*
|
|
19518
|
+
* @param request RefundPayAsYouGoOrderRequest
|
|
19519
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19520
|
+
* @return RefundPayAsYouGoOrderResponse
|
|
19521
|
+
*/
|
|
17537
19522
|
refundPayAsYouGoOrderWithOptions(request: RefundPayAsYouGoOrderRequest, runtime: $Util.RuntimeOptions): Promise<RefundPayAsYouGoOrderResponse>;
|
|
19523
|
+
/**
|
|
19524
|
+
* @summary Unsubscribes from a pay-as-you-go Data Management (DMS) resource.
|
|
19525
|
+
*
|
|
19526
|
+
* @param request RefundPayAsYouGoOrderRequest
|
|
19527
|
+
* @return RefundPayAsYouGoOrderResponse
|
|
19528
|
+
*/
|
|
17538
19529
|
refundPayAsYouGoOrder(request: RefundPayAsYouGoOrderRequest): Promise<RefundPayAsYouGoOrderResponse>;
|
|
17539
19530
|
/**
|
|
17540
|
-
|
|
17541
|
-
|
|
17542
|
-
|
|
17543
|
-
|
|
17544
|
-
|
|
19531
|
+
* @summary Registers a database instance in Data Management (DMS).
|
|
19532
|
+
*
|
|
19533
|
+
* @description Prerequisites: You are a DMS administrator or a database administrator (DBA). You can call the [ListUsers](https://help.aliyun.com/document_detail/141938.html) or [GetUser](https://help.aliyun.com/document_detail/147098.html) operation to query your user role from the RoleIdList parameter that is returned.
|
|
19534
|
+
*
|
|
19535
|
+
* @param request RegisterInstanceRequest
|
|
19536
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19537
|
+
* @return RegisterInstanceResponse
|
|
17545
19538
|
*/
|
|
17546
19539
|
registerInstanceWithOptions(request: RegisterInstanceRequest, runtime: $Util.RuntimeOptions): Promise<RegisterInstanceResponse>;
|
|
17547
19540
|
/**
|
|
17548
|
-
|
|
17549
|
-
|
|
17550
|
-
|
|
17551
|
-
|
|
19541
|
+
* @summary Registers a database instance in Data Management (DMS).
|
|
19542
|
+
*
|
|
19543
|
+
* @description Prerequisites: You are a DMS administrator or a database administrator (DBA). You can call the [ListUsers](https://help.aliyun.com/document_detail/141938.html) or [GetUser](https://help.aliyun.com/document_detail/147098.html) operation to query your user role from the RoleIdList parameter that is returned.
|
|
19544
|
+
*
|
|
19545
|
+
* @param request RegisterInstanceRequest
|
|
19546
|
+
* @return RegisterInstanceResponse
|
|
17552
19547
|
*/
|
|
17553
19548
|
registerInstance(request: RegisterInstanceRequest): Promise<RegisterInstanceResponse>;
|
|
17554
19549
|
/**
|
|
17555
|
-
|
|
17556
|
-
|
|
17557
|
-
|
|
17558
|
-
|
|
17559
|
-
|
|
19550
|
+
* @summary Registers a user for your enterprise.
|
|
19551
|
+
*
|
|
19552
|
+
* @description If you are an **administrator** in Data Management (DMS), you can call this operation to register a user for your enterprise. To view users that are assigned the administrator role, perform the following steps: Log on to the DMS console. In the top navigation bar, click O&M. In the left-side navigation pane, click User.
|
|
19553
|
+
*
|
|
19554
|
+
* @param request RegisterUserRequest
|
|
19555
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19556
|
+
* @return RegisterUserResponse
|
|
17560
19557
|
*/
|
|
17561
19558
|
registerUserWithOptions(request: RegisterUserRequest, runtime: $Util.RuntimeOptions): Promise<RegisterUserResponse>;
|
|
17562
19559
|
/**
|
|
17563
|
-
|
|
17564
|
-
|
|
17565
|
-
|
|
17566
|
-
|
|
19560
|
+
* @summary Registers a user for your enterprise.
|
|
19561
|
+
*
|
|
19562
|
+
* @description If you are an **administrator** in Data Management (DMS), you can call this operation to register a user for your enterprise. To view users that are assigned the administrator role, perform the following steps: Log on to the DMS console. In the top navigation bar, click O&M. In the left-side navigation pane, click User.
|
|
19563
|
+
*
|
|
19564
|
+
* @param request RegisterUserRequest
|
|
19565
|
+
* @return RegisterUserResponse
|
|
17567
19566
|
*/
|
|
17568
19567
|
registerUser(request: RegisterUserRequest): Promise<RegisterUserResponse>;
|
|
19568
|
+
/**
|
|
19569
|
+
* @summary Reruns a failed SQL task for data change.
|
|
19570
|
+
*
|
|
19571
|
+
* @param request RestartDataCorrectSQLJobRequest
|
|
19572
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19573
|
+
* @return RestartDataCorrectSQLJobResponse
|
|
19574
|
+
*/
|
|
17569
19575
|
restartDataCorrectSQLJobWithOptions(request: RestartDataCorrectSQLJobRequest, runtime: $Util.RuntimeOptions): Promise<RestartDataCorrectSQLJobResponse>;
|
|
19576
|
+
/**
|
|
19577
|
+
* @summary Reruns a failed SQL task for data change.
|
|
19578
|
+
*
|
|
19579
|
+
* @param request RestartDataCorrectSQLJobRequest
|
|
19580
|
+
* @return RestartDataCorrectSQLJobResponse
|
|
19581
|
+
*/
|
|
17570
19582
|
restartDataCorrectSQLJob(request: RestartDataCorrectSQLJobRequest): Promise<RestartDataCorrectSQLJobResponse>;
|
|
17571
19583
|
/**
|
|
17572
|
-
|
|
17573
|
-
|
|
17574
|
-
|
|
17575
|
-
|
|
17576
|
-
|
|
19584
|
+
* @summary Resumes a suspended task flow.
|
|
19585
|
+
*
|
|
19586
|
+
* @description You can call this operation only for task flows that are suspended.
|
|
19587
|
+
*
|
|
19588
|
+
* @param request ResumeTaskFlowInstanceRequest
|
|
19589
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19590
|
+
* @return ResumeTaskFlowInstanceResponse
|
|
17577
19591
|
*/
|
|
17578
19592
|
resumeTaskFlowInstanceWithOptions(request: ResumeTaskFlowInstanceRequest, runtime: $Util.RuntimeOptions): Promise<ResumeTaskFlowInstanceResponse>;
|
|
17579
19593
|
/**
|
|
17580
|
-
|
|
17581
|
-
|
|
17582
|
-
|
|
17583
|
-
|
|
19594
|
+
* @summary Resumes a suspended task flow.
|
|
19595
|
+
*
|
|
19596
|
+
* @description You can call this operation only for task flows that are suspended.
|
|
19597
|
+
*
|
|
19598
|
+
* @param request ResumeTaskFlowInstanceRequest
|
|
19599
|
+
* @return ResumeTaskFlowInstanceResponse
|
|
17584
19600
|
*/
|
|
17585
19601
|
resumeTaskFlowInstance(request: ResumeTaskFlowInstanceRequest): Promise<ResumeTaskFlowInstanceResponse>;
|
|
19602
|
+
/**
|
|
19603
|
+
* @summary Reruns the precheck for a data change ticket.
|
|
19604
|
+
*
|
|
19605
|
+
* @param request RetryDataCorrectPreCheckRequest
|
|
19606
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19607
|
+
* @return RetryDataCorrectPreCheckResponse
|
|
19608
|
+
*/
|
|
17586
19609
|
retryDataCorrectPreCheckWithOptions(request: RetryDataCorrectPreCheckRequest, runtime: $Util.RuntimeOptions): Promise<RetryDataCorrectPreCheckResponse>;
|
|
19610
|
+
/**
|
|
19611
|
+
* @summary Reruns the precheck for a data change ticket.
|
|
19612
|
+
*
|
|
19613
|
+
* @param request RetryDataCorrectPreCheckRequest
|
|
19614
|
+
* @return RetryDataCorrectPreCheckResponse
|
|
19615
|
+
*/
|
|
17587
19616
|
retryDataCorrectPreCheck(request: RetryDataCorrectPreCheckRequest): Promise<RetryDataCorrectPreCheckResponse>;
|
|
17588
19617
|
/**
|
|
17589
|
-
|
|
17590
|
-
|
|
17591
|
-
|
|
17592
|
-
|
|
17593
|
-
|
|
19618
|
+
* @summary Revokes permissions on resources from Data Management (DMS) users by using a permission template.
|
|
19619
|
+
*
|
|
19620
|
+
* @description You must be a database administrator (DBA) or a DMS administrator. For more information about how to view system roles, see [View system roles](https://help.aliyun.com/document_detail/324212.html).
|
|
19621
|
+
*
|
|
19622
|
+
* @param request RevokeTemplateAuthorityRequest
|
|
19623
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19624
|
+
* @return RevokeTemplateAuthorityResponse
|
|
17594
19625
|
*/
|
|
17595
19626
|
revokeTemplateAuthorityWithOptions(request: RevokeTemplateAuthorityRequest, runtime: $Util.RuntimeOptions): Promise<RevokeTemplateAuthorityResponse>;
|
|
17596
19627
|
/**
|
|
17597
|
-
|
|
17598
|
-
|
|
17599
|
-
|
|
17600
|
-
|
|
19628
|
+
* @summary Revokes permissions on resources from Data Management (DMS) users by using a permission template.
|
|
19629
|
+
*
|
|
19630
|
+
* @description You must be a database administrator (DBA) or a DMS administrator. For more information about how to view system roles, see [View system roles](https://help.aliyun.com/document_detail/324212.html).
|
|
19631
|
+
*
|
|
19632
|
+
* @param request RevokeTemplateAuthorityRequest
|
|
19633
|
+
* @return RevokeTemplateAuthorityResponse
|
|
17601
19634
|
*/
|
|
17602
19635
|
revokeTemplateAuthority(request: RevokeTemplateAuthorityRequest): Promise<RevokeTemplateAuthorityResponse>;
|
|
19636
|
+
/**
|
|
19637
|
+
* @summary Revokes a permission on a resource from a user.
|
|
19638
|
+
*
|
|
19639
|
+
* @param request RevokeUserPermissionRequest
|
|
19640
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19641
|
+
* @return RevokeUserPermissionResponse
|
|
19642
|
+
*/
|
|
17603
19643
|
revokeUserPermissionWithOptions(request: RevokeUserPermissionRequest, runtime: $Util.RuntimeOptions): Promise<RevokeUserPermissionResponse>;
|
|
19644
|
+
/**
|
|
19645
|
+
* @summary Revokes a permission on a resource from a user.
|
|
19646
|
+
*
|
|
19647
|
+
* @param request RevokeUserPermissionRequest
|
|
19648
|
+
* @return RevokeUserPermissionResponse
|
|
19649
|
+
*/
|
|
17604
19650
|
revokeUserPermission(request: RevokeUserPermissionRequest): Promise<RevokeUserPermissionResponse>;
|
|
19651
|
+
/**
|
|
19652
|
+
* @summary Searches for the parsing result of a data tracking task.
|
|
19653
|
+
*
|
|
19654
|
+
* @param tmpReq SearchDataTrackResultRequest
|
|
19655
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19656
|
+
* @return SearchDataTrackResultResponse
|
|
19657
|
+
*/
|
|
17605
19658
|
searchDataTrackResultWithOptions(tmpReq: SearchDataTrackResultRequest, runtime: $Util.RuntimeOptions): Promise<SearchDataTrackResultResponse>;
|
|
19659
|
+
/**
|
|
19660
|
+
* @summary Searches for the parsing result of a data tracking task.
|
|
19661
|
+
*
|
|
19662
|
+
* @param request SearchDataTrackResultRequest
|
|
19663
|
+
* @return SearchDataTrackResultResponse
|
|
19664
|
+
*/
|
|
17606
19665
|
searchDataTrackResult(request: SearchDataTrackResultRequest): Promise<SearchDataTrackResultResponse>;
|
|
19666
|
+
/**
|
|
19667
|
+
* @summary Queries the details of the databases.
|
|
19668
|
+
*
|
|
19669
|
+
* @param request SearchDatabaseRequest
|
|
19670
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19671
|
+
* @return SearchDatabaseResponse
|
|
19672
|
+
*/
|
|
17607
19673
|
searchDatabaseWithOptions(request: SearchDatabaseRequest, runtime: $Util.RuntimeOptions): Promise<SearchDatabaseResponse>;
|
|
19674
|
+
/**
|
|
19675
|
+
* @summary Queries the details of the databases.
|
|
19676
|
+
*
|
|
19677
|
+
* @param request SearchDatabaseRequest
|
|
19678
|
+
* @return SearchDatabaseResponse
|
|
19679
|
+
*/
|
|
17608
19680
|
searchDatabase(request: SearchDatabaseRequest): Promise<SearchDatabaseResponse>;
|
|
17609
19681
|
/**
|
|
17610
|
-
|
|
17611
|
-
|
|
17612
|
-
|
|
17613
|
-
|
|
17614
|
-
|
|
19682
|
+
* @summary Queries detailed information about tables.
|
|
19683
|
+
*
|
|
19684
|
+
* @description You can call this operation only for database instances that are managed in Security Collaboration mode.
|
|
19685
|
+
*
|
|
19686
|
+
* @param request SearchTableRequest
|
|
19687
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19688
|
+
* @return SearchTableResponse
|
|
17615
19689
|
*/
|
|
17616
19690
|
searchTableWithOptions(request: SearchTableRequest, runtime: $Util.RuntimeOptions): Promise<SearchTableResponse>;
|
|
17617
19691
|
/**
|
|
17618
|
-
|
|
17619
|
-
|
|
17620
|
-
|
|
17621
|
-
|
|
19692
|
+
* @summary Queries detailed information about tables.
|
|
19693
|
+
*
|
|
19694
|
+
* @description You can call this operation only for database instances that are managed in Security Collaboration mode.
|
|
19695
|
+
*
|
|
19696
|
+
* @param request SearchTableRequest
|
|
19697
|
+
* @return SearchTableResponse
|
|
17622
19698
|
*/
|
|
17623
19699
|
searchTable(request: SearchTableRequest): Promise<SearchTableResponse>;
|
|
19700
|
+
/**
|
|
19701
|
+
* @summary Configures the owner of an instance, a database, or a table.
|
|
19702
|
+
*
|
|
19703
|
+
* @param request SetOwnersRequest
|
|
19704
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19705
|
+
* @return SetOwnersResponse
|
|
19706
|
+
*/
|
|
17624
19707
|
setOwnersWithOptions(request: SetOwnersRequest, runtime: $Util.RuntimeOptions): Promise<SetOwnersResponse>;
|
|
19708
|
+
/**
|
|
19709
|
+
* @summary Configures the owner of an instance, a database, or a table.
|
|
19710
|
+
*
|
|
19711
|
+
* @param request SetOwnersRequest
|
|
19712
|
+
* @return SetOwnersResponse
|
|
19713
|
+
*/
|
|
17625
19714
|
setOwners(request: SetOwnersRequest): Promise<SetOwnersResponse>;
|
|
19715
|
+
/**
|
|
19716
|
+
* @summary Skips the verification on the number of rows in the precheck for data change.
|
|
19717
|
+
*
|
|
19718
|
+
* @param request SkipDataCorrectRowCheckRequest
|
|
19719
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19720
|
+
* @return SkipDataCorrectRowCheckResponse
|
|
19721
|
+
*/
|
|
17626
19722
|
skipDataCorrectRowCheckWithOptions(request: SkipDataCorrectRowCheckRequest, runtime: $Util.RuntimeOptions): Promise<SkipDataCorrectRowCheckResponse>;
|
|
19723
|
+
/**
|
|
19724
|
+
* @summary Skips the verification on the number of rows in the precheck for data change.
|
|
19725
|
+
*
|
|
19726
|
+
* @param request SkipDataCorrectRowCheckRequest
|
|
19727
|
+
* @return SkipDataCorrectRowCheckResponse
|
|
19728
|
+
*/
|
|
17627
19729
|
skipDataCorrectRowCheck(request: SkipDataCorrectRowCheckRequest): Promise<SkipDataCorrectRowCheckResponse>;
|
|
19730
|
+
/**
|
|
19731
|
+
* @summary Stops a task flow instance.
|
|
19732
|
+
*
|
|
19733
|
+
* @param request StopTaskFlowInstanceRequest
|
|
19734
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19735
|
+
* @return StopTaskFlowInstanceResponse
|
|
19736
|
+
*/
|
|
17628
19737
|
stopTaskFlowInstanceWithOptions(request: StopTaskFlowInstanceRequest, runtime: $Util.RuntimeOptions): Promise<StopTaskFlowInstanceResponse>;
|
|
19738
|
+
/**
|
|
19739
|
+
* @summary Stops a task flow instance.
|
|
19740
|
+
*
|
|
19741
|
+
* @param request StopTaskFlowInstanceRequest
|
|
19742
|
+
* @return StopTaskFlowInstanceResponse
|
|
19743
|
+
*/
|
|
17629
19744
|
stopTaskFlowInstance(request: StopTaskFlowInstanceRequest): Promise<StopTaskFlowInstanceResponse>;
|
|
19745
|
+
/**
|
|
19746
|
+
* @summary Submits a ticket for approval.
|
|
19747
|
+
*
|
|
19748
|
+
* @param request SubmitOrderApprovalRequest
|
|
19749
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19750
|
+
* @return SubmitOrderApprovalResponse
|
|
19751
|
+
*/
|
|
17630
19752
|
submitOrderApprovalWithOptions(request: SubmitOrderApprovalRequest, runtime: $Util.RuntimeOptions): Promise<SubmitOrderApprovalResponse>;
|
|
19753
|
+
/**
|
|
19754
|
+
* @summary Submits a ticket for approval.
|
|
19755
|
+
*
|
|
19756
|
+
* @param request SubmitOrderApprovalRequest
|
|
19757
|
+
* @return SubmitOrderApprovalResponse
|
|
19758
|
+
*/
|
|
17631
19759
|
submitOrderApproval(request: SubmitOrderApprovalRequest): Promise<SubmitOrderApprovalResponse>;
|
|
19760
|
+
/**
|
|
19761
|
+
* @summary Submits a schema synchronization ticket for approval.
|
|
19762
|
+
*
|
|
19763
|
+
* @param request SubmitStructSyncOrderApprovalRequest
|
|
19764
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19765
|
+
* @return SubmitStructSyncOrderApprovalResponse
|
|
19766
|
+
*/
|
|
17632
19767
|
submitStructSyncOrderApprovalWithOptions(request: SubmitStructSyncOrderApprovalRequest, runtime: $Util.RuntimeOptions): Promise<SubmitStructSyncOrderApprovalResponse>;
|
|
19768
|
+
/**
|
|
19769
|
+
* @summary Submits a schema synchronization ticket for approval.
|
|
19770
|
+
*
|
|
19771
|
+
* @param request SubmitStructSyncOrderApprovalRequest
|
|
19772
|
+
* @return SubmitStructSyncOrderApprovalResponse
|
|
19773
|
+
*/
|
|
17633
19774
|
submitStructSyncOrderApproval(request: SubmitStructSyncOrderApprovalRequest): Promise<SubmitStructSyncOrderApprovalResponse>;
|
|
19775
|
+
/**
|
|
19776
|
+
* @summary Suspends a task flow instance.
|
|
19777
|
+
*
|
|
19778
|
+
* @param request SuspendTaskFlowInstanceRequest
|
|
19779
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19780
|
+
* @return SuspendTaskFlowInstanceResponse
|
|
19781
|
+
*/
|
|
17634
19782
|
suspendTaskFlowInstanceWithOptions(request: SuspendTaskFlowInstanceRequest, runtime: $Util.RuntimeOptions): Promise<SuspendTaskFlowInstanceResponse>;
|
|
19783
|
+
/**
|
|
19784
|
+
* @summary Suspends a task flow instance.
|
|
19785
|
+
*
|
|
19786
|
+
* @param request SuspendTaskFlowInstanceRequest
|
|
19787
|
+
* @return SuspendTaskFlowInstanceResponse
|
|
19788
|
+
*/
|
|
17635
19789
|
suspendTaskFlowInstance(request: SuspendTaskFlowInstanceRequest): Promise<SuspendTaskFlowInstanceResponse>;
|
|
19790
|
+
/**
|
|
19791
|
+
* @summary Synchronizes the metadata of a database.
|
|
19792
|
+
*
|
|
19793
|
+
* @param request SyncDatabaseMetaRequest
|
|
19794
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19795
|
+
* @return SyncDatabaseMetaResponse
|
|
19796
|
+
*/
|
|
17636
19797
|
syncDatabaseMetaWithOptions(request: SyncDatabaseMetaRequest, runtime: $Util.RuntimeOptions): Promise<SyncDatabaseMetaResponse>;
|
|
19798
|
+
/**
|
|
19799
|
+
* @summary Synchronizes the metadata of a database.
|
|
19800
|
+
*
|
|
19801
|
+
* @param request SyncDatabaseMetaRequest
|
|
19802
|
+
* @return SyncDatabaseMetaResponse
|
|
19803
|
+
*/
|
|
17637
19804
|
syncDatabaseMeta(request: SyncDatabaseMetaRequest): Promise<SyncDatabaseMetaResponse>;
|
|
17638
19805
|
/**
|
|
17639
|
-
|
|
17640
|
-
|
|
17641
|
-
|
|
17642
|
-
|
|
17643
|
-
|
|
19806
|
+
* @summary Synchronizes the metadata of all databases in a database instance.
|
|
19807
|
+
*
|
|
19808
|
+
* @description You can call this operation only for database instances whose control mode is Security Collaboration.
|
|
19809
|
+
*
|
|
19810
|
+
* @param request SyncInstanceMetaRequest
|
|
19811
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19812
|
+
* @return SyncInstanceMetaResponse
|
|
17644
19813
|
*/
|
|
17645
19814
|
syncInstanceMetaWithOptions(request: SyncInstanceMetaRequest, runtime: $Util.RuntimeOptions): Promise<SyncInstanceMetaResponse>;
|
|
17646
19815
|
/**
|
|
17647
|
-
|
|
17648
|
-
|
|
17649
|
-
|
|
17650
|
-
|
|
19816
|
+
* @summary Synchronizes the metadata of all databases in a database instance.
|
|
19817
|
+
*
|
|
19818
|
+
* @description You can call this operation only for database instances whose control mode is Security Collaboration.
|
|
19819
|
+
*
|
|
19820
|
+
* @param request SyncInstanceMetaRequest
|
|
19821
|
+
* @return SyncInstanceMetaResponse
|
|
17651
19822
|
*/
|
|
17652
19823
|
syncInstanceMeta(request: SyncInstanceMetaRequest): Promise<SyncInstanceMetaResponse>;
|
|
17653
19824
|
/**
|
|
17654
|
-
|
|
17655
|
-
|
|
17656
|
-
|
|
17657
|
-
|
|
17658
|
-
|
|
19825
|
+
* @summary Modifies a permission template.
|
|
19826
|
+
*
|
|
19827
|
+
* @description You are a database administrator (DBA) or a Data Management (DMS) administrator. For more information about how to view system roles, see [View system roles](https://help.aliyun.com/document_detail/324212.html).
|
|
19828
|
+
*
|
|
19829
|
+
* @param request UpdateAuthorityTemplateRequest
|
|
19830
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19831
|
+
* @return UpdateAuthorityTemplateResponse
|
|
17659
19832
|
*/
|
|
17660
19833
|
updateAuthorityTemplateWithOptions(request: UpdateAuthorityTemplateRequest, runtime: $Util.RuntimeOptions): Promise<UpdateAuthorityTemplateResponse>;
|
|
17661
19834
|
/**
|
|
17662
|
-
|
|
17663
|
-
|
|
17664
|
-
|
|
17665
|
-
|
|
19835
|
+
* @summary Modifies a permission template.
|
|
19836
|
+
*
|
|
19837
|
+
* @description You are a database administrator (DBA) or a Data Management (DMS) administrator. For more information about how to view system roles, see [View system roles](https://help.aliyun.com/document_detail/324212.html).
|
|
19838
|
+
*
|
|
19839
|
+
* @param request UpdateAuthorityTemplateRequest
|
|
19840
|
+
* @return UpdateAuthorityTemplateResponse
|
|
17666
19841
|
*/
|
|
17667
19842
|
updateAuthorityTemplate(request: UpdateAuthorityTemplateRequest): Promise<UpdateAuthorityTemplateResponse>;
|
|
17668
19843
|
/**
|
|
17669
|
-
|
|
17670
|
-
|
|
17671
|
-
|
|
17672
|
-
|
|
17673
|
-
|
|
19844
|
+
* @summary Updates the information about a database instance and checks the connectivity of the database instance.
|
|
19845
|
+
*
|
|
19846
|
+
* @description Before you call the UpdateInstance operation, call the [GetInstance](https://help.aliyun.com/document_detail/141567.html) or [ListInstances](https://help.aliyun.com/document_detail/141936.html) operation to obtain the complete information about the instance.
|
|
19847
|
+
*
|
|
19848
|
+
* @param request UpdateInstanceRequest
|
|
19849
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19850
|
+
* @return UpdateInstanceResponse
|
|
17674
19851
|
*/
|
|
17675
19852
|
updateInstanceWithOptions(request: UpdateInstanceRequest, runtime: $Util.RuntimeOptions): Promise<UpdateInstanceResponse>;
|
|
17676
19853
|
/**
|
|
17677
|
-
|
|
17678
|
-
|
|
17679
|
-
|
|
17680
|
-
|
|
19854
|
+
* @summary Updates the information about a database instance and checks the connectivity of the database instance.
|
|
19855
|
+
*
|
|
19856
|
+
* @description Before you call the UpdateInstance operation, call the [GetInstance](https://help.aliyun.com/document_detail/141567.html) or [ListInstances](https://help.aliyun.com/document_detail/141936.html) operation to obtain the complete information about the instance.
|
|
19857
|
+
*
|
|
19858
|
+
* @param request UpdateInstanceRequest
|
|
19859
|
+
* @return UpdateInstanceResponse
|
|
17681
19860
|
*/
|
|
17682
19861
|
updateInstance(request: UpdateInstanceRequest): Promise<UpdateInstanceResponse>;
|
|
17683
19862
|
/**
|
|
17684
|
-
|
|
17685
|
-
|
|
17686
|
-
|
|
17687
|
-
|
|
17688
|
-
|
|
19863
|
+
* @summary Updates the service level agreement (SLA) timeout reminder for a task flow.
|
|
19864
|
+
*
|
|
19865
|
+
* @description SLA rules take effect after task flows are deployed and published.
|
|
19866
|
+
*
|
|
19867
|
+
* @param tmpReq UpdateSLARulesRequest
|
|
19868
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19869
|
+
* @return UpdateSLARulesResponse
|
|
17689
19870
|
*/
|
|
17690
19871
|
updateSLARulesWithOptions(tmpReq: UpdateSLARulesRequest, runtime: $Util.RuntimeOptions): Promise<UpdateSLARulesResponse>;
|
|
17691
19872
|
/**
|
|
17692
|
-
|
|
17693
|
-
|
|
17694
|
-
|
|
17695
|
-
|
|
19873
|
+
* @summary Updates the service level agreement (SLA) timeout reminder for a task flow.
|
|
19874
|
+
*
|
|
19875
|
+
* @description SLA rules take effect after task flows are deployed and published.
|
|
19876
|
+
*
|
|
19877
|
+
* @param request UpdateSLARulesRequest
|
|
19878
|
+
* @return UpdateSLARulesResponse
|
|
17696
19879
|
*/
|
|
17697
19880
|
updateSLARules(request: UpdateSLARulesRequest): Promise<UpdateSLARulesResponse>;
|
|
19881
|
+
/**
|
|
19882
|
+
* @summary Updates the name and description of the business scenario for a specified task flow.
|
|
19883
|
+
*
|
|
19884
|
+
* @param request UpdateScenarioRequest
|
|
19885
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19886
|
+
* @return UpdateScenarioResponse
|
|
19887
|
+
*/
|
|
17698
19888
|
updateScenarioWithOptions(request: UpdateScenarioRequest, runtime: $Util.RuntimeOptions): Promise<UpdateScenarioResponse>;
|
|
19889
|
+
/**
|
|
19890
|
+
* @summary Updates the name and description of the business scenario for a specified task flow.
|
|
19891
|
+
*
|
|
19892
|
+
* @param request UpdateScenarioRequest
|
|
19893
|
+
* @return UpdateScenarioResponse
|
|
19894
|
+
*/
|
|
17699
19895
|
updateScenario(request: UpdateScenarioRequest): Promise<UpdateScenarioResponse>;
|
|
19896
|
+
/**
|
|
19897
|
+
* @summary Modifies the name and description of a specific security rule set.
|
|
19898
|
+
*
|
|
19899
|
+
* @param request UpdateStandardGroupRequest
|
|
19900
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19901
|
+
* @return UpdateStandardGroupResponse
|
|
19902
|
+
*/
|
|
17700
19903
|
updateStandardGroupWithOptions(request: UpdateStandardGroupRequest, runtime: $Util.RuntimeOptions): Promise<UpdateStandardGroupResponse>;
|
|
19904
|
+
/**
|
|
19905
|
+
* @summary Modifies the name and description of a specific security rule set.
|
|
19906
|
+
*
|
|
19907
|
+
* @param request UpdateStandardGroupRequest
|
|
19908
|
+
* @return UpdateStandardGroupResponse
|
|
19909
|
+
*/
|
|
17701
19910
|
updateStandardGroup(request: UpdateStandardGroupRequest): Promise<UpdateStandardGroupResponse>;
|
|
17702
19911
|
/**
|
|
17703
|
-
|
|
17704
|
-
|
|
17705
|
-
|
|
17706
|
-
|
|
17707
|
-
|
|
19912
|
+
* @summary Updates the advanced configuration of a task node.
|
|
19913
|
+
*
|
|
19914
|
+
* @description You can call this operation to configure a failed task or rerun a task.
|
|
19915
|
+
*
|
|
19916
|
+
* @param request UpdateTaskConfigRequest
|
|
19917
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19918
|
+
* @return UpdateTaskConfigResponse
|
|
17708
19919
|
*/
|
|
17709
19920
|
updateTaskConfigWithOptions(request: UpdateTaskConfigRequest, runtime: $Util.RuntimeOptions): Promise<UpdateTaskConfigResponse>;
|
|
17710
19921
|
/**
|
|
17711
|
-
|
|
17712
|
-
|
|
17713
|
-
|
|
17714
|
-
|
|
19922
|
+
* @summary Updates the advanced configuration of a task node.
|
|
19923
|
+
*
|
|
19924
|
+
* @description You can call this operation to configure a failed task or rerun a task.
|
|
19925
|
+
*
|
|
19926
|
+
* @param request UpdateTaskConfigRequest
|
|
19927
|
+
* @return UpdateTaskConfigResponse
|
|
17715
19928
|
*/
|
|
17716
19929
|
updateTaskConfig(request: UpdateTaskConfigRequest): Promise<UpdateTaskConfigResponse>;
|
|
17717
19930
|
/**
|
|
17718
|
-
|
|
17719
|
-
|
|
17720
|
-
|
|
17721
|
-
|
|
17722
|
-
|
|
19931
|
+
* @summary Updates tasks in a task flow.
|
|
19932
|
+
*
|
|
19933
|
+
* @description You can call this operation to modify node configurations.
|
|
19934
|
+
*
|
|
19935
|
+
* @param request UpdateTaskContentRequest
|
|
19936
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19937
|
+
* @return UpdateTaskContentResponse
|
|
17723
19938
|
*/
|
|
17724
19939
|
updateTaskContentWithOptions(request: UpdateTaskContentRequest, runtime: $Util.RuntimeOptions): Promise<UpdateTaskContentResponse>;
|
|
17725
19940
|
/**
|
|
17726
|
-
|
|
17727
|
-
|
|
17728
|
-
|
|
17729
|
-
|
|
19941
|
+
* @summary Updates tasks in a task flow.
|
|
19942
|
+
*
|
|
19943
|
+
* @description You can call this operation to modify node configurations.
|
|
19944
|
+
*
|
|
19945
|
+
* @param request UpdateTaskContentRequest
|
|
19946
|
+
* @return UpdateTaskContentResponse
|
|
17730
19947
|
*/
|
|
17731
19948
|
updateTaskContent(request: UpdateTaskContentRequest): Promise<UpdateTaskContentResponse>;
|
|
19949
|
+
/**
|
|
19950
|
+
* @summary Updates the constants for a specified task flow.
|
|
19951
|
+
*
|
|
19952
|
+
* @param tmpReq UpdateTaskFlowConstantsRequest
|
|
19953
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19954
|
+
* @return UpdateTaskFlowConstantsResponse
|
|
19955
|
+
*/
|
|
17732
19956
|
updateTaskFlowConstantsWithOptions(tmpReq: UpdateTaskFlowConstantsRequest, runtime: $Util.RuntimeOptions): Promise<UpdateTaskFlowConstantsResponse>;
|
|
19957
|
+
/**
|
|
19958
|
+
* @summary Updates the constants for a specified task flow.
|
|
19959
|
+
*
|
|
19960
|
+
* @param request UpdateTaskFlowConstantsRequest
|
|
19961
|
+
* @return UpdateTaskFlowConstantsResponse
|
|
19962
|
+
*/
|
|
17733
19963
|
updateTaskFlowConstants(request: UpdateTaskFlowConstantsRequest): Promise<UpdateTaskFlowConstantsResponse>;
|
|
19964
|
+
/**
|
|
19965
|
+
* @summary Updates the IDs of the users who are involved in the task flow.
|
|
19966
|
+
*
|
|
19967
|
+
* @param tmpReq UpdateTaskFlowCooperatorsRequest
|
|
19968
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19969
|
+
* @return UpdateTaskFlowCooperatorsResponse
|
|
19970
|
+
*/
|
|
17734
19971
|
updateTaskFlowCooperatorsWithOptions(tmpReq: UpdateTaskFlowCooperatorsRequest, runtime: $Util.RuntimeOptions): Promise<UpdateTaskFlowCooperatorsResponse>;
|
|
19972
|
+
/**
|
|
19973
|
+
* @summary Updates the IDs of the users who are involved in the task flow.
|
|
19974
|
+
*
|
|
19975
|
+
* @param request UpdateTaskFlowCooperatorsRequest
|
|
19976
|
+
* @return UpdateTaskFlowCooperatorsResponse
|
|
19977
|
+
*/
|
|
17735
19978
|
updateTaskFlowCooperators(request: UpdateTaskFlowCooperatorsRequest): Promise<UpdateTaskFlowCooperatorsResponse>;
|
|
17736
19979
|
/**
|
|
17737
|
-
|
|
17738
|
-
|
|
17739
|
-
|
|
17740
|
-
|
|
17741
|
-
|
|
17742
|
-
|
|
17743
|
-
|
|
17744
|
-
|
|
17745
|
-
|
|
19980
|
+
* @summary Updates the start node and end node of multiple edges at a time for a task flow.
|
|
19981
|
+
*
|
|
19982
|
+
* @description ###
|
|
19983
|
+
* The edges can be updated only when the following conditions are met:
|
|
19984
|
+
* 1. The specified edge exists in the directed acyclic graph (DAG) of the task flow specified by DagId.
|
|
19985
|
+
* 2. The specified edge nodes exist in the DAG of the task flow specified by DagId.
|
|
19986
|
+
* 3. After the update, rings do not exist in the DAG.
|
|
19987
|
+
*
|
|
19988
|
+
* @param tmpReq UpdateTaskFlowEdgesRequest
|
|
19989
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
19990
|
+
* @return UpdateTaskFlowEdgesResponse
|
|
17746
19991
|
*/
|
|
17747
19992
|
updateTaskFlowEdgesWithOptions(tmpReq: UpdateTaskFlowEdgesRequest, runtime: $Util.RuntimeOptions): Promise<UpdateTaskFlowEdgesResponse>;
|
|
17748
19993
|
/**
|
|
17749
|
-
|
|
17750
|
-
|
|
17751
|
-
|
|
17752
|
-
|
|
17753
|
-
|
|
17754
|
-
|
|
17755
|
-
|
|
17756
|
-
|
|
19994
|
+
* @summary Updates the start node and end node of multiple edges at a time for a task flow.
|
|
19995
|
+
*
|
|
19996
|
+
* @description ###
|
|
19997
|
+
* The edges can be updated only when the following conditions are met:
|
|
19998
|
+
* 1. The specified edge exists in the directed acyclic graph (DAG) of the task flow specified by DagId.
|
|
19999
|
+
* 2. The specified edge nodes exist in the DAG of the task flow specified by DagId.
|
|
20000
|
+
* 3. After the update, rings do not exist in the DAG.
|
|
20001
|
+
*
|
|
20002
|
+
* @param request UpdateTaskFlowEdgesRequest
|
|
20003
|
+
* @return UpdateTaskFlowEdgesResponse
|
|
17757
20004
|
*/
|
|
17758
20005
|
updateTaskFlowEdges(request: UpdateTaskFlowEdgesRequest): Promise<UpdateTaskFlowEdgesResponse>;
|
|
20006
|
+
/**
|
|
20007
|
+
* @summary Updates the name and description of a task flow.
|
|
20008
|
+
*
|
|
20009
|
+
* @param request UpdateTaskFlowNameAndDescRequest
|
|
20010
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20011
|
+
* @return UpdateTaskFlowNameAndDescResponse
|
|
20012
|
+
*/
|
|
17759
20013
|
updateTaskFlowNameAndDescWithOptions(request: UpdateTaskFlowNameAndDescRequest, runtime: $Util.RuntimeOptions): Promise<UpdateTaskFlowNameAndDescResponse>;
|
|
20014
|
+
/**
|
|
20015
|
+
* @summary Updates the name and description of a task flow.
|
|
20016
|
+
*
|
|
20017
|
+
* @param request UpdateTaskFlowNameAndDescRequest
|
|
20018
|
+
* @return UpdateTaskFlowNameAndDescResponse
|
|
20019
|
+
*/
|
|
17760
20020
|
updateTaskFlowNameAndDesc(request: UpdateTaskFlowNameAndDescRequest): Promise<UpdateTaskFlowNameAndDescResponse>;
|
|
20021
|
+
/**
|
|
20022
|
+
* @summary Updates the notification settings for task flows.
|
|
20023
|
+
*
|
|
20024
|
+
* @param request UpdateTaskFlowNotificationRequest
|
|
20025
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20026
|
+
* @return UpdateTaskFlowNotificationResponse
|
|
20027
|
+
*/
|
|
17761
20028
|
updateTaskFlowNotificationWithOptions(request: UpdateTaskFlowNotificationRequest, runtime: $Util.RuntimeOptions): Promise<UpdateTaskFlowNotificationResponse>;
|
|
20029
|
+
/**
|
|
20030
|
+
* @summary Updates the notification settings for task flows.
|
|
20031
|
+
*
|
|
20032
|
+
* @param request UpdateTaskFlowNotificationRequest
|
|
20033
|
+
* @return UpdateTaskFlowNotificationResponse
|
|
20034
|
+
*/
|
|
17762
20035
|
updateTaskFlowNotification(request: UpdateTaskFlowNotificationRequest): Promise<UpdateTaskFlowNotificationResponse>;
|
|
17763
20036
|
/**
|
|
17764
|
-
|
|
17765
|
-
|
|
17766
|
-
|
|
17767
|
-
|
|
17768
|
-
|
|
20037
|
+
* @summary Changes the owner of a task flow.
|
|
20038
|
+
*
|
|
20039
|
+
* @description Note: The new owner of the task flow must belong to the same tenant as the previous owner.
|
|
20040
|
+
*
|
|
20041
|
+
* @param request UpdateTaskFlowOwnerRequest
|
|
20042
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20043
|
+
* @return UpdateTaskFlowOwnerResponse
|
|
17769
20044
|
*/
|
|
17770
20045
|
updateTaskFlowOwnerWithOptions(request: UpdateTaskFlowOwnerRequest, runtime: $Util.RuntimeOptions): Promise<UpdateTaskFlowOwnerResponse>;
|
|
17771
20046
|
/**
|
|
17772
|
-
|
|
17773
|
-
|
|
17774
|
-
|
|
17775
|
-
|
|
20047
|
+
* @summary Changes the owner of a task flow.
|
|
20048
|
+
*
|
|
20049
|
+
* @description Note: The new owner of the task flow must belong to the same tenant as the previous owner.
|
|
20050
|
+
*
|
|
20051
|
+
* @param request UpdateTaskFlowOwnerRequest
|
|
20052
|
+
* @return UpdateTaskFlowOwnerResponse
|
|
17776
20053
|
*/
|
|
17777
20054
|
updateTaskFlowOwner(request: UpdateTaskFlowOwnerRequest): Promise<UpdateTaskFlowOwnerResponse>;
|
|
17778
20055
|
/**
|
|
17779
|
-
|
|
17780
|
-
|
|
17781
|
-
|
|
17782
|
-
|
|
17783
|
-
|
|
20056
|
+
* @summary Fully updates the edges of a task flow.
|
|
20057
|
+
*
|
|
20058
|
+
* @description You can call this operation to perform a full update. For incremental updates, see AddTaskFlowEdges, UpdateTaskFlowEdges, and DeleteTaskFlowEdgesByMultiCondition.
|
|
20059
|
+
*
|
|
20060
|
+
* @param tmpReq UpdateTaskFlowRelationsRequest
|
|
20061
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20062
|
+
* @return UpdateTaskFlowRelationsResponse
|
|
17784
20063
|
*/
|
|
17785
20064
|
updateTaskFlowRelationsWithOptions(tmpReq: UpdateTaskFlowRelationsRequest, runtime: $Util.RuntimeOptions): Promise<UpdateTaskFlowRelationsResponse>;
|
|
17786
20065
|
/**
|
|
17787
|
-
|
|
17788
|
-
|
|
17789
|
-
|
|
17790
|
-
|
|
20066
|
+
* @summary Fully updates the edges of a task flow.
|
|
20067
|
+
*
|
|
20068
|
+
* @description You can call this operation to perform a full update. For incremental updates, see AddTaskFlowEdges, UpdateTaskFlowEdges, and DeleteTaskFlowEdgesByMultiCondition.
|
|
20069
|
+
*
|
|
20070
|
+
* @param request UpdateTaskFlowRelationsRequest
|
|
20071
|
+
* @return UpdateTaskFlowRelationsResponse
|
|
17791
20072
|
*/
|
|
17792
20073
|
updateTaskFlowRelations(request: UpdateTaskFlowRelationsRequest): Promise<UpdateTaskFlowRelationsResponse>;
|
|
17793
20074
|
/**
|
|
17794
|
-
|
|
17795
|
-
|
|
17796
|
-
|
|
17797
|
-
|
|
17798
|
-
|
|
17799
|
-
|
|
20075
|
+
* @summary Updates the scheduling properties for a task flow.
|
|
20076
|
+
*
|
|
20077
|
+
* @description You can call this operation to update the scheduling properties for a task flow in the editing state. You can configure a **timed scheduling** task flow or an **event scheduling** task flow. When you configure a **timed scheduling** task flow, you can choose from one-time scheduling or periodic scheduling. When you configure an **event scheduling** task flow, you can subscribe to task flows or task flow nodes.****\\
|
|
20078
|
+
* After you update the scheduling properties, you need to publish and deploy the task flow again. The new task flow instance will run based on the updated scheduling properties.
|
|
20079
|
+
*
|
|
20080
|
+
* @param request UpdateTaskFlowScheduleRequest
|
|
20081
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20082
|
+
* @return UpdateTaskFlowScheduleResponse
|
|
17800
20083
|
*/
|
|
17801
20084
|
updateTaskFlowScheduleWithOptions(request: UpdateTaskFlowScheduleRequest, runtime: $Util.RuntimeOptions): Promise<UpdateTaskFlowScheduleResponse>;
|
|
17802
20085
|
/**
|
|
17803
|
-
|
|
17804
|
-
|
|
17805
|
-
|
|
17806
|
-
|
|
17807
|
-
|
|
20086
|
+
* @summary Updates the scheduling properties for a task flow.
|
|
20087
|
+
*
|
|
20088
|
+
* @description You can call this operation to update the scheduling properties for a task flow in the editing state. You can configure a **timed scheduling** task flow or an **event scheduling** task flow. When you configure a **timed scheduling** task flow, you can choose from one-time scheduling or periodic scheduling. When you configure an **event scheduling** task flow, you can subscribe to task flows or task flow nodes.****\\
|
|
20089
|
+
* After you update the scheduling properties, you need to publish and deploy the task flow again. The new task flow instance will run based on the updated scheduling properties.
|
|
20090
|
+
*
|
|
20091
|
+
* @param request UpdateTaskFlowScheduleRequest
|
|
20092
|
+
* @return UpdateTaskFlowScheduleResponse
|
|
17808
20093
|
*/
|
|
17809
20094
|
updateTaskFlowSchedule(request: UpdateTaskFlowScheduleRequest): Promise<UpdateTaskFlowScheduleResponse>;
|
|
20095
|
+
/**
|
|
20096
|
+
* @summary Updates the time variables for a task flow.
|
|
20097
|
+
*
|
|
20098
|
+
* @param request UpdateTaskFlowTimeVariablesRequest
|
|
20099
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20100
|
+
* @return UpdateTaskFlowTimeVariablesResponse
|
|
20101
|
+
*/
|
|
17810
20102
|
updateTaskFlowTimeVariablesWithOptions(request: UpdateTaskFlowTimeVariablesRequest, runtime: $Util.RuntimeOptions): Promise<UpdateTaskFlowTimeVariablesResponse>;
|
|
20103
|
+
/**
|
|
20104
|
+
* @summary Updates the time variables for a task flow.
|
|
20105
|
+
*
|
|
20106
|
+
* @param request UpdateTaskFlowTimeVariablesRequest
|
|
20107
|
+
* @return UpdateTaskFlowTimeVariablesResponse
|
|
20108
|
+
*/
|
|
17811
20109
|
updateTaskFlowTimeVariables(request: UpdateTaskFlowTimeVariablesRequest): Promise<UpdateTaskFlowTimeVariablesResponse>;
|
|
20110
|
+
/**
|
|
20111
|
+
* @summary Updates the name of a specified task.
|
|
20112
|
+
*
|
|
20113
|
+
* @param request UpdateTaskNameRequest
|
|
20114
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20115
|
+
* @return UpdateTaskNameResponse
|
|
20116
|
+
*/
|
|
17812
20117
|
updateTaskNameWithOptions(request: UpdateTaskNameRequest, runtime: $Util.RuntimeOptions): Promise<UpdateTaskNameResponse>;
|
|
20118
|
+
/**
|
|
20119
|
+
* @summary Updates the name of a specified task.
|
|
20120
|
+
*
|
|
20121
|
+
* @param request UpdateTaskNameRequest
|
|
20122
|
+
* @return UpdateTaskNameResponse
|
|
20123
|
+
*/
|
|
17813
20124
|
updateTaskName(request: UpdateTaskNameRequest): Promise<UpdateTaskNameResponse>;
|
|
17814
20125
|
/**
|
|
17815
|
-
|
|
17816
|
-
|
|
17817
|
-
|
|
17818
|
-
|
|
17819
|
-
|
|
20126
|
+
* @summary Updates the output variables for a specified task node.
|
|
20127
|
+
*
|
|
20128
|
+
* @description Only nodes of single-instance SQL assignment, script code, and ECS remote command have output variables.
|
|
20129
|
+
*
|
|
20130
|
+
* @param request UpdateTaskOutputRequest
|
|
20131
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20132
|
+
* @return UpdateTaskOutputResponse
|
|
17820
20133
|
*/
|
|
17821
20134
|
updateTaskOutputWithOptions(request: UpdateTaskOutputRequest, runtime: $Util.RuntimeOptions): Promise<UpdateTaskOutputResponse>;
|
|
17822
20135
|
/**
|
|
17823
|
-
|
|
17824
|
-
|
|
17825
|
-
|
|
17826
|
-
|
|
20136
|
+
* @summary Updates the output variables for a specified task node.
|
|
20137
|
+
*
|
|
20138
|
+
* @description Only nodes of single-instance SQL assignment, script code, and ECS remote command have output variables.
|
|
20139
|
+
*
|
|
20140
|
+
* @param request UpdateTaskOutputRequest
|
|
20141
|
+
* @return UpdateTaskOutputResponse
|
|
17827
20142
|
*/
|
|
17828
20143
|
updateTaskOutput(request: UpdateTaskOutputRequest): Promise<UpdateTaskOutputResponse>;
|
|
20144
|
+
/**
|
|
20145
|
+
* @summary Updates time variables for a task.
|
|
20146
|
+
*
|
|
20147
|
+
* @param request UpdateTaskTimeVariablesRequest
|
|
20148
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20149
|
+
* @return UpdateTaskTimeVariablesResponse
|
|
20150
|
+
*/
|
|
17829
20151
|
updateTaskTimeVariablesWithOptions(request: UpdateTaskTimeVariablesRequest, runtime: $Util.RuntimeOptions): Promise<UpdateTaskTimeVariablesResponse>;
|
|
20152
|
+
/**
|
|
20153
|
+
* @summary Updates time variables for a task.
|
|
20154
|
+
*
|
|
20155
|
+
* @param request UpdateTaskTimeVariablesRequest
|
|
20156
|
+
* @return UpdateTaskTimeVariablesResponse
|
|
20157
|
+
*/
|
|
17830
20158
|
updateTaskTimeVariables(request: UpdateTaskTimeVariablesRequest): Promise<UpdateTaskTimeVariablesResponse>;
|
|
20159
|
+
/**
|
|
20160
|
+
* @summary Updates user information.
|
|
20161
|
+
*
|
|
20162
|
+
* @param request UpdateUserRequest
|
|
20163
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
20164
|
+
* @return UpdateUserResponse
|
|
20165
|
+
*/
|
|
17831
20166
|
updateUserWithOptions(request: UpdateUserRequest, runtime: $Util.RuntimeOptions): Promise<UpdateUserResponse>;
|
|
20167
|
+
/**
|
|
20168
|
+
* @summary Updates user information.
|
|
20169
|
+
*
|
|
20170
|
+
* @param request UpdateUserRequest
|
|
20171
|
+
* @return UpdateUserResponse
|
|
20172
|
+
*/
|
|
17832
20173
|
updateUser(request: UpdateUserRequest): Promise<UpdateUserResponse>;
|
|
17833
20174
|
}
|