@alicloud/polardb20170801 5.1.13 → 5.2.0
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 +1906 -575
- package/dist/client.js +1028 -79
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +2506 -463
package/dist/client.d.ts
CHANGED
|
@@ -609,17 +609,18 @@ export declare class CreateAccountRequest extends $tea.Model {
|
|
|
609
609
|
* @remarks
|
|
610
610
|
* The permissions that are granted to the account. Valid values:
|
|
611
611
|
*
|
|
612
|
-
* * **ReadWrite**: read and write permissions
|
|
613
|
-
* * **ReadOnly**: read-only permissions
|
|
614
|
-
* * **DMLOnly**: the permissions to execute only DML statements
|
|
615
|
-
* * **DDLOnly**: the permissions to execute only DDL statements
|
|
616
|
-
* * **ReadIndex**: the read and index permissions
|
|
612
|
+
* * **ReadWrite**: read and write permissions.
|
|
613
|
+
* * **ReadOnly**: read-only permissions.
|
|
614
|
+
* * **DMLOnly**: the permissions to execute only DML statements.
|
|
615
|
+
* * **DDLOnly**: the permissions to execute only DDL statements.
|
|
616
|
+
* * **ReadIndex**: the read-only and index permissions.
|
|
617
617
|
*
|
|
618
618
|
* >
|
|
619
619
|
*
|
|
620
|
-
* *
|
|
620
|
+
* * `AccountPrivilege` is valid only after you specify `DBName`.
|
|
621
|
+
*
|
|
622
|
+
* * If multiple database names are specified by the `DBName` parameter, you must grant permissions on the databases. Separate multiple permissions with commas (,), and make sure that the length of the value of `AccountPrivilege` does not exceed 900. For example, if you want to grant the account the read and write permissions on DB1 and the read-only permissions on DB2, set `DBName` to `DB1,DB2` and set `AccountPrivilege` to `ReadWrite,ReadOnly`.
|
|
621
623
|
*
|
|
622
|
-
* * If multiple database names are specified by the `DBName` parameter, you must grant permissions on the databases. Separate multiple permissions with commas (,). For example, if you want to grant the account the read and write permissions on DB1 and the read-only permissions on DB2, set `DBName` to `DB1,DB2`, and set `AccountPrivilege` to `ReadWrite,ReadOnly`.
|
|
623
624
|
* * This parameter is valid only for standard accounts of PolarDB for MySQL clusters.
|
|
624
625
|
*
|
|
625
626
|
* @example
|
|
@@ -666,7 +667,7 @@ export declare class CreateAccountRequest extends $tea.Model {
|
|
|
666
667
|
* @remarks
|
|
667
668
|
* The name of the database that can be accessed by the account. To enter multiple database names, separate the names with commas (,).
|
|
668
669
|
*
|
|
669
|
-
* >
|
|
670
|
+
* > This parameter is valid only for standard accounts of PolarDB for MySQL clusters.
|
|
670
671
|
*
|
|
671
672
|
* @example
|
|
672
673
|
* testdb
|
|
@@ -674,6 +675,16 @@ export declare class CreateAccountRequest extends $tea.Model {
|
|
|
674
675
|
DBName?: string;
|
|
675
676
|
ownerAccount?: string;
|
|
676
677
|
ownerId?: number;
|
|
678
|
+
/**
|
|
679
|
+
* @remarks
|
|
680
|
+
* Specifies whether to grant the specified account required permissions on all existing databases in the current cluster and databases that will be further created for the current cluster. Valid values:
|
|
681
|
+
*
|
|
682
|
+
* * **0 or unspecified**: does not grant required permissions.
|
|
683
|
+
* * **1**: grants required permissions.
|
|
684
|
+
*
|
|
685
|
+
* @example
|
|
686
|
+
* 0
|
|
687
|
+
*/
|
|
677
688
|
privForAllDB?: string;
|
|
678
689
|
resourceOwnerAccount?: string;
|
|
679
690
|
resourceOwnerId?: number;
|
|
@@ -722,6 +733,140 @@ export declare class CreateAccountResponse extends $tea.Model {
|
|
|
722
733
|
[key: string]: any;
|
|
723
734
|
});
|
|
724
735
|
}
|
|
736
|
+
export declare class CreateActivationCodeRequest extends $tea.Model {
|
|
737
|
+
/**
|
|
738
|
+
* @remarks
|
|
739
|
+
* This parameter is required.
|
|
740
|
+
*
|
|
741
|
+
* @example
|
|
742
|
+
* 2233****445566
|
|
743
|
+
*/
|
|
744
|
+
aliyunOrderId?: string;
|
|
745
|
+
/**
|
|
746
|
+
* @example
|
|
747
|
+
* testCode
|
|
748
|
+
*/
|
|
749
|
+
description?: string;
|
|
750
|
+
/**
|
|
751
|
+
* @remarks
|
|
752
|
+
* This parameter is required.
|
|
753
|
+
*
|
|
754
|
+
* @example
|
|
755
|
+
* 12:34:56:78:98:00
|
|
756
|
+
*/
|
|
757
|
+
macAddress?: string;
|
|
758
|
+
/**
|
|
759
|
+
* @remarks
|
|
760
|
+
* This parameter is required.
|
|
761
|
+
*
|
|
762
|
+
* @example
|
|
763
|
+
* testName
|
|
764
|
+
*/
|
|
765
|
+
name?: string;
|
|
766
|
+
ownerAccount?: string;
|
|
767
|
+
ownerId?: number;
|
|
768
|
+
resourceOwnerAccount?: string;
|
|
769
|
+
resourceOwnerId?: number;
|
|
770
|
+
/**
|
|
771
|
+
* @example
|
|
772
|
+
* 1234567890123456
|
|
773
|
+
*/
|
|
774
|
+
systemIdentifier?: string;
|
|
775
|
+
static names(): {
|
|
776
|
+
[key: string]: string;
|
|
777
|
+
};
|
|
778
|
+
static types(): {
|
|
779
|
+
[key: string]: any;
|
|
780
|
+
};
|
|
781
|
+
constructor(map?: {
|
|
782
|
+
[key: string]: any;
|
|
783
|
+
});
|
|
784
|
+
}
|
|
785
|
+
export declare class CreateActivationCodeResponseBody extends $tea.Model {
|
|
786
|
+
/**
|
|
787
|
+
* @example
|
|
788
|
+
* 2024-10-16 16:46:20
|
|
789
|
+
*/
|
|
790
|
+
activateAt?: string;
|
|
791
|
+
/**
|
|
792
|
+
* @example
|
|
793
|
+
* AAEAA******AAA=
|
|
794
|
+
*/
|
|
795
|
+
certContentB64?: string;
|
|
796
|
+
/**
|
|
797
|
+
* @example
|
|
798
|
+
* testCode
|
|
799
|
+
*/
|
|
800
|
+
description?: string;
|
|
801
|
+
/**
|
|
802
|
+
* @example
|
|
803
|
+
* 2054-10-09 16:46:20
|
|
804
|
+
*/
|
|
805
|
+
expireAt?: string;
|
|
806
|
+
/**
|
|
807
|
+
* @example
|
|
808
|
+
* 2024-10-16 16:46:20
|
|
809
|
+
*/
|
|
810
|
+
gmtCreated?: string;
|
|
811
|
+
/**
|
|
812
|
+
* @example
|
|
813
|
+
* 2024-10-16 16:46:20
|
|
814
|
+
*/
|
|
815
|
+
gmtModified?: string;
|
|
816
|
+
/**
|
|
817
|
+
* @example
|
|
818
|
+
* 123
|
|
819
|
+
*/
|
|
820
|
+
id?: number;
|
|
821
|
+
/**
|
|
822
|
+
* @example
|
|
823
|
+
* 12:34:56:78:98:00
|
|
824
|
+
*/
|
|
825
|
+
macAddress?: string;
|
|
826
|
+
/**
|
|
827
|
+
* @example
|
|
828
|
+
* testName
|
|
829
|
+
*/
|
|
830
|
+
name?: string;
|
|
831
|
+
/**
|
|
832
|
+
* @remarks
|
|
833
|
+
* Id of the request
|
|
834
|
+
*
|
|
835
|
+
* @example
|
|
836
|
+
* 4CE6DF97-AEA4-484F-906F-C407EE******
|
|
837
|
+
*/
|
|
838
|
+
requestId?: string;
|
|
839
|
+
/**
|
|
840
|
+
* @example
|
|
841
|
+
* 1234567890123456
|
|
842
|
+
*/
|
|
843
|
+
systemIdentifier?: string;
|
|
844
|
+
static names(): {
|
|
845
|
+
[key: string]: string;
|
|
846
|
+
};
|
|
847
|
+
static types(): {
|
|
848
|
+
[key: string]: any;
|
|
849
|
+
};
|
|
850
|
+
constructor(map?: {
|
|
851
|
+
[key: string]: any;
|
|
852
|
+
});
|
|
853
|
+
}
|
|
854
|
+
export declare class CreateActivationCodeResponse extends $tea.Model {
|
|
855
|
+
headers?: {
|
|
856
|
+
[key: string]: string;
|
|
857
|
+
};
|
|
858
|
+
statusCode?: number;
|
|
859
|
+
body?: CreateActivationCodeResponseBody;
|
|
860
|
+
static names(): {
|
|
861
|
+
[key: string]: string;
|
|
862
|
+
};
|
|
863
|
+
static types(): {
|
|
864
|
+
[key: string]: any;
|
|
865
|
+
};
|
|
866
|
+
constructor(map?: {
|
|
867
|
+
[key: string]: any;
|
|
868
|
+
});
|
|
869
|
+
}
|
|
725
870
|
export declare class CreateBackupRequest extends $tea.Model {
|
|
726
871
|
/**
|
|
727
872
|
* @remarks
|
|
@@ -800,17 +945,25 @@ export declare class CreateBackupResponse extends $tea.Model {
|
|
|
800
945
|
}
|
|
801
946
|
export declare class CreateColdStorageInstanceRequest extends $tea.Model {
|
|
802
947
|
/**
|
|
948
|
+
* @remarks
|
|
949
|
+
* The client token that is used to ensure the idempotence of the request. You can use the client to generate the token, but you must make sure that the token is unique among different requests. The token can contain only ASCII characters and cannot exceed 64 characters in length.
|
|
950
|
+
*
|
|
803
951
|
* @example
|
|
804
952
|
* 6000170000591aed949d0f5********************
|
|
805
953
|
*/
|
|
806
954
|
clientToken?: string;
|
|
807
955
|
/**
|
|
956
|
+
* @remarks
|
|
957
|
+
* The description of the cluster. The description cannot exceed 256 characters in length.
|
|
958
|
+
*
|
|
808
959
|
* @example
|
|
809
960
|
* xxxxxxxxx
|
|
810
961
|
*/
|
|
811
962
|
coldStorageInstanceDescription?: string;
|
|
812
963
|
/**
|
|
813
964
|
* @remarks
|
|
965
|
+
* The cluster ID. > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/98094.html) operation to query the details of all clusters within your account, such as cluster IDs.
|
|
966
|
+
*
|
|
814
967
|
* This parameter is required.
|
|
815
968
|
*
|
|
816
969
|
* @example
|
|
@@ -820,6 +973,9 @@ export declare class CreateColdStorageInstanceRequest extends $tea.Model {
|
|
|
820
973
|
ownerAccount?: string;
|
|
821
974
|
ownerId?: number;
|
|
822
975
|
/**
|
|
976
|
+
* @remarks
|
|
977
|
+
* The ID of the resource group.
|
|
978
|
+
*
|
|
823
979
|
* @example
|
|
824
980
|
* rg-************
|
|
825
981
|
*/
|
|
@@ -838,11 +994,17 @@ export declare class CreateColdStorageInstanceRequest extends $tea.Model {
|
|
|
838
994
|
}
|
|
839
995
|
export declare class CreateColdStorageInstanceResponseBody extends $tea.Model {
|
|
840
996
|
/**
|
|
997
|
+
* @remarks
|
|
998
|
+
* The cluster ID.
|
|
999
|
+
*
|
|
841
1000
|
* @example
|
|
842
1001
|
* pcs_2zeth2gf4i83e578t
|
|
843
1002
|
*/
|
|
844
1003
|
coldStorageInstanceId?: string;
|
|
845
1004
|
/**
|
|
1005
|
+
* @remarks
|
|
1006
|
+
* The request ID.
|
|
1007
|
+
*
|
|
846
1008
|
* @example
|
|
847
1009
|
* F6EBB4ED-D12F-5F49-824C-9DD9C0EC4CF2
|
|
848
1010
|
*/
|
|
@@ -876,12 +1038,13 @@ export declare class CreateColdStorageInstanceResponse extends $tea.Model {
|
|
|
876
1038
|
export declare class CreateDBClusterRequest extends $tea.Model {
|
|
877
1039
|
/**
|
|
878
1040
|
* @remarks
|
|
879
|
-
*
|
|
1041
|
+
* Whether to enable idle pause. Values:
|
|
880
1042
|
*
|
|
881
|
-
*
|
|
882
|
-
*
|
|
1043
|
+
* - **true**: Enabled
|
|
1044
|
+
*
|
|
1045
|
+
* - **false**: Disabled (default)
|
|
883
1046
|
*
|
|
884
|
-
* >
|
|
1047
|
+
* > Only supported by Serverless clusters.
|
|
885
1048
|
*
|
|
886
1049
|
* @example
|
|
887
1050
|
* true
|
|
@@ -889,10 +1052,9 @@ export declare class CreateDBClusterRequest extends $tea.Model {
|
|
|
889
1052
|
allowShutDown?: string;
|
|
890
1053
|
/**
|
|
891
1054
|
* @remarks
|
|
892
|
-
*
|
|
893
|
-
*
|
|
894
|
-
*
|
|
895
|
-
* * ARM
|
|
1055
|
+
* CPU architecture. Available values include:
|
|
1056
|
+
* - X86
|
|
1057
|
+
* - ARM
|
|
896
1058
|
*
|
|
897
1059
|
* @example
|
|
898
1060
|
* X86
|
|
@@ -900,14 +1062,14 @@ export declare class CreateDBClusterRequest extends $tea.Model {
|
|
|
900
1062
|
architecture?: string;
|
|
901
1063
|
/**
|
|
902
1064
|
* @remarks
|
|
903
|
-
*
|
|
1065
|
+
* Whether to enable auto-renewal, with available values as follows:
|
|
904
1066
|
*
|
|
905
|
-
*
|
|
906
|
-
*
|
|
1067
|
+
* - **true**: Auto-renew.
|
|
1068
|
+
* - **false**: Do not auto-renew.
|
|
907
1069
|
*
|
|
908
|
-
*
|
|
1070
|
+
* The default is **false**.
|
|
909
1071
|
*
|
|
910
|
-
* > This parameter
|
|
1072
|
+
* > This parameter takes effect only when **PayType** is set to **Prepaid**.
|
|
911
1073
|
*
|
|
912
1074
|
* @example
|
|
913
1075
|
* true
|
|
@@ -915,19 +1077,14 @@ export declare class CreateDBClusterRequest extends $tea.Model {
|
|
|
915
1077
|
autoRenew?: boolean;
|
|
916
1078
|
/**
|
|
917
1079
|
* @remarks
|
|
918
|
-
*
|
|
919
|
-
*
|
|
920
|
-
* *
|
|
921
|
-
* *
|
|
922
|
-
* * **NONE**: No backup sets are retained after the cluster is deleted.
|
|
923
|
-
*
|
|
924
|
-
* The default value is **NONE** after you create a cluster.
|
|
925
|
-
*
|
|
926
|
-
* >
|
|
1080
|
+
* Backup retention policy upon cluster deletion, with valid values as follows:
|
|
1081
|
+
* * **ALL**: Permanently retain all backups.
|
|
1082
|
+
* * **LATEST**: Permanently retain the latest backup (automatically backed up before deletion).
|
|
1083
|
+
* * **NONE**: Do not retain backup sets upon cluster deletion.
|
|
927
1084
|
*
|
|
928
|
-
*
|
|
929
|
-
*
|
|
930
|
-
*
|
|
1085
|
+
* By default, the value is set to **NONE**, indicating no backup sets are retained upon cluster deletion.
|
|
1086
|
+
* > This parameter applies only when **DBType** is **MySQL**.
|
|
1087
|
+
* > Serverless clusters do not support this parameter.
|
|
931
1088
|
*
|
|
932
1089
|
* @example
|
|
933
1090
|
* NONE
|
|
@@ -935,7 +1092,7 @@ export declare class CreateDBClusterRequest extends $tea.Model {
|
|
|
935
1092
|
backupRetentionPolicyOnClusterDeletion?: string;
|
|
936
1093
|
/**
|
|
937
1094
|
* @remarks
|
|
938
|
-
*
|
|
1095
|
+
* Used to ensure idempotency of the request. Generated by the client, ensuring uniqueness across different requests, case-sensitive, and not exceeding 64 ASCII characters.
|
|
939
1096
|
*
|
|
940
1097
|
* @example
|
|
941
1098
|
* 6000170000591aed949d0f5********************
|
|
@@ -943,15 +1100,15 @@ export declare class CreateDBClusterRequest extends $tea.Model {
|
|
|
943
1100
|
clientToken?: string;
|
|
944
1101
|
/**
|
|
945
1102
|
* @remarks
|
|
946
|
-
* The point in time
|
|
1103
|
+
* The point in time to clone data, with the following options:
|
|
947
1104
|
*
|
|
948
|
-
*
|
|
949
|
-
*
|
|
950
|
-
*
|
|
1105
|
+
* - **LATEST**: Data from the latest time point.
|
|
1106
|
+
* - **BackupID**: Historical backup set ID, please enter the specific backup set ID.
|
|
1107
|
+
* - **Timestamp**: Historical time point, please enter the specific time in the format `YYYY-MM-DDThh:mm:ssZ` (UTC time).
|
|
951
1108
|
*
|
|
952
|
-
*
|
|
1109
|
+
* The default value is **LATEST**.
|
|
953
1110
|
*
|
|
954
|
-
* > If
|
|
1111
|
+
* > If **CreationOption** is **CloneFromRDS**, this parameter can only be set to **LATEST**.
|
|
955
1112
|
*
|
|
956
1113
|
* @example
|
|
957
1114
|
* LATEST
|
|
@@ -959,7 +1116,7 @@ export declare class CreateDBClusterRequest extends $tea.Model {
|
|
|
959
1116
|
cloneDataPoint?: string;
|
|
960
1117
|
/**
|
|
961
1118
|
* @remarks
|
|
962
|
-
*
|
|
1119
|
+
* Cluster network type, currently only VPC is supported, with a fixed value of **VPC**.
|
|
963
1120
|
*
|
|
964
1121
|
* @example
|
|
965
1122
|
* VPC
|
|
@@ -967,20 +1124,18 @@ export declare class CreateDBClusterRequest extends $tea.Model {
|
|
|
967
1124
|
clusterNetworkType?: string;
|
|
968
1125
|
/**
|
|
969
1126
|
* @remarks
|
|
970
|
-
*
|
|
971
|
-
*
|
|
972
|
-
* *
|
|
973
|
-
* *
|
|
974
|
-
* *
|
|
975
|
-
* *
|
|
976
|
-
*
|
|
977
|
-
* >
|
|
978
|
-
*
|
|
979
|
-
* * Only when the **DBType** parameter is set to **MySQL** and **the DBVersion** parameter is set to **5.6**, **5.7**, or **8.0**, you can set this parameter to **Basic**.
|
|
1127
|
+
* Product series, with valid values as follows:
|
|
1128
|
+
* * **Normal**: Cluster Edition (default)
|
|
1129
|
+
* * **Basic**: Single-node
|
|
1130
|
+
* * **ArchiveNormal**: High Compression Engine (X-Engine)
|
|
1131
|
+
* * **NormalMultimaster**: Multi-master Cluster Edition
|
|
1132
|
+
* * **SENormal**: Standard Edition
|
|
980
1133
|
*
|
|
981
|
-
* *
|
|
1134
|
+
* > * **MySQL** **5.6**, **5.7**, **8.0**, **PostgreSQL** **14**, and **Oracle Syntax Compatible 2.0** support **Basic**.
|
|
1135
|
+
* > * **MySQL** **8.0** supports **ArchiveNormal** and **NormalMultimaster**.
|
|
1136
|
+
* > * **MySQL** **5.6**, **5.7**, **8.0**, and **PostgreSQL** **14** support **SENormal**.
|
|
982
1137
|
*
|
|
983
|
-
* For more information, see [Product
|
|
1138
|
+
* For more information about product series, see [Product Series](https://help.aliyun.com/document_detail/183258.html).
|
|
984
1139
|
*
|
|
985
1140
|
* @example
|
|
986
1141
|
* Normal
|
|
@@ -988,33 +1143,34 @@ export declare class CreateDBClusterRequest extends $tea.Model {
|
|
|
988
1143
|
creationCategory?: string;
|
|
989
1144
|
/**
|
|
990
1145
|
* @remarks
|
|
991
|
-
*
|
|
992
|
-
*
|
|
993
|
-
* * **Normal**: creates a PolarDB cluster. For more information about how to perform this operation in the console, see the following topics:
|
|
1146
|
+
* Creation method, with the following values supported:
|
|
994
1147
|
*
|
|
995
|
-
*
|
|
996
|
-
* *
|
|
997
|
-
* *
|
|
1148
|
+
* * **Normal**: Creates a brand new PolarDB cluster. For console operations, refer to the following documents:
|
|
1149
|
+
* * [Create a PolarDB MySQL Edition Database Cluster](https://help.aliyun.com/document_detail/58769.html)
|
|
1150
|
+
* * [Create a PolarDB PostgreSQL Edition Database Cluster](https://help.aliyun.com/document_detail/118063.html)
|
|
1151
|
+
* * [Create a PolarDB PostgreSQL Edition (Oracle Compatible) Database Cluster](https://help.aliyun.com/document_detail/118182.html)
|
|
998
1152
|
*
|
|
999
|
-
* *
|
|
1153
|
+
* * **CloneFromPolarDB**: Clones data from an existing PolarDB cluster to a new PolarDB cluster. For console operations, refer to the following documents:
|
|
1154
|
+
* * [Clone a PolarDB MySQL Edition Cluster](https://help.aliyun.com/document_detail/87966.html)
|
|
1155
|
+
* * [Clone a PolarDB PostgreSQL Edition Cluster](https://help.aliyun.com/document_detail/118108.html)
|
|
1156
|
+
* * [Clone a PolarDB PostgreSQL Edition (Oracle Compatible) Cluster](https://help.aliyun.com/document_detail/118221.html)
|
|
1000
1157
|
*
|
|
1001
|
-
*
|
|
1002
|
-
* *
|
|
1003
|
-
* *
|
|
1158
|
+
* * **RecoverFromRecyclebin**: Recovers data from a released PolarDB cluster to a new PolarDB cluster. For console operations, refer to the following documents:
|
|
1159
|
+
* * [Restore a Released PolarDB MySQL Edition Cluster](https://help.aliyun.com/document_detail/164880.html)
|
|
1160
|
+
* * [Restore a Released PolarDB PostgreSQL Edition Cluster](https://help.aliyun.com/document_detail/432844.html)
|
|
1161
|
+
* * [Restore a Released PolarDB PostgreSQL Edition (Oracle Compatible) Cluster](https://help.aliyun.com/document_detail/424632.html)
|
|
1004
1162
|
*
|
|
1005
|
-
* *
|
|
1163
|
+
* * **CloneFromRDS**: Clones data from an existing RDS instance to a new PolarDB cluster. Console operation guide is available at [One-click Clone from RDS MySQL to PolarDB MySQL Edition](https://help.aliyun.com/document_detail/121812.html).
|
|
1006
1164
|
*
|
|
1007
|
-
* *
|
|
1165
|
+
* * **MigrationFromRDS**: Migrates data from an existing RDS instance to a new PolarDB cluster. The created PolarDB cluster operates in read-only mode with Binlog enabled by default. Console operation guide is at [One-click Upgrade from RDS MySQL to PolarDB MySQL Edition](https://help.aliyun.com/document_detail/121582.html).
|
|
1008
1166
|
*
|
|
1009
|
-
* *
|
|
1167
|
+
* * **CreateGdnStandby**: Creates a standby cluster. Console operation guide can be found at [Add Standby Cluster](https://help.aliyun.com/document_detail/160381.html).
|
|
1010
1168
|
*
|
|
1011
|
-
*
|
|
1169
|
+
* * **UpgradeFromPolarDB**: Upgrades and migrates from PolarDB. Console operation guide is detailed in [Major Version Upgrade](https://help.aliyun.com/document_detail/459712.html).
|
|
1012
1170
|
*
|
|
1013
|
-
*
|
|
1014
|
-
*
|
|
1015
|
-
* * If the **DBType** parameter is set to **MySQL** and the **DBVersion** parameter is set to **5.6** or **5.7**, this parameter can be set to **CloneFromRDS** or **MigrationFromRDS**.
|
|
1171
|
+
* The default value is **Normal**.
|
|
1016
1172
|
*
|
|
1017
|
-
*
|
|
1173
|
+
* > When **DBType** is **MySQL** and **DBVersion** is **8.0**, this parameter can also take the value **CreateGdnStandby**.
|
|
1018
1174
|
*
|
|
1019
1175
|
* @example
|
|
1020
1176
|
* Normal
|
|
@@ -1022,10 +1178,9 @@ export declare class CreateDBClusterRequest extends $tea.Model {
|
|
|
1022
1178
|
creationOption?: string;
|
|
1023
1179
|
/**
|
|
1024
1180
|
* @remarks
|
|
1025
|
-
*
|
|
1026
|
-
*
|
|
1027
|
-
* *
|
|
1028
|
-
* * It must be 2 to 256 characters in length.
|
|
1181
|
+
* Cluster name, which must meet the following requirements:
|
|
1182
|
+
* * Cannot start with `http://` or `https://`.
|
|
1183
|
+
* * Length should be between 2 and 256 characters.
|
|
1029
1184
|
*
|
|
1030
1185
|
* @example
|
|
1031
1186
|
* test
|
|
@@ -1033,12 +1188,12 @@ export declare class CreateDBClusterRequest extends $tea.Model {
|
|
|
1033
1188
|
DBClusterDescription?: string;
|
|
1034
1189
|
/**
|
|
1035
1190
|
* @remarks
|
|
1036
|
-
*
|
|
1191
|
+
* Database engine minor version number. Valid values include:
|
|
1037
1192
|
*
|
|
1038
|
-
*
|
|
1039
|
-
*
|
|
1193
|
+
* - **8.0.2**
|
|
1194
|
+
* - **8.0.1**
|
|
1040
1195
|
*
|
|
1041
|
-
* > This parameter
|
|
1196
|
+
* > This parameter takes effect only when **DBType** is **MySQL** and **DBVersion** is **8.0**.
|
|
1042
1197
|
*
|
|
1043
1198
|
* @example
|
|
1044
1199
|
* 8.0.1
|
|
@@ -1046,30 +1201,41 @@ export declare class CreateDBClusterRequest extends $tea.Model {
|
|
|
1046
1201
|
DBMinorVersion?: string;
|
|
1047
1202
|
/**
|
|
1048
1203
|
* @remarks
|
|
1049
|
-
*
|
|
1204
|
+
* Node specifications. For details, refer to the following documents:
|
|
1205
|
+
*
|
|
1206
|
+
* - PolarDB MySQL Edition: [Compute Node Specifications](https://help.aliyun.com/document_detail/102542.html).
|
|
1207
|
+
* - PolarDB PostgreSQL Edition (Oracle Compatible): [Compute Node Specifications](https://help.aliyun.com/document_detail/207921.html).
|
|
1208
|
+
* - PolarDB PostgreSQL Edition: [Compute Node Specifications](https://help.aliyun.com/document_detail/209380.html).
|
|
1050
1209
|
*
|
|
1051
|
-
*
|
|
1052
|
-
*
|
|
1053
|
-
* * For information about node specifications supported by the PostgreSQL database engine, see [Specifications of compute nodes](https://help.aliyun.com/document_detail/209380.html).
|
|
1210
|
+
* > - For a Serverless cluster in PolarDB MySQL, enter **polar.mysql.sl.small**.
|
|
1211
|
+
* <props="china">> - For a Serverless cluster in both PolarDB PostgreSQL (Oracle Compatible) and PolarDB PostgreSQL, enter **polar.pg.sl.small.c**.
|
|
1054
1212
|
*
|
|
1055
1213
|
* This parameter is required.
|
|
1056
1214
|
*
|
|
1057
1215
|
* @example
|
|
1058
|
-
* polar.mysql.
|
|
1216
|
+
* polar.mysql.x4.medium
|
|
1059
1217
|
*/
|
|
1060
1218
|
DBNodeClass?: string;
|
|
1061
1219
|
/**
|
|
1220
|
+
* @remarks
|
|
1221
|
+
* Number of standard edition nodes. Values are as follows:
|
|
1222
|
+
*
|
|
1223
|
+
* - **1** (default): Indicates there is only one read-write node.
|
|
1224
|
+
* - **2**: Indicates there is one read-only node and one read-write node.
|
|
1225
|
+
* > - Enterprise edition defaults to 2 nodes, while the standard edition defaults to 1 node.
|
|
1226
|
+
* > - Only supported by PolarDB MySQL edition.
|
|
1227
|
+
*
|
|
1062
1228
|
* @example
|
|
1063
1229
|
* 1
|
|
1064
1230
|
*/
|
|
1065
1231
|
DBNodeNum?: number;
|
|
1066
1232
|
/**
|
|
1067
1233
|
* @remarks
|
|
1068
|
-
*
|
|
1234
|
+
* Database engine type, with available values as follows:
|
|
1069
1235
|
*
|
|
1070
|
-
*
|
|
1071
|
-
*
|
|
1072
|
-
*
|
|
1236
|
+
* - **MySQL**
|
|
1237
|
+
* - **PostgreSQL**
|
|
1238
|
+
* - **Oracle**
|
|
1073
1239
|
*
|
|
1074
1240
|
* This parameter is required.
|
|
1075
1241
|
*
|
|
@@ -1079,20 +1245,23 @@ export declare class CreateDBClusterRequest extends $tea.Model {
|
|
|
1079
1245
|
DBType?: string;
|
|
1080
1246
|
/**
|
|
1081
1247
|
* @remarks
|
|
1082
|
-
*
|
|
1083
|
-
*
|
|
1084
|
-
*
|
|
1085
|
-
*
|
|
1086
|
-
* *
|
|
1087
|
-
*
|
|
1088
|
-
* *
|
|
1248
|
+
* Database engine version number.
|
|
1249
|
+
* * For MySQL, the version numbers are as follows:
|
|
1250
|
+
* * **5.6**
|
|
1251
|
+
* * **5.7**
|
|
1252
|
+
* * **8.0**
|
|
1253
|
+
* * For PostgreSQL, the version numbers are as follows:
|
|
1254
|
+
* * **11**
|
|
1255
|
+
* * **14**
|
|
1256
|
+
* * **15**
|
|
1257
|
+
* <props="china">
|
|
1089
1258
|
*
|
|
1090
|
-
*
|
|
1259
|
+
* > When creating a Serverless cluster in PolarDB PostgreSQL, only version **14** is supported.
|
|
1091
1260
|
*
|
|
1092
|
-
* * **11**
|
|
1093
|
-
* * **14**
|
|
1094
1261
|
*
|
|
1095
|
-
* *
|
|
1262
|
+
* * For Oracle, the version numbers are as follows:
|
|
1263
|
+
* * **11**
|
|
1264
|
+
* * **14**
|
|
1096
1265
|
*
|
|
1097
1266
|
* This parameter is required.
|
|
1098
1267
|
*
|
|
@@ -1102,9 +1271,8 @@ export declare class CreateDBClusterRequest extends $tea.Model {
|
|
|
1102
1271
|
DBVersion?: string;
|
|
1103
1272
|
/**
|
|
1104
1273
|
* @remarks
|
|
1105
|
-
*
|
|
1106
|
-
*
|
|
1107
|
-
* > This parameter is valid only when the **DBType** parameter is set to **MySQL**.
|
|
1274
|
+
* Cluster timezone (UTC), with selectable values ranging from **-12:00** to **+13:00** at whole-hour intervals, e.g., **00:00**. The default value is **SYSTEM**, which matches the Region\\"s timezone.
|
|
1275
|
+
* > This parameter applies only when **DBType** is **MySQL**.
|
|
1108
1276
|
*
|
|
1109
1277
|
* @example
|
|
1110
1278
|
* SYSTEM
|
|
@@ -1112,52 +1280,65 @@ export declare class CreateDBClusterRequest extends $tea.Model {
|
|
|
1112
1280
|
defaultTimeZone?: string;
|
|
1113
1281
|
/**
|
|
1114
1282
|
* @remarks
|
|
1115
|
-
*
|
|
1283
|
+
* Global Database Network (GDN) ID.
|
|
1116
1284
|
*
|
|
1117
|
-
* > This parameter is required
|
|
1285
|
+
* > This parameter is required when **CreationOption** is **CreateGdnStandby**.
|
|
1118
1286
|
*
|
|
1119
1287
|
* @example
|
|
1120
1288
|
* gdn-***********
|
|
1121
1289
|
*/
|
|
1122
1290
|
GDNId?: string;
|
|
1123
1291
|
/**
|
|
1292
|
+
* @remarks
|
|
1293
|
+
* Whether to enable the hot standby cluster. Values are as follows:
|
|
1294
|
+
*
|
|
1295
|
+
* - **ON** (default): Enables the hot standby cluster.
|
|
1296
|
+
* - **OFF**: Disables the hot standby cluster.
|
|
1297
|
+
* - **STANDBY**: Enables the hot standby cluster for the standard edition.
|
|
1298
|
+
* > The default value for standard edition clusters is **STANDBY**.
|
|
1299
|
+
*
|
|
1124
1300
|
* @example
|
|
1125
1301
|
* ON
|
|
1126
1302
|
*/
|
|
1127
1303
|
hotStandbyCluster?: string;
|
|
1128
1304
|
/**
|
|
1305
|
+
* @remarks
|
|
1306
|
+
* Enable Binlog feature, valid values are as follows:
|
|
1307
|
+
* - **ON**: Cluster enables the Binlog feature. - **OFF**: Cluster disables the Binlog feature. > This parameter takes effect only when the **DBType** parameter is set to **MySQL**.
|
|
1308
|
+
*
|
|
1129
1309
|
* @example
|
|
1130
1310
|
* ON
|
|
1131
1311
|
*/
|
|
1132
1312
|
loosePolarLogBin?: string;
|
|
1133
1313
|
/**
|
|
1134
1314
|
* @remarks
|
|
1135
|
-
*
|
|
1315
|
+
* Enable the X-Engine storage engine feature, with valid values as follows:
|
|
1136
1316
|
*
|
|
1137
|
-
*
|
|
1138
|
-
*
|
|
1139
|
-
*
|
|
1140
|
-
* > This parameter takes effect only if you do not set **CreationOption** to **CreateGdnStandby** and you set **DBType** to **MySQL** and **DBVersion** to **8.0**. To enable X-Engine on a node, make sure that the memory of the node is greater than or equal to 8 GB in size.
|
|
1317
|
+
* - **ON**: The cluster enables the X-Engine engine.
|
|
1318
|
+
* - **OFF**: The cluster disables the X-Engine engine.
|
|
1319
|
+
* > This parameter is effective only when **CreationOption** is not **CreateGdnStandby**, **DBType** is **MySQL**, and **DBVersion** is **8.0**. The memory specification of nodes that enable the X-Engine engine must be at least 8 GB.
|
|
1141
1320
|
*
|
|
1142
1321
|
* @example
|
|
1143
1322
|
* ON
|
|
1144
1323
|
*/
|
|
1145
1324
|
looseXEngine?: string;
|
|
1146
1325
|
/**
|
|
1326
|
+
* @remarks
|
|
1327
|
+
* Set the ratio for enabling the X-Engine storage engine, with a range of integers from 10 to 90.
|
|
1328
|
+
* > This parameter takes effect only when **LooseXEngine** is **ON**.
|
|
1329
|
+
*
|
|
1147
1330
|
* @example
|
|
1148
1331
|
* 50
|
|
1149
1332
|
*/
|
|
1150
1333
|
looseXEngineUseMemoryPct?: string;
|
|
1151
1334
|
/**
|
|
1152
1335
|
* @remarks
|
|
1153
|
-
*
|
|
1154
|
-
*
|
|
1155
|
-
* *
|
|
1156
|
-
* * **0**: The table names are case-sensitive.
|
|
1336
|
+
* Whether table names are case-sensitive, with valid values as follows:
|
|
1337
|
+
* * **1**: Case-insensitive
|
|
1338
|
+
* * **0**: Case-sensitive
|
|
1157
1339
|
*
|
|
1158
|
-
*
|
|
1159
|
-
*
|
|
1160
|
-
* > This parameter is valid only when the **DBType** parameter is set to **MySQL**.
|
|
1340
|
+
* The default value is **1**.
|
|
1341
|
+
* > This parameter applies only when **DBType** is **MySQL**.
|
|
1161
1342
|
*
|
|
1162
1343
|
* @example
|
|
1163
1344
|
* 1
|
|
@@ -1167,9 +1348,9 @@ export declare class CreateDBClusterRequest extends $tea.Model {
|
|
|
1167
1348
|
ownerId?: number;
|
|
1168
1349
|
/**
|
|
1169
1350
|
* @remarks
|
|
1170
|
-
*
|
|
1351
|
+
* Parameter template ID.
|
|
1171
1352
|
*
|
|
1172
|
-
* > You can
|
|
1353
|
+
* > You can view the list of parameter templates in the target region, including the parameter template ID, by calling the [DescribeParameterGroups](https://help.aliyun.com/document_detail/207178.html) interface.
|
|
1173
1354
|
*
|
|
1174
1355
|
* @example
|
|
1175
1356
|
* pcpg-**************
|
|
@@ -1177,10 +1358,10 @@ export declare class CreateDBClusterRequest extends $tea.Model {
|
|
|
1177
1358
|
parameterGroupId?: string;
|
|
1178
1359
|
/**
|
|
1179
1360
|
* @remarks
|
|
1180
|
-
*
|
|
1361
|
+
* Payment type, with available values as follows:
|
|
1181
1362
|
*
|
|
1182
|
-
*
|
|
1183
|
-
*
|
|
1363
|
+
* - **Postpaid**: Pay-as-you-go.
|
|
1364
|
+
* - **Prepaid**: Subscription (monthly or yearly).
|
|
1184
1365
|
*
|
|
1185
1366
|
* This parameter is required.
|
|
1186
1367
|
*
|
|
@@ -1190,10 +1371,10 @@ export declare class CreateDBClusterRequest extends $tea.Model {
|
|
|
1190
1371
|
payType?: string;
|
|
1191
1372
|
/**
|
|
1192
1373
|
* @remarks
|
|
1193
|
-
*
|
|
1374
|
+
* If the payment type is **Prepaid**, this parameter is required. It specifies whether the prepaid cluster is on a monthly or yearly basis.
|
|
1194
1375
|
*
|
|
1195
|
-
*
|
|
1196
|
-
*
|
|
1376
|
+
* - **Year**: Yearly subscription.
|
|
1377
|
+
* - **Month**: Monthly subscription.
|
|
1197
1378
|
*
|
|
1198
1379
|
* @example
|
|
1199
1380
|
* Month
|
|
@@ -1201,31 +1382,48 @@ export declare class CreateDBClusterRequest extends $tea.Model {
|
|
|
1201
1382
|
period?: string;
|
|
1202
1383
|
/**
|
|
1203
1384
|
* @remarks
|
|
1204
|
-
* The provisioned read
|
|
1205
|
-
*
|
|
1206
|
-
*
|
|
1207
|
-
*
|
|
1208
|
-
* > This parameter is available only if the StorageType parameter is set to ESSDAUTOPL.
|
|
1385
|
+
* <p id="p_wyg_t4a_glm">The provisioned read and write IOPS for ESSD AutoPL cloud disks. Possible values: 0 to min{50,000, 1000*capacity-Baseline Performance}.</p>
|
|
1386
|
+
* <p id="p_6de_jxy_k2g">Baseline Performance = min{1,800+50*capacity, 50000}.</p>
|
|
1387
|
+
* <note id="note_7kj_j0o_rgs">This parameter is supported only when StorageType is ESSDAUTOPL.</note>
|
|
1209
1388
|
*
|
|
1210
1389
|
* @example
|
|
1211
1390
|
* 1000
|
|
1212
1391
|
*/
|
|
1213
1392
|
provisionedIops?: number;
|
|
1214
1393
|
/**
|
|
1394
|
+
* @remarks
|
|
1395
|
+
* Standard edition database proxy specifications. Values are as follows:
|
|
1396
|
+
*
|
|
1397
|
+
* - **polar.maxscale.g2.medium.c**: 2 cores.
|
|
1398
|
+
* - **polar.maxscale.g2.large.c**: 4 cores.
|
|
1399
|
+
* - **polar.maxscale.g2.xlarge.c**: 8 cores.
|
|
1400
|
+
* - **polar.maxscale.g2.2xlarge.c**: 16 cores.
|
|
1401
|
+
* - **polar.maxscale.g2.3xlarge.c**: 24 cores.
|
|
1402
|
+
* - **polar.maxscale.g2.4xlarge.c**: 32 cores.
|
|
1403
|
+
* - **polar.maxscale.g2.8xlarge.c**: 64 cores.
|
|
1404
|
+
*
|
|
1215
1405
|
* @example
|
|
1216
1406
|
* polar.maxscale.g2.medium.c
|
|
1217
1407
|
*/
|
|
1218
1408
|
proxyClass?: string;
|
|
1219
1409
|
/**
|
|
1410
|
+
* @remarks
|
|
1411
|
+
* Database proxy type, with values including:
|
|
1412
|
+
* - **EXCLUSIVE**: Enterprise Exclusive Edition
|
|
1413
|
+
* - **GENERAL**: Enterprise General Purpose Edition
|
|
1414
|
+
* > The proxy type must match the type of the cluster\\"s node specifications, i.e.,
|
|
1415
|
+
* >- If the node specification is general, the proxy type should be Enterprise General Purpose Edition;
|
|
1416
|
+
* >- If the node specification is dedicated, the proxy type should be Enterprise Exclusive Edition.
|
|
1417
|
+
*
|
|
1220
1418
|
* @example
|
|
1221
1419
|
* Exclusive
|
|
1222
1420
|
*/
|
|
1223
1421
|
proxyType?: string;
|
|
1224
1422
|
/**
|
|
1225
1423
|
* @remarks
|
|
1226
|
-
*
|
|
1424
|
+
* Region ID.
|
|
1227
1425
|
*
|
|
1228
|
-
* > You can
|
|
1426
|
+
* > You can view available regions through the [DescribeRegions](https://help.aliyun.com/document_detail/98041.html) interface.
|
|
1229
1427
|
*
|
|
1230
1428
|
* This parameter is required.
|
|
1231
1429
|
*
|
|
@@ -1235,7 +1433,7 @@ export declare class CreateDBClusterRequest extends $tea.Model {
|
|
|
1235
1433
|
regionId?: string;
|
|
1236
1434
|
/**
|
|
1237
1435
|
* @remarks
|
|
1238
|
-
*
|
|
1436
|
+
* Resource group ID.
|
|
1239
1437
|
*
|
|
1240
1438
|
* @example
|
|
1241
1439
|
* rg-************
|
|
@@ -1245,9 +1443,9 @@ export declare class CreateDBClusterRequest extends $tea.Model {
|
|
|
1245
1443
|
resourceOwnerId?: number;
|
|
1246
1444
|
/**
|
|
1247
1445
|
* @remarks
|
|
1248
|
-
*
|
|
1446
|
+
* Maximum scaling limit for a single node. The value range is: 1 PCU~32 PCU.
|
|
1249
1447
|
*
|
|
1250
|
-
* >
|
|
1448
|
+
* > Only supported by Serverless clusters.
|
|
1251
1449
|
*
|
|
1252
1450
|
* @example
|
|
1253
1451
|
* 3
|
|
@@ -1255,9 +1453,9 @@ export declare class CreateDBClusterRequest extends $tea.Model {
|
|
|
1255
1453
|
scaleMax?: string;
|
|
1256
1454
|
/**
|
|
1257
1455
|
* @remarks
|
|
1258
|
-
*
|
|
1456
|
+
* Minimum scaling limit for a single node. The value range is: 1 PCU~31 PCU.
|
|
1259
1457
|
*
|
|
1260
|
-
* >
|
|
1458
|
+
* > Only supported by Serverless clusters.
|
|
1261
1459
|
*
|
|
1262
1460
|
* @example
|
|
1263
1461
|
* 1
|
|
@@ -1265,9 +1463,9 @@ export declare class CreateDBClusterRequest extends $tea.Model {
|
|
|
1265
1463
|
scaleMin?: string;
|
|
1266
1464
|
/**
|
|
1267
1465
|
* @remarks
|
|
1268
|
-
*
|
|
1466
|
+
* Maximum scaling limit for the number of read-only nodes. The value range is: 0~15.
|
|
1269
1467
|
*
|
|
1270
|
-
* >
|
|
1468
|
+
* > Only supported by Serverless clusters.
|
|
1271
1469
|
*
|
|
1272
1470
|
* @example
|
|
1273
1471
|
* 4
|
|
@@ -1275,9 +1473,9 @@ export declare class CreateDBClusterRequest extends $tea.Model {
|
|
|
1275
1473
|
scaleRoNumMax?: string;
|
|
1276
1474
|
/**
|
|
1277
1475
|
* @remarks
|
|
1278
|
-
*
|
|
1476
|
+
* Minimum scaling limit for the number of read-only nodes. The value range is: 0~15.
|
|
1279
1477
|
*
|
|
1280
|
-
* >
|
|
1478
|
+
* > Only supported by Serverless clusters.
|
|
1281
1479
|
*
|
|
1282
1480
|
* @example
|
|
1283
1481
|
* 2
|
|
@@ -1285,9 +1483,8 @@ export declare class CreateDBClusterRequest extends $tea.Model {
|
|
|
1285
1483
|
scaleRoNumMin?: string;
|
|
1286
1484
|
/**
|
|
1287
1485
|
* @remarks
|
|
1288
|
-
*
|
|
1289
|
-
*
|
|
1290
|
-
* > The whitelist can contain multiple IP addresses. Separate multiple IP addresses with commas (,).
|
|
1486
|
+
* PolarDB cluster whitelist IP address.
|
|
1487
|
+
* > Supports configuring multiple whitelist IP addresses, with English commas separating multiple IP addresses.
|
|
1291
1488
|
*
|
|
1292
1489
|
* @example
|
|
1293
1490
|
* 10.***.***.***
|
|
@@ -1295,9 +1492,8 @@ export declare class CreateDBClusterRequest extends $tea.Model {
|
|
|
1295
1492
|
securityIPList?: string;
|
|
1296
1493
|
/**
|
|
1297
1494
|
* @remarks
|
|
1298
|
-
*
|
|
1299
|
-
*
|
|
1300
|
-
* > This parameter is valid only for serverless clusters.
|
|
1495
|
+
* Serverless type. The current value is fixed to **AgileServerless** (sensitive mode).
|
|
1496
|
+
* > This parameter is only supported by Serverless clusters.
|
|
1301
1497
|
*
|
|
1302
1498
|
* @example
|
|
1303
1499
|
* AgileServerless
|
|
@@ -1305,33 +1501,54 @@ export declare class CreateDBClusterRequest extends $tea.Model {
|
|
|
1305
1501
|
serverlessType?: string;
|
|
1306
1502
|
/**
|
|
1307
1503
|
* @remarks
|
|
1308
|
-
*
|
|
1504
|
+
* Source RDS instance ID or source PolarDB cluster ID. This parameter is mandatory only when **CreationOption** is set to **MigrationFromRDS**, **CloneFromRDS**, **CloneFromPolarDB**, or **RecoverFromRecyclebin**.
|
|
1505
|
+
* * If **CreationOption** is **MigrationFromRDS** or **CloneFromRDS**, you need to input the source RDS instance ID. The source RDS instance version must be RDS MySQL 5.6, 5.7, or 8.0 High Availability edition.
|
|
1506
|
+
*
|
|
1507
|
+
* * If **CreationOption** is **CloneFromPolarDB**, you need to input the source PolarDB cluster ID. The DBType of the cloned cluster will default to match the source cluster. For example, if the source cluster is MySQL 8.0, the cloned cluster must also have **DBType** set to **MySQL** and **DBVersion** to **8.0**.
|
|
1309
1508
|
*
|
|
1310
|
-
* *
|
|
1311
|
-
* * If the **CreationOption** parameter is set to **CloneFromPolarDB**, you must set this parameter to the ID of the source PolarDB cluster. By default, the value of DBType of the destination cluster must be the same as that of the source cluster. For example, if a MySQL 8.0 cluster is used as the source cluster, you must set the **DBType** parameter to **MySQL** and the **DBVersion** parameter to **8.0** for the destination cluster.
|
|
1509
|
+
* * If **CreationOption** is **RecoverFromRecyclebin**, you need to input the released source PolarDB cluster ID. The DBType of the cluster being recovered from the recycle bin must match the source cluster. For example, if the source cluster was MySQL 8.0, the recovered cluster must also have **DBType** set to **MySQL** and **DBVersion** to **8.0**.
|
|
1312
1510
|
*
|
|
1313
1511
|
* @example
|
|
1314
1512
|
* rm-*************
|
|
1315
1513
|
*/
|
|
1316
1514
|
sourceResourceId?: string;
|
|
1317
1515
|
/**
|
|
1516
|
+
* @remarks
|
|
1517
|
+
* The availability zone where the hot standby cluster is stored. Applicable to the standard edition 3AZ scenario.
|
|
1518
|
+
*
|
|
1519
|
+
* > This parameter takes effect only when multi-zone data strong consistency is enabled.
|
|
1520
|
+
*
|
|
1318
1521
|
* @example
|
|
1319
1522
|
* cn-hangzhou-g
|
|
1320
1523
|
*/
|
|
1321
1524
|
standbyAZ?: string;
|
|
1322
1525
|
/**
|
|
1526
|
+
* @remarks
|
|
1527
|
+
* Whether to enable automatic storage expansion for standard edition clusters, with valid values as follows:
|
|
1528
|
+
*
|
|
1529
|
+
* - Enable: Enables automatic storage expansion.
|
|
1530
|
+
* - Disable: Disables automatic storage expansion.
|
|
1531
|
+
*
|
|
1323
1532
|
* @example
|
|
1324
1533
|
* Enable
|
|
1325
1534
|
*/
|
|
1326
1535
|
storageAutoScale?: string;
|
|
1327
1536
|
/**
|
|
1537
|
+
* @remarks
|
|
1538
|
+
* The storage billing type, with valid values as follows:
|
|
1539
|
+
*
|
|
1540
|
+
* - Postpaid: Pay-as-you-go (hourly).
|
|
1541
|
+
* - Prepaid: Pay-per-use based on space (subscription).
|
|
1542
|
+
*
|
|
1328
1543
|
* @example
|
|
1329
1544
|
* Prepaid
|
|
1330
1545
|
*/
|
|
1331
1546
|
storagePayType?: string;
|
|
1332
1547
|
/**
|
|
1333
1548
|
* @remarks
|
|
1334
|
-
*
|
|
1549
|
+
* Storage space for pay-by-space (subscription) billing. Unit: GB.
|
|
1550
|
+
* > - For PolarDB MySQL Standard Edition, the storage space range is 20 to 32000.
|
|
1551
|
+
* > - When the Standard Edition storage type is ESSDAUTOPL, the storage space range is 40 to 64000, with a minimum step size of 10, meaning you can only enter values like 40, 50, 60, and so on.
|
|
1335
1552
|
*
|
|
1336
1553
|
* @example
|
|
1337
1554
|
* 50
|
|
@@ -1339,35 +1556,38 @@ export declare class CreateDBClusterRequest extends $tea.Model {
|
|
|
1339
1556
|
storageSpace?: number;
|
|
1340
1557
|
/**
|
|
1341
1558
|
* @remarks
|
|
1342
|
-
*
|
|
1559
|
+
* Enterprise edition storage types include:
|
|
1560
|
+
* - **PSL5**
|
|
1561
|
+
* - **PSL4**
|
|
1343
1562
|
*
|
|
1344
|
-
*
|
|
1345
|
-
*
|
|
1346
|
-
*
|
|
1347
|
-
*
|
|
1348
|
-
*
|
|
1349
|
-
*
|
|
1350
|
-
* * **ESSDPL2**
|
|
1351
|
-
* * **ESSDPL3**
|
|
1352
|
-
* * **ESSDAUTOPL**
|
|
1353
|
-
*
|
|
1354
|
-
* > This parameter is invalid for serverless clusters.
|
|
1563
|
+
* Standard edition storage types include:
|
|
1564
|
+
* - **ESSDPL0**
|
|
1565
|
+
* - **ESSDPL1**
|
|
1566
|
+
* - **ESSDPL2**
|
|
1567
|
+
* - **ESSDPL3**
|
|
1568
|
+
* - **ESSDAUTOPL**
|
|
1355
1569
|
*
|
|
1356
1570
|
* @example
|
|
1357
1571
|
* PSL4
|
|
1358
1572
|
*/
|
|
1359
1573
|
storageType?: string;
|
|
1360
1574
|
/**
|
|
1575
|
+
* @remarks
|
|
1576
|
+
* Set the upper limit for automatic storage expansion of standard edition clusters, in GB.
|
|
1577
|
+
*
|
|
1578
|
+
* > The maximum value is 32000.
|
|
1579
|
+
*
|
|
1361
1580
|
* @example
|
|
1362
1581
|
* 800
|
|
1363
1582
|
*/
|
|
1364
1583
|
storageUpperBound?: number;
|
|
1365
1584
|
/**
|
|
1366
1585
|
* @remarks
|
|
1367
|
-
*
|
|
1586
|
+
* Whether the cluster has enabled strong data consistency across multiple zones. Values are as follows:
|
|
1587
|
+
*
|
|
1588
|
+
* - **ON**: Indicates strong data consistency across multiple zones is enabled, applicable to the standard edition 3AZ scenario.
|
|
1368
1589
|
*
|
|
1369
|
-
*
|
|
1370
|
-
* * **OFF**: disables multi-zone data consistency.
|
|
1590
|
+
* - **OFF**: Indicates strong data consistency across multiple zones is not enabled.
|
|
1371
1591
|
*
|
|
1372
1592
|
* @example
|
|
1373
1593
|
* ON
|
|
@@ -1375,17 +1595,14 @@ export declare class CreateDBClusterRequest extends $tea.Model {
|
|
|
1375
1595
|
strictConsistency?: string;
|
|
1376
1596
|
/**
|
|
1377
1597
|
* @remarks
|
|
1378
|
-
*
|
|
1379
|
-
*
|
|
1380
|
-
* * **true**
|
|
1381
|
-
* * **false**
|
|
1598
|
+
* Enables TDE encryption. Valid values are as follows:
|
|
1382
1599
|
*
|
|
1383
|
-
*
|
|
1384
|
-
*
|
|
1385
|
-
* * This parameter is valid only when the **DBType** parameter is set to **PostgreSQL** or **Oracle**.
|
|
1600
|
+
* - **true**: Enabled.
|
|
1601
|
+
* - **false**: Disabled (default).
|
|
1386
1602
|
*
|
|
1387
|
-
* *
|
|
1388
|
-
* *
|
|
1603
|
+
* > * This parameter takes effect only when **DBType** is **PostgreSQL** or **Oracle**.
|
|
1604
|
+
* > * You can call the [ModifyDBClusterTDE](https://help.aliyun.com/document_detail/167982.html) interface to enable TDE encryption for a PolarDB MySQL cluster.
|
|
1605
|
+
* > * Once the TDE feature is enabled, it cannot be disabled.
|
|
1389
1606
|
*
|
|
1390
1607
|
* @example
|
|
1391
1608
|
* true
|
|
@@ -1393,13 +1610,14 @@ export declare class CreateDBClusterRequest extends $tea.Model {
|
|
|
1393
1610
|
TDEStatus?: boolean;
|
|
1394
1611
|
/**
|
|
1395
1612
|
* @remarks
|
|
1396
|
-
*
|
|
1613
|
+
* List of tags.
|
|
1397
1614
|
*/
|
|
1398
1615
|
tag?: CreateDBClusterRequestTag[];
|
|
1399
1616
|
/**
|
|
1400
1617
|
* @remarks
|
|
1401
|
-
*
|
|
1402
|
-
*
|
|
1618
|
+
* If the payment type is **Prepaid**, this parameter is required.
|
|
1619
|
+
* - When **Period** is **Month**, **UsedTime** should be an integer within `[1-9]`.
|
|
1620
|
+
* - When **Period** is **Year**, **UsedTime** should be an integer within `[1-3]`.
|
|
1403
1621
|
*
|
|
1404
1622
|
* @example
|
|
1405
1623
|
* 1
|
|
@@ -1407,7 +1625,7 @@ export declare class CreateDBClusterRequest extends $tea.Model {
|
|
|
1407
1625
|
usedTime?: string;
|
|
1408
1626
|
/**
|
|
1409
1627
|
* @remarks
|
|
1410
|
-
*
|
|
1628
|
+
* VPC ID.
|
|
1411
1629
|
*
|
|
1412
1630
|
* @example
|
|
1413
1631
|
* vpc-**********
|
|
@@ -1415,9 +1633,9 @@ export declare class CreateDBClusterRequest extends $tea.Model {
|
|
|
1415
1633
|
VPCId?: string;
|
|
1416
1634
|
/**
|
|
1417
1635
|
* @remarks
|
|
1418
|
-
*
|
|
1636
|
+
* Virtual switch ID.
|
|
1419
1637
|
*
|
|
1420
|
-
* > If
|
|
1638
|
+
* > If VPCId has been selected, VSwitchId is mandatory.
|
|
1421
1639
|
*
|
|
1422
1640
|
* @example
|
|
1423
1641
|
* vsw-**********
|
|
@@ -1425,12 +1643,12 @@ export declare class CreateDBClusterRequest extends $tea.Model {
|
|
|
1425
1643
|
vSwitchId?: string;
|
|
1426
1644
|
/**
|
|
1427
1645
|
* @remarks
|
|
1428
|
-
*
|
|
1646
|
+
* Availability Zone ID.
|
|
1429
1647
|
*
|
|
1430
|
-
* > You can
|
|
1648
|
+
* > You can view the available zones through the [DescribeRegions](https://help.aliyun.com/document_detail/98041.html) interface.
|
|
1431
1649
|
*
|
|
1432
1650
|
* @example
|
|
1433
|
-
* cn-hangzhou-
|
|
1651
|
+
* cn-hangzhou-j
|
|
1434
1652
|
*/
|
|
1435
1653
|
zoneId?: string;
|
|
1436
1654
|
static names(): {
|
|
@@ -1446,7 +1664,7 @@ export declare class CreateDBClusterRequest extends $tea.Model {
|
|
|
1446
1664
|
export declare class CreateDBClusterResponseBody extends $tea.Model {
|
|
1447
1665
|
/**
|
|
1448
1666
|
* @remarks
|
|
1449
|
-
*
|
|
1667
|
+
* Cluster ID.
|
|
1450
1668
|
*
|
|
1451
1669
|
* @example
|
|
1452
1670
|
* pc-bp1s826a1up******
|
|
@@ -1454,7 +1672,7 @@ export declare class CreateDBClusterResponseBody extends $tea.Model {
|
|
|
1454
1672
|
DBClusterId?: string;
|
|
1455
1673
|
/**
|
|
1456
1674
|
* @remarks
|
|
1457
|
-
*
|
|
1675
|
+
* Order ID.
|
|
1458
1676
|
*
|
|
1459
1677
|
* @example
|
|
1460
1678
|
* 211454967******
|
|
@@ -1462,7 +1680,7 @@ export declare class CreateDBClusterResponseBody extends $tea.Model {
|
|
|
1462
1680
|
orderId?: string;
|
|
1463
1681
|
/**
|
|
1464
1682
|
* @remarks
|
|
1465
|
-
*
|
|
1683
|
+
* Request ID.
|
|
1466
1684
|
*
|
|
1467
1685
|
* @example
|
|
1468
1686
|
* E56531A4-E552-40BA-9C58-137B80******
|
|
@@ -1470,7 +1688,7 @@ export declare class CreateDBClusterResponseBody extends $tea.Model {
|
|
|
1470
1688
|
requestId?: string;
|
|
1471
1689
|
/**
|
|
1472
1690
|
* @remarks
|
|
1473
|
-
*
|
|
1691
|
+
* Resource group ID.
|
|
1474
1692
|
*
|
|
1475
1693
|
* @example
|
|
1476
1694
|
* rg-***************
|
|
@@ -1505,12 +1723,10 @@ export declare class CreateDBClusterResponse extends $tea.Model {
|
|
|
1505
1723
|
export declare class CreateDBClusterEndpointRequest extends $tea.Model {
|
|
1506
1724
|
/**
|
|
1507
1725
|
* @remarks
|
|
1508
|
-
* Specifies whether to
|
|
1726
|
+
* Specifies whether to enable automatic association of newly added nodes with the cluster endpoint. Valid values:
|
|
1509
1727
|
*
|
|
1510
|
-
* * **Enable**:
|
|
1511
|
-
* * **Disable
|
|
1512
|
-
*
|
|
1513
|
-
* Default value: **Disable**.
|
|
1728
|
+
* * **Enable**: enables automatic association of newly added nodes with the cluster endpoint.
|
|
1729
|
+
* * **Disable** (default): disables automatic association of newly added nodes with the cluster endpoint.
|
|
1514
1730
|
*
|
|
1515
1731
|
* @example
|
|
1516
1732
|
* Disable
|
|
@@ -1605,7 +1821,23 @@ export declare class CreateDBClusterEndpointRequest extends $tea.Model {
|
|
|
1605
1821
|
nodes?: string;
|
|
1606
1822
|
ownerAccount?: string;
|
|
1607
1823
|
ownerId?: number;
|
|
1824
|
+
/**
|
|
1825
|
+
* @remarks
|
|
1826
|
+
* Global consistency timeout strategy. The value range is as follows:
|
|
1827
|
+
* - **0**: Send the request to the primary node
|
|
1828
|
+
* - **2**: Timeout degradation, when a global consistency read times out, the query operation will automatically degrade to an inconsistent read, and the client will not receive an error message
|
|
1829
|
+
*
|
|
1830
|
+
* @example
|
|
1831
|
+
* 0
|
|
1832
|
+
*/
|
|
1608
1833
|
polarSccTimeoutAction?: string;
|
|
1834
|
+
/**
|
|
1835
|
+
* @remarks
|
|
1836
|
+
* Global consistency timeout
|
|
1837
|
+
*
|
|
1838
|
+
* @example
|
|
1839
|
+
* 100
|
|
1840
|
+
*/
|
|
1609
1841
|
polarSccWaitTimeout?: string;
|
|
1610
1842
|
/**
|
|
1611
1843
|
* @remarks
|
|
@@ -1622,6 +1854,14 @@ export declare class CreateDBClusterEndpointRequest extends $tea.Model {
|
|
|
1622
1854
|
readWriteMode?: string;
|
|
1623
1855
|
resourceOwnerAccount?: string;
|
|
1624
1856
|
resourceOwnerId?: number;
|
|
1857
|
+
/**
|
|
1858
|
+
* @remarks
|
|
1859
|
+
* Whether the node has enabled the global consistency (high-performance mode) feature. The value range is as follows:
|
|
1860
|
+
* - **ON**: Enabled - **OFF**: Disabled
|
|
1861
|
+
*
|
|
1862
|
+
* @example
|
|
1863
|
+
* on
|
|
1864
|
+
*/
|
|
1625
1865
|
sccMode?: string;
|
|
1626
1866
|
static names(): {
|
|
1627
1867
|
[key: string]: string;
|
|
@@ -2401,56 +2641,174 @@ export declare class CreateGlobalSecurityIPGroupRequest extends $tea.Model {
|
|
|
2401
2641
|
* This parameter is required.
|
|
2402
2642
|
*
|
|
2403
2643
|
* @example
|
|
2404
|
-
* test_123
|
|
2644
|
+
* test_123
|
|
2645
|
+
*/
|
|
2646
|
+
globalIgName?: string;
|
|
2647
|
+
ownerAccount?: string;
|
|
2648
|
+
ownerId?: number;
|
|
2649
|
+
/**
|
|
2650
|
+
* @remarks
|
|
2651
|
+
* The region ID.
|
|
2652
|
+
*
|
|
2653
|
+
* This parameter is required.
|
|
2654
|
+
*
|
|
2655
|
+
* @example
|
|
2656
|
+
* cn-hangzhou
|
|
2657
|
+
*/
|
|
2658
|
+
regionId?: string;
|
|
2659
|
+
/**
|
|
2660
|
+
* @remarks
|
|
2661
|
+
* The ID of the resource group.
|
|
2662
|
+
*
|
|
2663
|
+
* @example
|
|
2664
|
+
* rg-************
|
|
2665
|
+
*/
|
|
2666
|
+
resourceGroupId?: string;
|
|
2667
|
+
resourceOwnerAccount?: string;
|
|
2668
|
+
resourceOwnerId?: number;
|
|
2669
|
+
securityToken?: string;
|
|
2670
|
+
static names(): {
|
|
2671
|
+
[key: string]: string;
|
|
2672
|
+
};
|
|
2673
|
+
static types(): {
|
|
2674
|
+
[key: string]: any;
|
|
2675
|
+
};
|
|
2676
|
+
constructor(map?: {
|
|
2677
|
+
[key: string]: any;
|
|
2678
|
+
});
|
|
2679
|
+
}
|
|
2680
|
+
export declare class CreateGlobalSecurityIPGroupResponseBody extends $tea.Model {
|
|
2681
|
+
/**
|
|
2682
|
+
* @remarks
|
|
2683
|
+
* The details of the global IP whitelist template.
|
|
2684
|
+
*/
|
|
2685
|
+
globalSecurityIPGroup?: CreateGlobalSecurityIPGroupResponseBodyGlobalSecurityIPGroup[];
|
|
2686
|
+
/**
|
|
2687
|
+
* @remarks
|
|
2688
|
+
* The ID of the request.
|
|
2689
|
+
*
|
|
2690
|
+
* @example
|
|
2691
|
+
* 9B7BFB11-C077-4FE3-B051-F69CEB******
|
|
2692
|
+
*/
|
|
2693
|
+
requestId?: string;
|
|
2694
|
+
static names(): {
|
|
2695
|
+
[key: string]: string;
|
|
2696
|
+
};
|
|
2697
|
+
static types(): {
|
|
2698
|
+
[key: string]: any;
|
|
2699
|
+
};
|
|
2700
|
+
constructor(map?: {
|
|
2701
|
+
[key: string]: any;
|
|
2702
|
+
});
|
|
2703
|
+
}
|
|
2704
|
+
export declare class CreateGlobalSecurityIPGroupResponse extends $tea.Model {
|
|
2705
|
+
headers?: {
|
|
2706
|
+
[key: string]: string;
|
|
2707
|
+
};
|
|
2708
|
+
statusCode?: number;
|
|
2709
|
+
body?: CreateGlobalSecurityIPGroupResponseBody;
|
|
2710
|
+
static names(): {
|
|
2711
|
+
[key: string]: string;
|
|
2712
|
+
};
|
|
2713
|
+
static types(): {
|
|
2714
|
+
[key: string]: any;
|
|
2715
|
+
};
|
|
2716
|
+
constructor(map?: {
|
|
2717
|
+
[key: string]: any;
|
|
2718
|
+
});
|
|
2719
|
+
}
|
|
2720
|
+
export declare class CreateOrGetVirtualLicenseOrderRequest extends $tea.Model {
|
|
2721
|
+
/**
|
|
2722
|
+
* @remarks
|
|
2723
|
+
* This parameter is required.
|
|
2724
|
+
*
|
|
2725
|
+
* @example
|
|
2726
|
+
* PG
|
|
2727
|
+
*/
|
|
2728
|
+
engine?: string;
|
|
2729
|
+
ownerAccount?: string;
|
|
2730
|
+
ownerId?: number;
|
|
2731
|
+
resourceOwnerAccount?: string;
|
|
2732
|
+
resourceOwnerId?: number;
|
|
2733
|
+
static names(): {
|
|
2734
|
+
[key: string]: string;
|
|
2735
|
+
};
|
|
2736
|
+
static types(): {
|
|
2737
|
+
[key: string]: any;
|
|
2738
|
+
};
|
|
2739
|
+
constructor(map?: {
|
|
2740
|
+
[key: string]: any;
|
|
2741
|
+
});
|
|
2742
|
+
}
|
|
2743
|
+
export declare class CreateOrGetVirtualLicenseOrderResponseBody extends $tea.Model {
|
|
2744
|
+
/**
|
|
2745
|
+
* @example
|
|
2746
|
+
* 1
|
|
2747
|
+
*/
|
|
2748
|
+
activatedCodeCount?: number;
|
|
2749
|
+
/**
|
|
2750
|
+
* @example
|
|
2751
|
+
* 10
|
|
2752
|
+
*/
|
|
2753
|
+
activationCodeQuota?: number;
|
|
2754
|
+
/**
|
|
2755
|
+
* @example
|
|
2756
|
+
* 2233****445566
|
|
2757
|
+
*/
|
|
2758
|
+
aliyunOrderId?: string;
|
|
2759
|
+
/**
|
|
2760
|
+
* @example
|
|
2761
|
+
* false
|
|
2762
|
+
*/
|
|
2763
|
+
allowEmptySystemIdentifier?: boolean;
|
|
2764
|
+
/**
|
|
2765
|
+
* @example
|
|
2766
|
+
* 2024-10-16 16:46:20
|
|
2767
|
+
*/
|
|
2768
|
+
gmtCreated?: string;
|
|
2769
|
+
/**
|
|
2770
|
+
* @example
|
|
2771
|
+
* 2024-10-16 16:46:20
|
|
2772
|
+
*/
|
|
2773
|
+
gmtModified?: string;
|
|
2774
|
+
/**
|
|
2775
|
+
* @example
|
|
2776
|
+
* true
|
|
2405
2777
|
*/
|
|
2406
|
-
|
|
2407
|
-
ownerAccount?: string;
|
|
2408
|
-
ownerId?: number;
|
|
2778
|
+
isVirtualOrder?: boolean;
|
|
2409
2779
|
/**
|
|
2410
|
-
* @remarks
|
|
2411
|
-
* The region ID.
|
|
2412
|
-
*
|
|
2413
|
-
* This parameter is required.
|
|
2414
|
-
*
|
|
2415
2780
|
* @example
|
|
2416
|
-
*
|
|
2781
|
+
* false
|
|
2417
2782
|
*/
|
|
2418
|
-
|
|
2783
|
+
isVirtualOrderFrozen?: boolean;
|
|
2419
2784
|
/**
|
|
2420
|
-
* @remarks
|
|
2421
|
-
* The ID of the resource group.
|
|
2422
|
-
*
|
|
2423
2785
|
* @example
|
|
2424
|
-
*
|
|
2786
|
+
* pre_generation_long_term
|
|
2425
2787
|
*/
|
|
2426
|
-
|
|
2427
|
-
resourceOwnerAccount?: string;
|
|
2428
|
-
resourceOwnerId?: number;
|
|
2429
|
-
securityToken?: string;
|
|
2430
|
-
static names(): {
|
|
2431
|
-
[key: string]: string;
|
|
2432
|
-
};
|
|
2433
|
-
static types(): {
|
|
2434
|
-
[key: string]: any;
|
|
2435
|
-
};
|
|
2436
|
-
constructor(map?: {
|
|
2437
|
-
[key: string]: any;
|
|
2438
|
-
});
|
|
2439
|
-
}
|
|
2440
|
-
export declare class CreateGlobalSecurityIPGroupResponseBody extends $tea.Model {
|
|
2788
|
+
packageType?: string;
|
|
2441
2789
|
/**
|
|
2442
|
-
* @
|
|
2443
|
-
*
|
|
2790
|
+
* @example
|
|
2791
|
+
* 30 years
|
|
2444
2792
|
*/
|
|
2445
|
-
|
|
2793
|
+
packageValidity?: string;
|
|
2794
|
+
/**
|
|
2795
|
+
* @example
|
|
2796
|
+
* aliyun_market
|
|
2797
|
+
*/
|
|
2798
|
+
purchaseChannel?: string;
|
|
2446
2799
|
/**
|
|
2447
2800
|
* @remarks
|
|
2448
|
-
*
|
|
2801
|
+
* Id of the request
|
|
2449
2802
|
*
|
|
2450
2803
|
* @example
|
|
2451
|
-
*
|
|
2804
|
+
* 45D24263-7E3A-4140-9472-************
|
|
2452
2805
|
*/
|
|
2453
2806
|
requestId?: string;
|
|
2807
|
+
/**
|
|
2808
|
+
* @example
|
|
2809
|
+
* 2024********483
|
|
2810
|
+
*/
|
|
2811
|
+
virtualOrderId?: string;
|
|
2454
2812
|
static names(): {
|
|
2455
2813
|
[key: string]: string;
|
|
2456
2814
|
};
|
|
@@ -2461,12 +2819,12 @@ export declare class CreateGlobalSecurityIPGroupResponseBody extends $tea.Model
|
|
|
2461
2819
|
[key: string]: any;
|
|
2462
2820
|
});
|
|
2463
2821
|
}
|
|
2464
|
-
export declare class
|
|
2822
|
+
export declare class CreateOrGetVirtualLicenseOrderResponse extends $tea.Model {
|
|
2465
2823
|
headers?: {
|
|
2466
2824
|
[key: string]: string;
|
|
2467
2825
|
};
|
|
2468
2826
|
statusCode?: number;
|
|
2469
|
-
body?:
|
|
2827
|
+
body?: CreateOrGetVirtualLicenseOrderResponseBody;
|
|
2470
2828
|
static names(): {
|
|
2471
2829
|
[key: string]: string;
|
|
2472
2830
|
};
|
|
@@ -2932,11 +3290,11 @@ export declare class DeleteBackupResponse extends $tea.Model {
|
|
|
2932
3290
|
export declare class DeleteDBClusterRequest extends $tea.Model {
|
|
2933
3291
|
/**
|
|
2934
3292
|
* @remarks
|
|
2935
|
-
* The retention policy
|
|
3293
|
+
* The retention policy applied to the backup sets when the cluster is released. Valid values:
|
|
2936
3294
|
*
|
|
2937
|
-
* * **ALL**: permanently retains all
|
|
2938
|
-
* * **LATEST**: permanently retains the most recent backup
|
|
2939
|
-
* * **NONE**:
|
|
3295
|
+
* * **ALL**: permanently retains all backup sets.
|
|
3296
|
+
* * **LATEST**: permanently retains the most recent backup set that is automatically created before the cluster is released.
|
|
3297
|
+
* * **NONE**: does not retain backup sets.
|
|
2940
3298
|
*
|
|
2941
3299
|
* @example
|
|
2942
3300
|
* NONE
|
|
@@ -3807,6 +4165,9 @@ export declare class DescribeAITaskStatusResponseBody extends $tea.Model {
|
|
|
3807
4165
|
/**
|
|
3808
4166
|
* @remarks
|
|
3809
4167
|
* The state description of the PolarDB for AI feature.
|
|
4168
|
+
*
|
|
4169
|
+
* @example
|
|
4170
|
+
* Closed State
|
|
3810
4171
|
*/
|
|
3811
4172
|
statusName?: string;
|
|
3812
4173
|
static names(): {
|
|
@@ -3946,6 +4307,203 @@ export declare class DescribeAccountsResponse extends $tea.Model {
|
|
|
3946
4307
|
[key: string]: any;
|
|
3947
4308
|
});
|
|
3948
4309
|
}
|
|
4310
|
+
export declare class DescribeActivationCodeDetailsRequest extends $tea.Model {
|
|
4311
|
+
/**
|
|
4312
|
+
* @example
|
|
4313
|
+
* 123
|
|
4314
|
+
*/
|
|
4315
|
+
activationCodeId?: number;
|
|
4316
|
+
/**
|
|
4317
|
+
* @remarks
|
|
4318
|
+
* This parameter is required.
|
|
4319
|
+
*
|
|
4320
|
+
* @example
|
|
4321
|
+
* 2233****445566
|
|
4322
|
+
*/
|
|
4323
|
+
aliyunOrderId?: string;
|
|
4324
|
+
ownerAccount?: string;
|
|
4325
|
+
ownerId?: number;
|
|
4326
|
+
resourceOwnerAccount?: string;
|
|
4327
|
+
resourceOwnerId?: number;
|
|
4328
|
+
static names(): {
|
|
4329
|
+
[key: string]: string;
|
|
4330
|
+
};
|
|
4331
|
+
static types(): {
|
|
4332
|
+
[key: string]: any;
|
|
4333
|
+
};
|
|
4334
|
+
constructor(map?: {
|
|
4335
|
+
[key: string]: any;
|
|
4336
|
+
});
|
|
4337
|
+
}
|
|
4338
|
+
export declare class DescribeActivationCodeDetailsResponseBody extends $tea.Model {
|
|
4339
|
+
/**
|
|
4340
|
+
* @example
|
|
4341
|
+
* 2024-10-16 16:46:20
|
|
4342
|
+
*/
|
|
4343
|
+
activateAt?: string;
|
|
4344
|
+
/**
|
|
4345
|
+
* @example
|
|
4346
|
+
* AAEAA******AAA=
|
|
4347
|
+
*/
|
|
4348
|
+
certContentB64?: string;
|
|
4349
|
+
/**
|
|
4350
|
+
* @example
|
|
4351
|
+
* testCode
|
|
4352
|
+
*/
|
|
4353
|
+
description?: string;
|
|
4354
|
+
/**
|
|
4355
|
+
* @example
|
|
4356
|
+
* 2054-10-09 16:46:20
|
|
4357
|
+
*/
|
|
4358
|
+
expireAt?: string;
|
|
4359
|
+
/**
|
|
4360
|
+
* @example
|
|
4361
|
+
* 2024-10-16 16:46:20
|
|
4362
|
+
*/
|
|
4363
|
+
gmtCreated?: string;
|
|
4364
|
+
/**
|
|
4365
|
+
* @example
|
|
4366
|
+
* 2024-10-16 16:46:20
|
|
4367
|
+
*/
|
|
4368
|
+
gmtModified?: string;
|
|
4369
|
+
/**
|
|
4370
|
+
* @example
|
|
4371
|
+
* 123
|
|
4372
|
+
*/
|
|
4373
|
+
id?: number;
|
|
4374
|
+
/**
|
|
4375
|
+
* @example
|
|
4376
|
+
* 12:34:56:78:98:00
|
|
4377
|
+
*/
|
|
4378
|
+
macAddress?: string;
|
|
4379
|
+
/**
|
|
4380
|
+
* @example
|
|
4381
|
+
* testName
|
|
4382
|
+
*/
|
|
4383
|
+
name?: string;
|
|
4384
|
+
/**
|
|
4385
|
+
* @remarks
|
|
4386
|
+
* Id of the request
|
|
4387
|
+
*
|
|
4388
|
+
* @example
|
|
4389
|
+
* F2A9EFA7-915F-4572-8299-85A307******
|
|
4390
|
+
*/
|
|
4391
|
+
requestId?: string;
|
|
4392
|
+
/**
|
|
4393
|
+
* @example
|
|
4394
|
+
* 1234567890123456
|
|
4395
|
+
*/
|
|
4396
|
+
systemIdentifier?: string;
|
|
4397
|
+
static names(): {
|
|
4398
|
+
[key: string]: string;
|
|
4399
|
+
};
|
|
4400
|
+
static types(): {
|
|
4401
|
+
[key: string]: any;
|
|
4402
|
+
};
|
|
4403
|
+
constructor(map?: {
|
|
4404
|
+
[key: string]: any;
|
|
4405
|
+
});
|
|
4406
|
+
}
|
|
4407
|
+
export declare class DescribeActivationCodeDetailsResponse extends $tea.Model {
|
|
4408
|
+
headers?: {
|
|
4409
|
+
[key: string]: string;
|
|
4410
|
+
};
|
|
4411
|
+
statusCode?: number;
|
|
4412
|
+
body?: DescribeActivationCodeDetailsResponseBody;
|
|
4413
|
+
static names(): {
|
|
4414
|
+
[key: string]: string;
|
|
4415
|
+
};
|
|
4416
|
+
static types(): {
|
|
4417
|
+
[key: string]: any;
|
|
4418
|
+
};
|
|
4419
|
+
constructor(map?: {
|
|
4420
|
+
[key: string]: any;
|
|
4421
|
+
});
|
|
4422
|
+
}
|
|
4423
|
+
export declare class DescribeActivationCodesRequest extends $tea.Model {
|
|
4424
|
+
/**
|
|
4425
|
+
* @remarks
|
|
4426
|
+
* This parameter is required.
|
|
4427
|
+
*
|
|
4428
|
+
* @example
|
|
4429
|
+
* 2233****445566
|
|
4430
|
+
*/
|
|
4431
|
+
aliyunOrderId?: string;
|
|
4432
|
+
ownerAccount?: string;
|
|
4433
|
+
ownerId?: number;
|
|
4434
|
+
/**
|
|
4435
|
+
* @example
|
|
4436
|
+
* 1
|
|
4437
|
+
*/
|
|
4438
|
+
pageNumber?: number;
|
|
4439
|
+
/**
|
|
4440
|
+
* @example
|
|
4441
|
+
* 30
|
|
4442
|
+
*/
|
|
4443
|
+
pageSize?: number;
|
|
4444
|
+
resourceOwnerAccount?: string;
|
|
4445
|
+
resourceOwnerId?: number;
|
|
4446
|
+
static names(): {
|
|
4447
|
+
[key: string]: string;
|
|
4448
|
+
};
|
|
4449
|
+
static types(): {
|
|
4450
|
+
[key: string]: any;
|
|
4451
|
+
};
|
|
4452
|
+
constructor(map?: {
|
|
4453
|
+
[key: string]: any;
|
|
4454
|
+
});
|
|
4455
|
+
}
|
|
4456
|
+
export declare class DescribeActivationCodesResponseBody extends $tea.Model {
|
|
4457
|
+
items?: DescribeActivationCodesResponseBodyItems[];
|
|
4458
|
+
/**
|
|
4459
|
+
* @example
|
|
4460
|
+
* 1
|
|
4461
|
+
*/
|
|
4462
|
+
pageNumber?: number;
|
|
4463
|
+
/**
|
|
4464
|
+
* @example
|
|
4465
|
+
* 1
|
|
4466
|
+
*/
|
|
4467
|
+
pageRecordCount?: number;
|
|
4468
|
+
/**
|
|
4469
|
+
* @remarks
|
|
4470
|
+
* Id of the request
|
|
4471
|
+
*
|
|
4472
|
+
* @example
|
|
4473
|
+
* 65D7ACE6-4A61-4B6E-B357-8CB24A******
|
|
4474
|
+
*/
|
|
4475
|
+
requestId?: string;
|
|
4476
|
+
/**
|
|
4477
|
+
* @example
|
|
4478
|
+
* 1
|
|
4479
|
+
*/
|
|
4480
|
+
totalRecordCount?: number;
|
|
4481
|
+
static names(): {
|
|
4482
|
+
[key: string]: string;
|
|
4483
|
+
};
|
|
4484
|
+
static types(): {
|
|
4485
|
+
[key: string]: any;
|
|
4486
|
+
};
|
|
4487
|
+
constructor(map?: {
|
|
4488
|
+
[key: string]: any;
|
|
4489
|
+
});
|
|
4490
|
+
}
|
|
4491
|
+
export declare class DescribeActivationCodesResponse extends $tea.Model {
|
|
4492
|
+
headers?: {
|
|
4493
|
+
[key: string]: string;
|
|
4494
|
+
};
|
|
4495
|
+
statusCode?: number;
|
|
4496
|
+
body?: DescribeActivationCodesResponseBody;
|
|
4497
|
+
static names(): {
|
|
4498
|
+
[key: string]: string;
|
|
4499
|
+
};
|
|
4500
|
+
static types(): {
|
|
4501
|
+
[key: string]: any;
|
|
4502
|
+
};
|
|
4503
|
+
constructor(map?: {
|
|
4504
|
+
[key: string]: any;
|
|
4505
|
+
});
|
|
4506
|
+
}
|
|
3949
4507
|
export declare class DescribeAutoRenewAttributeRequest extends $tea.Model {
|
|
3950
4508
|
/**
|
|
3951
4509
|
* @remarks
|
|
@@ -4982,9 +5540,8 @@ export declare class DescribeDBClusterAccessWhitelistResponse extends $tea.Model
|
|
|
4982
5540
|
export declare class DescribeDBClusterAttributeRequest extends $tea.Model {
|
|
4983
5541
|
/**
|
|
4984
5542
|
* @remarks
|
|
4985
|
-
*
|
|
4986
|
-
*
|
|
4987
|
-
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/98094.html) operation to query the details of the clusters that belong to your Alibaba Cloud account, such as cluster IDs.
|
|
5543
|
+
* Cluster ID.
|
|
5544
|
+
* > You can view detailed information about all clusters under your account, including the cluster ID, through the [DescribeDBClusters](https://help.aliyun.com/document_detail/98094.html) interface.
|
|
4988
5545
|
*
|
|
4989
5546
|
* This parameter is required.
|
|
4990
5547
|
*
|
|
@@ -4994,7 +5551,7 @@ export declare class DescribeDBClusterAttributeRequest extends $tea.Model {
|
|
|
4994
5551
|
DBClusterId?: string;
|
|
4995
5552
|
/**
|
|
4996
5553
|
* @remarks
|
|
4997
|
-
*
|
|
5554
|
+
* Whether to obtain information about AI-related nodes.
|
|
4998
5555
|
*
|
|
4999
5556
|
* @example
|
|
5000
5557
|
* AI
|
|
@@ -5016,29 +5573,37 @@ export declare class DescribeDBClusterAttributeRequest extends $tea.Model {
|
|
|
5016
5573
|
}
|
|
5017
5574
|
export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
5018
5575
|
/**
|
|
5576
|
+
* @remarks
|
|
5577
|
+
* Start time for free AI activation
|
|
5578
|
+
*
|
|
5019
5579
|
* @example
|
|
5020
5580
|
* 2024-03-13T01:20:28Z
|
|
5021
5581
|
*/
|
|
5022
5582
|
aiCreatingTime?: string;
|
|
5023
5583
|
/**
|
|
5024
5584
|
* @remarks
|
|
5025
|
-
*
|
|
5585
|
+
* Types of AI nodes. Values include:
|
|
5026
5586
|
*
|
|
5027
|
-
*
|
|
5028
|
-
*
|
|
5587
|
+
* - **SearchNode**: Search node.
|
|
5588
|
+
* - **DLNode**: AI node.
|
|
5029
5589
|
*
|
|
5030
5590
|
* @example
|
|
5031
5591
|
* DLNode
|
|
5032
5592
|
*/
|
|
5033
5593
|
aiType?: string;
|
|
5034
5594
|
/**
|
|
5595
|
+
* @remarks
|
|
5596
|
+
* CPU architecture. Available options are:
|
|
5597
|
+
* - **X86**
|
|
5598
|
+
* - **ARM**
|
|
5599
|
+
*
|
|
5035
5600
|
* @example
|
|
5036
5601
|
* X86
|
|
5037
5602
|
*/
|
|
5038
5603
|
architecture?: string;
|
|
5039
5604
|
/**
|
|
5040
5605
|
* @remarks
|
|
5041
|
-
* Maximum blktags in file system.
|
|
5606
|
+
* Maximum number of blktags in the file system.
|
|
5042
5607
|
*
|
|
5043
5608
|
* @example
|
|
5044
5609
|
* 7,864,320
|
|
@@ -5046,7 +5611,7 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
5046
5611
|
blktagTotal?: number;
|
|
5047
5612
|
/**
|
|
5048
5613
|
* @remarks
|
|
5049
|
-
*
|
|
5614
|
+
* Current blktag usage.
|
|
5050
5615
|
*
|
|
5051
5616
|
* @example
|
|
5052
5617
|
* 5,242,880
|
|
@@ -5054,35 +5619,43 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
5054
5619
|
blktagUsed?: number;
|
|
5055
5620
|
/**
|
|
5056
5621
|
* @remarks
|
|
5057
|
-
* [
|
|
5058
|
-
*
|
|
5059
|
-
* *
|
|
5060
|
-
* *
|
|
5061
|
-
* *
|
|
5062
|
-
* *
|
|
5063
|
-
* * **SENormal**: Standard Edition.
|
|
5622
|
+
* [Product Series](https://help.aliyun.com/document_detail/183258.html), with values as follows:
|
|
5623
|
+
* * **Normal**: Cluster Edition
|
|
5624
|
+
* * **Basic**: Single Node
|
|
5625
|
+
* * **Archive**: High Compression Engine (X-Engine)
|
|
5626
|
+
* * **NormalMultimaster**: Multi-Master Cluster Edition
|
|
5627
|
+
* * **SENormal**: Standard Edition
|
|
5064
5628
|
*
|
|
5065
|
-
*
|
|
5066
|
-
*
|
|
5067
|
-
*
|
|
5629
|
+
* > * PolarDB PostgreSQL version 11 does not support single-node.
|
|
5630
|
+
* >* PolarDB MySQL versions 8.0 and 5.7, and PolarDB PostgreSQL version 14 support the Standard Edition.
|
|
5631
|
+
* >* PolarDB MySQL version 8.0 supports High Compression Engine (X-Engine) and Multi-Master Cluster Edition.
|
|
5068
5632
|
*
|
|
5069
5633
|
* @example
|
|
5070
5634
|
* Normal
|
|
5071
5635
|
*/
|
|
5072
5636
|
category?: string;
|
|
5073
5637
|
/**
|
|
5638
|
+
* @remarks
|
|
5639
|
+
* Whether storage compression is enabled. Values are as follows:
|
|
5640
|
+
* - ON: Enabled
|
|
5641
|
+
* - OFF: Disabled
|
|
5642
|
+
*
|
|
5074
5643
|
* @example
|
|
5075
5644
|
* ON
|
|
5076
5645
|
*/
|
|
5077
5646
|
compressStorageMode?: string;
|
|
5078
5647
|
/**
|
|
5648
|
+
* @remarks
|
|
5649
|
+
* Compressed storage data size.
|
|
5650
|
+
* > This parameter is supported only when the cluster\\"s storage compression feature is enabled.
|
|
5651
|
+
*
|
|
5079
5652
|
* @example
|
|
5080
5653
|
* 15529410560
|
|
5081
5654
|
*/
|
|
5082
5655
|
compressStorageUsed?: number;
|
|
5083
5656
|
/**
|
|
5084
5657
|
* @remarks
|
|
5085
|
-
*
|
|
5658
|
+
* Cluster creation time.
|
|
5086
5659
|
*
|
|
5087
5660
|
* @example
|
|
5088
5661
|
* 2020-08-14T05:58:42Z
|
|
@@ -5090,7 +5663,7 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
5090
5663
|
creationTime?: string;
|
|
5091
5664
|
/**
|
|
5092
5665
|
* @remarks
|
|
5093
|
-
*
|
|
5666
|
+
* Cluster description.
|
|
5094
5667
|
*
|
|
5095
5668
|
* @example
|
|
5096
5669
|
* test
|
|
@@ -5098,7 +5671,7 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
5098
5671
|
DBClusterDescription?: string;
|
|
5099
5672
|
/**
|
|
5100
5673
|
* @remarks
|
|
5101
|
-
*
|
|
5674
|
+
* Cluster ID.
|
|
5102
5675
|
*
|
|
5103
5676
|
* @example
|
|
5104
5677
|
* pc-*****************
|
|
@@ -5106,7 +5679,7 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
5106
5679
|
DBClusterId?: string;
|
|
5107
5680
|
/**
|
|
5108
5681
|
* @remarks
|
|
5109
|
-
*
|
|
5682
|
+
* Network type of the cluster.
|
|
5110
5683
|
*
|
|
5111
5684
|
* @example
|
|
5112
5685
|
* VPC
|
|
@@ -5114,7 +5687,7 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
5114
5687
|
DBClusterNetworkType?: string;
|
|
5115
5688
|
/**
|
|
5116
5689
|
* @remarks
|
|
5117
|
-
*
|
|
5690
|
+
* Cluster status. For the full list of values, refer to [Cluster Status Table](https://help.aliyun.com/document_detail/99286.html).
|
|
5118
5691
|
*
|
|
5119
5692
|
* @example
|
|
5120
5693
|
* Running
|
|
@@ -5127,7 +5700,7 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
5127
5700
|
DBNodes?: DescribeDBClusterAttributeResponseBodyDBNodes[];
|
|
5128
5701
|
/**
|
|
5129
5702
|
* @remarks
|
|
5130
|
-
*
|
|
5703
|
+
* Database engine type.
|
|
5131
5704
|
*
|
|
5132
5705
|
* @example
|
|
5133
5706
|
* MySQL
|
|
@@ -5135,7 +5708,7 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
5135
5708
|
DBType?: string;
|
|
5136
5709
|
/**
|
|
5137
5710
|
* @remarks
|
|
5138
|
-
*
|
|
5711
|
+
* Database engine version.
|
|
5139
5712
|
*
|
|
5140
5713
|
* @example
|
|
5141
5714
|
* 8.0
|
|
@@ -5146,10 +5719,11 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
5146
5719
|
* The status of the minor version. Valid values:
|
|
5147
5720
|
*
|
|
5148
5721
|
* * **Stable**: The minor version is stable.
|
|
5149
|
-
* * **Old**: The minor version is outdated. We recommend that you
|
|
5150
|
-
* * **HighRisk**: The minor version has critical defects. We recommend that you immediately
|
|
5722
|
+
* * **Old**: The minor version is outdated. We recommend that you update it to the latest version.
|
|
5723
|
+
* * **HighRisk**: The minor version has critical defects. We recommend that you immediately update it to the latest version.
|
|
5724
|
+
* * **Beta**: The minor version is a Beta version.
|
|
5151
5725
|
*
|
|
5152
|
-
* >
|
|
5726
|
+
* > For information about how to update the minor version, see [Minor version update](https://help.aliyun.com/document_detail/158572.html).
|
|
5153
5727
|
*
|
|
5154
5728
|
* @example
|
|
5155
5729
|
* Stable
|
|
@@ -5157,7 +5731,7 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
5157
5731
|
DBVersionStatus?: string;
|
|
5158
5732
|
/**
|
|
5159
5733
|
* @remarks
|
|
5160
|
-
*
|
|
5734
|
+
* Total size of Level 1 backups (snapshots), in bytes.
|
|
5161
5735
|
*
|
|
5162
5736
|
* @example
|
|
5163
5737
|
* 74448896
|
|
@@ -5165,7 +5739,9 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
5165
5739
|
dataLevel1BackupChainSize?: number;
|
|
5166
5740
|
/**
|
|
5167
5741
|
* @remarks
|
|
5168
|
-
*
|
|
5742
|
+
* Data replication relationship mode. Values are as follows:
|
|
5743
|
+
* - **AsyncSync**: Asynchronous
|
|
5744
|
+
* - **SemiSync**: Semi-synchronous
|
|
5169
5745
|
*
|
|
5170
5746
|
* @example
|
|
5171
5747
|
* AsyncSync
|
|
@@ -5173,10 +5749,9 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
5173
5749
|
dataSyncMode?: string;
|
|
5174
5750
|
/**
|
|
5175
5751
|
* @remarks
|
|
5176
|
-
*
|
|
5177
|
-
*
|
|
5178
|
-
* *
|
|
5179
|
-
* * **1**: The cluster is locked and cannot be deleted.
|
|
5752
|
+
* Lock status for cluster deletion, with values as follows:
|
|
5753
|
+
* * **0**: Unlocked, cluster can be deleted.
|
|
5754
|
+
* * **1**: Locked, cluster cannot be deleted.
|
|
5180
5755
|
*
|
|
5181
5756
|
* @example
|
|
5182
5757
|
* 0
|
|
@@ -5184,7 +5759,7 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
5184
5759
|
deletionLock?: number;
|
|
5185
5760
|
/**
|
|
5186
5761
|
* @remarks
|
|
5187
|
-
*
|
|
5762
|
+
* Cluster engine.
|
|
5188
5763
|
*
|
|
5189
5764
|
* @example
|
|
5190
5765
|
* POLARDB
|
|
@@ -5192,9 +5767,9 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
5192
5767
|
engine?: string;
|
|
5193
5768
|
/**
|
|
5194
5769
|
* @remarks
|
|
5195
|
-
*
|
|
5770
|
+
* Cluster expiration time.
|
|
5196
5771
|
*
|
|
5197
|
-
* >
|
|
5772
|
+
* > Only clusters with **Prepaid** (subscription) payment methods return specific parameter values; **Postpaid** (pay-as-you-go) clusters return empty values.
|
|
5198
5773
|
*
|
|
5199
5774
|
* @example
|
|
5200
5775
|
* 2020-11-14T16:00:00Z
|
|
@@ -5202,9 +5777,8 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
5202
5777
|
expireTime?: string;
|
|
5203
5778
|
/**
|
|
5204
5779
|
* @remarks
|
|
5205
|
-
*
|
|
5206
|
-
*
|
|
5207
|
-
* > This parameter is returned only for subscription (**Prepaid**) clusters.
|
|
5780
|
+
* Whether the cluster has expired.
|
|
5781
|
+
* > This parameter is only supported for clusters with **Prepaid** (Subscription) payment methods.
|
|
5208
5782
|
*
|
|
5209
5783
|
* @example
|
|
5210
5784
|
* false
|
|
@@ -5212,20 +5786,28 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
5212
5786
|
expired?: string;
|
|
5213
5787
|
/**
|
|
5214
5788
|
* @remarks
|
|
5215
|
-
*
|
|
5789
|
+
* Whether to replenish resources for the new primary after cross-AZ switch. Values are as follows:
|
|
5790
|
+
* - **true**: Yes
|
|
5791
|
+
* - **false**: No
|
|
5216
5792
|
*
|
|
5217
5793
|
* @example
|
|
5218
5794
|
* false
|
|
5219
5795
|
*/
|
|
5220
5796
|
hasCompleteStandbyRes?: boolean;
|
|
5221
5797
|
/**
|
|
5798
|
+
* @remarks
|
|
5799
|
+
* Whether to enable storage hot backup cluster (and Standby compute nodes). Values are as follows:
|
|
5800
|
+
* - **StandbyClusterON**: Enable storage hot backup/Enable storage hot backup and Standby compute nodes.
|
|
5801
|
+
* - **StandbyClusterOFF**: Disable storage hot backup/Disable storage hot backup and Standby compute nodes.
|
|
5802
|
+
*
|
|
5222
5803
|
* @example
|
|
5223
5804
|
* StandbyClusterON
|
|
5224
5805
|
*/
|
|
5225
5806
|
hotStandbyCluster?: string;
|
|
5807
|
+
imciAutoIndex?: string;
|
|
5226
5808
|
/**
|
|
5227
5809
|
* @remarks
|
|
5228
|
-
* Maximum inodes in file system.
|
|
5810
|
+
* Maximum number of inodes in the file system.
|
|
5229
5811
|
*
|
|
5230
5812
|
* @example
|
|
5231
5813
|
* 6,291,456
|
|
@@ -5233,7 +5815,7 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
5233
5815
|
inodeTotal?: number;
|
|
5234
5816
|
/**
|
|
5235
5817
|
* @remarks
|
|
5236
|
-
*
|
|
5818
|
+
* Current inode usage.
|
|
5237
5819
|
*
|
|
5238
5820
|
* @example
|
|
5239
5821
|
* 4,194,304
|
|
@@ -5241,10 +5823,11 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
5241
5823
|
inodeUsed?: number;
|
|
5242
5824
|
/**
|
|
5243
5825
|
* @remarks
|
|
5244
|
-
* Indicates whether
|
|
5826
|
+
* Indicates whether it is the latest kernel version. Values are as follows:
|
|
5245
5827
|
*
|
|
5246
|
-
*
|
|
5247
|
-
*
|
|
5828
|
+
* - **true**: Yes
|
|
5829
|
+
*
|
|
5830
|
+
* - **false**: No
|
|
5248
5831
|
*
|
|
5249
5832
|
* @example
|
|
5250
5833
|
* false
|
|
@@ -5252,10 +5835,10 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
5252
5835
|
isLatestVersion?: boolean;
|
|
5253
5836
|
/**
|
|
5254
5837
|
* @remarks
|
|
5255
|
-
* Indicates whether
|
|
5838
|
+
* Indicates whether it is the latest version of the database proxy, with possible values as follows:
|
|
5256
5839
|
*
|
|
5257
|
-
*
|
|
5258
|
-
*
|
|
5840
|
+
* - **true**: Yes
|
|
5841
|
+
* - **false**: No
|
|
5259
5842
|
*
|
|
5260
5843
|
* @example
|
|
5261
5844
|
* false
|
|
@@ -5263,11 +5846,11 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
5263
5846
|
isProxyLatestVersion?: boolean;
|
|
5264
5847
|
/**
|
|
5265
5848
|
* @remarks
|
|
5266
|
-
*
|
|
5849
|
+
* Lock mode. Possible values are as follows:
|
|
5267
5850
|
*
|
|
5268
|
-
*
|
|
5269
|
-
*
|
|
5270
|
-
*
|
|
5851
|
+
* - **Unlock**: Unlocked.
|
|
5852
|
+
* - **ManualLock**: Manually triggered lock.
|
|
5853
|
+
* - **LockByExpiration**: Automatic cluster lock upon expiration.
|
|
5271
5854
|
*
|
|
5272
5855
|
* @example
|
|
5273
5856
|
* Unlock
|
|
@@ -5275,36 +5858,46 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
5275
5858
|
lockMode?: string;
|
|
5276
5859
|
/**
|
|
5277
5860
|
* @remarks
|
|
5278
|
-
* The maintenance window
|
|
5861
|
+
* The maintenance window for the cluster, formatted as `HH:mmZ-HH:mmZ` (UTC time). For example, `16:00Z-17:00Z` indicates that routine maintenance can be performed from 0:00 to 1:00 (UTC+08:00).
|
|
5279
5862
|
*
|
|
5280
5863
|
* @example
|
|
5281
5864
|
* 18:00Z-19:00Z
|
|
5282
5865
|
*/
|
|
5283
5866
|
maintainTime?: string;
|
|
5284
5867
|
/**
|
|
5868
|
+
* @remarks
|
|
5869
|
+
* Orca function with possible values as follows:
|
|
5870
|
+
*
|
|
5871
|
+
* - **on**: Enabled
|
|
5872
|
+
*
|
|
5873
|
+
* - **off**: Disabled
|
|
5874
|
+
*
|
|
5285
5875
|
* @example
|
|
5286
5876
|
* ON
|
|
5287
5877
|
*/
|
|
5288
5878
|
orca?: string;
|
|
5289
5879
|
/**
|
|
5290
5880
|
* @remarks
|
|
5291
|
-
*
|
|
5881
|
+
* Payment type. Possible values are:
|
|
5292
5882
|
*
|
|
5293
|
-
*
|
|
5294
|
-
*
|
|
5883
|
+
* - **Postpaid**: Pay-As-You-Go
|
|
5884
|
+
* - **Prepaid**: Prepaid (Subscription).
|
|
5295
5885
|
*
|
|
5296
5886
|
* @example
|
|
5297
5887
|
* Prepaid
|
|
5298
5888
|
*/
|
|
5299
5889
|
payType?: string;
|
|
5300
5890
|
/**
|
|
5891
|
+
* @remarks
|
|
5892
|
+
* Describes the preconfigured read and write IOPS for ESSD AutoPL cloud disks. Possible values: 0 to min{50,000, 1000*capacity - baseline performance}.<br>Baseline performance = min{1,800 + 50*capacity, 50000}.<br>Note: This parameter is supported only when StorageType is ESSDAUTOPL.
|
|
5893
|
+
*
|
|
5301
5894
|
* @example
|
|
5302
5895
|
* 2500
|
|
5303
5896
|
*/
|
|
5304
5897
|
provisionedIops?: string;
|
|
5305
5898
|
/**
|
|
5306
5899
|
* @remarks
|
|
5307
|
-
*
|
|
5900
|
+
* Number of CPU cores for the database proxy.
|
|
5308
5901
|
*
|
|
5309
5902
|
* @example
|
|
5310
5903
|
* 4
|
|
@@ -5312,7 +5905,7 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
5312
5905
|
proxyCpuCores?: string;
|
|
5313
5906
|
/**
|
|
5314
5907
|
* @remarks
|
|
5315
|
-
*
|
|
5908
|
+
* Serverless type for the database proxy. Currently, the value is fixed to AgileServerless.
|
|
5316
5909
|
*
|
|
5317
5910
|
* @example
|
|
5318
5911
|
* AgileServerless
|
|
@@ -5320,7 +5913,7 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
5320
5913
|
proxyServerlessType?: string;
|
|
5321
5914
|
/**
|
|
5322
5915
|
* @remarks
|
|
5323
|
-
*
|
|
5916
|
+
* Standard configuration CPU cores for the database proxy.
|
|
5324
5917
|
*
|
|
5325
5918
|
* @example
|
|
5326
5919
|
* 2
|
|
@@ -5328,19 +5921,19 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
5328
5921
|
proxyStandardCpuCores?: string;
|
|
5329
5922
|
/**
|
|
5330
5923
|
* @remarks
|
|
5331
|
-
*
|
|
5924
|
+
* Status of the database proxy. Possible values include:
|
|
5332
5925
|
*
|
|
5333
|
-
*
|
|
5334
|
-
*
|
|
5335
|
-
*
|
|
5336
|
-
*
|
|
5337
|
-
*
|
|
5338
|
-
*
|
|
5339
|
-
*
|
|
5340
|
-
*
|
|
5341
|
-
*
|
|
5342
|
-
*
|
|
5343
|
-
*
|
|
5926
|
+
* - **Creating**: Creating
|
|
5927
|
+
* - **Running**: Running
|
|
5928
|
+
* - **Deleting**: Releasing
|
|
5929
|
+
* - **Rebooting**: Restarting
|
|
5930
|
+
* - **DBNodeCreating**: Adding nodes
|
|
5931
|
+
* - **DBNodeDeleting**: Deleting nodes
|
|
5932
|
+
* - **ClassChanging**: Changing node specifications
|
|
5933
|
+
* - **NetAddressCreating**: Creating network connections
|
|
5934
|
+
* - **NetAddressDeleting**: Deleting network connections
|
|
5935
|
+
* - **NetAddressModifying**: Modifying network connections
|
|
5936
|
+
* - **Deleted**: Released
|
|
5344
5937
|
*
|
|
5345
5938
|
* @example
|
|
5346
5939
|
* Running
|
|
@@ -5348,10 +5941,10 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
5348
5941
|
proxyStatus?: string;
|
|
5349
5942
|
/**
|
|
5350
5943
|
* @remarks
|
|
5351
|
-
*
|
|
5944
|
+
* Database proxy types, with the following values:
|
|
5352
5945
|
*
|
|
5353
|
-
*
|
|
5354
|
-
*
|
|
5946
|
+
* - **Exclusive**: Enterprise Exclusive Edition
|
|
5947
|
+
* - **General**: Enterprise General Purpose Edition
|
|
5355
5948
|
*
|
|
5356
5949
|
* @example
|
|
5357
5950
|
* Exclusive
|
|
@@ -5359,7 +5952,7 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
5359
5952
|
proxyType?: string;
|
|
5360
5953
|
/**
|
|
5361
5954
|
* @remarks
|
|
5362
|
-
*
|
|
5955
|
+
* Region ID.
|
|
5363
5956
|
*
|
|
5364
5957
|
* @example
|
|
5365
5958
|
* cn-hangzhou
|
|
@@ -5367,7 +5960,7 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
5367
5960
|
regionId?: string;
|
|
5368
5961
|
/**
|
|
5369
5962
|
* @remarks
|
|
5370
|
-
*
|
|
5963
|
+
* Request ID.
|
|
5371
5964
|
*
|
|
5372
5965
|
* @example
|
|
5373
5966
|
* 074467EF-86B9-4C23-ACBF-E9B81A******
|
|
@@ -5375,25 +5968,34 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
5375
5968
|
requestId?: string;
|
|
5376
5969
|
/**
|
|
5377
5970
|
* @remarks
|
|
5378
|
-
*
|
|
5971
|
+
* Resource group ID.
|
|
5379
5972
|
*
|
|
5380
5973
|
* @example
|
|
5381
5974
|
* rg-***************
|
|
5382
5975
|
*/
|
|
5383
5976
|
resourceGroupId?: string;
|
|
5384
5977
|
/**
|
|
5978
|
+
* @remarks
|
|
5979
|
+
* If RestoreType is **RestoreByTime** or **RestoreByTimeOss**, this value represents the recovery time point. If RestoreType is **RestoreByBackupSet** or **RestoreByBackupSetOss**, this value indicates the ID of the backup set on which the recovery is based.
|
|
5980
|
+
* <note>Only clusters restored from a backup set or time point after June 1, 2024, support this parameter.</note>
|
|
5981
|
+
*
|
|
5385
5982
|
* @example
|
|
5386
5983
|
* 2179639137
|
|
5387
5984
|
*/
|
|
5388
5985
|
restoreDataPoint?: string;
|
|
5389
5986
|
/**
|
|
5987
|
+
* @remarks
|
|
5988
|
+
* Cluster recovery method, with possible values:
|
|
5989
|
+
* * **RestoreByTime**: Restore from a time point based on primary backup. * **RestoreByBackupSet**: Restore from a backup set based on primary backup. * **RestoreByTimeOss**: Restore from a time point based on secondary backup. * **RestoreByBackupSetOss**: Restore from a backup set based on secondary backup. * **CloneFromSourceCluster**: Clone from the source cluster.
|
|
5990
|
+
* <note>This parameter is only supported for clusters restored from a backup set or time point after June 1, 2024.</note>
|
|
5991
|
+
*
|
|
5390
5992
|
* @example
|
|
5391
5993
|
* RestoreByTime
|
|
5392
5994
|
*/
|
|
5393
5995
|
restoreType?: string;
|
|
5394
5996
|
/**
|
|
5395
5997
|
* @remarks
|
|
5396
|
-
*
|
|
5998
|
+
* Storage amount of SQL, in bytes. If the value is -1, it indicates no data.
|
|
5397
5999
|
*
|
|
5398
6000
|
* @example
|
|
5399
6001
|
* 0
|
|
@@ -5401,21 +6003,37 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
5401
6003
|
SQLSize?: number;
|
|
5402
6004
|
/**
|
|
5403
6005
|
* @remarks
|
|
5404
|
-
*
|
|
6006
|
+
* Serverless type. Valid values are as follows:
|
|
6007
|
+
* - AgileServerless: Agile - SteadyServerless: Stable
|
|
5405
6008
|
*
|
|
5406
6009
|
* @example
|
|
5407
6010
|
* AgileServerless
|
|
5408
6011
|
*/
|
|
5409
6012
|
serverlessType?: string;
|
|
5410
6013
|
/**
|
|
6014
|
+
* @remarks
|
|
6015
|
+
* Source cluster ID. <note>Clusters restored from backup sets or specific points in time after June 1, 2024, support this parameter.</note>
|
|
6016
|
+
*
|
|
5411
6017
|
* @example
|
|
5412
6018
|
* pc-pz51ziv48317b2880
|
|
5413
6019
|
*/
|
|
5414
6020
|
sourceDBCluster?: string;
|
|
6021
|
+
/**
|
|
6022
|
+
* @remarks
|
|
6023
|
+
* The region ID of the source cluster.
|
|
6024
|
+
*
|
|
6025
|
+
* > This parameter is returned only if the source cluster ID exists.
|
|
6026
|
+
*
|
|
6027
|
+
* @example
|
|
6028
|
+
* cn-beijing
|
|
6029
|
+
*/
|
|
5415
6030
|
sourceRegionId?: string;
|
|
5416
6031
|
/**
|
|
5417
6032
|
* @remarks
|
|
5418
|
-
*
|
|
6033
|
+
* Cross-AZ disaster recovery mode. Values are as follows:
|
|
6034
|
+
* - **ON**: Enable cross-AZ disaster recovery mode.
|
|
6035
|
+
* - **OFF**: Disable cross-AZ disaster recovery mode.
|
|
6036
|
+
* - **0**: Customer drill mode.
|
|
5419
6037
|
*
|
|
5420
6038
|
* @example
|
|
5421
6039
|
* OFF
|
|
@@ -5423,7 +6041,7 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
5423
6041
|
standbyHAMode?: string;
|
|
5424
6042
|
/**
|
|
5425
6043
|
* @remarks
|
|
5426
|
-
* The maximum storage capacity of the current cluster specification
|
|
6044
|
+
* The maximum storage capacity of the current cluster specification, in bytes.
|
|
5427
6045
|
*
|
|
5428
6046
|
* @example
|
|
5429
6047
|
* 10995116277760
|
|
@@ -5431,10 +6049,8 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
5431
6049
|
storageMax?: number;
|
|
5432
6050
|
/**
|
|
5433
6051
|
* @remarks
|
|
5434
|
-
*
|
|
5435
|
-
*
|
|
5436
|
-
* * **Postpaid**: pay-as-you-go
|
|
5437
|
-
* * **Prepaid**: subscription.
|
|
6052
|
+
* Storage billing type. Valid values are as follows:
|
|
6053
|
+
* - **Postpaid**:Pay-as-you-go (by capacity). - **Prepaid**:Subscription (by space).
|
|
5438
6054
|
*
|
|
5439
6055
|
* @example
|
|
5440
6056
|
* Prepaid
|
|
@@ -5442,7 +6058,7 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
5442
6058
|
storagePayType?: string;
|
|
5443
6059
|
/**
|
|
5444
6060
|
* @remarks
|
|
5445
|
-
*
|
|
6061
|
+
* Storage space for pay-by-space (subscription) billing. Unit: Byte.
|
|
5446
6062
|
*
|
|
5447
6063
|
* @example
|
|
5448
6064
|
* 50
|
|
@@ -5450,7 +6066,7 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
5450
6066
|
storageSpace?: number;
|
|
5451
6067
|
/**
|
|
5452
6068
|
* @remarks
|
|
5453
|
-
*
|
|
6069
|
+
* Storage type, with a fixed value of **HighPerformance**.
|
|
5454
6070
|
*
|
|
5455
6071
|
* @example
|
|
5456
6072
|
* HighPerformance
|
|
@@ -5458,7 +6074,7 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
5458
6074
|
storageType?: string;
|
|
5459
6075
|
/**
|
|
5460
6076
|
* @remarks
|
|
5461
|
-
*
|
|
6077
|
+
* Amount of used storage space, in bytes.
|
|
5462
6078
|
*
|
|
5463
6079
|
* @example
|
|
5464
6080
|
* 3012558848
|
|
@@ -5466,10 +6082,9 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
5466
6082
|
storageUsed?: number;
|
|
5467
6083
|
/**
|
|
5468
6084
|
* @remarks
|
|
5469
|
-
* Indicates whether
|
|
5470
|
-
*
|
|
5471
|
-
*
|
|
5472
|
-
* * **OFF**
|
|
6085
|
+
* Indicates whether multi-AZ data strong consistency is enabled for the cluster. The value ranges are as follows:
|
|
6086
|
+
* - **ON**: Indicates that multi-AZ data strong consistency is enabled, applicable to the Standard 3AZ scenario.
|
|
6087
|
+
* - **OFF**: Indicates that multi-AZ data strong consistency is not enabled.
|
|
5473
6088
|
*
|
|
5474
6089
|
* @example
|
|
5475
6090
|
* ON
|
|
@@ -5477,26 +6092,32 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
5477
6092
|
strictConsistency?: string;
|
|
5478
6093
|
/**
|
|
5479
6094
|
* @remarks
|
|
5480
|
-
*
|
|
5481
|
-
*
|
|
5482
|
-
* *
|
|
5483
|
-
* * **General**: general-purpose.
|
|
6095
|
+
* Specification type of compute nodes, with possible values as follows:
|
|
6096
|
+
* * **Exclusive**: Dedicated specification
|
|
6097
|
+
* * **General**: General-purpose specification
|
|
5484
6098
|
*
|
|
5485
|
-
* > This parameter is supported only for PolarDB
|
|
6099
|
+
* > This parameter is supported only for PolarDB MySQL Edition with the product series set to Cluster Edition.
|
|
5486
6100
|
*
|
|
5487
6101
|
* @example
|
|
5488
6102
|
* Exclusive
|
|
5489
6103
|
*/
|
|
5490
6104
|
subCategory?: string;
|
|
6105
|
+
/**
|
|
6106
|
+
* @remarks
|
|
6107
|
+
* Indicates whether the failover with hot replica feature is supported if the cluster has In-Memory Column Index (IMCI) nodes.
|
|
6108
|
+
*
|
|
6109
|
+
* @example
|
|
6110
|
+
* ON
|
|
6111
|
+
*/
|
|
5491
6112
|
supportInstantSwitchWithImci?: string;
|
|
5492
6113
|
/**
|
|
5493
6114
|
* @remarks
|
|
5494
|
-
* Details
|
|
6115
|
+
* Details of tags.
|
|
5495
6116
|
*/
|
|
5496
6117
|
tags?: DescribeDBClusterAttributeResponseBodyTags[];
|
|
5497
6118
|
/**
|
|
5498
6119
|
* @remarks
|
|
5499
|
-
*
|
|
6120
|
+
* VPC ID.
|
|
5500
6121
|
*
|
|
5501
6122
|
* @example
|
|
5502
6123
|
* vpc-*******************
|
|
@@ -5504,7 +6125,7 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
5504
6125
|
VPCId?: string;
|
|
5505
6126
|
/**
|
|
5506
6127
|
* @remarks
|
|
5507
|
-
*
|
|
6128
|
+
* VSwitch ID.
|
|
5508
6129
|
*
|
|
5509
6130
|
* @example
|
|
5510
6131
|
* vsw-*********************
|
|
@@ -5512,7 +6133,7 @@ export declare class DescribeDBClusterAttributeResponseBody extends $tea.Model {
|
|
|
5512
6133
|
vSwitchId?: string;
|
|
5513
6134
|
/**
|
|
5514
6135
|
* @remarks
|
|
5515
|
-
*
|
|
6136
|
+
* Availability Zone IDs.
|
|
5516
6137
|
*
|
|
5517
6138
|
* @example
|
|
5518
6139
|
* cn-hangzhou-i,cn-hangzhou-g
|
|
@@ -5904,7 +6525,7 @@ export declare class DescribeDBClusterEndpointsRequest extends $tea.Model {
|
|
|
5904
6525
|
export declare class DescribeDBClusterEndpointsResponseBody extends $tea.Model {
|
|
5905
6526
|
/**
|
|
5906
6527
|
* @remarks
|
|
5907
|
-
* The
|
|
6528
|
+
* The information about the endpoints.
|
|
5908
6529
|
*/
|
|
5909
6530
|
items?: DescribeDBClusterEndpointsResponseBodyItems[];
|
|
5910
6531
|
/**
|
|
@@ -6372,6 +6993,13 @@ export declare class DescribeDBClusterPerformanceRequest extends $tea.Model {
|
|
|
6372
6993
|
* 2020-09-23T01:01Z
|
|
6373
6994
|
*/
|
|
6374
6995
|
startTime?: string;
|
|
6996
|
+
/**
|
|
6997
|
+
* @remarks
|
|
6998
|
+
* The Query Type
|
|
6999
|
+
*
|
|
7000
|
+
* @example
|
|
7001
|
+
* orca
|
|
7002
|
+
*/
|
|
6375
7003
|
type?: string;
|
|
6376
7004
|
static names(): {
|
|
6377
7005
|
[key: string]: string;
|
|
@@ -6696,6 +7324,19 @@ export declare class DescribeDBClusterTDERequest extends $tea.Model {
|
|
|
6696
7324
|
});
|
|
6697
7325
|
}
|
|
6698
7326
|
export declare class DescribeDBClusterTDEResponseBody extends $tea.Model {
|
|
7327
|
+
/**
|
|
7328
|
+
* @remarks
|
|
7329
|
+
* Indicates whether automatic key rotation is allowed. Valid values:
|
|
7330
|
+
*
|
|
7331
|
+
* * **Enabled**: Automatic key rotation is allowed.
|
|
7332
|
+
* * **Disabled**: Automatic key rotation is not allowed.
|
|
7333
|
+
*
|
|
7334
|
+
* > This parameter is returned only for a PolarDB for PostgreSQL or PolarDB for PostgreSQL (Compatible with Oracle) cluster.
|
|
7335
|
+
*
|
|
7336
|
+
* @example
|
|
7337
|
+
* Enabled
|
|
7338
|
+
*/
|
|
7339
|
+
automaticRotation?: string;
|
|
6699
7340
|
/**
|
|
6700
7341
|
* @remarks
|
|
6701
7342
|
* The ID of the cluster.
|
|
@@ -6711,6 +7352,8 @@ export declare class DescribeDBClusterTDEResponseBody extends $tea.Model {
|
|
|
6711
7352
|
* * **ON**
|
|
6712
7353
|
* * **OFF**
|
|
6713
7354
|
*
|
|
7355
|
+
* > This parameter is returned only for a PolarDB for MySQL cluster.
|
|
7356
|
+
*
|
|
6714
7357
|
* @example
|
|
6715
7358
|
* ON
|
|
6716
7359
|
*/
|
|
@@ -6731,6 +7374,18 @@ export declare class DescribeDBClusterTDEResponseBody extends $tea.Model {
|
|
|
6731
7374
|
* E37D1508-EC3B-4E06-A24A-C7AC31******
|
|
6732
7375
|
*/
|
|
6733
7376
|
requestId?: string;
|
|
7377
|
+
/**
|
|
7378
|
+
* @remarks
|
|
7379
|
+
* The automatic key rotation period configured in Key Management Service (KMS). If no automatic key rotation period is configured, 0s is returned. Unit: seconds.
|
|
7380
|
+
*
|
|
7381
|
+
* For example, if the rotation period is set to 7 days, 604800s is returned.
|
|
7382
|
+
*
|
|
7383
|
+
* > This parameter is returned only for a PolarDB for PostgreSQL or PolarDB for PostgreSQL (Compatible with Oracle) cluster whose AutomaticRotation parameter is set to Enabled.
|
|
7384
|
+
*
|
|
7385
|
+
* @example
|
|
7386
|
+
* 604800s
|
|
7387
|
+
*/
|
|
7388
|
+
rotationInterval?: string;
|
|
6734
7389
|
/**
|
|
6735
7390
|
* @remarks
|
|
6736
7391
|
* The region where the TDE key resides.
|
|
@@ -6852,6 +7507,10 @@ export declare class DescribeDBClusterVersionResponseBody extends $tea.Model {
|
|
|
6852
7507
|
* 8.0.1.1.7
|
|
6853
7508
|
*/
|
|
6854
7509
|
DBRevisionVersion?: string;
|
|
7510
|
+
/**
|
|
7511
|
+
* @remarks
|
|
7512
|
+
* The versions to which the cluster can be upgraded.
|
|
7513
|
+
*/
|
|
6855
7514
|
DBRevisionVersionList?: DescribeDBClusterVersionResponseBodyDBRevisionVersionList[];
|
|
6856
7515
|
/**
|
|
6857
7516
|
* @remarks
|
|
@@ -7060,7 +7719,7 @@ export declare class DescribeDBClustersRequest extends $tea.Model {
|
|
|
7060
7719
|
ownerId?: number;
|
|
7061
7720
|
/**
|
|
7062
7721
|
* @remarks
|
|
7063
|
-
* The page number. The value must be
|
|
7722
|
+
* The page number. The value must be an integer that is greater than 0. Default value: **1**.
|
|
7064
7723
|
*
|
|
7065
7724
|
* @example
|
|
7066
7725
|
* 10
|
|
@@ -7068,7 +7727,7 @@ export declare class DescribeDBClustersRequest extends $tea.Model {
|
|
|
7068
7727
|
pageNumber?: number;
|
|
7069
7728
|
/**
|
|
7070
7729
|
* @remarks
|
|
7071
|
-
* The number of entries per page. Valid values: **30**, **50**,
|
|
7730
|
+
* The number of entries per page. Valid values: **30**, **50**, and **100**.
|
|
7072
7731
|
*
|
|
7073
7732
|
* Default value: **30**.
|
|
7074
7733
|
*
|
|
@@ -7845,6 +8504,15 @@ export declare class DescribeDBProxyPerformanceRequest extends $tea.Model {
|
|
|
7845
8504
|
* pe-****************
|
|
7846
8505
|
*/
|
|
7847
8506
|
DBEndpointId?: string;
|
|
8507
|
+
/**
|
|
8508
|
+
* @remarks
|
|
8509
|
+
* Database instance node ID.
|
|
8510
|
+
*
|
|
8511
|
+
* > It is used to query the metrics of Proxy on different DB nodes, supporting metrics such as PolarProxy_DBConns, PolarProxy_DBQps, and PolarProxy_DBActionOps.
|
|
8512
|
+
*
|
|
8513
|
+
* @example
|
|
8514
|
+
* pi-******************
|
|
8515
|
+
*/
|
|
7848
8516
|
DBNodeId?: string;
|
|
7849
8517
|
/**
|
|
7850
8518
|
* @remarks
|
|
@@ -8458,6 +9126,13 @@ export declare class DescribeGlobalDatabaseNetworkResponseBody extends $tea.Mode
|
|
|
8458
9126
|
* active
|
|
8459
9127
|
*/
|
|
8460
9128
|
GDNStatus?: string;
|
|
9129
|
+
/**
|
|
9130
|
+
* @remarks
|
|
9131
|
+
* The global domain name.
|
|
9132
|
+
*
|
|
9133
|
+
* @example
|
|
9134
|
+
* [gdnid].gdn.rds.aliyuncs.com
|
|
9135
|
+
*/
|
|
8461
9136
|
globalDomainName?: string;
|
|
8462
9137
|
/**
|
|
8463
9138
|
* @remarks
|
|
@@ -8632,12 +9307,186 @@ export declare class DescribeGlobalDatabaseNetworksResponseBody extends $tea.Mod
|
|
|
8632
9307
|
[key: string]: any;
|
|
8633
9308
|
});
|
|
8634
9309
|
}
|
|
8635
|
-
export declare class DescribeGlobalDatabaseNetworksResponse extends $tea.Model {
|
|
9310
|
+
export declare class DescribeGlobalDatabaseNetworksResponse extends $tea.Model {
|
|
9311
|
+
headers?: {
|
|
9312
|
+
[key: string]: string;
|
|
9313
|
+
};
|
|
9314
|
+
statusCode?: number;
|
|
9315
|
+
body?: DescribeGlobalDatabaseNetworksResponseBody;
|
|
9316
|
+
static names(): {
|
|
9317
|
+
[key: string]: string;
|
|
9318
|
+
};
|
|
9319
|
+
static types(): {
|
|
9320
|
+
[key: string]: any;
|
|
9321
|
+
};
|
|
9322
|
+
constructor(map?: {
|
|
9323
|
+
[key: string]: any;
|
|
9324
|
+
});
|
|
9325
|
+
}
|
|
9326
|
+
export declare class DescribeGlobalSecurityIPGroupRequest extends $tea.Model {
|
|
9327
|
+
/**
|
|
9328
|
+
* @remarks
|
|
9329
|
+
* The ID of the IP whitelist template.
|
|
9330
|
+
*
|
|
9331
|
+
* @example
|
|
9332
|
+
* g-zsldxfiwjmti0kcm****
|
|
9333
|
+
*/
|
|
9334
|
+
globalSecurityGroupId?: string;
|
|
9335
|
+
ownerAccount?: string;
|
|
9336
|
+
ownerId?: number;
|
|
9337
|
+
/**
|
|
9338
|
+
* @remarks
|
|
9339
|
+
* The region ID of the IP whitelist template.
|
|
9340
|
+
*
|
|
9341
|
+
* This parameter is required.
|
|
9342
|
+
*
|
|
9343
|
+
* @example
|
|
9344
|
+
* cn-hangzhou
|
|
9345
|
+
*/
|
|
9346
|
+
regionId?: string;
|
|
9347
|
+
/**
|
|
9348
|
+
* @remarks
|
|
9349
|
+
* The ID of the resource group.
|
|
9350
|
+
*
|
|
9351
|
+
* @example
|
|
9352
|
+
* rg-************
|
|
9353
|
+
*/
|
|
9354
|
+
resourceGroupId?: string;
|
|
9355
|
+
resourceOwnerAccount?: string;
|
|
9356
|
+
resourceOwnerId?: number;
|
|
9357
|
+
securityToken?: string;
|
|
9358
|
+
static names(): {
|
|
9359
|
+
[key: string]: string;
|
|
9360
|
+
};
|
|
9361
|
+
static types(): {
|
|
9362
|
+
[key: string]: any;
|
|
9363
|
+
};
|
|
9364
|
+
constructor(map?: {
|
|
9365
|
+
[key: string]: any;
|
|
9366
|
+
});
|
|
9367
|
+
}
|
|
9368
|
+
export declare class DescribeGlobalSecurityIPGroupResponseBody extends $tea.Model {
|
|
9369
|
+
/**
|
|
9370
|
+
* @remarks
|
|
9371
|
+
* The details of the global IP whitelist template.
|
|
9372
|
+
*/
|
|
9373
|
+
globalSecurityIPGroup?: DescribeGlobalSecurityIPGroupResponseBodyGlobalSecurityIPGroup[];
|
|
9374
|
+
/**
|
|
9375
|
+
* @remarks
|
|
9376
|
+
* The ID of the request.
|
|
9377
|
+
*
|
|
9378
|
+
* @example
|
|
9379
|
+
* 9B7BFB11-C077-4FE3-B051-F69CEB******
|
|
9380
|
+
*/
|
|
9381
|
+
requestId?: string;
|
|
9382
|
+
static names(): {
|
|
9383
|
+
[key: string]: string;
|
|
9384
|
+
};
|
|
9385
|
+
static types(): {
|
|
9386
|
+
[key: string]: any;
|
|
9387
|
+
};
|
|
9388
|
+
constructor(map?: {
|
|
9389
|
+
[key: string]: any;
|
|
9390
|
+
});
|
|
9391
|
+
}
|
|
9392
|
+
export declare class DescribeGlobalSecurityIPGroupResponse extends $tea.Model {
|
|
9393
|
+
headers?: {
|
|
9394
|
+
[key: string]: string;
|
|
9395
|
+
};
|
|
9396
|
+
statusCode?: number;
|
|
9397
|
+
body?: DescribeGlobalSecurityIPGroupResponseBody;
|
|
9398
|
+
static names(): {
|
|
9399
|
+
[key: string]: string;
|
|
9400
|
+
};
|
|
9401
|
+
static types(): {
|
|
9402
|
+
[key: string]: any;
|
|
9403
|
+
};
|
|
9404
|
+
constructor(map?: {
|
|
9405
|
+
[key: string]: any;
|
|
9406
|
+
});
|
|
9407
|
+
}
|
|
9408
|
+
export declare class DescribeGlobalSecurityIPGroupRelationRequest extends $tea.Model {
|
|
9409
|
+
/**
|
|
9410
|
+
* @remarks
|
|
9411
|
+
* The ID of cluster.
|
|
9412
|
+
*
|
|
9413
|
+
* This parameter is required.
|
|
9414
|
+
*
|
|
9415
|
+
* @example
|
|
9416
|
+
* pc-*****************
|
|
9417
|
+
*/
|
|
9418
|
+
DBClusterId?: string;
|
|
9419
|
+
ownerAccount?: string;
|
|
9420
|
+
ownerId?: number;
|
|
9421
|
+
/**
|
|
9422
|
+
* @remarks
|
|
9423
|
+
* The region ID of the IP whitelist template.
|
|
9424
|
+
*
|
|
9425
|
+
* This parameter is required.
|
|
9426
|
+
*
|
|
9427
|
+
* @example
|
|
9428
|
+
* cn-hangzhou
|
|
9429
|
+
*/
|
|
9430
|
+
regionId?: string;
|
|
9431
|
+
/**
|
|
9432
|
+
* @remarks
|
|
9433
|
+
* The ID of the resource group.
|
|
9434
|
+
*
|
|
9435
|
+
* @example
|
|
9436
|
+
* rg-**********
|
|
9437
|
+
*/
|
|
9438
|
+
resourceGroupId?: string;
|
|
9439
|
+
resourceOwnerAccount?: string;
|
|
9440
|
+
resourceOwnerId?: number;
|
|
9441
|
+
securityToken?: string;
|
|
9442
|
+
static names(): {
|
|
9443
|
+
[key: string]: string;
|
|
9444
|
+
};
|
|
9445
|
+
static types(): {
|
|
9446
|
+
[key: string]: any;
|
|
9447
|
+
};
|
|
9448
|
+
constructor(map?: {
|
|
9449
|
+
[key: string]: any;
|
|
9450
|
+
});
|
|
9451
|
+
}
|
|
9452
|
+
export declare class DescribeGlobalSecurityIPGroupRelationResponseBody extends $tea.Model {
|
|
9453
|
+
/**
|
|
9454
|
+
* @remarks
|
|
9455
|
+
* The ID of cluster.
|
|
9456
|
+
*
|
|
9457
|
+
* @example
|
|
9458
|
+
* pc-*****************
|
|
9459
|
+
*/
|
|
9460
|
+
DBClusterId?: string;
|
|
9461
|
+
/**
|
|
9462
|
+
* @remarks
|
|
9463
|
+
* The details of the global IP whitelist template.
|
|
9464
|
+
*/
|
|
9465
|
+
globalSecurityIPGroupRel?: DescribeGlobalSecurityIPGroupRelationResponseBodyGlobalSecurityIPGroupRel[];
|
|
9466
|
+
/**
|
|
9467
|
+
* @remarks
|
|
9468
|
+
* The ID of the request.
|
|
9469
|
+
*
|
|
9470
|
+
* @example
|
|
9471
|
+
* 9B7BFB11-C077-4FE3-B051-F69CEB******
|
|
9472
|
+
*/
|
|
9473
|
+
requestId?: string;
|
|
9474
|
+
static names(): {
|
|
9475
|
+
[key: string]: string;
|
|
9476
|
+
};
|
|
9477
|
+
static types(): {
|
|
9478
|
+
[key: string]: any;
|
|
9479
|
+
};
|
|
9480
|
+
constructor(map?: {
|
|
9481
|
+
[key: string]: any;
|
|
9482
|
+
});
|
|
9483
|
+
}
|
|
9484
|
+
export declare class DescribeGlobalSecurityIPGroupRelationResponse extends $tea.Model {
|
|
8636
9485
|
headers?: {
|
|
8637
9486
|
[key: string]: string;
|
|
8638
9487
|
};
|
|
8639
9488
|
statusCode?: number;
|
|
8640
|
-
body?:
|
|
9489
|
+
body?: DescribeGlobalSecurityIPGroupRelationResponseBody;
|
|
8641
9490
|
static names(): {
|
|
8642
9491
|
[key: string]: string;
|
|
8643
9492
|
};
|
|
@@ -8648,38 +9497,19 @@ export declare class DescribeGlobalDatabaseNetworksResponse extends $tea.Model {
|
|
|
8648
9497
|
[key: string]: any;
|
|
8649
9498
|
});
|
|
8650
9499
|
}
|
|
8651
|
-
export declare class
|
|
9500
|
+
export declare class DescribeLicenseOrderDetailsRequest extends $tea.Model {
|
|
8652
9501
|
/**
|
|
8653
9502
|
* @remarks
|
|
8654
|
-
*
|
|
9503
|
+
* This parameter is required.
|
|
8655
9504
|
*
|
|
8656
9505
|
* @example
|
|
8657
|
-
*
|
|
9506
|
+
* 239618016570503
|
|
8658
9507
|
*/
|
|
8659
|
-
|
|
9508
|
+
aliyunOrderId?: string;
|
|
8660
9509
|
ownerAccount?: string;
|
|
8661
9510
|
ownerId?: number;
|
|
8662
|
-
/**
|
|
8663
|
-
* @remarks
|
|
8664
|
-
* The region ID of the IP whitelist template.
|
|
8665
|
-
*
|
|
8666
|
-
* This parameter is required.
|
|
8667
|
-
*
|
|
8668
|
-
* @example
|
|
8669
|
-
* cn-hangzhou
|
|
8670
|
-
*/
|
|
8671
|
-
regionId?: string;
|
|
8672
|
-
/**
|
|
8673
|
-
* @remarks
|
|
8674
|
-
* The ID of the resource group.
|
|
8675
|
-
*
|
|
8676
|
-
* @example
|
|
8677
|
-
* rg-************
|
|
8678
|
-
*/
|
|
8679
|
-
resourceGroupId?: string;
|
|
8680
9511
|
resourceOwnerAccount?: string;
|
|
8681
9512
|
resourceOwnerId?: number;
|
|
8682
|
-
securityToken?: string;
|
|
8683
9513
|
static names(): {
|
|
8684
9514
|
[key: string]: string;
|
|
8685
9515
|
};
|
|
@@ -8690,20 +9520,77 @@ export declare class DescribeGlobalSecurityIPGroupRequest extends $tea.Model {
|
|
|
8690
9520
|
[key: string]: any;
|
|
8691
9521
|
});
|
|
8692
9522
|
}
|
|
8693
|
-
export declare class
|
|
9523
|
+
export declare class DescribeLicenseOrderDetailsResponseBody extends $tea.Model {
|
|
8694
9524
|
/**
|
|
8695
|
-
* @
|
|
8696
|
-
*
|
|
9525
|
+
* @example
|
|
9526
|
+
* 2
|
|
8697
9527
|
*/
|
|
8698
|
-
|
|
9528
|
+
activatedCodeCount?: number;
|
|
8699
9529
|
/**
|
|
8700
|
-
* @remarks
|
|
8701
|
-
* The ID of the request.
|
|
8702
|
-
*
|
|
8703
9530
|
* @example
|
|
8704
|
-
*
|
|
9531
|
+
* 8
|
|
9532
|
+
*/
|
|
9533
|
+
activationCodeQuota?: number;
|
|
9534
|
+
/**
|
|
9535
|
+
* @example
|
|
9536
|
+
* 239618016570503
|
|
9537
|
+
*/
|
|
9538
|
+
aliyunOrderId?: string;
|
|
9539
|
+
/**
|
|
9540
|
+
* @example
|
|
9541
|
+
* false
|
|
9542
|
+
*/
|
|
9543
|
+
allowEmptySystemIdentifier?: boolean;
|
|
9544
|
+
/**
|
|
9545
|
+
* @example
|
|
9546
|
+
* PG
|
|
9547
|
+
*/
|
|
9548
|
+
engine?: string;
|
|
9549
|
+
/**
|
|
9550
|
+
* @example
|
|
9551
|
+
* 2021-10-19 01:13:45
|
|
9552
|
+
*/
|
|
9553
|
+
gmtCreated?: string;
|
|
9554
|
+
/**
|
|
9555
|
+
* @example
|
|
9556
|
+
* 2024-10-16 16:46:20
|
|
9557
|
+
*/
|
|
9558
|
+
gmtModified?: string;
|
|
9559
|
+
/**
|
|
9560
|
+
* @example
|
|
9561
|
+
* false
|
|
9562
|
+
*/
|
|
9563
|
+
isVirtualOrder?: boolean;
|
|
9564
|
+
/**
|
|
9565
|
+
* @example
|
|
9566
|
+
* false
|
|
9567
|
+
*/
|
|
9568
|
+
isVirtualOrderFrozen?: boolean;
|
|
9569
|
+
/**
|
|
9570
|
+
* @example
|
|
9571
|
+
* pre_generation_long_term
|
|
9572
|
+
*/
|
|
9573
|
+
packageType?: string;
|
|
9574
|
+
/**
|
|
9575
|
+
* @example
|
|
9576
|
+
* 1 year
|
|
9577
|
+
*/
|
|
9578
|
+
packageValidity?: string;
|
|
9579
|
+
/**
|
|
9580
|
+
* @example
|
|
9581
|
+
* aliyun_market
|
|
9582
|
+
*/
|
|
9583
|
+
purchaseChannel?: string;
|
|
9584
|
+
/**
|
|
9585
|
+
* @example
|
|
9586
|
+
* 22C0ACF0-DD29-4B67-9190-B7A48C******
|
|
8705
9587
|
*/
|
|
8706
9588
|
requestId?: string;
|
|
9589
|
+
/**
|
|
9590
|
+
* @example
|
|
9591
|
+
* 239618016570503
|
|
9592
|
+
*/
|
|
9593
|
+
virtualOrderId?: string;
|
|
8707
9594
|
static names(): {
|
|
8708
9595
|
[key: string]: string;
|
|
8709
9596
|
};
|
|
@@ -8714,12 +9601,12 @@ export declare class DescribeGlobalSecurityIPGroupResponseBody extends $tea.Mode
|
|
|
8714
9601
|
[key: string]: any;
|
|
8715
9602
|
});
|
|
8716
9603
|
}
|
|
8717
|
-
export declare class
|
|
9604
|
+
export declare class DescribeLicenseOrderDetailsResponse extends $tea.Model {
|
|
8718
9605
|
headers?: {
|
|
8719
9606
|
[key: string]: string;
|
|
8720
9607
|
};
|
|
8721
9608
|
statusCode?: number;
|
|
8722
|
-
body?:
|
|
9609
|
+
body?: DescribeLicenseOrderDetailsResponseBody;
|
|
8723
9610
|
static names(): {
|
|
8724
9611
|
[key: string]: string;
|
|
8725
9612
|
};
|
|
@@ -8730,40 +9617,37 @@ export declare class DescribeGlobalSecurityIPGroupResponse extends $tea.Model {
|
|
|
8730
9617
|
[key: string]: any;
|
|
8731
9618
|
});
|
|
8732
9619
|
}
|
|
8733
|
-
export declare class
|
|
9620
|
+
export declare class DescribeLicenseOrdersRequest extends $tea.Model {
|
|
8734
9621
|
/**
|
|
8735
|
-
* @remarks
|
|
8736
|
-
* The ID of cluster.
|
|
8737
|
-
*
|
|
8738
|
-
* This parameter is required.
|
|
8739
|
-
*
|
|
8740
9622
|
* @example
|
|
8741
|
-
*
|
|
9623
|
+
* 239618016570503
|
|
8742
9624
|
*/
|
|
8743
|
-
|
|
9625
|
+
aliyunOrderId?: string;
|
|
8744
9626
|
ownerAccount?: string;
|
|
8745
9627
|
ownerId?: number;
|
|
8746
9628
|
/**
|
|
8747
|
-
* @remarks
|
|
8748
|
-
* The region ID of the IP whitelist template.
|
|
8749
|
-
*
|
|
8750
|
-
* This parameter is required.
|
|
8751
|
-
*
|
|
8752
9629
|
* @example
|
|
8753
|
-
*
|
|
9630
|
+
* single_node_subscribe
|
|
8754
9631
|
*/
|
|
8755
|
-
|
|
9632
|
+
packageType?: string;
|
|
8756
9633
|
/**
|
|
8757
|
-
* @remarks
|
|
8758
|
-
* The ID of the resource group.
|
|
8759
|
-
*
|
|
8760
9634
|
* @example
|
|
8761
|
-
*
|
|
9635
|
+
* 1
|
|
8762
9636
|
*/
|
|
8763
|
-
|
|
9637
|
+
pageNumber?: number;
|
|
9638
|
+
/**
|
|
9639
|
+
* @example
|
|
9640
|
+
* 30
|
|
9641
|
+
*/
|
|
9642
|
+
pageSize?: number;
|
|
9643
|
+
/**
|
|
9644
|
+
* @example
|
|
9645
|
+
* aliyun_market
|
|
9646
|
+
*/
|
|
9647
|
+
purchaseChannel?: string;
|
|
8764
9648
|
resourceOwnerAccount?: string;
|
|
8765
9649
|
resourceOwnerId?: number;
|
|
8766
|
-
|
|
9650
|
+
virtualOrder?: boolean;
|
|
8767
9651
|
static names(): {
|
|
8768
9652
|
[key: string]: string;
|
|
8769
9653
|
};
|
|
@@ -8774,28 +9658,28 @@ export declare class DescribeGlobalSecurityIPGroupRelationRequest extends $tea.M
|
|
|
8774
9658
|
[key: string]: any;
|
|
8775
9659
|
});
|
|
8776
9660
|
}
|
|
8777
|
-
export declare class
|
|
9661
|
+
export declare class DescribeLicenseOrdersResponseBody extends $tea.Model {
|
|
9662
|
+
items?: DescribeLicenseOrdersResponseBodyItems[];
|
|
8778
9663
|
/**
|
|
8779
|
-
* @remarks
|
|
8780
|
-
* The ID of cluster.
|
|
8781
|
-
*
|
|
8782
9664
|
* @example
|
|
8783
|
-
*
|
|
9665
|
+
* 1
|
|
8784
9666
|
*/
|
|
8785
|
-
|
|
9667
|
+
pageNumber?: number;
|
|
8786
9668
|
/**
|
|
8787
|
-
* @
|
|
8788
|
-
*
|
|
9669
|
+
* @example
|
|
9670
|
+
* 12
|
|
8789
9671
|
*/
|
|
8790
|
-
|
|
9672
|
+
pageRecordCount?: number;
|
|
8791
9673
|
/**
|
|
8792
|
-
* @remarks
|
|
8793
|
-
* The ID of the request.
|
|
8794
|
-
*
|
|
8795
9674
|
* @example
|
|
8796
|
-
*
|
|
9675
|
+
* 34458CD3-33E0-4624-BFEF-840C15******
|
|
8797
9676
|
*/
|
|
8798
9677
|
requestId?: string;
|
|
9678
|
+
/**
|
|
9679
|
+
* @example
|
|
9680
|
+
* 50
|
|
9681
|
+
*/
|
|
9682
|
+
totalRecordCount?: number;
|
|
8799
9683
|
static names(): {
|
|
8800
9684
|
[key: string]: string;
|
|
8801
9685
|
};
|
|
@@ -8806,12 +9690,12 @@ export declare class DescribeGlobalSecurityIPGroupRelationResponseBody extends $
|
|
|
8806
9690
|
[key: string]: any;
|
|
8807
9691
|
});
|
|
8808
9692
|
}
|
|
8809
|
-
export declare class
|
|
9693
|
+
export declare class DescribeLicenseOrdersResponse extends $tea.Model {
|
|
8810
9694
|
headers?: {
|
|
8811
9695
|
[key: string]: string;
|
|
8812
9696
|
};
|
|
8813
9697
|
statusCode?: number;
|
|
8814
|
-
body?:
|
|
9698
|
+
body?: DescribeLicenseOrdersResponseBody;
|
|
8815
9699
|
static names(): {
|
|
8816
9700
|
[key: string]: string;
|
|
8817
9701
|
};
|
|
@@ -10026,7 +10910,7 @@ export declare class DescribeScheduleTasksRequest extends $tea.Model {
|
|
|
10026
10910
|
export declare class DescribeScheduleTasksResponseBody extends $tea.Model {
|
|
10027
10911
|
/**
|
|
10028
10912
|
* @remarks
|
|
10029
|
-
* The result data
|
|
10913
|
+
* The result data.
|
|
10030
10914
|
*/
|
|
10031
10915
|
data?: DescribeScheduleTasksResponseBodyData;
|
|
10032
10916
|
/**
|
|
@@ -10084,9 +10968,8 @@ export declare class DescribeScheduleTasksResponse extends $tea.Model {
|
|
|
10084
10968
|
export declare class DescribeSlowLogRecordsRequest extends $tea.Model {
|
|
10085
10969
|
/**
|
|
10086
10970
|
* @remarks
|
|
10087
|
-
*
|
|
10088
|
-
*
|
|
10089
|
-
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/98094.html) operation to query information about all clusters that are deployed in a specified region, such as the cluster ID.
|
|
10971
|
+
* Cluster ID.
|
|
10972
|
+
* > You can call the [DescribeDBClusters](https://help.aliyun.com/document_detail/98094.html) interface to view all cluster information in the target region, including the Cluster ID.
|
|
10090
10973
|
*
|
|
10091
10974
|
* This parameter is required.
|
|
10092
10975
|
*
|
|
@@ -10096,7 +10979,7 @@ export declare class DescribeSlowLogRecordsRequest extends $tea.Model {
|
|
|
10096
10979
|
DBClusterId?: string;
|
|
10097
10980
|
/**
|
|
10098
10981
|
* @remarks
|
|
10099
|
-
*
|
|
10982
|
+
* Database name.
|
|
10100
10983
|
*
|
|
10101
10984
|
* @example
|
|
10102
10985
|
* testdb
|
|
@@ -10104,9 +10987,9 @@ export declare class DescribeSlowLogRecordsRequest extends $tea.Model {
|
|
|
10104
10987
|
DBName?: string;
|
|
10105
10988
|
/**
|
|
10106
10989
|
* @remarks
|
|
10107
|
-
*
|
|
10990
|
+
* End time of the query, which must be later than the start time, and the time interval between the start and end times must not exceed 24 hours. The format is `YYYY-MM-DDThh:mmZ` (UTC time).
|
|
10108
10991
|
*
|
|
10109
|
-
* >
|
|
10992
|
+
* > The input is UTC time (i.e., 0 timezone). If your service is currently in a different timezone, please perform a time conversion. For example, if the current timezone of your service is Beijing Time (UTC+8) at 12:00, and you need to query the slow logs between 08:00-12:00 Beijing Time, you should input 00:00-04:00.
|
|
10110
10993
|
*
|
|
10111
10994
|
* This parameter is required.
|
|
10112
10995
|
*
|
|
@@ -10114,14 +10997,21 @@ export declare class DescribeSlowLogRecordsRequest extends $tea.Model {
|
|
|
10114
10997
|
* 2022-11-16T04:00Z
|
|
10115
10998
|
*/
|
|
10116
10999
|
endTime?: string;
|
|
11000
|
+
/**
|
|
11001
|
+
* @remarks
|
|
11002
|
+
* Node ID
|
|
11003
|
+
*
|
|
11004
|
+
* @example
|
|
11005
|
+
* pi-**********
|
|
11006
|
+
*/
|
|
10117
11007
|
nodeId?: string;
|
|
10118
11008
|
ownerAccount?: string;
|
|
10119
11009
|
ownerId?: number;
|
|
10120
11010
|
/**
|
|
10121
11011
|
* @remarks
|
|
10122
|
-
*
|
|
11012
|
+
* Page number, with a range greater than 0 and not exceeding the maximum value of Integer.
|
|
10123
11013
|
*
|
|
10124
|
-
*
|
|
11014
|
+
* The default value is **1**.
|
|
10125
11015
|
*
|
|
10126
11016
|
* @example
|
|
10127
11017
|
* 1
|
|
@@ -10129,13 +11019,12 @@ export declare class DescribeSlowLogRecordsRequest extends $tea.Model {
|
|
|
10129
11019
|
pageNumber?: number;
|
|
10130
11020
|
/**
|
|
10131
11021
|
* @remarks
|
|
10132
|
-
*
|
|
10133
|
-
*
|
|
10134
|
-
* *
|
|
10135
|
-
* *
|
|
10136
|
-
* * **100**
|
|
11022
|
+
* Number of records per page, with the following options:
|
|
11023
|
+
* * **30**
|
|
11024
|
+
* * **50**
|
|
11025
|
+
* * **100**
|
|
10137
11026
|
*
|
|
10138
|
-
*
|
|
11027
|
+
* The default value is **30**.
|
|
10139
11028
|
*
|
|
10140
11029
|
* @example
|
|
10141
11030
|
* 30
|
|
@@ -10143,9 +11032,9 @@ export declare class DescribeSlowLogRecordsRequest extends $tea.Model {
|
|
|
10143
11032
|
pageSize?: number;
|
|
10144
11033
|
/**
|
|
10145
11034
|
* @remarks
|
|
10146
|
-
*
|
|
11035
|
+
* Region ID.
|
|
10147
11036
|
*
|
|
10148
|
-
* > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/98041.html)
|
|
11037
|
+
* > You can call the [DescribeRegions](https://help.aliyun.com/document_detail/98041.html) interface to view the available regions under the target account, including the Region ID.
|
|
10149
11038
|
*
|
|
10150
11039
|
* This parameter is required.
|
|
10151
11040
|
*
|
|
@@ -10157,7 +11046,7 @@ export declare class DescribeSlowLogRecordsRequest extends $tea.Model {
|
|
|
10157
11046
|
resourceOwnerId?: number;
|
|
10158
11047
|
/**
|
|
10159
11048
|
* @remarks
|
|
10160
|
-
*
|
|
11049
|
+
* Unique identifier of the SQL statement in the slow log statistics, which can be used to obtain the detailed slow logs for that SQL statement.
|
|
10161
11050
|
*
|
|
10162
11051
|
* @example
|
|
10163
11052
|
* U2FsdGVk****
|
|
@@ -10165,13 +11054,10 @@ export declare class DescribeSlowLogRecordsRequest extends $tea.Model {
|
|
|
10165
11054
|
SQLHASH?: string;
|
|
10166
11055
|
/**
|
|
10167
11056
|
* @remarks
|
|
10168
|
-
*
|
|
11057
|
+
* Start time of the query. The format is `YYYY-MM-DDThh:mmZ` (UTC time).
|
|
10169
11058
|
*
|
|
10170
|
-
* >
|
|
10171
|
-
*
|
|
10172
|
-
* * You can specify a time range of up to 30 days.
|
|
10173
|
-
*
|
|
10174
|
-
* * This parameter must be set to a time value in UTC (UTC+0 time zone). If your service resides in another time zone, convert the time value. For example, if the local time in the time zone where your service resides is 12:00 (UTC +8) and you want to query slow query logs at 08:00 (UTC +8) to 12:00, set this parameter to a time value that ranges from 00:00, set this parameter to 04:00.
|
|
11059
|
+
* > * Supports viewing slow log information up to 30 days.
|
|
11060
|
+
* > * The input is UTC time (i.e., 0 timezone). If your service is currently in a different timezone, please perform a time conversion. For example, if the current timezone of your service is Beijing Time (UTC+8) at 12:00, and you need to query the slow logs between 08:00-12:00 Beijing Time, you should input 00:00-04:00.
|
|
10175
11061
|
*
|
|
10176
11062
|
* This parameter is required.
|
|
10177
11063
|
*
|
|
@@ -10192,7 +11078,7 @@ export declare class DescribeSlowLogRecordsRequest extends $tea.Model {
|
|
|
10192
11078
|
export declare class DescribeSlowLogRecordsResponseBody extends $tea.Model {
|
|
10193
11079
|
/**
|
|
10194
11080
|
* @remarks
|
|
10195
|
-
*
|
|
11081
|
+
* Cluster ID.
|
|
10196
11082
|
*
|
|
10197
11083
|
* @example
|
|
10198
11084
|
* pc-*****************
|
|
@@ -10200,7 +11086,7 @@ export declare class DescribeSlowLogRecordsResponseBody extends $tea.Model {
|
|
|
10200
11086
|
DBClusterId?: string;
|
|
10201
11087
|
/**
|
|
10202
11088
|
* @remarks
|
|
10203
|
-
*
|
|
11089
|
+
* Database engine.
|
|
10204
11090
|
*
|
|
10205
11091
|
* @example
|
|
10206
11092
|
* polardb_mysql
|
|
@@ -10208,12 +11094,12 @@ export declare class DescribeSlowLogRecordsResponseBody extends $tea.Model {
|
|
|
10208
11094
|
engine?: string;
|
|
10209
11095
|
/**
|
|
10210
11096
|
* @remarks
|
|
10211
|
-
*
|
|
11097
|
+
* List of slow log details.
|
|
10212
11098
|
*/
|
|
10213
11099
|
items?: DescribeSlowLogRecordsResponseBodyItems;
|
|
10214
11100
|
/**
|
|
10215
11101
|
* @remarks
|
|
10216
|
-
*
|
|
11102
|
+
* Page number.
|
|
10217
11103
|
*
|
|
10218
11104
|
* @example
|
|
10219
11105
|
* 1
|
|
@@ -10221,7 +11107,7 @@ export declare class DescribeSlowLogRecordsResponseBody extends $tea.Model {
|
|
|
10221
11107
|
pageNumber?: number;
|
|
10222
11108
|
/**
|
|
10223
11109
|
* @remarks
|
|
10224
|
-
*
|
|
11110
|
+
* Number of records on this page.
|
|
10225
11111
|
*
|
|
10226
11112
|
* @example
|
|
10227
11113
|
* 1
|
|
@@ -10229,7 +11115,7 @@ export declare class DescribeSlowLogRecordsResponseBody extends $tea.Model {
|
|
|
10229
11115
|
pageRecordCount?: number;
|
|
10230
11116
|
/**
|
|
10231
11117
|
* @remarks
|
|
10232
|
-
*
|
|
11118
|
+
* Request ID.
|
|
10233
11119
|
*
|
|
10234
11120
|
* @example
|
|
10235
11121
|
* A7E6A8FD-C50B-46B2-BA85-D8B8D3******
|
|
@@ -10237,7 +11123,7 @@ export declare class DescribeSlowLogRecordsResponseBody extends $tea.Model {
|
|
|
10237
11123
|
requestId?: string;
|
|
10238
11124
|
/**
|
|
10239
11125
|
* @remarks
|
|
10240
|
-
*
|
|
11126
|
+
* Total number of SQL statements.
|
|
10241
11127
|
*
|
|
10242
11128
|
* @example
|
|
10243
11129
|
* 1
|
|
@@ -10519,7 +11405,7 @@ export declare class DescribeTasksRequest extends $tea.Model {
|
|
|
10519
11405
|
* * **Running**: The task is running.
|
|
10520
11406
|
* * **Finished**: The task is completed.
|
|
10521
11407
|
* * **Closed**: The task is closed.
|
|
10522
|
-
* * **Pause**: The task is
|
|
11408
|
+
* * **Pause**: The task is paused.
|
|
10523
11409
|
* * **Stop**: The task is interrupted.
|
|
10524
11410
|
*
|
|
10525
11411
|
* >
|
|
@@ -11050,6 +11936,8 @@ export declare class EnableDBClusterServerlessResponse extends $tea.Model {
|
|
|
11050
11936
|
export declare class EnableFirewallRulesRequest extends $tea.Model {
|
|
11051
11937
|
/**
|
|
11052
11938
|
* @remarks
|
|
11939
|
+
* The cluster ID.
|
|
11940
|
+
*
|
|
11053
11941
|
* This parameter is required.
|
|
11054
11942
|
*
|
|
11055
11943
|
* @example
|
|
@@ -11057,6 +11945,14 @@ export declare class EnableFirewallRulesRequest extends $tea.Model {
|
|
|
11057
11945
|
*/
|
|
11058
11946
|
DBClusterId?: string;
|
|
11059
11947
|
/**
|
|
11948
|
+
* @remarks
|
|
11949
|
+
* Specifies whether to enable or disable the specified firewall rules. Valid values:
|
|
11950
|
+
*
|
|
11951
|
+
* * **true**: enables the specified firewall rules.
|
|
11952
|
+
* * **false**: disables the specified firewall rules.
|
|
11953
|
+
*
|
|
11954
|
+
* > This parameter is valid only when you specify the **RuleNameList** parameter.
|
|
11955
|
+
*
|
|
11060
11956
|
* @example
|
|
11061
11957
|
* true
|
|
11062
11958
|
*/
|
|
@@ -11067,6 +11963,10 @@ export declare class EnableFirewallRulesRequest extends $tea.Model {
|
|
|
11067
11963
|
resourceOwnerId?: number;
|
|
11068
11964
|
/**
|
|
11069
11965
|
* @remarks
|
|
11966
|
+
* The name of the firewall rule that you want to enable for the cluster. You can specify multiple firewall rules at a time. Separate multiple rules with commas (,).
|
|
11967
|
+
*
|
|
11968
|
+
* > You can call the **DescribeFirewallRules** operation to query the details of all firewall rules that are applicable to a cluster, such as rule names.
|
|
11969
|
+
*
|
|
11070
11970
|
* This parameter is required.
|
|
11071
11971
|
*
|
|
11072
11972
|
* @example
|
|
@@ -11085,6 +11985,11 @@ export declare class EnableFirewallRulesRequest extends $tea.Model {
|
|
|
11085
11985
|
}
|
|
11086
11986
|
export declare class EnableFirewallRulesResponseBody extends $tea.Model {
|
|
11087
11987
|
/**
|
|
11988
|
+
* @remarks
|
|
11989
|
+
* The message that is returned for the request.
|
|
11990
|
+
*
|
|
11991
|
+
* > If the request was successful, Successful is returned. If the request failed, an error message that contains information such as an error code is returned.
|
|
11992
|
+
*
|
|
11088
11993
|
* @example
|
|
11089
11994
|
* Message
|
|
11090
11995
|
*/
|
|
@@ -11098,6 +12003,12 @@ export declare class EnableFirewallRulesResponseBody extends $tea.Model {
|
|
|
11098
12003
|
*/
|
|
11099
12004
|
requestId?: string;
|
|
11100
12005
|
/**
|
|
12006
|
+
* @remarks
|
|
12007
|
+
* Indicates whether the request was successful. Valid values:
|
|
12008
|
+
*
|
|
12009
|
+
* * **true**
|
|
12010
|
+
* * **false**
|
|
12011
|
+
*
|
|
11101
12012
|
* @example
|
|
11102
12013
|
* true
|
|
11103
12014
|
*/
|
|
@@ -11374,7 +12285,7 @@ export declare class FailoverDBClusterRequest extends $tea.Model {
|
|
|
11374
12285
|
resourceOwnerId?: number;
|
|
11375
12286
|
/**
|
|
11376
12287
|
* @remarks
|
|
11377
|
-
* Specifies whether to
|
|
12288
|
+
* Specifies whether to switch back services to the original primary zone when the original primary zone recovers.
|
|
11378
12289
|
*
|
|
11379
12290
|
* * true
|
|
11380
12291
|
* * false
|
|
@@ -11394,6 +12305,16 @@ export declare class FailoverDBClusterRequest extends $tea.Model {
|
|
|
11394
12305
|
* pi-***********
|
|
11395
12306
|
*/
|
|
11396
12307
|
targetDBNodeId?: string;
|
|
12308
|
+
/**
|
|
12309
|
+
* @remarks
|
|
12310
|
+
* Whether it is a primary-standby switch within the primary availability zone, with the following values:
|
|
12311
|
+
*
|
|
12312
|
+
* Primary: Primary-standby switch within the primary availability zone.
|
|
12313
|
+
* Standby: Switch to the storage hot backup cluster.
|
|
12314
|
+
*
|
|
12315
|
+
* @example
|
|
12316
|
+
* Primary
|
|
12317
|
+
*/
|
|
11397
12318
|
targetZoneType?: string;
|
|
11398
12319
|
static names(): {
|
|
11399
12320
|
[key: string]: string;
|
|
@@ -11561,7 +12482,7 @@ export declare class ListTagResourcesRequest extends $tea.Model {
|
|
|
11561
12482
|
regionId?: string;
|
|
11562
12483
|
/**
|
|
11563
12484
|
* @remarks
|
|
11564
|
-
* The
|
|
12485
|
+
* The IDs of the clusters. To query the tags of multiple clusters, click **Add** to add cluster IDs.
|
|
11565
12486
|
*
|
|
11566
12487
|
* >
|
|
11567
12488
|
*
|
|
@@ -12036,13 +12957,13 @@ export declare class ModifyBackupPolicyRequest extends $tea.Model {
|
|
|
12036
12957
|
backupFrequency?: string;
|
|
12037
12958
|
/**
|
|
12038
12959
|
* @remarks
|
|
12039
|
-
* Specifies whether to retain backups when
|
|
12960
|
+
* Specifies whether to retain backups when a cluster is deleted. Valid values:
|
|
12040
12961
|
*
|
|
12041
12962
|
* * **ALL**: permanently retains all backups.
|
|
12042
|
-
* * **LATEST**: permanently retains
|
|
12963
|
+
* * **LATEST**: permanently retains the most recent backup.
|
|
12043
12964
|
* * **NONE**: does not retain backups.
|
|
12044
12965
|
*
|
|
12045
|
-
* >
|
|
12966
|
+
* > The default value of the parameter is NONE.
|
|
12046
12967
|
*
|
|
12047
12968
|
* @example
|
|
12048
12969
|
* NONE
|
|
@@ -12130,7 +13051,7 @@ export declare class ModifyBackupPolicyRequest extends $tea.Model {
|
|
|
12130
13051
|
* * **30 to 7300**: Cross-region level-2 backups are retained for 30 to 7,300 days.
|
|
12131
13052
|
* * **1**: Cross-region level-2 backups are permanently retained.
|
|
12132
13053
|
*
|
|
12133
|
-
* >
|
|
13054
|
+
* > The default value of the parameter is **0**.
|
|
12134
13055
|
*
|
|
12135
13056
|
* @example
|
|
12136
13057
|
* 30
|
|
@@ -12161,10 +13082,10 @@ export declare class ModifyBackupPolicyRequest extends $tea.Model {
|
|
|
12161
13082
|
* The retention period of level-2 backups. Valid values:
|
|
12162
13083
|
*
|
|
12163
13084
|
* * **0**: The level-2 backup feature is disabled.
|
|
12164
|
-
* * **30 to 7300**:
|
|
12165
|
-
* * **1**:
|
|
13085
|
+
* * **30 to 7300**: Level-2 backups are retained for 30 to 7,300 days.
|
|
13086
|
+
* * **1**: Level-2 backups are permanently retained.
|
|
12166
13087
|
*
|
|
12167
|
-
* >
|
|
13088
|
+
* > The default value of this parameter is **0**.
|
|
12168
13089
|
*
|
|
12169
13090
|
* @example
|
|
12170
13091
|
* 0
|
|
@@ -12249,7 +13170,7 @@ export declare class ModifyBackupPolicyResponse extends $tea.Model {
|
|
|
12249
13170
|
export declare class ModifyDBClusterRequest extends $tea.Model {
|
|
12250
13171
|
/**
|
|
12251
13172
|
* @remarks
|
|
12252
|
-
*
|
|
13173
|
+
* Specifies whether to enable storage compression. Set the value to **ON**.
|
|
12253
13174
|
*
|
|
12254
13175
|
* @example
|
|
12255
13176
|
* ON
|
|
@@ -12267,6 +13188,15 @@ export declare class ModifyDBClusterRequest extends $tea.Model {
|
|
|
12267
13188
|
* pc-*************
|
|
12268
13189
|
*/
|
|
12269
13190
|
DBClusterId?: string;
|
|
13191
|
+
/**
|
|
13192
|
+
* @remarks
|
|
13193
|
+
* The list of nodes for the drill.
|
|
13194
|
+
*
|
|
13195
|
+
* > You can specify only one node for a node-level disaster recovery drill. For a primary zone-level disaster recovery drill, you can either choose not to specify this parameter or specify all nodes.
|
|
13196
|
+
*
|
|
13197
|
+
* @example
|
|
13198
|
+
* pi-rwxxx
|
|
13199
|
+
*/
|
|
12270
13200
|
DBNodeCrashList?: string;
|
|
12271
13201
|
/**
|
|
12272
13202
|
* @remarks
|
|
@@ -12279,34 +13209,44 @@ export declare class ModifyDBClusterRequest extends $tea.Model {
|
|
|
12279
13209
|
* AsynSync
|
|
12280
13210
|
*/
|
|
12281
13211
|
dataSyncMode?: string;
|
|
13212
|
+
/**
|
|
13213
|
+
* @remarks
|
|
13214
|
+
* The fault injection method. Valid values:
|
|
13215
|
+
*
|
|
13216
|
+
* * CrashSQLInjection: `Crash SQL`-based fault injection.
|
|
13217
|
+
*
|
|
13218
|
+
* @example
|
|
13219
|
+
* 0
|
|
13220
|
+
*/
|
|
12282
13221
|
faultInjectionType?: string;
|
|
12283
13222
|
/**
|
|
12284
13223
|
* @remarks
|
|
12285
|
-
* The
|
|
13224
|
+
* The level of the disaster recovery drill. Valid values:
|
|
12286
13225
|
*
|
|
12287
|
-
* *
|
|
13226
|
+
* * `0` or `FaultInjection`: The primary zone level.
|
|
13227
|
+
* * `1`: The node level.
|
|
12288
13228
|
*
|
|
12289
13229
|
* >
|
|
12290
13230
|
*
|
|
12291
|
-
* *
|
|
13231
|
+
* * In **primary zone-level disaster recovery drill** scenarios, all compute nodes in the primary zone are unavailable. Data loss occurs during failovers in the scenarios.
|
|
12292
13232
|
*
|
|
12293
|
-
* *
|
|
13233
|
+
* * In **node-level disaster recovery drill** scenarios, you can specify only one compute node for the disaster recovery drill. You can use the `DBNodeCrashList` parameter to specify the name of the compute node that you want to use for the drill.
|
|
12294
13234
|
*
|
|
12295
13235
|
* @example
|
|
12296
13236
|
* 0
|
|
12297
13237
|
*/
|
|
12298
13238
|
faultSimulateMode?: string;
|
|
13239
|
+
imciAutoIndex?: string;
|
|
12299
13240
|
ownerAccount?: string;
|
|
12300
13241
|
ownerId?: number;
|
|
12301
13242
|
resourceOwnerAccount?: string;
|
|
12302
13243
|
resourceOwnerId?: number;
|
|
12303
13244
|
/**
|
|
12304
13245
|
* @remarks
|
|
12305
|
-
* Specifies whether to enable
|
|
13246
|
+
* Specifies whether to enable cross-zone automatic switchover. Valid values:
|
|
12306
13247
|
*
|
|
12307
|
-
* * **ON**:
|
|
12308
|
-
* * **OFF**:
|
|
12309
|
-
* * **0**: Enable the customer drill mode.
|
|
13248
|
+
* * **ON**: enables cross-zone automatic switchover.
|
|
13249
|
+
* * **OFF**: disables cross-zone automatic switchover.
|
|
12310
13250
|
*
|
|
12311
13251
|
* @example
|
|
12312
13252
|
* ON
|
|
@@ -12314,7 +13254,7 @@ export declare class ModifyDBClusterRequest extends $tea.Model {
|
|
|
12314
13254
|
standbyHAMode?: string;
|
|
12315
13255
|
/**
|
|
12316
13256
|
* @remarks
|
|
12317
|
-
* Specifies whether to enable automatic storage scaling
|
|
13257
|
+
* Specifies whether to enable automatic storage scaling. This parameter is available only for Standard Edition clusters. Valid values:
|
|
12318
13258
|
*
|
|
12319
13259
|
* * Enable
|
|
12320
13260
|
* * Disable
|
|
@@ -12353,11 +13293,17 @@ export declare class ModifyDBClusterResponseBody extends $tea.Model {
|
|
|
12353
13293
|
*/
|
|
12354
13294
|
DBClusterId?: string;
|
|
12355
13295
|
/**
|
|
13296
|
+
* @remarks
|
|
13297
|
+
* The order ID.
|
|
13298
|
+
*
|
|
12356
13299
|
* @example
|
|
12357
13300
|
* 2148126708*****
|
|
12358
13301
|
*/
|
|
12359
13302
|
orderId?: string;
|
|
12360
13303
|
/**
|
|
13304
|
+
* @remarks
|
|
13305
|
+
* The request ID.
|
|
13306
|
+
*
|
|
12361
13307
|
* @example
|
|
12362
13308
|
* CD3FA5F3-FAF3-44CA-AFFF-BAF869******
|
|
12363
13309
|
*/
|
|
@@ -13588,6 +14534,8 @@ export declare class ModifyDBClusterPrimaryZoneResponse extends $tea.Model {
|
|
|
13588
14534
|
export declare class ModifyDBClusterResourceGroupRequest extends $tea.Model {
|
|
13589
14535
|
/**
|
|
13590
14536
|
* @remarks
|
|
14537
|
+
* The cluster ID.
|
|
14538
|
+
*
|
|
13591
14539
|
* This parameter is required.
|
|
13592
14540
|
*
|
|
13593
14541
|
* @example
|
|
@@ -13596,6 +14544,8 @@ export declare class ModifyDBClusterResourceGroupRequest extends $tea.Model {
|
|
|
13596
14544
|
DBClusterId?: string;
|
|
13597
14545
|
/**
|
|
13598
14546
|
* @remarks
|
|
14547
|
+
* The ID of the new resource group.
|
|
14548
|
+
*
|
|
13599
14549
|
* This parameter is required.
|
|
13600
14550
|
*
|
|
13601
14551
|
* @example
|
|
@@ -13605,6 +14555,9 @@ export declare class ModifyDBClusterResourceGroupRequest extends $tea.Model {
|
|
|
13605
14555
|
ownerAccount?: string;
|
|
13606
14556
|
ownerId?: number;
|
|
13607
14557
|
/**
|
|
14558
|
+
* @remarks
|
|
14559
|
+
* The ID of the original resource group.
|
|
14560
|
+
*
|
|
13608
14561
|
* @example
|
|
13609
14562
|
* rg-**********
|
|
13610
14563
|
*/
|
|
@@ -13623,6 +14576,9 @@ export declare class ModifyDBClusterResourceGroupRequest extends $tea.Model {
|
|
|
13623
14576
|
}
|
|
13624
14577
|
export declare class ModifyDBClusterResourceGroupResponseBody extends $tea.Model {
|
|
13625
14578
|
/**
|
|
14579
|
+
* @remarks
|
|
14580
|
+
* The request ID.
|
|
14581
|
+
*
|
|
13626
14582
|
* @example
|
|
13627
14583
|
* 70656639-1416-479F-AF13-D08197******
|
|
13628
14584
|
*/
|
|
@@ -13783,6 +14739,14 @@ export declare class ModifyDBClusterServerlessConfRequest extends $tea.Model {
|
|
|
13783
14739
|
* true
|
|
13784
14740
|
*/
|
|
13785
14741
|
allowShutDown?: string;
|
|
14742
|
+
/**
|
|
14743
|
+
* @remarks
|
|
14744
|
+
* Cycle policy ID.
|
|
14745
|
+
*
|
|
14746
|
+
* @example
|
|
14747
|
+
* 143f8e9f-2566-4dff-be47-bed79f28fc78
|
|
14748
|
+
*/
|
|
14749
|
+
crontabJobId?: string;
|
|
13786
14750
|
/**
|
|
13787
14751
|
* @remarks
|
|
13788
14752
|
* The ID of the serverless cluster.
|
|
@@ -13876,18 +14840,48 @@ export declare class ModifyDBClusterServerlessConfRequest extends $tea.Model {
|
|
|
13876
14840
|
* @example
|
|
13877
14841
|
* 1
|
|
13878
14842
|
*/
|
|
13879
|
-
scaleRoNumMin?: string;
|
|
14843
|
+
scaleRoNumMin?: string;
|
|
14844
|
+
/**
|
|
14845
|
+
* @remarks
|
|
14846
|
+
* The detection period for No-activity Suspension. Valid values: 5 to 1440. Unit: minutes. The detection duration must be a multiple of 5 minutes.
|
|
14847
|
+
*
|
|
14848
|
+
* @example
|
|
14849
|
+
* 10
|
|
14850
|
+
*/
|
|
14851
|
+
secondsUntilAutoPause?: string;
|
|
14852
|
+
/**
|
|
14853
|
+
* @remarks
|
|
14854
|
+
* CPU burst threshold
|
|
14855
|
+
*
|
|
14856
|
+
* @example
|
|
14857
|
+
* 80
|
|
14858
|
+
*/
|
|
14859
|
+
serverlessRuleCpuEnlargeThreshold?: string;
|
|
14860
|
+
/**
|
|
14861
|
+
* @remarks
|
|
14862
|
+
* CPU downscale threshold
|
|
14863
|
+
*
|
|
14864
|
+
* @example
|
|
14865
|
+
* 50
|
|
14866
|
+
*/
|
|
14867
|
+
serverlessRuleCpuShrinkThreshold?: string;
|
|
14868
|
+
/**
|
|
14869
|
+
* @remarks
|
|
14870
|
+
* Elastic sensitivity. Values: - normal: standard - flexible: sensitive
|
|
14871
|
+
*
|
|
14872
|
+
* @example
|
|
14873
|
+
* normal
|
|
14874
|
+
* flexible
|
|
14875
|
+
*/
|
|
14876
|
+
serverlessRuleMode?: string;
|
|
13880
14877
|
/**
|
|
13881
14878
|
* @remarks
|
|
13882
|
-
*
|
|
14879
|
+
* Asynchronous task ID.
|
|
13883
14880
|
*
|
|
13884
14881
|
* @example
|
|
13885
|
-
*
|
|
14882
|
+
* 143f8e9f-2566-4dff-be47-bed79f28fc78
|
|
13886
14883
|
*/
|
|
13887
|
-
|
|
13888
|
-
serverlessRuleCpuEnlargeThreshold?: string;
|
|
13889
|
-
serverlessRuleCpuShrinkThreshold?: string;
|
|
13890
|
-
serverlessRuleMode?: string;
|
|
14884
|
+
taskId?: string;
|
|
13891
14885
|
static names(): {
|
|
13892
14886
|
[key: string]: string;
|
|
13893
14887
|
};
|
|
@@ -14080,6 +15074,19 @@ export declare class ModifyDBClusterTDERequest extends $tea.Model {
|
|
|
14080
15074
|
* pc-************
|
|
14081
15075
|
*/
|
|
14082
15076
|
DBClusterId?: string;
|
|
15077
|
+
/**
|
|
15078
|
+
* @remarks
|
|
15079
|
+
* Specifies whether to allow the TDE key of the cluster to be automatically rotated within the next maintenance window after a lapse of the rotation period when a change in the KMS key version is detected. This parameter is supported only for custom keys. Valid values:
|
|
15080
|
+
*
|
|
15081
|
+
* * **true**
|
|
15082
|
+
* * **false**
|
|
15083
|
+
*
|
|
15084
|
+
* > This parameter is supported only for a PolarDB for PostgreSQL or PolarDB for PostgreSQL (Compatible with Oracle) cluster.
|
|
15085
|
+
*
|
|
15086
|
+
* @example
|
|
15087
|
+
* false
|
|
15088
|
+
*/
|
|
15089
|
+
enableAutomaticRotation?: string;
|
|
14083
15090
|
/**
|
|
14084
15091
|
* @remarks
|
|
14085
15092
|
* Specifies whether to enable automatic encryption for new tables. Valid values:
|
|
@@ -14087,6 +15094,8 @@ export declare class ModifyDBClusterTDERequest extends $tea.Model {
|
|
|
14087
15094
|
* * **ON**
|
|
14088
15095
|
* * **OFF**
|
|
14089
15096
|
*
|
|
15097
|
+
* > This parameter takes effect only for a PolarDB for MySQL cluster.
|
|
15098
|
+
*
|
|
14090
15099
|
* @example
|
|
14091
15100
|
* ON
|
|
14092
15101
|
*/
|
|
@@ -14890,15 +15899,22 @@ export declare class ModifyDBNodesParametersResponse extends $tea.Model {
|
|
|
14890
15899
|
});
|
|
14891
15900
|
}
|
|
14892
15901
|
export declare class ModifyGlobalDatabaseNetworkRequest extends $tea.Model {
|
|
15902
|
+
/**
|
|
15903
|
+
* @remarks
|
|
15904
|
+
* Create a global domain
|
|
15905
|
+
*
|
|
15906
|
+
* @example
|
|
15907
|
+
* false
|
|
15908
|
+
*/
|
|
14893
15909
|
enableGlobalDomainName?: boolean;
|
|
14894
15910
|
/**
|
|
14895
15911
|
* @remarks
|
|
14896
15912
|
* The description of the GDN. The description must meet the following requirements:
|
|
14897
15913
|
*
|
|
14898
|
-
* *
|
|
14899
|
-
* *
|
|
14900
|
-
* *
|
|
14901
|
-
* *
|
|
15914
|
+
* * The description cannot start with http:// or https://.
|
|
15915
|
+
* * The description must start with a letter.
|
|
15916
|
+
* * The description can contain letters, digits, underscores (_), and hyphens (-).
|
|
15917
|
+
* * The description must be 2 to 126 characters in length.
|
|
14902
15918
|
*
|
|
14903
15919
|
* @example
|
|
14904
15920
|
* GDN-fortest
|
|
@@ -14906,7 +15922,7 @@ export declare class ModifyGlobalDatabaseNetworkRequest extends $tea.Model {
|
|
|
14906
15922
|
GDNDescription?: string;
|
|
14907
15923
|
/**
|
|
14908
15924
|
* @remarks
|
|
14909
|
-
* The ID
|
|
15925
|
+
* The GDN ID.
|
|
14910
15926
|
*
|
|
14911
15927
|
* This parameter is required.
|
|
14912
15928
|
*
|
|
@@ -14918,7 +15934,7 @@ export declare class ModifyGlobalDatabaseNetworkRequest extends $tea.Model {
|
|
|
14918
15934
|
ownerId?: number;
|
|
14919
15935
|
/**
|
|
14920
15936
|
* @remarks
|
|
14921
|
-
* The
|
|
15937
|
+
* The resource group ID.
|
|
14922
15938
|
*
|
|
14923
15939
|
* @example
|
|
14924
15940
|
* rg-************
|
|
@@ -14940,7 +15956,7 @@ export declare class ModifyGlobalDatabaseNetworkRequest extends $tea.Model {
|
|
|
14940
15956
|
export declare class ModifyGlobalDatabaseNetworkResponseBody extends $tea.Model {
|
|
14941
15957
|
/**
|
|
14942
15958
|
* @remarks
|
|
14943
|
-
* The ID
|
|
15959
|
+
* The request ID.
|
|
14944
15960
|
*
|
|
14945
15961
|
* @example
|
|
14946
15962
|
* C61892A4-0850-4516-9E26-44D96C1782DE
|
|
@@ -15632,6 +16648,12 @@ export declare class OpenAITaskRequest extends $tea.Model {
|
|
|
15632
16648
|
*/
|
|
15633
16649
|
DBClusterId?: string;
|
|
15634
16650
|
/**
|
|
16651
|
+
* @remarks
|
|
16652
|
+
* The node type. Valid values:
|
|
16653
|
+
*
|
|
16654
|
+
* * **DLNode**: This node is an AI node.
|
|
16655
|
+
* * **SearchNode**: This node is a node for which the PolarDB for AI feature is enabled.
|
|
16656
|
+
*
|
|
15635
16657
|
* @example
|
|
15636
16658
|
* DLNode
|
|
15637
16659
|
*/
|
|
@@ -16461,6 +17483,8 @@ export declare class TagResourcesRequest extends $tea.Model {
|
|
|
16461
17483
|
regionId?: string;
|
|
16462
17484
|
/**
|
|
16463
17485
|
* @remarks
|
|
17486
|
+
* The cluster ID.
|
|
17487
|
+
*
|
|
16464
17488
|
* This parameter is required.
|
|
16465
17489
|
*
|
|
16466
17490
|
* @example
|
|
@@ -16481,6 +17505,8 @@ export declare class TagResourcesRequest extends $tea.Model {
|
|
|
16481
17505
|
resourceType?: string;
|
|
16482
17506
|
/**
|
|
16483
17507
|
* @remarks
|
|
17508
|
+
* The tags.
|
|
17509
|
+
*
|
|
16484
17510
|
* This parameter is required.
|
|
16485
17511
|
*/
|
|
16486
17512
|
tag?: TagResourcesRequestTag[];
|
|
@@ -16567,9 +17593,9 @@ export declare class TempModifyDBNodeRequest extends $tea.Model {
|
|
|
16567
17593
|
modifyType?: string;
|
|
16568
17594
|
/**
|
|
16569
17595
|
* @remarks
|
|
16570
|
-
* The
|
|
17596
|
+
* The operation type. Valid values:
|
|
16571
17597
|
*
|
|
16572
|
-
* * **Modify**: temporarily
|
|
17598
|
+
* * **Modify**: temporarily upgrades the configuration of the cluster.
|
|
16573
17599
|
*
|
|
16574
17600
|
* This parameter is required.
|
|
16575
17601
|
*
|
|
@@ -16824,9 +17850,9 @@ export declare class TransformDBClusterPayTypeResponse extends $tea.Model {
|
|
|
16824
17850
|
export declare class UntagResourcesRequest extends $tea.Model {
|
|
16825
17851
|
/**
|
|
16826
17852
|
* @remarks
|
|
16827
|
-
* Specifies whether to
|
|
17853
|
+
* Specifies whether to detach all tags from the cluster. Valid values: **true** and **false**. Default value: **false**.
|
|
16828
17854
|
*
|
|
16829
|
-
* > This parameter takes effect only
|
|
17855
|
+
* > This parameter takes effect only if `TagKey.n` is empty.
|
|
16830
17856
|
*
|
|
16831
17857
|
* @example
|
|
16832
17858
|
* true
|
|
@@ -17069,9 +18095,9 @@ export declare class UpgradeDBClusterVersionResponse extends $tea.Model {
|
|
|
17069
18095
|
export declare class CreateDBClusterRequestTag extends $tea.Model {
|
|
17070
18096
|
/**
|
|
17071
18097
|
* @remarks
|
|
17072
|
-
*
|
|
18098
|
+
* Tag key. If you need to add multiple tags to the target cluster at once, click **Add** to add a tag key.
|
|
17073
18099
|
*
|
|
17074
|
-
* >
|
|
18100
|
+
* > Up to 20 pairs of tags can be added each time, where `Tag.N.Key` corresponds to `Tag.N.Value`.
|
|
17075
18101
|
*
|
|
17076
18102
|
* @example
|
|
17077
18103
|
* type
|
|
@@ -17079,9 +18105,9 @@ export declare class CreateDBClusterRequestTag extends $tea.Model {
|
|
|
17079
18105
|
key?: string;
|
|
17080
18106
|
/**
|
|
17081
18107
|
* @remarks
|
|
17082
|
-
*
|
|
18108
|
+
* Tag value. If you need to add multiple tags to the target cluster at once, click **Add** to add tag values.
|
|
17083
18109
|
*
|
|
17084
|
-
* >
|
|
18110
|
+
* > Up to 20 pairs of tags can be added each time, where `Tag.N.Value` corresponds to `Tag.N.Key`.
|
|
17085
18111
|
*
|
|
17086
18112
|
* @example
|
|
17087
18113
|
* test
|
|
@@ -17379,6 +18405,62 @@ export declare class DescribeAccountsResponseBodyAccounts extends $tea.Model {
|
|
|
17379
18405
|
[key: string]: any;
|
|
17380
18406
|
});
|
|
17381
18407
|
}
|
|
18408
|
+
export declare class DescribeActivationCodesResponseBodyItems extends $tea.Model {
|
|
18409
|
+
/**
|
|
18410
|
+
* @example
|
|
18411
|
+
* 2024-10-16 16:46:20
|
|
18412
|
+
*/
|
|
18413
|
+
activateAt?: string;
|
|
18414
|
+
/**
|
|
18415
|
+
* @example
|
|
18416
|
+
* testCode
|
|
18417
|
+
*/
|
|
18418
|
+
description?: string;
|
|
18419
|
+
/**
|
|
18420
|
+
* @example
|
|
18421
|
+
* 2054-10-16 16:46:20
|
|
18422
|
+
*/
|
|
18423
|
+
expireAt?: string;
|
|
18424
|
+
/**
|
|
18425
|
+
* @example
|
|
18426
|
+
* 2024-10-16 16:46:20
|
|
18427
|
+
*/
|
|
18428
|
+
gmtCreated?: string;
|
|
18429
|
+
/**
|
|
18430
|
+
* @example
|
|
18431
|
+
* 2024-10-16 16:46:20
|
|
18432
|
+
*/
|
|
18433
|
+
gmtModified?: string;
|
|
18434
|
+
/**
|
|
18435
|
+
* @example
|
|
18436
|
+
* 123
|
|
18437
|
+
*/
|
|
18438
|
+
id?: number;
|
|
18439
|
+
/**
|
|
18440
|
+
* @example
|
|
18441
|
+
* 12:34:56:78:98:00
|
|
18442
|
+
*/
|
|
18443
|
+
macAddress?: string;
|
|
18444
|
+
/**
|
|
18445
|
+
* @example
|
|
18446
|
+
* testName
|
|
18447
|
+
*/
|
|
18448
|
+
name?: string;
|
|
18449
|
+
/**
|
|
18450
|
+
* @example
|
|
18451
|
+
* 1234567890123456
|
|
18452
|
+
*/
|
|
18453
|
+
systemIdentifier?: string;
|
|
18454
|
+
static names(): {
|
|
18455
|
+
[key: string]: string;
|
|
18456
|
+
};
|
|
18457
|
+
static types(): {
|
|
18458
|
+
[key: string]: any;
|
|
18459
|
+
};
|
|
18460
|
+
constructor(map?: {
|
|
18461
|
+
[key: string]: any;
|
|
18462
|
+
});
|
|
18463
|
+
}
|
|
17382
18464
|
export declare class DescribeAutoRenewAttributeResponseBodyItemsAutoRenewAttribute extends $tea.Model {
|
|
17383
18465
|
/**
|
|
17384
18466
|
* @remarks
|
|
@@ -18069,20 +19151,23 @@ export declare class DescribeDBClusterAccessWhitelistResponseBodyItems extends $
|
|
|
18069
19151
|
export declare class DescribeDBClusterAttributeResponseBodyDBNodes extends $tea.Model {
|
|
18070
19152
|
/**
|
|
18071
19153
|
* @remarks
|
|
18072
|
-
*
|
|
19154
|
+
* Number of CPU cores for second-level elastic scaling.
|
|
18073
19155
|
*
|
|
18074
19156
|
* @example
|
|
18075
19157
|
* 6
|
|
18076
19158
|
*/
|
|
18077
19159
|
addedCpuCores?: string;
|
|
18078
19160
|
/**
|
|
19161
|
+
* @remarks
|
|
19162
|
+
* Number of CPU cores for the node.
|
|
19163
|
+
*
|
|
18079
19164
|
* @example
|
|
18080
19165
|
* 2
|
|
18081
19166
|
*/
|
|
18082
19167
|
cpuCores?: string;
|
|
18083
19168
|
/**
|
|
18084
19169
|
* @remarks
|
|
18085
|
-
*
|
|
19170
|
+
* Node creation time.
|
|
18086
19171
|
*
|
|
18087
19172
|
* @example
|
|
18088
19173
|
* 2020-03-23T21:35:43Z
|
|
@@ -18090,7 +19175,7 @@ export declare class DescribeDBClusterAttributeResponseBodyDBNodes extends $tea.
|
|
|
18090
19175
|
creationTime?: string;
|
|
18091
19176
|
/**
|
|
18092
19177
|
* @remarks
|
|
18093
|
-
*
|
|
19178
|
+
* Node specification.
|
|
18094
19179
|
*
|
|
18095
19180
|
* @example
|
|
18096
19181
|
* polar.mysql.x4.large
|
|
@@ -18098,7 +19183,7 @@ export declare class DescribeDBClusterAttributeResponseBodyDBNodes extends $tea.
|
|
|
18098
19183
|
DBNodeClass?: string;
|
|
18099
19184
|
/**
|
|
18100
19185
|
* @remarks
|
|
18101
|
-
*
|
|
19186
|
+
* Node ID.
|
|
18102
19187
|
*
|
|
18103
19188
|
* @example
|
|
18104
19189
|
* pi-****************
|
|
@@ -18106,10 +19191,10 @@ export declare class DescribeDBClusterAttributeResponseBodyDBNodes extends $tea.
|
|
|
18106
19191
|
DBNodeId?: string;
|
|
18107
19192
|
/**
|
|
18108
19193
|
* @remarks
|
|
18109
|
-
*
|
|
19194
|
+
* Node role, with possible values as follows:
|
|
18110
19195
|
*
|
|
18111
|
-
*
|
|
18112
|
-
*
|
|
19196
|
+
* - **Writer**: Primary node.
|
|
19197
|
+
* - **Reader**: Read-only node.
|
|
18113
19198
|
*
|
|
18114
19199
|
* @example
|
|
18115
19200
|
* Reader
|
|
@@ -18117,21 +19202,20 @@ export declare class DescribeDBClusterAttributeResponseBodyDBNodes extends $tea.
|
|
|
18117
19202
|
DBNodeRole?: string;
|
|
18118
19203
|
/**
|
|
18119
19204
|
* @remarks
|
|
18120
|
-
*
|
|
18121
|
-
*
|
|
18122
|
-
* *
|
|
18123
|
-
* *
|
|
18124
|
-
* *
|
|
18125
|
-
* *
|
|
18126
|
-
* *
|
|
18127
|
-
* *
|
|
18128
|
-
* *
|
|
18129
|
-
* *
|
|
18130
|
-
* *
|
|
18131
|
-
* *
|
|
18132
|
-
* *
|
|
18133
|
-
* *
|
|
18134
|
-
* * **Switching**: A failover is being performed.
|
|
19205
|
+
* Node status, with possible values as follows:
|
|
19206
|
+
* * **Creating**: Creating
|
|
19207
|
+
* * **Running**: Running
|
|
19208
|
+
* * **Deleting**: Deleting
|
|
19209
|
+
* * **Rebooting**: Rebooting
|
|
19210
|
+
* * **DBNodeCreating**: Adding node
|
|
19211
|
+
* * **DBNodeDeleting**: Removing node
|
|
19212
|
+
* * **ClassChanging**: Modifying node specification
|
|
19213
|
+
* * **NetAddressCreating**: Creating network connection
|
|
19214
|
+
* * **NetAddressDeleting**: Deleting network connection
|
|
19215
|
+
* * **NetAddressModifying**: Modifying network connection
|
|
19216
|
+
* * **MinorVersionUpgrading**: Upgrading minor version
|
|
19217
|
+
* * **Maintaining**: Instance maintenance
|
|
19218
|
+
* * **Switching**: Switching
|
|
18135
19219
|
*
|
|
18136
19220
|
* @example
|
|
18137
19221
|
* Running
|
|
@@ -18139,7 +19223,8 @@ export declare class DescribeDBClusterAttributeResponseBodyDBNodes extends $tea.
|
|
|
18139
19223
|
DBNodeStatus?: string;
|
|
18140
19224
|
/**
|
|
18141
19225
|
* @remarks
|
|
18142
|
-
*
|
|
19226
|
+
* Failover priority. Each node has a failover priority, determining the likelihood of being elected as the primary node during a failover. A higher value indicates a higher priority.
|
|
19227
|
+
* Range: 1 to 15.
|
|
18143
19228
|
*
|
|
18144
19229
|
* @example
|
|
18145
19230
|
* 1
|
|
@@ -18147,10 +19232,10 @@ export declare class DescribeDBClusterAttributeResponseBodyDBNodes extends $tea.
|
|
|
18147
19232
|
failoverPriority?: number;
|
|
18148
19233
|
/**
|
|
18149
19234
|
* @remarks
|
|
18150
|
-
*
|
|
19235
|
+
* Whether hot standby is enabled. Possible values are:
|
|
18151
19236
|
*
|
|
18152
|
-
*
|
|
18153
|
-
*
|
|
19237
|
+
* - **ON**: Enabled
|
|
19238
|
+
* - **OFF**: Disabled
|
|
18154
19239
|
*
|
|
18155
19240
|
* @example
|
|
18156
19241
|
* ON
|
|
@@ -18158,10 +19243,10 @@ export declare class DescribeDBClusterAttributeResponseBodyDBNodes extends $tea.
|
|
|
18158
19243
|
hotReplicaMode?: string;
|
|
18159
19244
|
/**
|
|
18160
19245
|
* @remarks
|
|
18161
|
-
*
|
|
19246
|
+
* Whether columnar index is enabled. Possible values are:
|
|
18162
19247
|
*
|
|
18163
|
-
*
|
|
18164
|
-
*
|
|
19248
|
+
* - **ON**: Enabled
|
|
19249
|
+
* - **OFF**: Disabled
|
|
18165
19250
|
*
|
|
18166
19251
|
* @example
|
|
18167
19252
|
* ON
|
|
@@ -18169,7 +19254,7 @@ export declare class DescribeDBClusterAttributeResponseBodyDBNodes extends $tea.
|
|
|
18169
19254
|
imciSwitch?: string;
|
|
18170
19255
|
/**
|
|
18171
19256
|
* @remarks
|
|
18172
|
-
*
|
|
19257
|
+
* Primary node ID of the multi-master architecture cluster edition.
|
|
18173
19258
|
*
|
|
18174
19259
|
* @example
|
|
18175
19260
|
* pi-bp18z52akld3*****
|
|
@@ -18177,7 +19262,7 @@ export declare class DescribeDBClusterAttributeResponseBodyDBNodes extends $tea.
|
|
|
18177
19262
|
masterId?: string;
|
|
18178
19263
|
/**
|
|
18179
19264
|
* @remarks
|
|
18180
|
-
*
|
|
19265
|
+
* Maximum concurrent connections of the cluster.
|
|
18181
19266
|
*
|
|
18182
19267
|
* @example
|
|
18183
19268
|
* 8000
|
|
@@ -18185,34 +19270,55 @@ export declare class DescribeDBClusterAttributeResponseBodyDBNodes extends $tea.
|
|
|
18185
19270
|
maxConnections?: number;
|
|
18186
19271
|
/**
|
|
18187
19272
|
* @remarks
|
|
18188
|
-
*
|
|
19273
|
+
* Maximum number of I/O requests, that is, IOPS.
|
|
18189
19274
|
*
|
|
18190
19275
|
* @example
|
|
18191
19276
|
* 32000
|
|
18192
19277
|
*/
|
|
18193
19278
|
maxIOPS?: number;
|
|
18194
19279
|
/**
|
|
19280
|
+
* @remarks
|
|
19281
|
+
* Node memory size, in MB.
|
|
19282
|
+
*
|
|
18195
19283
|
* @example
|
|
18196
19284
|
* 8192
|
|
18197
19285
|
*/
|
|
18198
19286
|
memorySize?: string;
|
|
19287
|
+
/**
|
|
19288
|
+
* @remarks
|
|
19289
|
+
* The name of the hot standby compute node corresponding to the node when the hot standby storage and compute clusters feature is enabled.
|
|
19290
|
+
*
|
|
19291
|
+
* @example
|
|
19292
|
+
* pi-bp18z52mirror*****
|
|
19293
|
+
*/
|
|
18199
19294
|
mirrorInsName?: string;
|
|
19295
|
+
multiMasterLocalStandby?: string;
|
|
19296
|
+
multiMasterPrimaryNode?: string;
|
|
18200
19297
|
/**
|
|
19298
|
+
* @remarks
|
|
19299
|
+
* Orca feature, valid values are:
|
|
19300
|
+
* - on: enabled
|
|
19301
|
+
* - off: disabled
|
|
19302
|
+
*
|
|
18201
19303
|
* @example
|
|
18202
19304
|
* off
|
|
18203
19305
|
*/
|
|
18204
19306
|
orca?: string;
|
|
18205
19307
|
/**
|
|
19308
|
+
* @remarks
|
|
19309
|
+
* Remote memory size, in MB.
|
|
19310
|
+
*
|
|
18206
19311
|
* @example
|
|
18207
19312
|
* 3072
|
|
18208
19313
|
*/
|
|
18209
19314
|
remoteMemorySize?: string;
|
|
18210
19315
|
/**
|
|
18211
19316
|
* @remarks
|
|
18212
|
-
*
|
|
19317
|
+
* Whether the node has the global consistency (high-performance mode) feature enabled. Possible values are:
|
|
18213
19318
|
*
|
|
18214
|
-
*
|
|
18215
|
-
*
|
|
19319
|
+
* - **ON**: Enabled
|
|
19320
|
+
*
|
|
19321
|
+
* - **OFF**: Disabled
|
|
18216
19322
|
*
|
|
18217
19323
|
* This parameter is required.
|
|
18218
19324
|
*
|
|
@@ -18222,7 +19328,8 @@ export declare class DescribeDBClusterAttributeResponseBodyDBNodes extends $tea.
|
|
|
18222
19328
|
sccMode?: string;
|
|
18223
19329
|
/**
|
|
18224
19330
|
* @remarks
|
|
18225
|
-
*
|
|
19331
|
+
* Routing weight.
|
|
19332
|
+
* Range: 1~100. Default is 1.
|
|
18226
19333
|
*
|
|
18227
19334
|
* @example
|
|
18228
19335
|
* 1
|
|
@@ -18230,22 +19337,31 @@ export declare class DescribeDBClusterAttributeResponseBodyDBNodes extends $tea.
|
|
|
18230
19337
|
serverWeight?: string;
|
|
18231
19338
|
/**
|
|
18232
19339
|
* @remarks
|
|
18233
|
-
*
|
|
19340
|
+
* Serverless type. Possible values include:
|
|
18234
19341
|
*
|
|
18235
|
-
*
|
|
19342
|
+
* - **AgileServerless**: Agile
|
|
19343
|
+
* - **SteadyServerless**: Steady
|
|
19344
|
+
*
|
|
19345
|
+
* > This parameter is only supported by Serverless clusters.
|
|
18236
19346
|
*
|
|
18237
19347
|
* @example
|
|
18238
19348
|
* AgileServerless
|
|
18239
19349
|
*/
|
|
18240
19350
|
serverlessType?: string;
|
|
18241
19351
|
/**
|
|
19352
|
+
* @remarks
|
|
19353
|
+
* Identifies whether the node is in the primary or standby availability zone, primarily used in resource mirroring scenarios.
|
|
19354
|
+
* Values include:
|
|
19355
|
+
* - **Primary**: Primary Availability Zone
|
|
19356
|
+
* - **Standby**: Standby Availability Zone
|
|
19357
|
+
*
|
|
18242
19358
|
* @example
|
|
18243
19359
|
* Primary
|
|
18244
19360
|
*/
|
|
18245
19361
|
subCluster?: string;
|
|
18246
19362
|
/**
|
|
18247
19363
|
* @remarks
|
|
18248
|
-
*
|
|
19364
|
+
* Availability zone ID.
|
|
18249
19365
|
*
|
|
18250
19366
|
* @example
|
|
18251
19367
|
* cn-hangzhou-i
|
|
@@ -18264,7 +19380,7 @@ export declare class DescribeDBClusterAttributeResponseBodyDBNodes extends $tea.
|
|
|
18264
19380
|
export declare class DescribeDBClusterAttributeResponseBodyTags extends $tea.Model {
|
|
18265
19381
|
/**
|
|
18266
19382
|
* @remarks
|
|
18267
|
-
*
|
|
19383
|
+
* Tag key.
|
|
18268
19384
|
*
|
|
18269
19385
|
* @example
|
|
18270
19386
|
* test
|
|
@@ -18272,7 +19388,7 @@ export declare class DescribeDBClusterAttributeResponseBodyTags extends $tea.Mod
|
|
|
18272
19388
|
key?: string;
|
|
18273
19389
|
/**
|
|
18274
19390
|
* @remarks
|
|
18275
|
-
*
|
|
19391
|
+
* Tag value.
|
|
18276
19392
|
*
|
|
18277
19393
|
* @example
|
|
18278
19394
|
* MySQL
|
|
@@ -18784,7 +19900,12 @@ export declare class DescribeDBClusterMigrationResponseBodyRdsEndpointList exten
|
|
|
18784
19900
|
addressItems?: DescribeDBClusterMigrationResponseBodyRdsEndpointListAddressItems[];
|
|
18785
19901
|
/**
|
|
18786
19902
|
* @remarks
|
|
18787
|
-
* The
|
|
19903
|
+
* The role of the source database instance.
|
|
19904
|
+
*
|
|
19905
|
+
* @example
|
|
19906
|
+
* ReadOnly
|
|
19907
|
+
* Maxscale
|
|
19908
|
+
* Primary
|
|
18788
19909
|
*/
|
|
18789
19910
|
custinsType?: string;
|
|
18790
19911
|
/**
|
|
@@ -19656,6 +20777,16 @@ export declare class DescribeDBClustersResponseBodyItemsDBCluster extends $tea.M
|
|
|
19656
20777
|
* false
|
|
19657
20778
|
*/
|
|
19658
20779
|
expired?: string;
|
|
20780
|
+
/**
|
|
20781
|
+
* @remarks
|
|
20782
|
+
* Indicates whether the hot standby storage cluster feature is enabled. Valid values:
|
|
20783
|
+
*
|
|
20784
|
+
* * ON
|
|
20785
|
+
* * OFF
|
|
20786
|
+
*
|
|
20787
|
+
* @example
|
|
20788
|
+
* OFF
|
|
20789
|
+
*/
|
|
19659
20790
|
hotStandbyCluster?: string;
|
|
19660
20791
|
/**
|
|
19661
20792
|
* @remarks
|
|
@@ -20912,6 +22043,13 @@ export declare class DescribeGlobalDatabaseNetworkResponseBodyDBClustersDBNodes
|
|
|
20912
22043
|
});
|
|
20913
22044
|
}
|
|
20914
22045
|
export declare class DescribeGlobalDatabaseNetworkResponseBodyDBClusters extends $tea.Model {
|
|
22046
|
+
/**
|
|
22047
|
+
* @remarks
|
|
22048
|
+
* The edition of the cluster.
|
|
22049
|
+
*
|
|
22050
|
+
* @example
|
|
22051
|
+
* Normal
|
|
22052
|
+
*/
|
|
20915
22053
|
category?: string;
|
|
20916
22054
|
/**
|
|
20917
22055
|
* @remarks
|
|
@@ -21275,6 +22413,82 @@ export declare class DescribeGlobalSecurityIPGroupRelationResponseBodyGlobalSecu
|
|
|
21275
22413
|
[key: string]: any;
|
|
21276
22414
|
});
|
|
21277
22415
|
}
|
|
22416
|
+
export declare class DescribeLicenseOrdersResponseBodyItems extends $tea.Model {
|
|
22417
|
+
/**
|
|
22418
|
+
* @example
|
|
22419
|
+
* 10
|
|
22420
|
+
*/
|
|
22421
|
+
activatedCodeCount?: number;
|
|
22422
|
+
/**
|
|
22423
|
+
* @example
|
|
22424
|
+
* 10
|
|
22425
|
+
*/
|
|
22426
|
+
activationCodeQuota?: number;
|
|
22427
|
+
/**
|
|
22428
|
+
* @example
|
|
22429
|
+
* 227638319690519
|
|
22430
|
+
*/
|
|
22431
|
+
aliyunOrderId?: string;
|
|
22432
|
+
/**
|
|
22433
|
+
* @example
|
|
22434
|
+
* false
|
|
22435
|
+
*/
|
|
22436
|
+
allowEmptySystemIdentifier?: boolean;
|
|
22437
|
+
/**
|
|
22438
|
+
* @example
|
|
22439
|
+
* PG
|
|
22440
|
+
*/
|
|
22441
|
+
engine?: string;
|
|
22442
|
+
/**
|
|
22443
|
+
* @example
|
|
22444
|
+
* 2022-02-11 03:14:15
|
|
22445
|
+
*/
|
|
22446
|
+
gmtCreated?: string;
|
|
22447
|
+
/**
|
|
22448
|
+
* @example
|
|
22449
|
+
* 2022-02-11 03:14:15
|
|
22450
|
+
*/
|
|
22451
|
+
gmtModified?: string;
|
|
22452
|
+
/**
|
|
22453
|
+
* @example
|
|
22454
|
+
* false
|
|
22455
|
+
*/
|
|
22456
|
+
isVirtualOrder?: boolean;
|
|
22457
|
+
/**
|
|
22458
|
+
* @example
|
|
22459
|
+
* false
|
|
22460
|
+
*/
|
|
22461
|
+
isVirtualOrderFrozen?: boolean;
|
|
22462
|
+
/**
|
|
22463
|
+
* @example
|
|
22464
|
+
* single_node_subscribe
|
|
22465
|
+
*/
|
|
22466
|
+
packageType?: string;
|
|
22467
|
+
/**
|
|
22468
|
+
* @example
|
|
22469
|
+
* 1 year
|
|
22470
|
+
*/
|
|
22471
|
+
packageValidity?: string;
|
|
22472
|
+
/**
|
|
22473
|
+
* @example
|
|
22474
|
+
* aliyun_public
|
|
22475
|
+
*/
|
|
22476
|
+
purchaseChannel?: string;
|
|
22477
|
+
/**
|
|
22478
|
+
* @example
|
|
22479
|
+
* 227638319690519
|
|
22480
|
+
*/
|
|
22481
|
+
virtualAliyunOrderId?: string;
|
|
22482
|
+
static names(): {
|
|
22483
|
+
[key: string]: string;
|
|
22484
|
+
};
|
|
22485
|
+
static types(): {
|
|
22486
|
+
[key: string]: any;
|
|
22487
|
+
};
|
|
22488
|
+
constructor(map?: {
|
|
22489
|
+
[key: string]: any;
|
|
22490
|
+
});
|
|
22491
|
+
}
|
|
21278
22492
|
export declare class DescribeMaskingRulesResponseBodyData extends $tea.Model {
|
|
21279
22493
|
/**
|
|
21280
22494
|
* @remarks
|
|
@@ -21904,6 +23118,14 @@ export declare class DescribeScheduleTasksResponseBodyDataTimerInfos extends $te
|
|
|
21904
23118
|
* CreateDBNodes
|
|
21905
23119
|
*/
|
|
21906
23120
|
action?: string;
|
|
23121
|
+
/**
|
|
23122
|
+
* @remarks
|
|
23123
|
+
* The ID of the scheduled task.
|
|
23124
|
+
*
|
|
23125
|
+
* @example
|
|
23126
|
+
* 86293c29-a03d-4872-b625-***********
|
|
23127
|
+
*/
|
|
23128
|
+
crontabJobId?: string;
|
|
21907
23129
|
/**
|
|
21908
23130
|
* @remarks
|
|
21909
23131
|
* The cluster ID.
|
|
@@ -22027,7 +23249,7 @@ export declare class DescribeScheduleTasksResponseBodyData extends $tea.Model {
|
|
|
22027
23249
|
pageSize?: number;
|
|
22028
23250
|
/**
|
|
22029
23251
|
* @remarks
|
|
22030
|
-
* The details of the scheduled
|
|
23252
|
+
* The details of the scheduled tasks.
|
|
22031
23253
|
*/
|
|
22032
23254
|
timerInfos?: DescribeScheduleTasksResponseBodyDataTimerInfos[];
|
|
22033
23255
|
/**
|
|
@@ -22051,7 +23273,7 @@ export declare class DescribeScheduleTasksResponseBodyData extends $tea.Model {
|
|
|
22051
23273
|
export declare class DescribeSlowLogRecordsResponseBodyItemsSQLSlowRecord extends $tea.Model {
|
|
22052
23274
|
/**
|
|
22053
23275
|
* @remarks
|
|
22054
|
-
*
|
|
23276
|
+
* Database name.
|
|
22055
23277
|
*
|
|
22056
23278
|
* @example
|
|
22057
23279
|
* testdb
|
|
@@ -22059,7 +23281,7 @@ export declare class DescribeSlowLogRecordsResponseBodyItemsSQLSlowRecord extend
|
|
|
22059
23281
|
DBName?: string;
|
|
22060
23282
|
/**
|
|
22061
23283
|
* @remarks
|
|
22062
|
-
*
|
|
23284
|
+
* Node ID.
|
|
22063
23285
|
*
|
|
22064
23286
|
* @example
|
|
22065
23287
|
* pi-*****************
|
|
@@ -22067,7 +23289,7 @@ export declare class DescribeSlowLogRecordsResponseBodyItemsSQLSlowRecord extend
|
|
|
22067
23289
|
DBNodeId?: string;
|
|
22068
23290
|
/**
|
|
22069
23291
|
* @remarks
|
|
22070
|
-
*
|
|
23292
|
+
* Time when the SQL starts execution. The format is `YYYY-MM-DDThh:mmZ` (UTC time).
|
|
22071
23293
|
*
|
|
22072
23294
|
* @example
|
|
22073
23295
|
* 2021-04-07T03:47Z
|
|
@@ -22075,7 +23297,7 @@ export declare class DescribeSlowLogRecordsResponseBodyItemsSQLSlowRecord extend
|
|
|
22075
23297
|
executionStartTime?: string;
|
|
22076
23298
|
/**
|
|
22077
23299
|
* @remarks
|
|
22078
|
-
*
|
|
23300
|
+
* Client address connecting to the database.
|
|
22079
23301
|
*
|
|
22080
23302
|
* @example
|
|
22081
23303
|
* testdb[testdb] @ [100.**.**.242]
|
|
@@ -22083,7 +23305,7 @@ export declare class DescribeSlowLogRecordsResponseBodyItemsSQLSlowRecord extend
|
|
|
22083
23305
|
hostAddress?: string;
|
|
22084
23306
|
/**
|
|
22085
23307
|
* @remarks
|
|
22086
|
-
*
|
|
23308
|
+
* SQL lock duration in seconds.
|
|
22087
23309
|
*
|
|
22088
23310
|
* @example
|
|
22089
23311
|
* 0
|
|
@@ -22091,7 +23313,7 @@ export declare class DescribeSlowLogRecordsResponseBodyItemsSQLSlowRecord extend
|
|
|
22091
23313
|
lockTimes?: number;
|
|
22092
23314
|
/**
|
|
22093
23315
|
* @remarks
|
|
22094
|
-
*
|
|
23316
|
+
* Number of rows parsed.
|
|
22095
23317
|
*
|
|
22096
23318
|
* @example
|
|
22097
23319
|
* 0
|
|
@@ -22099,7 +23321,7 @@ export declare class DescribeSlowLogRecordsResponseBodyItemsSQLSlowRecord extend
|
|
|
22099
23321
|
parseRowCounts?: number;
|
|
22100
23322
|
/**
|
|
22101
23323
|
* @remarks
|
|
22102
|
-
*
|
|
23324
|
+
* Query time. Unit: milliseconds.
|
|
22103
23325
|
*
|
|
22104
23326
|
* @example
|
|
22105
23327
|
* 100
|
|
@@ -22107,7 +23329,7 @@ export declare class DescribeSlowLogRecordsResponseBodyItemsSQLSlowRecord extend
|
|
|
22107
23329
|
queryTimeMS?: number;
|
|
22108
23330
|
/**
|
|
22109
23331
|
* @remarks
|
|
22110
|
-
*
|
|
23332
|
+
* SQL execution duration, in seconds.
|
|
22111
23333
|
*
|
|
22112
23334
|
* @example
|
|
22113
23335
|
* 20
|
|
@@ -22115,16 +23337,23 @@ export declare class DescribeSlowLogRecordsResponseBodyItemsSQLSlowRecord extend
|
|
|
22115
23337
|
queryTimes?: number;
|
|
22116
23338
|
/**
|
|
22117
23339
|
* @remarks
|
|
22118
|
-
*
|
|
23340
|
+
* Number of rows returned.
|
|
22119
23341
|
*
|
|
22120
23342
|
* @example
|
|
22121
23343
|
* 0
|
|
22122
23344
|
*/
|
|
22123
23345
|
returnRowCounts?: number;
|
|
23346
|
+
/**
|
|
23347
|
+
* @remarks
|
|
23348
|
+
* Unique identifier for the SQL statement in slow log statistics.
|
|
23349
|
+
*
|
|
23350
|
+
* @example
|
|
23351
|
+
* U2FsdGVk****
|
|
23352
|
+
*/
|
|
22124
23353
|
SQLHash?: string;
|
|
22125
23354
|
/**
|
|
22126
23355
|
* @remarks
|
|
22127
|
-
*
|
|
23356
|
+
* Query statement.
|
|
22128
23357
|
*/
|
|
22129
23358
|
SQLText?: string;
|
|
22130
23359
|
static names(): {
|
|
@@ -22509,7 +23738,7 @@ export declare class DescribeVSwitchesResponseBodyVSwitchs extends $tea.Model {
|
|
|
22509
23738
|
export declare class ListTagResourcesRequestTag extends $tea.Model {
|
|
22510
23739
|
/**
|
|
22511
23740
|
* @remarks
|
|
22512
|
-
* The key
|
|
23741
|
+
* The tag key. To query the details of clusters to which multiple tags are added, click **Add** to add tags.
|
|
22513
23742
|
*
|
|
22514
23743
|
* >
|
|
22515
23744
|
*
|
|
@@ -22780,9 +24009,9 @@ export declare class ModifyGlobalSecurityIPGroupRelationResponseBodyGlobalSecuri
|
|
|
22780
24009
|
export declare class TagResourcesRequestTag extends $tea.Model {
|
|
22781
24010
|
/**
|
|
22782
24011
|
* @remarks
|
|
22783
|
-
* The key of the tag. To create multiple tags for a cluster at a time, click **Add** to add tag keys.
|
|
24012
|
+
* The key of the tag that you want to create for the cluster. To create multiple tags for a cluster at a time, click **Add** to add tag keys.
|
|
22784
24013
|
*
|
|
22785
|
-
* > You can create up to 20 tags
|
|
24014
|
+
* > You can create up to 20 tags for a cluster at a time. The value of `Tag.N.Key` is paired with the value of `Tag.N.Value`.
|
|
22786
24015
|
*
|
|
22787
24016
|
* @example
|
|
22788
24017
|
* type
|
|
@@ -22790,9 +24019,9 @@ export declare class TagResourcesRequestTag extends $tea.Model {
|
|
|
22790
24019
|
key?: string;
|
|
22791
24020
|
/**
|
|
22792
24021
|
* @remarks
|
|
22793
|
-
* The value of the tag. To create multiple tags for a cluster at a time, click **Add** to add tag values.
|
|
24022
|
+
* The value of the tag that you want to create for the cluster. To create multiple tags for a cluster at a time, click **Add** to add tag values.
|
|
22794
24023
|
*
|
|
22795
|
-
* > You can create up to 20 tags
|
|
24024
|
+
* > You can create up to 20 tags for a cluster at a time. The value of `Tag.N.Key` is paired with the value of `Tag.N.Value`.
|
|
22796
24025
|
*
|
|
22797
24026
|
* @example
|
|
22798
24027
|
* test
|
|
@@ -22972,6 +24201,21 @@ export default class Client extends OpenApi {
|
|
|
22972
24201
|
* @returns CreateAccountResponse
|
|
22973
24202
|
*/
|
|
22974
24203
|
createAccount(request: CreateAccountRequest): Promise<CreateAccountResponse>;
|
|
24204
|
+
/**
|
|
24205
|
+
* 生成轻量化版本激活码
|
|
24206
|
+
*
|
|
24207
|
+
* @param request - CreateActivationCodeRequest
|
|
24208
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
24209
|
+
* @returns CreateActivationCodeResponse
|
|
24210
|
+
*/
|
|
24211
|
+
createActivationCodeWithOptions(request: CreateActivationCodeRequest, runtime: $Util.RuntimeOptions): Promise<CreateActivationCodeResponse>;
|
|
24212
|
+
/**
|
|
24213
|
+
* 生成轻量化版本激活码
|
|
24214
|
+
*
|
|
24215
|
+
* @param request - CreateActivationCodeRequest
|
|
24216
|
+
* @returns CreateActivationCodeResponse
|
|
24217
|
+
*/
|
|
24218
|
+
createActivationCode(request: CreateActivationCodeRequest): Promise<CreateActivationCodeResponse>;
|
|
22975
24219
|
/**
|
|
22976
24220
|
* Creates a full snapshot backup for a PolarDB cluster.
|
|
22977
24221
|
*
|
|
@@ -23000,7 +24244,7 @@ export default class Client extends OpenApi {
|
|
|
23000
24244
|
*/
|
|
23001
24245
|
createBackup(request: CreateBackupRequest): Promise<CreateBackupResponse>;
|
|
23002
24246
|
/**
|
|
23003
|
-
*
|
|
24247
|
+
* Creates a cluster that is used to store cold data.
|
|
23004
24248
|
*
|
|
23005
24249
|
* @param request - CreateColdStorageInstanceRequest
|
|
23006
24250
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -23008,14 +24252,14 @@ export default class Client extends OpenApi {
|
|
|
23008
24252
|
*/
|
|
23009
24253
|
createColdStorageInstanceWithOptions(request: CreateColdStorageInstanceRequest, runtime: $Util.RuntimeOptions): Promise<CreateColdStorageInstanceResponse>;
|
|
23010
24254
|
/**
|
|
23011
|
-
*
|
|
24255
|
+
* Creates a cluster that is used to store cold data.
|
|
23012
24256
|
*
|
|
23013
24257
|
* @param request - CreateColdStorageInstanceRequest
|
|
23014
24258
|
* @returns CreateColdStorageInstanceResponse
|
|
23015
24259
|
*/
|
|
23016
24260
|
createColdStorageInstance(request: CreateColdStorageInstanceRequest): Promise<CreateColdStorageInstanceResponse>;
|
|
23017
24261
|
/**
|
|
23018
|
-
*
|
|
24262
|
+
* Create Database Cluster
|
|
23019
24263
|
*
|
|
23020
24264
|
* @param request - CreateDBClusterRequest
|
|
23021
24265
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -23023,7 +24267,7 @@ export default class Client extends OpenApi {
|
|
|
23023
24267
|
*/
|
|
23024
24268
|
createDBClusterWithOptions(request: CreateDBClusterRequest, runtime: $Util.RuntimeOptions): Promise<CreateDBClusterResponse>;
|
|
23025
24269
|
/**
|
|
23026
|
-
*
|
|
24270
|
+
* Create Database Cluster
|
|
23027
24271
|
*
|
|
23028
24272
|
* @param request - CreateDBClusterRequest
|
|
23029
24273
|
* @returns CreateDBClusterResponse
|
|
@@ -23168,6 +24412,21 @@ export default class Client extends OpenApi {
|
|
|
23168
24412
|
* @returns CreateGlobalSecurityIPGroupResponse
|
|
23169
24413
|
*/
|
|
23170
24414
|
createGlobalSecurityIPGroup(request: CreateGlobalSecurityIPGroupRequest): Promise<CreateGlobalSecurityIPGroupResponse>;
|
|
24415
|
+
/**
|
|
24416
|
+
* 创建或获取虚拟证书订单
|
|
24417
|
+
*
|
|
24418
|
+
* @param request - CreateOrGetVirtualLicenseOrderRequest
|
|
24419
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
24420
|
+
* @returns CreateOrGetVirtualLicenseOrderResponse
|
|
24421
|
+
*/
|
|
24422
|
+
createOrGetVirtualLicenseOrderWithOptions(request: CreateOrGetVirtualLicenseOrderRequest, runtime: $Util.RuntimeOptions): Promise<CreateOrGetVirtualLicenseOrderResponse>;
|
|
24423
|
+
/**
|
|
24424
|
+
* 创建或获取虚拟证书订单
|
|
24425
|
+
*
|
|
24426
|
+
* @param request - CreateOrGetVirtualLicenseOrderRequest
|
|
24427
|
+
* @returns CreateOrGetVirtualLicenseOrderResponse
|
|
24428
|
+
*/
|
|
24429
|
+
createOrGetVirtualLicenseOrder(request: CreateOrGetVirtualLicenseOrderRequest): Promise<CreateOrGetVirtualLicenseOrderResponse>;
|
|
23171
24430
|
/**
|
|
23172
24431
|
* Creates a parameter template.
|
|
23173
24432
|
*
|
|
@@ -23452,7 +24711,7 @@ export default class Client extends OpenApi {
|
|
|
23452
24711
|
*/
|
|
23453
24712
|
deleteParameterGroup(request: DeleteParameterGroupRequest): Promise<DeleteParameterGroupResponse>;
|
|
23454
24713
|
/**
|
|
23455
|
-
* Queries the
|
|
24714
|
+
* Queries the status of the PolarDB for AI feature.
|
|
23456
24715
|
*
|
|
23457
24716
|
* @param request - DescribeAITaskStatusRequest
|
|
23458
24717
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -23460,7 +24719,7 @@ export default class Client extends OpenApi {
|
|
|
23460
24719
|
*/
|
|
23461
24720
|
describeAITaskStatusWithOptions(request: DescribeAITaskStatusRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAITaskStatusResponse>;
|
|
23462
24721
|
/**
|
|
23463
|
-
* Queries the
|
|
24722
|
+
* Queries the status of the PolarDB for AI feature.
|
|
23464
24723
|
*
|
|
23465
24724
|
* @param request - DescribeAITaskStatusRequest
|
|
23466
24725
|
* @returns DescribeAITaskStatusResponse
|
|
@@ -23481,6 +24740,36 @@ export default class Client extends OpenApi {
|
|
|
23481
24740
|
* @returns DescribeAccountsResponse
|
|
23482
24741
|
*/
|
|
23483
24742
|
describeAccounts(request: DescribeAccountsRequest): Promise<DescribeAccountsResponse>;
|
|
24743
|
+
/**
|
|
24744
|
+
* 查询激活码详情
|
|
24745
|
+
*
|
|
24746
|
+
* @param request - DescribeActivationCodeDetailsRequest
|
|
24747
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
24748
|
+
* @returns DescribeActivationCodeDetailsResponse
|
|
24749
|
+
*/
|
|
24750
|
+
describeActivationCodeDetailsWithOptions(request: DescribeActivationCodeDetailsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeActivationCodeDetailsResponse>;
|
|
24751
|
+
/**
|
|
24752
|
+
* 查询激活码详情
|
|
24753
|
+
*
|
|
24754
|
+
* @param request - DescribeActivationCodeDetailsRequest
|
|
24755
|
+
* @returns DescribeActivationCodeDetailsResponse
|
|
24756
|
+
*/
|
|
24757
|
+
describeActivationCodeDetails(request: DescribeActivationCodeDetailsRequest): Promise<DescribeActivationCodeDetailsResponse>;
|
|
24758
|
+
/**
|
|
24759
|
+
* 查询激活码列表
|
|
24760
|
+
*
|
|
24761
|
+
* @param request - DescribeActivationCodesRequest
|
|
24762
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
24763
|
+
* @returns DescribeActivationCodesResponse
|
|
24764
|
+
*/
|
|
24765
|
+
describeActivationCodesWithOptions(request: DescribeActivationCodesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeActivationCodesResponse>;
|
|
24766
|
+
/**
|
|
24767
|
+
* 查询激活码列表
|
|
24768
|
+
*
|
|
24769
|
+
* @param request - DescribeActivationCodesRequest
|
|
24770
|
+
* @returns DescribeActivationCodesResponse
|
|
24771
|
+
*/
|
|
24772
|
+
describeActivationCodes(request: DescribeActivationCodesRequest): Promise<DescribeActivationCodesResponse>;
|
|
23484
24773
|
/**
|
|
23485
24774
|
* Queries the auto-renewal attributes of a subscription PolarDB cluster.
|
|
23486
24775
|
*
|
|
@@ -23803,7 +25092,7 @@ export default class Client extends OpenApi {
|
|
|
23803
25092
|
*/
|
|
23804
25093
|
describeDBClusterServerlessConf(request: DescribeDBClusterServerlessConfRequest): Promise<DescribeDBClusterServerlessConfResponse>;
|
|
23805
25094
|
/**
|
|
23806
|
-
* Queries the
|
|
25095
|
+
* Queries the transparent data encryption (TDE) settings of a PolarDB cluster.
|
|
23807
25096
|
*
|
|
23808
25097
|
* @param request - DescribeDBClusterTDERequest
|
|
23809
25098
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -23811,7 +25100,7 @@ export default class Client extends OpenApi {
|
|
|
23811
25100
|
*/
|
|
23812
25101
|
describeDBClusterTDEWithOptions(request: DescribeDBClusterTDERequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBClusterTDEResponse>;
|
|
23813
25102
|
/**
|
|
23814
|
-
* Queries the
|
|
25103
|
+
* Queries the transparent data encryption (TDE) settings of a PolarDB cluster.
|
|
23815
25104
|
*
|
|
23816
25105
|
* @param request - DescribeDBClusterTDERequest
|
|
23817
25106
|
* @returns DescribeDBClusterTDEResponse
|
|
@@ -24090,6 +25379,36 @@ export default class Client extends OpenApi {
|
|
|
24090
25379
|
* @returns DescribeGlobalSecurityIPGroupRelationResponse
|
|
24091
25380
|
*/
|
|
24092
25381
|
describeGlobalSecurityIPGroupRelation(request: DescribeGlobalSecurityIPGroupRelationRequest): Promise<DescribeGlobalSecurityIPGroupRelationResponse>;
|
|
25382
|
+
/**
|
|
25383
|
+
* 查看License订单详情
|
|
25384
|
+
*
|
|
25385
|
+
* @param request - DescribeLicenseOrderDetailsRequest
|
|
25386
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
25387
|
+
* @returns DescribeLicenseOrderDetailsResponse
|
|
25388
|
+
*/
|
|
25389
|
+
describeLicenseOrderDetailsWithOptions(request: DescribeLicenseOrderDetailsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeLicenseOrderDetailsResponse>;
|
|
25390
|
+
/**
|
|
25391
|
+
* 查看License订单详情
|
|
25392
|
+
*
|
|
25393
|
+
* @param request - DescribeLicenseOrderDetailsRequest
|
|
25394
|
+
* @returns DescribeLicenseOrderDetailsResponse
|
|
25395
|
+
*/
|
|
25396
|
+
describeLicenseOrderDetails(request: DescribeLicenseOrderDetailsRequest): Promise<DescribeLicenseOrderDetailsResponse>;
|
|
25397
|
+
/**
|
|
25398
|
+
* 查询License订单列表
|
|
25399
|
+
*
|
|
25400
|
+
* @param request - DescribeLicenseOrdersRequest
|
|
25401
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
25402
|
+
* @returns DescribeLicenseOrdersResponse
|
|
25403
|
+
*/
|
|
25404
|
+
describeLicenseOrdersWithOptions(request: DescribeLicenseOrdersRequest, runtime: $Util.RuntimeOptions): Promise<DescribeLicenseOrdersResponse>;
|
|
25405
|
+
/**
|
|
25406
|
+
* 查询License订单列表
|
|
25407
|
+
*
|
|
25408
|
+
* @param request - DescribeLicenseOrdersRequest
|
|
25409
|
+
* @returns DescribeLicenseOrdersResponse
|
|
25410
|
+
*/
|
|
25411
|
+
describeLicenseOrders(request: DescribeLicenseOrdersRequest): Promise<DescribeLicenseOrdersResponse>;
|
|
24093
25412
|
/**
|
|
24094
25413
|
* Queries the retention policy of log backups in a PolarDB cluster.
|
|
24095
25414
|
*
|
|
@@ -24272,10 +25591,11 @@ export default class Client extends OpenApi {
|
|
|
24272
25591
|
*/
|
|
24273
25592
|
describeScheduleTasks(request: DescribeScheduleTasksRequest): Promise<DescribeScheduleTasksResponse>;
|
|
24274
25593
|
/**
|
|
24275
|
-
*
|
|
25594
|
+
* Slow Log Details
|
|
24276
25595
|
*
|
|
24277
25596
|
* @remarks
|
|
24278
|
-
*
|
|
25597
|
+
* >- Only PolarDB MySQL Edition clusters support calling this interface.
|
|
25598
|
+
* >- Starting from September 1, 2024, due to the optimization of the SQL template algorithm, when calling this interface, the value of the SQLHash field will change. For more details, please refer to [Notice] Optimization of Slow SQL Template Algorithm (~~2845725~~).
|
|
24279
25599
|
*
|
|
24280
25600
|
* @param request - DescribeSlowLogRecordsRequest
|
|
24281
25601
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -24283,10 +25603,11 @@ export default class Client extends OpenApi {
|
|
|
24283
25603
|
*/
|
|
24284
25604
|
describeSlowLogRecordsWithOptions(request: DescribeSlowLogRecordsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSlowLogRecordsResponse>;
|
|
24285
25605
|
/**
|
|
24286
|
-
*
|
|
25606
|
+
* Slow Log Details
|
|
24287
25607
|
*
|
|
24288
25608
|
* @remarks
|
|
24289
|
-
*
|
|
25609
|
+
* >- Only PolarDB MySQL Edition clusters support calling this interface.
|
|
25610
|
+
* >- Starting from September 1, 2024, due to the optimization of the SQL template algorithm, when calling this interface, the value of the SQLHash field will change. For more details, please refer to [Notice] Optimization of Slow SQL Template Algorithm (~~2845725~~).
|
|
24290
25611
|
*
|
|
24291
25612
|
* @param request - DescribeSlowLogRecordsRequest
|
|
24292
25613
|
* @returns DescribeSlowLogRecordsResponse
|
|
@@ -24314,10 +25635,10 @@ export default class Client extends OpenApi {
|
|
|
24314
25635
|
*/
|
|
24315
25636
|
describeSlowLogs(request: DescribeSlowLogsRequest): Promise<DescribeSlowLogsResponse>;
|
|
24316
25637
|
/**
|
|
24317
|
-
* Queries the
|
|
25638
|
+
* Queries the status of the tasks that are generated based on API operations, such as the status of instance creation tasks.
|
|
24318
25639
|
*
|
|
24319
25640
|
* @remarks
|
|
24320
|
-
* You can call this operation to view the details of a task that is generated by a specific API operation or in the console. The system calls the specific API operation when you perform an operation in the console. For example, you can view the details of the task when you call the [CreateDBCluster](https://help.aliyun.com/document_detail/98169.html) operation or [create a cluster](https://help.aliyun.com/document_detail/58769.html) in the console.
|
|
25641
|
+
* You can call this operation to view the details of a task that is generated by a specific API operation or in the PolarDB console. The system calls the specific API operation when you perform an operation in the PolarDB console. For example, you can view the details of the task when you call the [CreateDBCluster](https://help.aliyun.com/document_detail/98169.html) operation or [create a cluster](https://help.aliyun.com/document_detail/58769.html) in the PolarDB console.
|
|
24321
25642
|
* * You can view the details of tasks that are generated only when you call the [CreateDBCluster](https://help.aliyun.com/document_detail/98169.html) operation to create a cluster and `CreationOption` is not set to `CreateGdnStandby`.
|
|
24322
25643
|
*
|
|
24323
25644
|
* @param request - DescribeTasksRequest
|
|
@@ -24326,10 +25647,10 @@ export default class Client extends OpenApi {
|
|
|
24326
25647
|
*/
|
|
24327
25648
|
describeTasksWithOptions(request: DescribeTasksRequest, runtime: $Util.RuntimeOptions): Promise<DescribeTasksResponse>;
|
|
24328
25649
|
/**
|
|
24329
|
-
* Queries the
|
|
25650
|
+
* Queries the status of the tasks that are generated based on API operations, such as the status of instance creation tasks.
|
|
24330
25651
|
*
|
|
24331
25652
|
* @remarks
|
|
24332
|
-
* You can call this operation to view the details of a task that is generated by a specific API operation or in the console. The system calls the specific API operation when you perform an operation in the console. For example, you can view the details of the task when you call the [CreateDBCluster](https://help.aliyun.com/document_detail/98169.html) operation or [create a cluster](https://help.aliyun.com/document_detail/58769.html) in the console.
|
|
25653
|
+
* You can call this operation to view the details of a task that is generated by a specific API operation or in the PolarDB console. The system calls the specific API operation when you perform an operation in the PolarDB console. For example, you can view the details of the task when you call the [CreateDBCluster](https://help.aliyun.com/document_detail/98169.html) operation or [create a cluster](https://help.aliyun.com/document_detail/58769.html) in the PolarDB console.
|
|
24333
25654
|
* * You can view the details of tasks that are generated only when you call the [CreateDBCluster](https://help.aliyun.com/document_detail/98169.html) operation to create a cluster and `CreationOption` is not set to `CreateGdnStandby`.
|
|
24334
25655
|
*
|
|
24335
25656
|
* @param request - DescribeTasksRequest
|
|
@@ -24397,7 +25718,7 @@ export default class Client extends OpenApi {
|
|
|
24397
25718
|
*/
|
|
24398
25719
|
enableDBClusterServerless(request: EnableDBClusterServerlessRequest): Promise<EnableDBClusterServerlessResponse>;
|
|
24399
25720
|
/**
|
|
24400
|
-
*
|
|
25721
|
+
* Modifies the status of SQL firewall rules for a cluster.
|
|
24401
25722
|
*
|
|
24402
25723
|
* @param request - EnableFirewallRulesRequest
|
|
24403
25724
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -24405,7 +25726,7 @@ export default class Client extends OpenApi {
|
|
|
24405
25726
|
*/
|
|
24406
25727
|
enableFirewallRulesWithOptions(request: EnableFirewallRulesRequest, runtime: $Util.RuntimeOptions): Promise<EnableFirewallRulesResponse>;
|
|
24407
25728
|
/**
|
|
24408
|
-
*
|
|
25729
|
+
* Modifies the status of SQL firewall rules for a cluster.
|
|
24409
25730
|
*
|
|
24410
25731
|
* @param request - EnableFirewallRulesRequest
|
|
24411
25732
|
* @returns EnableFirewallRulesResponse
|
|
@@ -24471,7 +25792,7 @@ export default class Client extends OpenApi {
|
|
|
24471
25792
|
*/
|
|
24472
25793
|
grantAccountPrivilege(request: GrantAccountPrivilegeRequest): Promise<GrantAccountPrivilegeResponse>;
|
|
24473
25794
|
/**
|
|
24474
|
-
* Queries the tags that are
|
|
25795
|
+
* Queries the tags that are added to one or more PolarDB clusters, or the PolarDB clusters to which one or more tags are added.
|
|
24475
25796
|
*
|
|
24476
25797
|
* @param request - ListTagResourcesRequest
|
|
24477
25798
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -24479,7 +25800,7 @@ export default class Client extends OpenApi {
|
|
|
24479
25800
|
*/
|
|
24480
25801
|
listTagResourcesWithOptions(request: ListTagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<ListTagResourcesResponse>;
|
|
24481
25802
|
/**
|
|
24482
|
-
* Queries the tags that are
|
|
25803
|
+
* Queries the tags that are added to one or more PolarDB clusters, or the PolarDB clusters to which one or more tags are added.
|
|
24483
25804
|
*
|
|
24484
25805
|
* @param request - ListTagResourcesRequest
|
|
24485
25806
|
* @returns ListTagResourcesResponse
|
|
@@ -24799,12 +26120,16 @@ export default class Client extends OpenApi {
|
|
|
24799
26120
|
*/
|
|
24800
26121
|
modifyDBClusterPrimaryZone(request: ModifyDBClusterPrimaryZoneRequest): Promise<ModifyDBClusterPrimaryZoneResponse>;
|
|
24801
26122
|
/**
|
|
26123
|
+
* Modifies the configurations of a resource group for a database cluster.
|
|
26124
|
+
*
|
|
24802
26125
|
* @param request - ModifyDBClusterResourceGroupRequest
|
|
24803
26126
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
24804
26127
|
* @returns ModifyDBClusterResourceGroupResponse
|
|
24805
26128
|
*/
|
|
24806
26129
|
modifyDBClusterResourceGroupWithOptions(request: ModifyDBClusterResourceGroupRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBClusterResourceGroupResponse>;
|
|
24807
26130
|
/**
|
|
26131
|
+
* Modifies the configurations of a resource group for a database cluster.
|
|
26132
|
+
*
|
|
24808
26133
|
* @param request - ModifyDBClusterResourceGroupRequest
|
|
24809
26134
|
* @returns ModifyDBClusterResourceGroupResponse
|
|
24810
26135
|
*/
|
|
@@ -24855,7 +26180,7 @@ export default class Client extends OpenApi {
|
|
|
24855
26180
|
*/
|
|
24856
26181
|
modifyDBClusterStorageSpace(request: ModifyDBClusterStorageSpaceRequest): Promise<ModifyDBClusterStorageSpaceResponse>;
|
|
24857
26182
|
/**
|
|
24858
|
-
* Enables the
|
|
26183
|
+
* Enables the transparent data encryption (TDE) feature for a PolarDB cluster.
|
|
24859
26184
|
*
|
|
24860
26185
|
* @remarks
|
|
24861
26186
|
* > * To perform this operation, you must activate KMS first. For more information, see [Purchase a dedicated KMS instance](https://help.aliyun.com/document_detail/153781.html).
|
|
@@ -24867,7 +26192,7 @@ export default class Client extends OpenApi {
|
|
|
24867
26192
|
*/
|
|
24868
26193
|
modifyDBClusterTDEWithOptions(request: ModifyDBClusterTDERequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBClusterTDEResponse>;
|
|
24869
26194
|
/**
|
|
24870
|
-
* Enables the
|
|
26195
|
+
* Enables the transparent data encryption (TDE) feature for a PolarDB cluster.
|
|
24871
26196
|
*
|
|
24872
26197
|
* @remarks
|
|
24873
26198
|
* > * To perform this operation, you must activate KMS first. For more information, see [Purchase a dedicated KMS instance](https://help.aliyun.com/document_detail/153781.html).
|
|
@@ -24923,7 +26248,7 @@ export default class Client extends OpenApi {
|
|
|
24923
26248
|
*/
|
|
24924
26249
|
modifyDBNodeClass(request: ModifyDBNodeClassRequest): Promise<ModifyDBNodeClassResponse>;
|
|
24925
26250
|
/**
|
|
24926
|
-
* Enables or disables a cluster
|
|
26251
|
+
* Enables or disables the hot standby node in a cluster.
|
|
24927
26252
|
*
|
|
24928
26253
|
* @param request - ModifyDBNodeHotReplicaModeRequest
|
|
24929
26254
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -24931,7 +26256,7 @@ export default class Client extends OpenApi {
|
|
|
24931
26256
|
*/
|
|
24932
26257
|
modifyDBNodeHotReplicaModeWithOptions(request: ModifyDBNodeHotReplicaModeRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBNodeHotReplicaModeResponse>;
|
|
24933
26258
|
/**
|
|
24934
|
-
* Enables or disables a cluster
|
|
26259
|
+
* Enables or disables the hot standby node in a cluster.
|
|
24935
26260
|
*
|
|
24936
26261
|
* @param request - ModifyDBNodeHotReplicaModeRequest
|
|
24937
26262
|
* @returns ModifyDBNodeHotReplicaModeResponse
|
|
@@ -24968,7 +26293,7 @@ export default class Client extends OpenApi {
|
|
|
24968
26293
|
*/
|
|
24969
26294
|
modifyDBNodesParameters(request: ModifyDBNodesParametersRequest): Promise<ModifyDBNodesParametersResponse>;
|
|
24970
26295
|
/**
|
|
24971
|
-
* Modifies a
|
|
26296
|
+
* Modifies a global database network (GDN).
|
|
24972
26297
|
*
|
|
24973
26298
|
* @param request - ModifyGlobalDatabaseNetworkRequest
|
|
24974
26299
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -24976,7 +26301,7 @@ export default class Client extends OpenApi {
|
|
|
24976
26301
|
*/
|
|
24977
26302
|
modifyGlobalDatabaseNetworkWithOptions(request: ModifyGlobalDatabaseNetworkRequest, runtime: $Util.RuntimeOptions): Promise<ModifyGlobalDatabaseNetworkResponse>;
|
|
24978
26303
|
/**
|
|
24979
|
-
* Modifies a
|
|
26304
|
+
* Modifies a global database network (GDN).
|
|
24980
26305
|
*
|
|
24981
26306
|
* @param request - ModifyGlobalDatabaseNetworkRequest
|
|
24982
26307
|
* @returns ModifyGlobalDatabaseNetworkResponse
|
|
@@ -25233,18 +26558,22 @@ export default class Client extends OpenApi {
|
|
|
25233
26558
|
*/
|
|
25234
26559
|
switchOverGlobalDatabaseNetwork(request: SwitchOverGlobalDatabaseNetworkRequest): Promise<SwitchOverGlobalDatabaseNetworkResponse>;
|
|
25235
26560
|
/**
|
|
26561
|
+
* Creates tags for a PolarDB cluster.
|
|
26562
|
+
*
|
|
25236
26563
|
* @param request - TagResourcesRequest
|
|
25237
26564
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
25238
26565
|
* @returns TagResourcesResponse
|
|
25239
26566
|
*/
|
|
25240
26567
|
tagResourcesWithOptions(request: TagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<TagResourcesResponse>;
|
|
25241
26568
|
/**
|
|
26569
|
+
* Creates tags for a PolarDB cluster.
|
|
26570
|
+
*
|
|
25242
26571
|
* @param request - TagResourcesRequest
|
|
25243
26572
|
* @returns TagResourcesResponse
|
|
25244
26573
|
*/
|
|
25245
26574
|
tagResources(request: TagResourcesRequest): Promise<TagResourcesResponse>;
|
|
25246
26575
|
/**
|
|
25247
|
-
* Temporarily
|
|
26576
|
+
* Temporarily changes the node configurations of a cluster.
|
|
25248
26577
|
*
|
|
25249
26578
|
* @param request - TempModifyDBNodeRequest
|
|
25250
26579
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -25252,7 +26581,7 @@ export default class Client extends OpenApi {
|
|
|
25252
26581
|
*/
|
|
25253
26582
|
tempModifyDBNodeWithOptions(request: TempModifyDBNodeRequest, runtime: $Util.RuntimeOptions): Promise<TempModifyDBNodeResponse>;
|
|
25254
26583
|
/**
|
|
25255
|
-
* Temporarily
|
|
26584
|
+
* Temporarily changes the node configurations of a cluster.
|
|
25256
26585
|
*
|
|
25257
26586
|
* @param request - TempModifyDBNodeRequest
|
|
25258
26587
|
* @returns TempModifyDBNodeResponse
|
|
@@ -25262,9 +26591,10 @@ export default class Client extends OpenApi {
|
|
|
25262
26591
|
* Changes the billing method of a PolarDB cluster.
|
|
25263
26592
|
*
|
|
25264
26593
|
* @remarks
|
|
25265
|
-
* >
|
|
25266
|
-
*
|
|
25267
|
-
*
|
|
26594
|
+
* >
|
|
26595
|
+
* * PolarDB clusters support the subscription and pay-as-you-go billing methods. You can change the billing method from subscription to pay-as-you-go or from pay-as-you-go to subscription based on your business requirements. For more information, see [Change the billing method from subscription to pay-as-you-go](https://help.aliyun.com/document_detail/172886.html) and [Change the billing method from pay-as-you-go to subscription](https://help.aliyun.com/document_detail/84076.html).
|
|
26596
|
+
* * You cannot change the billing method from pay-as-you-go to subscription if your account balance is insufficient.
|
|
26597
|
+
* * If you change the billing method from subscription to pay-as-you-go, the system automatically refunds the balance of the prepaid subscription fees.
|
|
25268
26598
|
*
|
|
25269
26599
|
* @param request - TransformDBClusterPayTypeRequest
|
|
25270
26600
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -25275,9 +26605,10 @@ export default class Client extends OpenApi {
|
|
|
25275
26605
|
* Changes the billing method of a PolarDB cluster.
|
|
25276
26606
|
*
|
|
25277
26607
|
* @remarks
|
|
25278
|
-
* >
|
|
25279
|
-
*
|
|
25280
|
-
*
|
|
26608
|
+
* >
|
|
26609
|
+
* * PolarDB clusters support the subscription and pay-as-you-go billing methods. You can change the billing method from subscription to pay-as-you-go or from pay-as-you-go to subscription based on your business requirements. For more information, see [Change the billing method from subscription to pay-as-you-go](https://help.aliyun.com/document_detail/172886.html) and [Change the billing method from pay-as-you-go to subscription](https://help.aliyun.com/document_detail/84076.html).
|
|
26610
|
+
* * You cannot change the billing method from pay-as-you-go to subscription if your account balance is insufficient.
|
|
26611
|
+
* * If you change the billing method from subscription to pay-as-you-go, the system automatically refunds the balance of the prepaid subscription fees.
|
|
25281
26612
|
*
|
|
25282
26613
|
* @param request - TransformDBClusterPayTypeRequest
|
|
25283
26614
|
* @returns TransformDBClusterPayTypeResponse
|