tencentcloud-sdk-nodejs-intl-en 3.0.1378 → 3.0.1380
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/package.json +1 -1
- package/tencentcloud/bi/v20220105/bi_client.js +158 -77
- package/tencentcloud/bi/v20220105/models.js +5210 -2981
- package/tencentcloud/clb/index.js +1 -1
- package/tencentcloud/clb/v20180317/clb_client.js +71 -44
- package/tencentcloud/clb/v20180317/models.js +517 -294
- package/tencentcloud/clb/v20230417/clb_client.js +213 -0
- package/tencentcloud/clb/v20230417/index.js +4 -0
- package/tencentcloud/clb/v20230417/models.js +3714 -0
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/cynosdb/v20190107/cynosdb_client.js +13 -0
- package/tencentcloud/cynosdb/v20190107/models.js +159 -83
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.1380";
|
|
2
2
|
module.exports = sdkVersion
|
|
@@ -70,6 +70,7 @@ const CopyBackupToVaultResponse = models.CopyBackupToVaultResponse;
|
|
|
70
70
|
const ModifyResourcePackageNameRequest = models.ModifyResourcePackageNameRequest;
|
|
71
71
|
const UpgradeProxy = models.UpgradeProxy;
|
|
72
72
|
const OpenWanResponse = models.OpenWanResponse;
|
|
73
|
+
const OpenAIOptimizerRequest = models.OpenAIOptimizerRequest;
|
|
73
74
|
const BackupFileInfo = models.BackupFileInfo;
|
|
74
75
|
const UpgradeProxyRequest = models.UpgradeProxyRequest;
|
|
75
76
|
const DescribeBinlogDownloadUrlResponse = models.DescribeBinlogDownloadUrlResponse;
|
|
@@ -184,6 +185,7 @@ const ParamTemplateListInfo = models.ParamTemplateListInfo;
|
|
|
184
185
|
const CloseProxyEndPointRequest = models.CloseProxyEndPointRequest;
|
|
185
186
|
const LibraDBInstanceInitInfo = models.LibraDBInstanceInitInfo;
|
|
186
187
|
const DescribeBinlogsResponse = models.DescribeBinlogsResponse;
|
|
188
|
+
const OpenAIOptimizerResponse = models.OpenAIOptimizerResponse;
|
|
187
189
|
const AuditInstanceInfo = models.AuditInstanceInfo;
|
|
188
190
|
const AddClusterSlaveZoneResponse = models.AddClusterSlaveZoneResponse;
|
|
189
191
|
const DescribeProxySpecsResponse = models.DescribeProxySpecsResponse;
|
|
@@ -830,6 +832,17 @@ class CynosdbClient extends AbstractClient {
|
|
|
830
832
|
this.request("DescribeVaults", req, resp, cb);
|
|
831
833
|
}
|
|
832
834
|
|
|
835
|
+
/**
|
|
836
|
+
* This API is used to start the optimizer switch of an instance.
|
|
837
|
+
* @param {OpenAIOptimizerRequest} req
|
|
838
|
+
* @param {function(string, OpenAIOptimizerResponse):void} cb
|
|
839
|
+
* @public
|
|
840
|
+
*/
|
|
841
|
+
OpenAIOptimizer(req, cb) {
|
|
842
|
+
let resp = new OpenAIOptimizerResponse();
|
|
843
|
+
this.request("OpenAIOptimizer", req, resp, cb);
|
|
844
|
+
}
|
|
845
|
+
|
|
833
846
|
/**
|
|
834
847
|
* This API is used to query supported database proxy versions.
|
|
835
848
|
* @param {DescribeSupportProxyVersionRequest} req
|
|
@@ -2842,6 +2842,41 @@ class OpenWanResponse extends AbstractModel {
|
|
|
2842
2842
|
}
|
|
2843
2843
|
}
|
|
2844
2844
|
|
|
2845
|
+
/**
|
|
2846
|
+
* OpenAIOptimizer request structure.
|
|
2847
|
+
* @class
|
|
2848
|
+
*/
|
|
2849
|
+
class OpenAIOptimizerRequest extends AbstractModel {
|
|
2850
|
+
constructor(){
|
|
2851
|
+
super();
|
|
2852
|
+
|
|
2853
|
+
/**
|
|
2854
|
+
* <p>Cluster ID.</p>
|
|
2855
|
+
* @type {string || null}
|
|
2856
|
+
*/
|
|
2857
|
+
this.ClusterId = null;
|
|
2858
|
+
|
|
2859
|
+
/**
|
|
2860
|
+
* <p>Instance ID.</p>
|
|
2861
|
+
* @type {string || null}
|
|
2862
|
+
*/
|
|
2863
|
+
this.InstanceId = null;
|
|
2864
|
+
|
|
2865
|
+
}
|
|
2866
|
+
|
|
2867
|
+
/**
|
|
2868
|
+
* @private
|
|
2869
|
+
*/
|
|
2870
|
+
deserialize(params) {
|
|
2871
|
+
if (!params) {
|
|
2872
|
+
return;
|
|
2873
|
+
}
|
|
2874
|
+
this.ClusterId = 'ClusterId' in params ? params.ClusterId : null;
|
|
2875
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
2876
|
+
|
|
2877
|
+
}
|
|
2878
|
+
}
|
|
2879
|
+
|
|
2845
2880
|
/**
|
|
2846
2881
|
* Backup file information
|
|
2847
2882
|
* @class
|
|
@@ -5010,7 +5045,7 @@ class CreateProxyEndPointRequest extends AbstractModel {
|
|
|
5010
5045
|
this.InstanceWeights = null;
|
|
5011
5046
|
|
|
5012
5047
|
/**
|
|
5013
|
-
*
|
|
5048
|
+
* <p>Load balancing mode</p><p>Enumeration value:</p><ul><li>static: Static load</li><li>dynamic: Dynamic load</li></ul>
|
|
5014
5049
|
* @type {string || null}
|
|
5015
5050
|
*/
|
|
5016
5051
|
this.LoadBalanceMode = null;
|
|
@@ -5589,24 +5624,29 @@ class DescribeInstanceSpecsRequest extends AbstractModel {
|
|
|
5589
5624
|
super();
|
|
5590
5625
|
|
|
5591
5626
|
/**
|
|
5592
|
-
* Database type
|
|
5593
|
-
<li> MYSQL </li>
|
|
5627
|
+
* <p>Database type, value ranges from...to... </p><li> MYSQL </li>
|
|
5594
5628
|
* @type {string || null}
|
|
5595
5629
|
*/
|
|
5596
5630
|
this.DbType = null;
|
|
5597
5631
|
|
|
5598
5632
|
/**
|
|
5599
|
-
* Whether to return
|
|
5633
|
+
* <p>Whether required to return AZ information</p>
|
|
5600
5634
|
* @type {boolean || null}
|
|
5601
5635
|
*/
|
|
5602
5636
|
this.IncludeZoneStocks = null;
|
|
5603
5637
|
|
|
5604
5638
|
/**
|
|
5605
|
-
* Instance machine type
|
|
5639
|
+
* <p>Instance machine type.</p>
|
|
5606
5640
|
* @type {string || null}
|
|
5607
5641
|
*/
|
|
5608
5642
|
this.DeviceType = null;
|
|
5609
5643
|
|
|
5644
|
+
/**
|
|
5645
|
+
* <p>Cluster level, optional. For example P0, P1</p>
|
|
5646
|
+
* @type {string || null}
|
|
5647
|
+
*/
|
|
5648
|
+
this.ClusterLevel = null;
|
|
5649
|
+
|
|
5610
5650
|
}
|
|
5611
5651
|
|
|
5612
5652
|
/**
|
|
@@ -5619,6 +5659,7 @@ class DescribeInstanceSpecsRequest extends AbstractModel {
|
|
|
5619
5659
|
this.DbType = 'DbType' in params ? params.DbType : null;
|
|
5620
5660
|
this.IncludeZoneStocks = 'IncludeZoneStocks' in params ? params.IncludeZoneStocks : null;
|
|
5621
5661
|
this.DeviceType = 'DeviceType' in params ? params.DeviceType : null;
|
|
5662
|
+
this.ClusterLevel = 'ClusterLevel' in params ? params.ClusterLevel : null;
|
|
5622
5663
|
|
|
5623
5664
|
}
|
|
5624
5665
|
}
|
|
@@ -6505,7 +6546,7 @@ class ProxyGroupRwInfo extends AbstractModel {
|
|
|
6505
6546
|
this.ApQueryToOtherNode = null;
|
|
6506
6547
|
|
|
6507
6548
|
/**
|
|
6508
|
-
*
|
|
6549
|
+
* <p>Auto load</p><p>Enumeration value:</p><ul><li>static: Static load</li><li>dynamic: Dynamic load</li></ul>
|
|
6509
6550
|
* @type {string || null}
|
|
6510
6551
|
*/
|
|
6511
6552
|
this.LoadBalanceMode = null;
|
|
@@ -8971,7 +9012,7 @@ class DescribeServerlessInstanceSpecsResponse extends AbstractModel {
|
|
|
8971
9012
|
super();
|
|
8972
9013
|
|
|
8973
9014
|
/**
|
|
8974
|
-
*
|
|
9015
|
+
* <p>Serverless instance available specifications</p>
|
|
8975
9016
|
* @type {Array.<ServerlessSpec> || null}
|
|
8976
9017
|
*/
|
|
8977
9018
|
this.Specs = null;
|
|
@@ -9415,7 +9456,7 @@ class ModifyProxyRwSplitRequest extends AbstractModel {
|
|
|
9415
9456
|
this.ApQueryToOtherNode = null;
|
|
9416
9457
|
|
|
9417
9458
|
/**
|
|
9418
|
-
*
|
|
9459
|
+
* <p>Load balancing mode</p><p>Enumeration value:</p><ul><li>static: Static load</li><li>dynamic: Dynamic load</li></ul>
|
|
9419
9460
|
* @type {string || null}
|
|
9420
9461
|
*/
|
|
9421
9462
|
this.LoadBalanceMode = null;
|
|
@@ -10641,6 +10682,41 @@ class DescribeBinlogsResponse extends AbstractModel {
|
|
|
10641
10682
|
}
|
|
10642
10683
|
}
|
|
10643
10684
|
|
|
10685
|
+
/**
|
|
10686
|
+
* OpenAIOptimizer response structure.
|
|
10687
|
+
* @class
|
|
10688
|
+
*/
|
|
10689
|
+
class OpenAIOptimizerResponse extends AbstractModel {
|
|
10690
|
+
constructor(){
|
|
10691
|
+
super();
|
|
10692
|
+
|
|
10693
|
+
/**
|
|
10694
|
+
* <p>Task flow id.</p>
|
|
10695
|
+
* @type {number || null}
|
|
10696
|
+
*/
|
|
10697
|
+
this.TaskId = null;
|
|
10698
|
+
|
|
10699
|
+
/**
|
|
10700
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
10701
|
+
* @type {string || null}
|
|
10702
|
+
*/
|
|
10703
|
+
this.RequestId = null;
|
|
10704
|
+
|
|
10705
|
+
}
|
|
10706
|
+
|
|
10707
|
+
/**
|
|
10708
|
+
* @private
|
|
10709
|
+
*/
|
|
10710
|
+
deserialize(params) {
|
|
10711
|
+
if (!params) {
|
|
10712
|
+
return;
|
|
10713
|
+
}
|
|
10714
|
+
this.TaskId = 'TaskId' in params ? params.TaskId : null;
|
|
10715
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
10716
|
+
|
|
10717
|
+
}
|
|
10718
|
+
}
|
|
10719
|
+
|
|
10644
10720
|
/**
|
|
10645
10721
|
* Audit instance details.
|
|
10646
10722
|
* @class
|
|
@@ -25768,359 +25844,349 @@ class CynosdbClusterDetail extends AbstractModel {
|
|
|
25768
25844
|
super();
|
|
25769
25845
|
|
|
25770
25846
|
/**
|
|
25771
|
-
* Cluster ID
|
|
25847
|
+
* <p>Cluster ID.</p>
|
|
25772
25848
|
* @type {string || null}
|
|
25773
25849
|
*/
|
|
25774
25850
|
this.ClusterId = null;
|
|
25775
25851
|
|
|
25776
25852
|
/**
|
|
25777
|
-
* Cluster name
|
|
25853
|
+
* <p>Cluster name.</p>
|
|
25778
25854
|
* @type {string || null}
|
|
25779
25855
|
*/
|
|
25780
25856
|
this.ClusterName = null;
|
|
25781
25857
|
|
|
25782
25858
|
/**
|
|
25783
|
-
* Region
|
|
25859
|
+
* <p>Region</p>
|
|
25784
25860
|
* @type {string || null}
|
|
25785
25861
|
*/
|
|
25786
25862
|
this.Region = null;
|
|
25787
25863
|
|
|
25788
25864
|
/**
|
|
25789
|
-
* AZ
|
|
25865
|
+
* <p>AZ.</p>
|
|
25790
25866
|
* @type {string || null}
|
|
25791
25867
|
*/
|
|
25792
25868
|
this.Zone = null;
|
|
25793
25869
|
|
|
25794
25870
|
/**
|
|
25795
|
-
* Physical
|
|
25871
|
+
* <p>Physical AZ</p>
|
|
25796
25872
|
* @type {string || null}
|
|
25797
25873
|
*/
|
|
25798
25874
|
this.PhysicalZone = null;
|
|
25799
25875
|
|
|
25800
25876
|
/**
|
|
25801
|
-
* Status.
|
|
25802
|
-
- Creating: creating.
|
|
25803
|
-
- running: running.
|
|
25804
|
-
- isolating.
|
|
25805
|
-
- Isolated: isolated.
|
|
25806
|
-
- activating: restore from recycle bin.
|
|
25807
|
-
- offlining: offline.
|
|
25808
|
-
- offlined: offline.
|
|
25809
|
-
- deleting: deleting.
|
|
25810
|
-
- deleted: deleted.
|
|
25877
|
+
* <p>Status. Supported values are as follows:</p><ul><li>creating: Creating</li><li>running: Running</li><li>isolating: Isolation</li><li>isolated: Isolated</li><li>activating: Restore from recycle bin</li><li>offlining: Offline</li><li>offlined: Offline</li><li>deleting: Deleting</li><li>deleted: Deleted</li></ul>
|
|
25811
25878
|
* @type {string || null}
|
|
25812
25879
|
*/
|
|
25813
25880
|
this.Status = null;
|
|
25814
25881
|
|
|
25815
25882
|
/**
|
|
25816
|
-
* Status description
|
|
25883
|
+
* <p>Status description</p>
|
|
25817
25884
|
* @type {string || null}
|
|
25818
25885
|
*/
|
|
25819
25886
|
this.StatusDesc = null;
|
|
25820
25887
|
|
|
25821
25888
|
/**
|
|
25822
|
-
*
|
|
25823
|
-
resume
|
|
25824
|
-
resuming
|
|
25825
|
-
pause
|
|
25826
|
-
pausing
|
|
25889
|
+
* <p>When the Db type is SERVERLESS, the SERVERLESS cluster status. Available values:<br>resume<br>resuming<br>pause<br>pausing</p>
|
|
25827
25890
|
* @type {string || null}
|
|
25828
25891
|
*/
|
|
25829
25892
|
this.ServerlessStatus = null;
|
|
25830
25893
|
|
|
25831
25894
|
/**
|
|
25832
|
-
* Storage Id
|
|
25895
|
+
* <p>Storage Id</p>
|
|
25833
25896
|
* @type {string || null}
|
|
25834
25897
|
*/
|
|
25835
25898
|
this.StorageId = null;
|
|
25836
25899
|
|
|
25837
25900
|
/**
|
|
25838
|
-
* Storage size in
|
|
25901
|
+
* <p>Storage size in GB</p>
|
|
25839
25902
|
* @type {number || null}
|
|
25840
25903
|
*/
|
|
25841
25904
|
this.Storage = null;
|
|
25842
25905
|
|
|
25843
25906
|
/**
|
|
25844
|
-
* Maximum storage specification, in
|
|
25907
|
+
* <p>Maximum storage specification, in GB</p>
|
|
25845
25908
|
* @type {number || null}
|
|
25846
25909
|
*/
|
|
25847
25910
|
this.MaxStorageSize = null;
|
|
25848
25911
|
|
|
25849
25912
|
/**
|
|
25850
|
-
*
|
|
25913
|
+
* <p>Minimum storage specification, in GB</p>
|
|
25851
25914
|
* @type {number || null}
|
|
25852
25915
|
*/
|
|
25853
25916
|
this.MinStorageSize = null;
|
|
25854
25917
|
|
|
25855
25918
|
/**
|
|
25856
|
-
* Storage billing type. 1
|
|
25919
|
+
* <p>Storage billing type. Valid values: 1 (yearly/monthly subscription); 0 (pay-as-you-go).</p>
|
|
25857
25920
|
* @type {number || null}
|
|
25858
25921
|
*/
|
|
25859
25922
|
this.StoragePayMode = null;
|
|
25860
25923
|
|
|
25861
25924
|
/**
|
|
25862
|
-
* VPC name
|
|
25925
|
+
* <p>VPC name</p>
|
|
25863
25926
|
* @type {string || null}
|
|
25864
25927
|
*/
|
|
25865
25928
|
this.VpcName = null;
|
|
25866
25929
|
|
|
25867
25930
|
/**
|
|
25868
|
-
* Unique
|
|
25931
|
+
* <p>vpc Unique id</p>
|
|
25869
25932
|
* @type {string || null}
|
|
25870
25933
|
*/
|
|
25871
25934
|
this.VpcId = null;
|
|
25872
25935
|
|
|
25873
25936
|
/**
|
|
25874
|
-
* Subnet name
|
|
25937
|
+
* <p>Subnet name.</p>
|
|
25875
25938
|
* @type {string || null}
|
|
25876
25939
|
*/
|
|
25877
25940
|
this.SubnetName = null;
|
|
25878
25941
|
|
|
25879
25942
|
/**
|
|
25880
|
-
* Subnet ID
|
|
25943
|
+
* <p>Subnet ID.</p>
|
|
25881
25944
|
* @type {string || null}
|
|
25882
25945
|
*/
|
|
25883
25946
|
this.SubnetId = null;
|
|
25884
25947
|
|
|
25885
25948
|
/**
|
|
25886
|
-
* Character set
|
|
25949
|
+
* <p>Character set.</p>
|
|
25887
25950
|
* @type {string || null}
|
|
25888
25951
|
*/
|
|
25889
25952
|
this.Charset = null;
|
|
25890
25953
|
|
|
25891
25954
|
/**
|
|
25892
|
-
* Creation time
|
|
25955
|
+
* <p>Creation time.</p>
|
|
25893
25956
|
* @type {string || null}
|
|
25894
25957
|
*/
|
|
25895
25958
|
this.CreateTime = null;
|
|
25896
25959
|
|
|
25897
25960
|
/**
|
|
25898
|
-
* Database type
|
|
25961
|
+
* <p>Database type</p>
|
|
25899
25962
|
* @type {string || null}
|
|
25900
25963
|
*/
|
|
25901
25964
|
this.DbType = null;
|
|
25902
25965
|
|
|
25903
25966
|
/**
|
|
25904
|
-
* Db type: <li>NORMAL</li
|
|
25967
|
+
* <p>Db type: <li>NORMAL</li><li>SERVERLESS</li></p>
|
|
25905
25968
|
* @type {string || null}
|
|
25906
25969
|
*/
|
|
25907
25970
|
this.DbMode = null;
|
|
25908
25971
|
|
|
25909
25972
|
/**
|
|
25910
|
-
* Database version
|
|
25973
|
+
* <p>Database version</p>
|
|
25911
25974
|
* @type {string || null}
|
|
25912
25975
|
*/
|
|
25913
25976
|
this.DbVersion = null;
|
|
25914
25977
|
|
|
25915
25978
|
/**
|
|
25916
|
-
*
|
|
25979
|
+
* <p>Storage space limit</p>
|
|
25917
25980
|
* @type {number || null}
|
|
25918
25981
|
*/
|
|
25919
25982
|
this.StorageLimit = null;
|
|
25920
25983
|
|
|
25921
25984
|
/**
|
|
25922
|
-
* Used capacity
|
|
25985
|
+
* <p>Used capacity</p>
|
|
25923
25986
|
* @type {number || null}
|
|
25924
25987
|
*/
|
|
25925
25988
|
this.UsedStorage = null;
|
|
25926
25989
|
|
|
25927
25990
|
/**
|
|
25928
|
-
*
|
|
25991
|
+
* <p>vip address</p>
|
|
25929
25992
|
* @type {string || null}
|
|
25930
25993
|
*/
|
|
25931
25994
|
this.Vip = null;
|
|
25932
25995
|
|
|
25933
25996
|
/**
|
|
25934
|
-
* vport
|
|
25997
|
+
* <p>vport port</p>
|
|
25935
25998
|
* @type {number || null}
|
|
25936
25999
|
*/
|
|
25937
26000
|
this.Vport = null;
|
|
25938
26001
|
|
|
25939
26002
|
/**
|
|
25940
|
-
*
|
|
26003
|
+
* <p>vip address and vport of the cluster read-only instance</p>
|
|
25941
26004
|
* @type {Array.<Addr> || null}
|
|
25942
26005
|
*/
|
|
25943
26006
|
this.RoAddr = null;
|
|
25944
26007
|
|
|
25945
26008
|
/**
|
|
25946
|
-
* Functions supported by the cluster
|
|
26009
|
+
* <p>Functions supported by the cluster</p>
|
|
25947
26010
|
* @type {Ability || null}
|
|
25948
26011
|
*/
|
|
25949
26012
|
this.Ability = null;
|
|
25950
26013
|
|
|
25951
26014
|
/**
|
|
25952
|
-
*
|
|
26015
|
+
* <p>cynos version</p>
|
|
25953
26016
|
* @type {string || null}
|
|
25954
26017
|
*/
|
|
25955
26018
|
this.CynosVersion = null;
|
|
25956
26019
|
|
|
25957
26020
|
/**
|
|
25958
|
-
* Business type
|
|
26021
|
+
* <p>Business type</p>
|
|
25959
26022
|
* @type {string || null}
|
|
25960
26023
|
*/
|
|
25961
26024
|
this.BusinessType = null;
|
|
25962
26025
|
|
|
25963
26026
|
/**
|
|
25964
|
-
* Whether there is
|
|
26027
|
+
* <p>Whether there is a secondary AZ</p>
|
|
25965
26028
|
* @type {string || null}
|
|
25966
26029
|
*/
|
|
25967
26030
|
this.HasSlaveZone = null;
|
|
25968
26031
|
|
|
25969
26032
|
/**
|
|
25970
|
-
*
|
|
26033
|
+
* <p>Freeze or not</p>
|
|
25971
26034
|
* @type {string || null}
|
|
25972
26035
|
*/
|
|
25973
26036
|
this.IsFreeze = null;
|
|
25974
26037
|
|
|
25975
26038
|
/**
|
|
25976
|
-
* Task
|
|
26039
|
+
* <p>Task List</p>
|
|
25977
26040
|
* @type {Array.<ObjectTask> || null}
|
|
25978
26041
|
*/
|
|
25979
26042
|
this.Tasks = null;
|
|
25980
26043
|
|
|
25981
26044
|
/**
|
|
25982
|
-
* Primary AZ
|
|
26045
|
+
* <p>Primary AZ</p>
|
|
25983
26046
|
* @type {string || null}
|
|
25984
26047
|
*/
|
|
25985
26048
|
this.MasterZone = null;
|
|
25986
26049
|
|
|
25987
26050
|
/**
|
|
25988
|
-
*
|
|
26051
|
+
* <p>From the AZ list</p>
|
|
25989
26052
|
* @type {Array.<string> || null}
|
|
25990
26053
|
*/
|
|
25991
26054
|
this.SlaveZones = null;
|
|
25992
26055
|
|
|
25993
26056
|
/**
|
|
25994
|
-
* Instance information
|
|
26057
|
+
* <p>Instance information</p>
|
|
25995
26058
|
* @type {Array.<ClusterInstanceDetail> || null}
|
|
25996
26059
|
*/
|
|
25997
26060
|
this.InstanceSet = null;
|
|
25998
26061
|
|
|
25999
26062
|
/**
|
|
26000
|
-
*
|
|
26063
|
+
* <p>Payment mode</p>
|
|
26001
26064
|
* @type {number || null}
|
|
26002
26065
|
*/
|
|
26003
26066
|
this.PayMode = null;
|
|
26004
26067
|
|
|
26005
26068
|
/**
|
|
26006
|
-
*
|
|
26069
|
+
* <p>Expiry time.</p>
|
|
26007
26070
|
* @type {string || null}
|
|
26008
26071
|
*/
|
|
26009
26072
|
this.PeriodEndTime = null;
|
|
26010
26073
|
|
|
26011
26074
|
/**
|
|
26012
|
-
* Project ID
|
|
26075
|
+
* <p>Project ID.</p>
|
|
26013
26076
|
* @type {number || null}
|
|
26014
26077
|
*/
|
|
26015
26078
|
this.ProjectID = null;
|
|
26016
26079
|
|
|
26017
26080
|
/**
|
|
26018
|
-
* Array
|
|
26081
|
+
* <p>tag Array information for instance binding</p>
|
|
26019
26082
|
* @type {Array.<Tag> || null}
|
|
26020
26083
|
*/
|
|
26021
26084
|
this.ResourceTags = null;
|
|
26022
26085
|
|
|
26023
26086
|
/**
|
|
26024
|
-
* Proxy status
|
|
26087
|
+
* <p>Proxy status</p>
|
|
26025
26088
|
* @type {string || null}
|
|
26026
26089
|
*/
|
|
26027
26090
|
this.ProxyStatus = null;
|
|
26028
26091
|
|
|
26029
26092
|
/**
|
|
26030
|
-
* binlog switch
|
|
26093
|
+
* <p>binlog switch, available values: ON, OFF</p>
|
|
26031
26094
|
* @type {string || null}
|
|
26032
26095
|
*/
|
|
26033
26096
|
this.LogBin = null;
|
|
26034
26097
|
|
|
26035
26098
|
/**
|
|
26036
|
-
*
|
|
26099
|
+
* <p>Skip transaction or not</p>
|
|
26037
26100
|
* @type {string || null}
|
|
26038
26101
|
*/
|
|
26039
26102
|
this.IsSkipTrade = null;
|
|
26040
26103
|
|
|
26041
26104
|
/**
|
|
26042
|
-
* PITR type
|
|
26105
|
+
* <p>PITR type, available values: normal, redo_pitr</p>
|
|
26043
26106
|
* @type {string || null}
|
|
26044
26107
|
*/
|
|
26045
26108
|
this.PitrType = null;
|
|
26046
26109
|
|
|
26047
26110
|
/**
|
|
26048
|
-
* Whether to
|
|
26111
|
+
* <p>Whether to toggle on password complexity</p>
|
|
26049
26112
|
* @type {string || null}
|
|
26050
26113
|
*/
|
|
26051
26114
|
this.IsOpenPasswordComplexity = null;
|
|
26052
26115
|
|
|
26053
26116
|
/**
|
|
26054
|
-
* Network type
|
|
26117
|
+
* <p>Network type</p>
|
|
26055
26118
|
* @type {string || null}
|
|
26056
26119
|
*/
|
|
26057
26120
|
this.NetworkStatus = null;
|
|
26058
26121
|
|
|
26059
26122
|
/**
|
|
26060
|
-
*
|
|
26123
|
+
* <p>Package info of the bound resource for the cluster</p>
|
|
26061
26124
|
* @type {Array.<ResourcePackage> || null}
|
|
26062
26125
|
*/
|
|
26063
26126
|
this.ResourcePackages = null;
|
|
26064
26127
|
|
|
26065
26128
|
/**
|
|
26066
|
-
* Auto-
|
|
26129
|
+
* <p>Auto-renewal flag. 1 means auto-renewal, 0 means non-renewal upon expiration.</p>
|
|
26067
26130
|
* @type {number || null}
|
|
26068
26131
|
*/
|
|
26069
26132
|
this.RenewFlag = null;
|
|
26070
26133
|
|
|
26071
26134
|
/**
|
|
26072
|
-
*
|
|
26135
|
+
* <p>Node network type</p>
|
|
26073
26136
|
* @type {string || null}
|
|
26074
26137
|
*/
|
|
26075
26138
|
this.NetworkType = null;
|
|
26076
26139
|
|
|
26077
26140
|
/**
|
|
26078
|
-
* Secondary availability zone property
|
|
26141
|
+
* <p>Secondary availability zone property</p>
|
|
26079
26142
|
* @type {Array.<SlaveZoneAttrItem> || null}
|
|
26080
26143
|
*/
|
|
26081
26144
|
this.SlaveZoneAttr = null;
|
|
26082
26145
|
|
|
26083
26146
|
/**
|
|
26084
|
-
* Version
|
|
26147
|
+
* <p>Version tag</p>
|
|
26085
26148
|
* @type {string || null}
|
|
26086
26149
|
*/
|
|
26087
26150
|
this.CynosVersionTag = null;
|
|
26088
26151
|
|
|
26089
26152
|
/**
|
|
26090
|
-
*
|
|
26153
|
+
* <p>Unique ID of the global database network</p>
|
|
26091
26154
|
* @type {string || null}
|
|
26092
26155
|
*/
|
|
26093
26156
|
this.GdnId = null;
|
|
26094
26157
|
|
|
26095
26158
|
/**
|
|
26096
|
-
*
|
|
26097
|
-
primary cluster.
|
|
26098
|
-
Slave cluster - standby.
|
|
26099
|
-
If empty, the field is invalid.
|
|
26159
|
+
* <p>Role of the cluster in the global data network.<br>Primary cluster - primary<br>Slave cluster - standby<br>If empty, the field is invalid.</p>
|
|
26100
26160
|
* @type {string || null}
|
|
26101
26161
|
*/
|
|
26102
26162
|
this.GdnRole = null;
|
|
26103
26163
|
|
|
26104
26164
|
/**
|
|
26105
|
-
*
|
|
26165
|
+
* <p>Second-level storage usage in GB</p>
|
|
26106
26166
|
* @type {number || null}
|
|
26107
26167
|
*/
|
|
26108
26168
|
this.UsedArchiveStorage = null;
|
|
26109
26169
|
|
|
26110
26170
|
/**
|
|
26111
|
-
* Archiving status
|
|
26171
|
+
* <p>Archiving status. Enumeration value <li>normal: Normal</li><li>archiving: Archiving</li><li>resuming: Recovering</li><li>archived: Archived</li></p>
|
|
26112
26172
|
* @type {string || null}
|
|
26113
26173
|
*/
|
|
26114
26174
|
this.ArchiveStatus = null;
|
|
26115
26175
|
|
|
26116
26176
|
/**
|
|
26117
|
-
* Archive progress, percentage
|
|
26177
|
+
* <p>Archive progress, percentage.</p>
|
|
26118
26178
|
* @type {number || null}
|
|
26119
26179
|
*/
|
|
26120
26180
|
this.ArchiveProgress = null;
|
|
26121
26181
|
|
|
26122
26182
|
/**
|
|
26123
|
-
*
|
|
26183
|
+
* <p>Cluster level. For example P0, P1</p>
|
|
26184
|
+
* @type {string || null}
|
|
26185
|
+
*/
|
|
26186
|
+
this.ClusterLevel = null;
|
|
26187
|
+
|
|
26188
|
+
/**
|
|
26189
|
+
* <p>Whether to enable transparent data encryption</p>
|
|
26124
26190
|
* @type {boolean || null}
|
|
26125
26191
|
*/
|
|
26126
26192
|
this.IsOpenTDE = null;
|
|
@@ -26243,6 +26309,7 @@ If empty, the field is invalid.
|
|
|
26243
26309
|
this.UsedArchiveStorage = 'UsedArchiveStorage' in params ? params.UsedArchiveStorage : null;
|
|
26244
26310
|
this.ArchiveStatus = 'ArchiveStatus' in params ? params.ArchiveStatus : null;
|
|
26245
26311
|
this.ArchiveProgress = 'ArchiveProgress' in params ? params.ArchiveProgress : null;
|
|
26312
|
+
this.ClusterLevel = 'ClusterLevel' in params ? params.ClusterLevel : null;
|
|
26246
26313
|
this.IsOpenTDE = 'IsOpenTDE' in params ? params.IsOpenTDE : null;
|
|
26247
26314
|
|
|
26248
26315
|
}
|
|
@@ -26655,7 +26722,7 @@ class DescribeInstanceSpecsResponse extends AbstractModel {
|
|
|
26655
26722
|
super();
|
|
26656
26723
|
|
|
26657
26724
|
/**
|
|
26658
|
-
* Specification information
|
|
26725
|
+
* <p>Specification information.</p>
|
|
26659
26726
|
* @type {Array.<InstanceSpec> || null}
|
|
26660
26727
|
*/
|
|
26661
26728
|
this.InstanceSpecSet = null;
|
|
@@ -28605,11 +28672,17 @@ class DescribeServerlessInstanceSpecsRequest extends AbstractModel {
|
|
|
28605
28672
|
super();
|
|
28606
28673
|
|
|
28607
28674
|
/**
|
|
28608
|
-
*
|
|
28675
|
+
* <p>AZ.</p>
|
|
28609
28676
|
* @type {string || null}
|
|
28610
28677
|
*/
|
|
28611
28678
|
this.Zone = null;
|
|
28612
28679
|
|
|
28680
|
+
/**
|
|
28681
|
+
* <p>Cluster level</p>
|
|
28682
|
+
* @type {string || null}
|
|
28683
|
+
*/
|
|
28684
|
+
this.ClusterLevel = null;
|
|
28685
|
+
|
|
28613
28686
|
}
|
|
28614
28687
|
|
|
28615
28688
|
/**
|
|
@@ -28620,6 +28693,7 @@ class DescribeServerlessInstanceSpecsRequest extends AbstractModel {
|
|
|
28620
28693
|
return;
|
|
28621
28694
|
}
|
|
28622
28695
|
this.Zone = 'Zone' in params ? params.Zone : null;
|
|
28696
|
+
this.ClusterLevel = 'ClusterLevel' in params ? params.ClusterLevel : null;
|
|
28623
28697
|
|
|
28624
28698
|
}
|
|
28625
28699
|
}
|
|
@@ -35427,6 +35501,7 @@ module.exports = {
|
|
|
35427
35501
|
ModifyResourcePackageNameRequest: ModifyResourcePackageNameRequest,
|
|
35428
35502
|
UpgradeProxy: UpgradeProxy,
|
|
35429
35503
|
OpenWanResponse: OpenWanResponse,
|
|
35504
|
+
OpenAIOptimizerRequest: OpenAIOptimizerRequest,
|
|
35430
35505
|
BackupFileInfo: BackupFileInfo,
|
|
35431
35506
|
UpgradeProxyRequest: UpgradeProxyRequest,
|
|
35432
35507
|
DescribeBinlogDownloadUrlResponse: DescribeBinlogDownloadUrlResponse,
|
|
@@ -35541,6 +35616,7 @@ module.exports = {
|
|
|
35541
35616
|
CloseProxyEndPointRequest: CloseProxyEndPointRequest,
|
|
35542
35617
|
LibraDBInstanceInitInfo: LibraDBInstanceInitInfo,
|
|
35543
35618
|
DescribeBinlogsResponse: DescribeBinlogsResponse,
|
|
35619
|
+
OpenAIOptimizerResponse: OpenAIOptimizerResponse,
|
|
35544
35620
|
AuditInstanceInfo: AuditInstanceInfo,
|
|
35545
35621
|
AddClusterSlaveZoneResponse: AddClusterSlaveZoneResponse,
|
|
35546
35622
|
DescribeProxySpecsResponse: DescribeProxySpecsResponse,
|