@alicloud/dms-enterprise20181101 1.43.0 → 1.43.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/client.d.ts CHANGED
@@ -532,15 +532,25 @@ export declare class CreateDataArchiveOrderRequestParam extends $dara.Model {
532
532
  export declare class CreateDataCorrectOrderRequestParamDbItemList extends $dara.Model {
533
533
  /**
534
534
  * @remarks
535
- * The ID of the database. The database can be a physical database or a logical database.
535
+ * The database ID. The database can be a physical database or a logical database.
536
536
  *
537
- * * To obtain the ID of a physical database, call the [ListDatabases](https://help.aliyun.com/document_detail/141873.html) or [SearchDatabase](https://help.aliyun.com/document_detail/141876.html) operation.
538
- * * To obtain the ID of a logical database, call the [ListLogicDatabases](https://help.aliyun.com/document_detail/141874.html) or [SearchDatabase](https://help.aliyun.com/document_detail/141876.html) operation.
537
+ * * To query the ID of a physical database, call the [ListDatabases](https://help.aliyun.com/document_detail/141873.html) or [SearchDatabase](https://help.aliyun.com/document_detail/141876.html) operation.
538
+ * * To query the ID of a logical database, call the [ListLogicDatabases](https://help.aliyun.com/document_detail/141874.html) or [SearchDatabase](https://help.aliyun.com/document_detail/141876.html) operation.
539
539
  *
540
540
  * @example
541
541
  * 1860****
542
542
  */
543
543
  dbId?: number;
544
+ /**
545
+ * @remarks
546
+ * The instance ID. You can call the ListInstances or GetInstance operation to query the instance ID.
547
+ *
548
+ * >
549
+ * > The instance change feature is supported only by ApsaraDB RDS for MySQL instances, PolarDB for MySQL clusters, and AnalyticDB for MySQL clusters.
550
+ *
551
+ * @example
552
+ * 1860****
553
+ */
544
554
  instanceId?: number;
545
555
  /**
546
556
  * @remarks
@@ -567,9 +577,9 @@ export declare class CreateDataCorrectOrderRequestParamDbItemList extends $dara.
567
577
  export declare class CreateDataCorrectOrderRequestParam extends $dara.Model {
568
578
  /**
569
579
  * @remarks
570
- * The key of the attachment that contains the SQL statements used to change data. You can call the [GetUserUploadFileJob](https://help.aliyun.com/document_detail/206069.html) operation to obtain the attachment key from the value of the AttachmentKey parameter.
580
+ * The key of the attachment that contains the SQL statements used to change data. You can call the [GetUserUploadFileJob](https://help.aliyun.com/document_detail/206069.html) operation to obtain the attachment key from the value of AttachmentKey.
571
581
  *
572
- * > This parameter is required if you set the **SqlType** parameter to **ATTACHMENT**.
582
+ * > This parameter is required if you set **SqlType** to **ATTACHMENT**.
573
583
  *
574
584
  * @example
575
585
  * test.sql
@@ -585,14 +595,14 @@ export declare class CreateDataCorrectOrderRequestParam extends $dara.Model {
585
595
  classify?: string;
586
596
  /**
587
597
  * @remarks
588
- * The databases in which you want to change data.
598
+ * The databases whose data you want to change.
589
599
  *
590
600
  * This parameter is required.
591
601
  */
592
602
  dbItemList?: CreateDataCorrectOrderRequestParamDbItemList[];
593
603
  /**
594
604
  * @remarks
595
- * The estimated number of data rows to be affected by the data change.
605
+ * The estimated number of data rows that may be affected by the data change.
596
606
  *
597
607
  * This parameter is required.
598
608
  *
@@ -602,11 +612,11 @@ export declare class CreateDataCorrectOrderRequestParam extends $dara.Model {
602
612
  estimateAffectRows?: number;
603
613
  /**
604
614
  * @remarks
605
- * The execution mode of the ticket after the ticket is approved. Valid values:
615
+ * The mode in which the data change ticket is executed after the ticket is approved. Valid values:
606
616
  *
607
- * * **COMMITOR**: The data change is performed by the user who submits the ticket.
608
- * * **AUTO**: The data change is automatically performed after the ticket is approved.
609
- * * **LAST_AUDITOR**: The data change is performed by the last approver of the ticket.
617
+ * * **COMMITOR**: The ticket is executed by the user who submits the ticket.
618
+ * * **AUTO**: The ticket is automatically executed after the ticket is approved.
619
+ * * **LAST_AUDITOR**: The ticket is executed by the last approver of the ticket.
610
620
  *
611
621
  * @example
612
622
  * COMMITOR
@@ -614,9 +624,13 @@ export declare class CreateDataCorrectOrderRequestParam extends $dara.Model {
614
624
  execMode?: string;
615
625
  /**
616
626
  * @remarks
617
- * The SQL statements that you want to execute to change data.
627
+ * The SQL statements for data change.
628
+ *
629
+ * >
618
630
  *
619
- * > This parameter is required if you set the **SqlType** parameter to **TEXT**.
631
+ * * This parameter is required if you set **SqlType** to **TEXT**.
632
+ *
633
+ * * The size of the SQL statement cannot exceed 15 MB.
620
634
  *
621
635
  * @example
622
636
  * update base_user set id = 1 where id = 1;
@@ -624,9 +638,9 @@ export declare class CreateDataCorrectOrderRequestParam extends $dara.Model {
624
638
  execSQL?: string;
625
639
  /**
626
640
  * @remarks
627
- * The key of the attachment that contains the SQL statements used to roll back the data change. You can call the [GetUserUploadFileJob](https://help.aliyun.com/document_detail/206069.html) operation to the attachment key from the value of the AttachmentKey parameter.
641
+ * The key of the attachment that contains the SQL statements used to roll back the data change. You can call the [GetUserUploadFileJob](https://help.aliyun.com/document_detail/206069.html) operation to obtain the attachment key from the value of AttachmentKey.
628
642
  *
629
- * > This parameter is required if you set the **RollbackSqlType** parameter to **ATTACHMENT**.
643
+ * > This parameter is required if you set **RollbackSqlType** to **ATTACHMENT**.
630
644
  *
631
645
  * @example
632
646
  * test_rollback.sql
@@ -634,9 +648,9 @@ export declare class CreateDataCorrectOrderRequestParam extends $dara.Model {
634
648
  rollbackAttachmentName?: string;
635
649
  /**
636
650
  * @remarks
637
- * The SQL statements used to roll back the data change.
651
+ * The SQL statements for rolling back the data change.
638
652
  *
639
- * > This parameter is required if you set the **RollbackSqlType** parameter to **TEXT**.
653
+ * > This parameter is required if you set **RollbackSqlType** to **TEXT**.
640
654
  *
641
655
  * @example
642
656
  * update base_user set id = 1 where id = 1;
@@ -646,8 +660,8 @@ export declare class CreateDataCorrectOrderRequestParam extends $dara.Model {
646
660
  * @remarks
647
661
  * The format of the SQL statements used to roll back the data change. Valid values:
648
662
  *
649
- * * **TEXT**: text
650
- * * **ATTACHMENT**: attachment
663
+ * * **TEXT**
664
+ * * **ATTACHMENT**
651
665
  *
652
666
  * @example
653
667
  * TEXT
@@ -657,8 +671,8 @@ export declare class CreateDataCorrectOrderRequestParam extends $dara.Model {
657
671
  * @remarks
658
672
  * The format of the SQL statements used to change data. Valid values:
659
673
  *
660
- * * **TEXT**: text
661
- * * **ATTACHMENT**: attachment
674
+ * * **TEXT**
675
+ * * **ATTACHMENT**
662
676
  *
663
677
  * This parameter is required.
664
678
  *
@@ -4698,8 +4712,8 @@ export declare class GetDataExportDownloadURLResponseBodyDownloadURLResult exten
4698
4712
  * @remarks
4699
4713
  * Indicates whether export results are available for download. Valid values:
4700
4714
  *
4701
- * * **true**: Export results are available for download.
4702
- * * **false**: No export results are available for download.
4715
+ * * **true**
4716
+ * * **false**
4703
4717
  *
4704
4718
  * @example
4705
4719
  * true
@@ -4733,6 +4747,13 @@ export declare class GetDataExportDownloadURLResponseBodyDownloadURLResult exten
4733
4747
  });
4734
4748
  }
4735
4749
  export declare class GetDataExportOrderDetailResponseBodyDataExportOrderDetailKeyInfo extends $dara.Model {
4750
+ /**
4751
+ * @remarks
4752
+ * Export task ID.
4753
+ *
4754
+ * @example
4755
+ * 1385****
4756
+ */
4736
4757
  jobId?: number;
4737
4758
  /**
4738
4759
  * @remarks
@@ -4859,7 +4880,7 @@ export declare class GetDataExportOrderDetailResponseBodyDataExportOrderDetailOr
4859
4880
  export declare class GetDataExportOrderDetailResponseBodyDataExportOrderDetail extends $dara.Model {
4860
4881
  /**
4861
4882
  * @remarks
4862
- * The information about the ticket.
4883
+ * The status information.
4863
4884
  */
4864
4885
  keyInfo?: GetDataExportOrderDetailResponseBodyDataExportOrderDetailKeyInfo;
4865
4886
  /**
@@ -21030,6 +21051,13 @@ export declare class CreateDataCorrectOrderRequest extends $dara.Model {
21030
21051
  * This parameter is required.
21031
21052
  */
21032
21053
  param?: CreateDataCorrectOrderRequestParam;
21054
+ /**
21055
+ * @remarks
21056
+ * The ID of the Alibaba Cloud account that is used to call the API operation.
21057
+ *
21058
+ * @example
21059
+ * 21400447956867****
21060
+ */
21033
21061
  realLoginUserUid?: string;
21034
21062
  /**
21035
21063
  * @remarks
@@ -21081,6 +21109,13 @@ export declare class CreateDataCorrectOrderShrinkRequest extends $dara.Model {
21081
21109
  * This parameter is required.
21082
21110
  */
21083
21111
  paramShrink?: string;
21112
+ /**
21113
+ * @remarks
21114
+ * The ID of the Alibaba Cloud account that is used to call the API operation.
21115
+ *
21116
+ * @example
21117
+ * 21400447956867****
21118
+ */
21084
21119
  realLoginUserUid?: string;
21085
21120
  /**
21086
21121
  * @remarks
@@ -27874,6 +27909,13 @@ export declare class ExecuteDataCorrectRequest extends $dara.Model {
27874
27909
  * 406****
27875
27910
  */
27876
27911
  orderId?: number;
27912
+ /**
27913
+ * @remarks
27914
+ * The ID of the Alibaba Cloud account that is used to call the API operation.
27915
+ *
27916
+ * @example
27917
+ * 21400447956867****
27918
+ */
27877
27919
  realLoginUserUid?: string;
27878
27920
  /**
27879
27921
  * @remarks
@@ -27924,6 +27966,13 @@ export declare class ExecuteDataCorrectShrinkRequest extends $dara.Model {
27924
27966
  * 406****
27925
27967
  */
27926
27968
  orderId?: number;
27969
+ /**
27970
+ * @remarks
27971
+ * The ID of the Alibaba Cloud account that is used to call the API operation.
27972
+ *
27973
+ * @example
27974
+ * 21400447956867****
27975
+ */
27927
27976
  realLoginUserUid?: string;
27928
27977
  /**
27929
27978
  * @remarks
@@ -28011,15 +28060,21 @@ export declare class ExecuteDataCorrectResponse extends $dara.Model {
28011
28060
  export declare class ExecuteDataExportRequest extends $dara.Model {
28012
28061
  /**
28013
28062
  * @remarks
28014
- * The parameters that are required to perform the operation:
28063
+ * The parameters that are required to perform the operation. Sample code:
28015
28064
  *
28016
28065
  * ```json
28017
28066
  * {
28018
- * "fileType": "CSV", // The format of the exported file.
28019
- * "encoding": "" // The encoding format.
28020
- * }
28067
+ * "mode" : "FAST", // The mode in which data is exported. Default value: FAST. A value of NORMAL specifies that the export task can be terminated during the export. "encoding" : "UTF8", // The encoding format. "startTime" : "2022-12-22 00:00:00", // The point in time at which data export starts. "transaction" : false, // Specifies whether to enable transactions. "fileType" : "SQL" // The format of the exported file.}
28021
28068
  * ```
28022
28069
  *
28070
+ * > You can also set mode, encoding, and fileType to the following values:
28071
+ *
28072
+ * * mode: NORMAL
28073
+ *
28074
+ * * encoding: UTF8MB4, GB2312, ISO_8859_1, GBK, LATAIN1, or CP1252
28075
+ *
28076
+ * * fileType: XLSX, CSV, JSON, or TXT
28077
+ *
28023
28078
  * @example
28024
28079
  * { "fileType": "CSV", "encoding": "" }
28025
28080
  */
@@ -28036,6 +28091,13 @@ export declare class ExecuteDataExportRequest extends $dara.Model {
28036
28091
  * 1234
28037
28092
  */
28038
28093
  orderId?: number;
28094
+ /**
28095
+ * @remarks
28096
+ * The ID of the Alibaba Cloud account that is used to call the API operation.
28097
+ *
28098
+ * @example
28099
+ * 21400447956867****
28100
+ */
28039
28101
  realLoginUserUid?: string;
28040
28102
  /**
28041
28103
  * @remarks
@@ -28061,15 +28123,21 @@ export declare class ExecuteDataExportRequest extends $dara.Model {
28061
28123
  export declare class ExecuteDataExportShrinkRequest extends $dara.Model {
28062
28124
  /**
28063
28125
  * @remarks
28064
- * The parameters that are required to perform the operation:
28126
+ * The parameters that are required to perform the operation. Sample code:
28065
28127
  *
28066
28128
  * ```json
28067
28129
  * {
28068
- * "fileType": "CSV", // The format of the exported file.
28069
- * "encoding": "" // The encoding format.
28070
- * }
28130
+ * "mode" : "FAST", // The mode in which data is exported. Default value: FAST. A value of NORMAL specifies that the export task can be terminated during the export. "encoding" : "UTF8", // The encoding format. "startTime" : "2022-12-22 00:00:00", // The point in time at which data export starts. "transaction" : false, // Specifies whether to enable transactions. "fileType" : "SQL" // The format of the exported file.}
28071
28131
  * ```
28072
28132
  *
28133
+ * > You can also set mode, encoding, and fileType to the following values:
28134
+ *
28135
+ * * mode: NORMAL
28136
+ *
28137
+ * * encoding: UTF8MB4, GB2312, ISO_8859_1, GBK, LATAIN1, or CP1252
28138
+ *
28139
+ * * fileType: XLSX, CSV, JSON, or TXT
28140
+ *
28073
28141
  * @example
28074
28142
  * { "fileType": "CSV", "encoding": "" }
28075
28143
  */
@@ -28084,6 +28152,13 @@ export declare class ExecuteDataExportShrinkRequest extends $dara.Model {
28084
28152
  * 1234
28085
28153
  */
28086
28154
  orderId?: number;
28155
+ /**
28156
+ * @remarks
28157
+ * The ID of the Alibaba Cloud account that is used to call the API operation.
28158
+ *
28159
+ * @example
28160
+ * 21400447956867****
28161
+ */
28087
28162
  realLoginUserUid?: string;
28088
28163
  /**
28089
28164
  * @remarks
@@ -30028,7 +30103,7 @@ export declare class GetDataCronClearTaskDetailListResponse extends $dara.Model
30028
30103
  export declare class GetDataExportDownloadURLRequest extends $dara.Model {
30029
30104
  /**
30030
30105
  * @remarks
30031
- * The ID of the ticket. You can call the [ListOrders](https://help.aliyun.com/document_detail/144643.html) operation to obtain the ticket ID.
30106
+ * The ticket ID. You can call the [ListOrders](https://help.aliyun.com/document_detail/144643.html) operation to query the ticket ID.
30032
30107
  *
30033
30108
  * This parameter is required.
30034
30109
  *
@@ -30036,10 +30111,17 @@ export declare class GetDataExportDownloadURLRequest extends $dara.Model {
30036
30111
  * 546****
30037
30112
  */
30038
30113
  orderId?: number;
30114
+ /**
30115
+ * @remarks
30116
+ * The ID of the Alibaba Cloud account that is used to call the API operation.
30117
+ *
30118
+ * @example
30119
+ * 21400447956867****
30120
+ */
30039
30121
  realLoginUserUid?: string;
30040
30122
  /**
30041
30123
  * @remarks
30042
- * The ID of the tenant. You can call the [GetUserActiveTenant](https://help.aliyun.com/document_detail/198073.html) or [ListUserTenants](https://help.aliyun.com/document_detail/198074.html) operation to obtain the tenant ID.
30124
+ * The tenant ID. You can call the [GetUserActiveTenant](https://help.aliyun.com/document_detail/198073.html) or [ListUserTenants](https://help.aliyun.com/document_detail/198074.html) operation to query the tenant ID.
30043
30125
  *
30044
30126
  * @example
30045
30127
  * 3***
@@ -30059,12 +30141,12 @@ export declare class GetDataExportDownloadURLRequest extends $dara.Model {
30059
30141
  export declare class GetDataExportDownloadURLResponseBody extends $dara.Model {
30060
30142
  /**
30061
30143
  * @remarks
30062
- * The details about the download URL of the file that records the export results for the ticket.
30144
+ * The details of the download URL of the file that records the export results for the ticket.
30063
30145
  */
30064
30146
  downloadURLResult?: GetDataExportDownloadURLResponseBodyDownloadURLResult;
30065
30147
  /**
30066
30148
  * @remarks
30067
- * The error code.
30149
+ * The error code returned if the request failed.
30068
30150
  *
30069
30151
  * @example
30070
30152
  * UnknownError
@@ -30072,7 +30154,7 @@ export declare class GetDataExportDownloadURLResponseBody extends $dara.Model {
30072
30154
  errorCode?: string;
30073
30155
  /**
30074
30156
  * @remarks
30075
- * The error message.
30157
+ * The error message returned if the request failed.
30076
30158
  *
30077
30159
  * @example
30078
30160
  * UnknownError
@@ -30080,7 +30162,7 @@ export declare class GetDataExportDownloadURLResponseBody extends $dara.Model {
30080
30162
  errorMessage?: string;
30081
30163
  /**
30082
30164
  * @remarks
30083
- * The ID of the request.
30165
+ * The request ID.
30084
30166
  *
30085
30167
  * @example
30086
30168
  * 4BF24EA5-9013-4C85-AE68-6C23AF5E0097
@@ -30090,8 +30172,8 @@ export declare class GetDataExportDownloadURLResponseBody extends $dara.Model {
30090
30172
  * @remarks
30091
30173
  * Indicates whether the request was successful. Valid values:
30092
30174
  *
30093
- * * **true**: The request was successful.
30094
- * * **false**: The request failed.
30175
+ * * **true**
30176
+ * * **false**
30095
30177
  *
30096
30178
  * @example
30097
30179
  * true
@@ -47928,6 +48010,13 @@ export declare class SubmitOrderApprovalRequest extends $dara.Model {
47928
48010
  * 12345
47929
48011
  */
47930
48012
  orderId?: number;
48013
+ /**
48014
+ * @remarks
48015
+ * The ID of the Alibaba Cloud account that is used to call the API operation.
48016
+ *
48017
+ * @example
48018
+ * 21400447956867****
48019
+ */
47931
48020
  realLoginUserUid?: string;
47932
48021
  /**
47933
48022
  * @remarks
@@ -50314,9 +50403,6 @@ export declare class UpdateTaskContentV2Request extends $dara.Model {
50314
50403
  */
50315
50404
  nodeContent?: string;
50316
50405
  /**
50317
- * @remarks
50318
- * This parameter is required.
50319
- *
50320
50406
  * @example
50321
50407
  * 449***
50322
50408
  */
@@ -51935,6 +52021,13 @@ export declare class UpdateUserRequest extends $dara.Model {
51935
52021
  * 123456789
51936
52022
  */
51937
52023
  uid?: number;
52024
+ /**
52025
+ * @remarks
52026
+ * The UID of the String type. If you specify this parameter, the UID of the Long type is replaced.
52027
+ *
52028
+ * @example
52029
+ * 322824****:dmstest.wu@A201***
52030
+ */
51938
52031
  uidString?: string;
51939
52032
  /**
51940
52033
  * @remarks
@@ -53689,7 +53782,7 @@ export default class Client extends OpenApi {
53689
53782
  */
53690
53783
  getDataCronClearTaskDetailList(request: GetDataCronClearTaskDetailListRequest): Promise<GetDataCronClearTaskDetailListResponse>;
53691
53784
  /**
53692
- * Queries the download URL of the file that records the export results for a data export ticket in Data Management (DMS).
53785
+ * Queries the download URL of export results for a data export ticket.
53693
53786
  *
53694
53787
  * @param request - GetDataExportDownloadURLRequest
53695
53788
  * @param runtime - runtime options for this request RuntimeOptions
@@ -53697,7 +53790,7 @@ export default class Client extends OpenApi {
53697
53790
  */
53698
53791
  getDataExportDownloadURLWithOptions(request: GetDataExportDownloadURLRequest, runtime: $dara.RuntimeOptions): Promise<GetDataExportDownloadURLResponse>;
53699
53792
  /**
53700
- * Queries the download URL of the file that records the export results for a data export ticket in Data Management (DMS).
53793
+ * Queries the download URL of export results for a data export ticket.
53701
53794
  *
53702
53795
  * @param request - GetDataExportDownloadURLRequest
53703
53796
  * @returns GetDataExportDownloadURLResponse
@@ -56412,7 +56505,7 @@ export default class Client extends OpenApi {
56412
56505
  */
56413
56506
  updateTaskContent(request: UpdateTaskContentRequest): Promise<UpdateTaskContentResponse>;
56414
56507
  /**
56415
- * 接受大容量sql文件的更新节点内容API
56508
+ * sql更新节点专用
56416
56509
  *
56417
56510
  * @param request - UpdateTaskContentV2Request
56418
56511
  * @param runtime - runtime options for this request RuntimeOptions
@@ -56420,7 +56513,7 @@ export default class Client extends OpenApi {
56420
56513
  */
56421
56514
  updateTaskContentV2WithOptions(request: UpdateTaskContentV2Request, runtime: $dara.RuntimeOptions): Promise<UpdateTaskContentV2Response>;
56422
56515
  /**
56423
- * 接受大容量sql文件的更新节点内容API
56516
+ * sql更新节点专用
56424
56517
  *
56425
56518
  * @param request - UpdateTaskContentV2Request
56426
56519
  * @returns UpdateTaskContentV2Response
package/dist/client.js CHANGED
@@ -41197,7 +41197,7 @@ class Client extends openapi_core_1.default {
41197
41197
  return await this.getDataCronClearTaskDetailListWithOptions(request, runtime);
41198
41198
  }
41199
41199
  /**
41200
- * Queries the download URL of the file that records the export results for a data export ticket in Data Management (DMS).
41200
+ * Queries the download URL of export results for a data export ticket.
41201
41201
  *
41202
41202
  * @param request - GetDataExportDownloadURLRequest
41203
41203
  * @param runtime - runtime options for this request RuntimeOptions
@@ -41237,7 +41237,7 @@ class Client extends openapi_core_1.default {
41237
41237
  }
41238
41238
  }
41239
41239
  /**
41240
- * Queries the download URL of the file that records the export results for a data export ticket in Data Management (DMS).
41240
+ * Queries the download URL of export results for a data export ticket.
41241
41241
  *
41242
41242
  * @param request - GetDataExportDownloadURLRequest
41243
41243
  * @returns GetDataExportDownloadURLResponse
@@ -50640,7 +50640,7 @@ class Client extends openapi_core_1.default {
50640
50640
  return await this.updateTaskContentWithOptions(request, runtime);
50641
50641
  }
50642
50642
  /**
50643
- * 接受大容量sql文件的更新节点内容API
50643
+ * sql更新节点专用
50644
50644
  *
50645
50645
  * @param request - UpdateTaskContentV2Request
50646
50646
  * @param runtime - runtime options for this request RuntimeOptions
@@ -50679,7 +50679,7 @@ class Client extends openapi_core_1.default {
50679
50679
  }
50680
50680
  }
50681
50681
  /**
50682
- * 接受大容量sql文件的更新节点内容API
50682
+ * sql更新节点专用
50683
50683
  *
50684
50684
  * @param request - UpdateTaskContentV2Request
50685
50685
  * @returns UpdateTaskContentV2Response