tencentcloud-sdk-nodejs-intl-en 3.0.558 → 3.0.559
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/ckafka/v20190819/models.js +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/redis/v20180412/models.js +281 -95
- package/tencentcloud/redis/v20180412/redis_client.js +63 -37
- package/tencentcloud/rum/v20210622/models.js +21 -7
- package/tencentcloud/rum/v20210622/rum_client.js +1 -1
package/package.json
CHANGED
|
@@ -3854,7 +3854,7 @@ class DescribeTopicRequest extends AbstractModel {
|
|
|
3854
3854
|
this.Offset = null;
|
|
3855
3855
|
|
|
3856
3856
|
/**
|
|
3857
|
-
*
|
|
3857
|
+
* The number of results to be returned, which defaults to 20 if left empty. The maximum value is 50.
|
|
3858
3858
|
* @type {number || null}
|
|
3859
3859
|
*/
|
|
3860
3860
|
this.Limit = null;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.559";
|
|
2
2
|
module.exports = sdkVersion
|
|
@@ -966,7 +966,7 @@ class AssociateSecurityGroupsRequest extends AbstractModel {
|
|
|
966
966
|
super();
|
|
967
967
|
|
|
968
968
|
/**
|
|
969
|
-
* Database engine name
|
|
969
|
+
* Database engine name, which is `redis` for this API.
|
|
970
970
|
* @type {string || null}
|
|
971
971
|
*/
|
|
972
972
|
this.Product = null;
|
|
@@ -1571,7 +1571,7 @@ class DescribeInstancesResponse extends AbstractModel {
|
|
|
1571
1571
|
super();
|
|
1572
1572
|
|
|
1573
1573
|
/**
|
|
1574
|
-
*
|
|
1574
|
+
* Total number of instances
|
|
1575
1575
|
* @type {number || null}
|
|
1576
1576
|
*/
|
|
1577
1577
|
this.TotalCount = null;
|
|
@@ -4333,7 +4333,8 @@ class UpgradeVersionToMultiAvailabilityZonesRequest extends AbstractModel {
|
|
|
4333
4333
|
this.InstanceId = null;
|
|
4334
4334
|
|
|
4335
4335
|
/**
|
|
4336
|
-
* Whether to
|
|
4336
|
+
* Whether to support “Reading Local Nodes Only” feature after upgrading to multi-AZ deployment.
|
|
4337
|
+
ul><li>`true`: The “Read Local Nodes Only” feature is supported. During the upgrade, you need to upgrade the proxy version and Redis kernel minor version simultaneously, which will involve data migration and may take hours to complete. </li><li>`false`: The “Read Local Nodes Only” feature is not supported. Upgrading to multi-AZ deployment will involve metadata migration only without affecting the service, which generally take less than three minutes to complete.</li></ul>
|
|
4337
4338
|
* @type {boolean || null}
|
|
4338
4339
|
*/
|
|
4339
4340
|
this.UpgradeProxyAndRedisServer = null;
|
|
@@ -4654,6 +4655,34 @@ class DescribeInstanceMonitorTopNCmdTookResponse extends AbstractModel {
|
|
|
4654
4655
|
}
|
|
4655
4656
|
}
|
|
4656
4657
|
|
|
4658
|
+
/**
|
|
4659
|
+
* CloseSSL request structure.
|
|
4660
|
+
* @class
|
|
4661
|
+
*/
|
|
4662
|
+
class CloseSSLRequest extends AbstractModel {
|
|
4663
|
+
constructor(){
|
|
4664
|
+
super();
|
|
4665
|
+
|
|
4666
|
+
/**
|
|
4667
|
+
* Instance ID
|
|
4668
|
+
* @type {string || null}
|
|
4669
|
+
*/
|
|
4670
|
+
this.InstanceId = null;
|
|
4671
|
+
|
|
4672
|
+
}
|
|
4673
|
+
|
|
4674
|
+
/**
|
|
4675
|
+
* @private
|
|
4676
|
+
*/
|
|
4677
|
+
deserialize(params) {
|
|
4678
|
+
if (!params) {
|
|
4679
|
+
return;
|
|
4680
|
+
}
|
|
4681
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
4682
|
+
|
|
4683
|
+
}
|
|
4684
|
+
}
|
|
4685
|
+
|
|
4657
4686
|
/**
|
|
4658
4687
|
* DescribeInstanceMonitorBigKeySizeDist request structure.
|
|
4659
4688
|
* @class
|
|
@@ -5405,13 +5434,13 @@ class ModifyDBInstanceSecurityGroupsRequest extends AbstractModel {
|
|
|
5405
5434
|
super();
|
|
5406
5435
|
|
|
5407
5436
|
/**
|
|
5408
|
-
* Database engine name
|
|
5437
|
+
* Database engine name, which is `redis` for this API.
|
|
5409
5438
|
* @type {string || null}
|
|
5410
5439
|
*/
|
|
5411
5440
|
this.Product = null;
|
|
5412
5441
|
|
|
5413
5442
|
/**
|
|
5414
|
-
*
|
|
5443
|
+
* List of IDs of security groups to be modified, which is an array of one or more security group IDs.
|
|
5415
5444
|
* @type {Array.<string> || null}
|
|
5416
5445
|
*/
|
|
5417
5446
|
this.SecurityGroupIds = null;
|
|
@@ -5749,25 +5778,25 @@ class DescribeProjectSecurityGroupsRequest extends AbstractModel {
|
|
|
5749
5778
|
super();
|
|
5750
5779
|
|
|
5751
5780
|
/**
|
|
5752
|
-
* Database engine name
|
|
5781
|
+
* Database engine name, which is `redis` for this API.
|
|
5753
5782
|
* @type {string || null}
|
|
5754
5783
|
*/
|
|
5755
5784
|
this.Product = null;
|
|
5756
5785
|
|
|
5757
5786
|
/**
|
|
5758
|
-
* Project ID
|
|
5787
|
+
* Project ID
|
|
5759
5788
|
* @type {number || null}
|
|
5760
5789
|
*/
|
|
5761
5790
|
this.ProjectId = null;
|
|
5762
5791
|
|
|
5763
5792
|
/**
|
|
5764
|
-
* Offset
|
|
5793
|
+
* Offset, which is an integral multiple of `Limit`.
|
|
5765
5794
|
* @type {number || null}
|
|
5766
5795
|
*/
|
|
5767
5796
|
this.Offset = null;
|
|
5768
5797
|
|
|
5769
5798
|
/**
|
|
5770
|
-
*
|
|
5799
|
+
* The number of security groups to be pulled. Default value: `20`.
|
|
5771
5800
|
* @type {number || null}
|
|
5772
5801
|
*/
|
|
5773
5802
|
this.Limit = null;
|
|
@@ -6608,6 +6637,41 @@ class TradeDealDetail extends AbstractModel {
|
|
|
6608
6637
|
}
|
|
6609
6638
|
}
|
|
6610
6639
|
|
|
6640
|
+
/**
|
|
6641
|
+
* Tag bound to the instance purchased via API
|
|
6642
|
+
* @class
|
|
6643
|
+
*/
|
|
6644
|
+
class ResourceTag extends AbstractModel {
|
|
6645
|
+
constructor(){
|
|
6646
|
+
super();
|
|
6647
|
+
|
|
6648
|
+
/**
|
|
6649
|
+
* Tag key
|
|
6650
|
+
* @type {string || null}
|
|
6651
|
+
*/
|
|
6652
|
+
this.TagKey = null;
|
|
6653
|
+
|
|
6654
|
+
/**
|
|
6655
|
+
* Tag value
|
|
6656
|
+
* @type {string || null}
|
|
6657
|
+
*/
|
|
6658
|
+
this.TagValue = null;
|
|
6659
|
+
|
|
6660
|
+
}
|
|
6661
|
+
|
|
6662
|
+
/**
|
|
6663
|
+
* @private
|
|
6664
|
+
*/
|
|
6665
|
+
deserialize(params) {
|
|
6666
|
+
if (!params) {
|
|
6667
|
+
return;
|
|
6668
|
+
}
|
|
6669
|
+
this.TagKey = 'TagKey' in params ? params.TagKey : null;
|
|
6670
|
+
this.TagValue = 'TagValue' in params ? params.TagValue : null;
|
|
6671
|
+
|
|
6672
|
+
}
|
|
6673
|
+
}
|
|
6674
|
+
|
|
6611
6675
|
/**
|
|
6612
6676
|
* AssociateSecurityGroups response structure.
|
|
6613
6677
|
* @class
|
|
@@ -6974,7 +7038,7 @@ class DescribeInstancesRequest extends AbstractModel {
|
|
|
6974
7038
|
super();
|
|
6975
7039
|
|
|
6976
7040
|
/**
|
|
6977
|
-
* Number of
|
|
7041
|
+
* Number of instances. Default value: 20. Maximum value: 1000.
|
|
6978
7042
|
* @type {number || null}
|
|
6979
7043
|
*/
|
|
6980
7044
|
this.Limit = null;
|
|
@@ -6986,46 +7050,46 @@ class DescribeInstancesRequest extends AbstractModel {
|
|
|
6986
7050
|
this.Offset = null;
|
|
6987
7051
|
|
|
6988
7052
|
/**
|
|
6989
|
-
* Instance ID, such as crs-6ubhgouj
|
|
7053
|
+
* Instance ID, such as crs-6ubhgouj.
|
|
6990
7054
|
* @type {string || null}
|
|
6991
7055
|
*/
|
|
6992
7056
|
this.InstanceId = null;
|
|
6993
7057
|
|
|
6994
7058
|
/**
|
|
6995
|
-
*
|
|
7059
|
+
* Instance sorting criteria. The enumerated values are as listed below: <ul><li>projectId: Project ID. </li><li>createtime: Instance creation time. </li><li>instancename: Instance name. </li><li>type: Instance type. </li><li>curDeadline: Instance expiration time. </li></ul>
|
|
6996
7060
|
* @type {string || null}
|
|
6997
7061
|
*/
|
|
6998
7062
|
this.OrderBy = null;
|
|
6999
7063
|
|
|
7000
7064
|
/**
|
|
7001
|
-
* 1
|
|
7065
|
+
* Instance sorting order. <ul><li>`1`: Descending. </li><li>`0`: Ascending. Default value: `1`.</li></ul>
|
|
7002
7066
|
* @type {number || null}
|
|
7003
7067
|
*/
|
|
7004
7068
|
this.OrderType = null;
|
|
7005
7069
|
|
|
7006
7070
|
/**
|
|
7007
|
-
* Array of VPC IDs such as 47525.
|
|
7071
|
+
* Array of VPC IDs such as 47525. If this parameter is not passed in or the array is empty, the classic network will be selected by default. This parameter is retained and can be ignored. It is set based on `UniqVpcIds` parameter format.
|
|
7008
7072
|
* @type {Array.<string> || null}
|
|
7009
7073
|
*/
|
|
7010
7074
|
this.VpcIds = null;
|
|
7011
7075
|
|
|
7012
7076
|
/**
|
|
7013
|
-
* Array of subnet IDs such as 56854.
|
|
7077
|
+
* Array of VPC subnet IDs such as 56854. This parameter is retained and can be ignored. It is set based on `UniqSubnetIds` parameter format.
|
|
7014
7078
|
* @type {Array.<string> || null}
|
|
7015
7079
|
*/
|
|
7016
7080
|
this.SubnetIds = null;
|
|
7017
7081
|
|
|
7018
7082
|
/**
|
|
7019
|
-
*
|
|
7020
|
-
* @type {
|
|
7083
|
+
* Keywords for fuzzy query. which can be used to fuzzy query an instance by its ID or name.
|
|
7084
|
+
* @type {string || null}
|
|
7021
7085
|
*/
|
|
7022
|
-
this.
|
|
7086
|
+
this.SearchKey = null;
|
|
7023
7087
|
|
|
7024
7088
|
/**
|
|
7025
|
-
*
|
|
7026
|
-
* @type {
|
|
7089
|
+
* Array of project IDs
|
|
7090
|
+
* @type {Array.<number> || null}
|
|
7027
7091
|
*/
|
|
7028
|
-
this.
|
|
7092
|
+
this.ProjectIds = null;
|
|
7029
7093
|
|
|
7030
7094
|
/**
|
|
7031
7095
|
* Instance name
|
|
@@ -7034,61 +7098,61 @@ class DescribeInstancesRequest extends AbstractModel {
|
|
|
7034
7098
|
this.InstanceName = null;
|
|
7035
7099
|
|
|
7036
7100
|
/**
|
|
7037
|
-
* Array of VPC IDs such as vpc-sad23jfdfk.
|
|
7101
|
+
* Array of VPC IDs such as vpc-sad23jfdfk. If this parameter is not passed in or or the array is empty, the classic network will be selected by default.
|
|
7038
7102
|
* @type {Array.<string> || null}
|
|
7039
7103
|
*/
|
|
7040
7104
|
this.UniqVpcIds = null;
|
|
7041
7105
|
|
|
7042
7106
|
/**
|
|
7043
|
-
* Array of subnet IDs such as subnet-fdj24n34j2
|
|
7107
|
+
* Array of VPC subnet IDs such as subnet-fdj24n34j2
|
|
7044
7108
|
* @type {Array.<string> || null}
|
|
7045
7109
|
*/
|
|
7046
7110
|
this.UniqSubnetIds = null;
|
|
7047
7111
|
|
|
7048
7112
|
/**
|
|
7049
|
-
*
|
|
7113
|
+
* Array of region IDs (disused). The corresponding region can be queried through the common parameter `Region`.
|
|
7050
7114
|
* @type {Array.<number> || null}
|
|
7051
7115
|
*/
|
|
7052
7116
|
this.RegionIds = null;
|
|
7053
7117
|
|
|
7054
7118
|
/**
|
|
7055
|
-
* Instance status. 0
|
|
7119
|
+
* Instance status. <ul><li>`0`: Uninitialized. </li><li>`1`: In the process. </li><li>`2`: Running. </li><li>`-2`: Isolated. </li><li>`-3`: To be deleted. </li></ul>
|
|
7056
7120
|
* @type {Array.<number> || null}
|
|
7057
7121
|
*/
|
|
7058
7122
|
this.Status = null;
|
|
7059
7123
|
|
|
7060
7124
|
/**
|
|
7061
|
-
*
|
|
7125
|
+
* Instance architecture. <ul><li>`1`: Standalone edition. </li><li>`2`: Master-replica edition. </li><li>`3`: Cluster edition. </li></ul>
|
|
7062
7126
|
* @type {number || null}
|
|
7063
7127
|
*/
|
|
7064
7128
|
this.TypeVersion = null;
|
|
7065
7129
|
|
|
7066
7130
|
/**
|
|
7067
|
-
*
|
|
7131
|
+
* Storage engine information. Valid values: `Redis-2.8`, `Redis-4.0`, `Redis-5.0`, `Redis-6.0` or `CKV`.
|
|
7068
7132
|
* @type {string || null}
|
|
7069
7133
|
*/
|
|
7070
7134
|
this.EngineName = null;
|
|
7071
7135
|
|
|
7072
7136
|
/**
|
|
7073
|
-
* Renewal mode. 0
|
|
7137
|
+
* Renewal mode. <ul><li>`0`: Manual renewal (default). </li><li>`1`: Auto-renewal. </li><li>`2`: No auto-renewal (set by user)</ul>
|
|
7074
7138
|
* @type {Array.<number> || null}
|
|
7075
7139
|
*/
|
|
7076
7140
|
this.AutoRenew = null;
|
|
7077
7141
|
|
|
7078
7142
|
/**
|
|
7079
|
-
* Billing mode.
|
|
7143
|
+
* Billing mode. Only pay-as-you-go billing is supported.
|
|
7080
7144
|
* @type {string || null}
|
|
7081
7145
|
*/
|
|
7082
7146
|
this.BillingMode = null;
|
|
7083
7147
|
|
|
7084
7148
|
/**
|
|
7085
|
-
* Instance type. 1
|
|
7149
|
+
* Instance type. <ul><li>`1`: Legacy Redis cluster edition. </li><li>`2`: Redis 2.8 master-replica edition. </li><li>`3`: CKV master-replica edition. </li><li>`4`: CKV cluster edition. </li><li>`5`: Redis 2.8 standalone edition. </li><li>`6`: Redis 4.0 master-replica edition. </li><li>`7`: Redis 4.0 cluster edition. </li><li>8: Redis 5.0 master-replica edition. </li><li>`9`: Redis 5.0 cluster edition. </li></ul>
|
|
7086
7150
|
* @type {number || null}
|
|
7087
7151
|
*/
|
|
7088
7152
|
this.Type = null;
|
|
7089
7153
|
|
|
7090
7154
|
/**
|
|
7091
|
-
*
|
|
7155
|
+
* Array of the search keywords, which can query the instance by its ID, name, IP address.
|
|
7092
7156
|
* @type {Array.<string> || null}
|
|
7093
7157
|
*/
|
|
7094
7158
|
this.SearchKeys = null;
|
|
@@ -7106,29 +7170,35 @@ class DescribeInstancesRequest extends AbstractModel {
|
|
|
7106
7170
|
this.MonitorVersion = null;
|
|
7107
7171
|
|
|
7108
7172
|
/**
|
|
7109
|
-
*
|
|
7173
|
+
* Resources filter by tag key and value. If this parameter is not specified or is an empty array, resources will not be filtered.
|
|
7110
7174
|
* @type {Array.<InstanceTagInfo> || null}
|
|
7111
7175
|
*/
|
|
7112
7176
|
this.InstanceTags = null;
|
|
7113
7177
|
|
|
7114
7178
|
/**
|
|
7115
|
-
*
|
|
7179
|
+
* Resources filter by tag key. If this parameter is not specified or is an empty array, resources will not be filtered.
|
|
7116
7180
|
* @type {Array.<string> || null}
|
|
7117
7181
|
*/
|
|
7118
7182
|
this.TagKeys = null;
|
|
7119
7183
|
|
|
7120
7184
|
/**
|
|
7121
|
-
*
|
|
7185
|
+
* Instance product version. If this parameter is not passed in or the array is empty, the instances will not be filtered based this parameter by default. <ul><li>`local`: local disk edition. </li><li>`cloud`: Cloud disk edition. </li><li>`cdc`: Dedicated cluster edition. </li></ul>
|
|
7122
7186
|
* @type {Array.<string> || null}
|
|
7123
7187
|
*/
|
|
7124
7188
|
this.ProductVersions = null;
|
|
7125
7189
|
|
|
7126
7190
|
/**
|
|
7127
|
-
*
|
|
7191
|
+
* Batch query of the specified instances ID. The number of results returned is based on `Limit`.
|
|
7128
7192
|
* @type {Array.<string> || null}
|
|
7129
7193
|
*/
|
|
7130
7194
|
this.InstanceIds = null;
|
|
7131
7195
|
|
|
7196
|
+
/**
|
|
7197
|
+
* AZ deployment mode. <ul><li>`singleaz`: Single-AZ. </li><li>`1`: Multi-AZ. </li></ul>
|
|
7198
|
+
* @type {string || null}
|
|
7199
|
+
*/
|
|
7200
|
+
this.AzMode = null;
|
|
7201
|
+
|
|
7132
7202
|
}
|
|
7133
7203
|
|
|
7134
7204
|
/**
|
|
@@ -7145,8 +7215,8 @@ class DescribeInstancesRequest extends AbstractModel {
|
|
|
7145
7215
|
this.OrderType = 'OrderType' in params ? params.OrderType : null;
|
|
7146
7216
|
this.VpcIds = 'VpcIds' in params ? params.VpcIds : null;
|
|
7147
7217
|
this.SubnetIds = 'SubnetIds' in params ? params.SubnetIds : null;
|
|
7148
|
-
this.ProjectIds = 'ProjectIds' in params ? params.ProjectIds : null;
|
|
7149
7218
|
this.SearchKey = 'SearchKey' in params ? params.SearchKey : null;
|
|
7219
|
+
this.ProjectIds = 'ProjectIds' in params ? params.ProjectIds : null;
|
|
7150
7220
|
this.InstanceName = 'InstanceName' in params ? params.InstanceName : null;
|
|
7151
7221
|
this.UniqVpcIds = 'UniqVpcIds' in params ? params.UniqVpcIds : null;
|
|
7152
7222
|
this.UniqSubnetIds = 'UniqSubnetIds' in params ? params.UniqSubnetIds : null;
|
|
@@ -7172,6 +7242,7 @@ class DescribeInstancesRequest extends AbstractModel {
|
|
|
7172
7242
|
this.TagKeys = 'TagKeys' in params ? params.TagKeys : null;
|
|
7173
7243
|
this.ProductVersions = 'ProductVersions' in params ? params.ProductVersions : null;
|
|
7174
7244
|
this.InstanceIds = 'InstanceIds' in params ? params.InstanceIds : null;
|
|
7245
|
+
this.AzMode = 'AzMode' in params ? params.AzMode : null;
|
|
7175
7246
|
|
|
7176
7247
|
}
|
|
7177
7248
|
}
|
|
@@ -7802,7 +7873,7 @@ class InstanceSet extends AbstractModel {
|
|
|
7802
7873
|
this.InstanceId = null;
|
|
7803
7874
|
|
|
7804
7875
|
/**
|
|
7805
|
-
* User
|
|
7876
|
+
* User's Appid
|
|
7806
7877
|
* @type {number || null}
|
|
7807
7878
|
*/
|
|
7808
7879
|
this.Appid = null;
|
|
@@ -7814,7 +7885,7 @@ class InstanceSet extends AbstractModel {
|
|
|
7814
7885
|
this.ProjectId = null;
|
|
7815
7886
|
|
|
7816
7887
|
/**
|
|
7817
|
-
* Region ID. 1: Guangzhou; 4: Shanghai; 5: Hong Kong (China); 6: Toronto; 7: Shanghai Finance; 8: Beijing; 9: Singapore; 11: Shenzhen Finance; 15: West US (Silicon Valley); 16: Chengdu; 17: Germany; 18: South Korea; 19: Chongqing; 21: India; 22: East US (Virginia); 23: Thailand; 24: Russia; 25: Japan
|
|
7888
|
+
* Region ID. 1: Guangzhou; 4: Shanghai; 5: Hong Kong (China); 6: Toronto; 7: Shanghai Finance; 8: Beijing; 9: Singapore; 11: Shenzhen Finance; 15: West US (Silicon Valley); 16: Chengdu; 17: Germany; 18: South Korea; 19: Chongqing; 21: India; 22: East US (Virginia); 23: Thailand; 24: Russia; 25: Japan.
|
|
7818
7889
|
* @type {number || null}
|
|
7819
7890
|
*/
|
|
7820
7891
|
this.RegionId = null;
|
|
@@ -7826,19 +7897,19 @@ class InstanceSet extends AbstractModel {
|
|
|
7826
7897
|
this.ZoneId = null;
|
|
7827
7898
|
|
|
7828
7899
|
/**
|
|
7829
|
-
* VPC ID, such as 75101
|
|
7900
|
+
* VPC ID, such as 75101.
|
|
7830
7901
|
* @type {number || null}
|
|
7831
7902
|
*/
|
|
7832
7903
|
this.VpcId = null;
|
|
7833
7904
|
|
|
7834
7905
|
/**
|
|
7835
|
-
* VPC subnet ID, such as 46315
|
|
7906
|
+
* VPC subnet ID, such as 46315.
|
|
7836
7907
|
* @type {number || null}
|
|
7837
7908
|
*/
|
|
7838
7909
|
this.SubnetId = null;
|
|
7839
7910
|
|
|
7840
7911
|
/**
|
|
7841
|
-
* Current instance status. 0
|
|
7912
|
+
* Current instance status. <ul><li>`0`: To be initialized. </li><li>`1`: In the process. </li><li>`2`: Running. </li><li>`-2`: Isolated. </li><li>`-3`: To be deleted. </li></ul>
|
|
7842
7913
|
* @type {number || null}
|
|
7843
7914
|
*/
|
|
7844
7915
|
this.Status = null;
|
|
@@ -7850,7 +7921,7 @@ class InstanceSet extends AbstractModel {
|
|
|
7850
7921
|
this.WanIp = null;
|
|
7851
7922
|
|
|
7852
7923
|
/**
|
|
7853
|
-
* Port number of
|
|
7924
|
+
* Port number of an instance
|
|
7854
7925
|
* @type {number || null}
|
|
7855
7926
|
*/
|
|
7856
7927
|
this.Port = null;
|
|
@@ -7874,13 +7945,13 @@ class InstanceSet extends AbstractModel {
|
|
|
7874
7945
|
this.SizeUsed = null;
|
|
7875
7946
|
|
|
7876
7947
|
/**
|
|
7877
|
-
* Instance type.
|
|
7948
|
+
* Instance type. <ul><li>`1`: Redis 2.8 memory edition in cluster architecture. </li><li>`2`: Redis 2.8 memory edition in standard architecture. </li><li>`3`: CKV 3.2 memory edition in standard architecture. </li><li>`4`: CKV 3.2 memory edition in cluster architecture. </li><li>`5`: Redis 2.8 memory edition in standalone architecture. </li></li><li>`6`: Redis 4.0 memory edition in standard architecture. </li></li><li>`7`: Redis 4.0 memory edition in cluster architecture. </li></li><li>`8`: Redis 5.0 memory edition in standard architecture. </li></li><li>`9`: Redis 5.0 memory edition in cluster architecture. </li></ul>
|
|
7878
7949
|
* @type {number || null}
|
|
7879
7950
|
*/
|
|
7880
7951
|
this.Type = null;
|
|
7881
7952
|
|
|
7882
7953
|
/**
|
|
7883
|
-
* Whether to set the auto-renewal flag for
|
|
7954
|
+
* Whether to set the auto-renewal flag for an instance. <ul><li>`1`: Auto-renewal set. </li><li>`0`: Auto-renewal not set.</li></ul>
|
|
7884
7955
|
* @type {number || null}
|
|
7885
7956
|
*/
|
|
7886
7957
|
this.AutoRenewFlag = null;
|
|
@@ -7892,49 +7963,49 @@ class InstanceSet extends AbstractModel {
|
|
|
7892
7963
|
this.DeadlineTime = null;
|
|
7893
7964
|
|
|
7894
7965
|
/**
|
|
7895
|
-
* Engine: Redis
|
|
7966
|
+
* Engine: Redis community edition, Tencent Cloud CKV
|
|
7896
7967
|
* @type {string || null}
|
|
7897
7968
|
*/
|
|
7898
7969
|
this.Engine = null;
|
|
7899
7970
|
|
|
7900
7971
|
/**
|
|
7901
|
-
*
|
|
7972
|
+
* Product type. <ul><li>`standalone`: Standard edition. </li><li>`cluster`: Cluster edition. </li></ul>
|
|
7902
7973
|
* @type {string || null}
|
|
7903
7974
|
*/
|
|
7904
7975
|
this.ProductType = null;
|
|
7905
7976
|
|
|
7906
7977
|
/**
|
|
7907
|
-
* VPC ID, such as vpc-fk33jsf43kgv
|
|
7978
|
+
* VPC ID, such as vpc-fk33jsf43kgv.
|
|
7908
7979
|
* @type {string || null}
|
|
7909
7980
|
*/
|
|
7910
7981
|
this.UniqVpcId = null;
|
|
7911
7982
|
|
|
7912
7983
|
/**
|
|
7913
|
-
* VPC subnet ID, such as subnet-fd3j6l35mm0
|
|
7984
|
+
* VPC subnet ID, such as subnet-fd3j6l35mm0.
|
|
7914
7985
|
* @type {string || null}
|
|
7915
7986
|
*/
|
|
7916
7987
|
this.UniqSubnetId = null;
|
|
7917
7988
|
|
|
7918
7989
|
/**
|
|
7919
|
-
* Billing mode.
|
|
7990
|
+
* Billing mode. Only pay-as-you-go billing is supported.
|
|
7920
7991
|
* @type {number || null}
|
|
7921
7992
|
*/
|
|
7922
7993
|
this.BillingMode = null;
|
|
7923
7994
|
|
|
7924
7995
|
/**
|
|
7925
|
-
* Description of
|
|
7996
|
+
* Description of an instance status, such as "Running".
|
|
7926
7997
|
* @type {string || null}
|
|
7927
7998
|
*/
|
|
7928
7999
|
this.InstanceTitle = null;
|
|
7929
8000
|
|
|
7930
8001
|
/**
|
|
7931
|
-
*
|
|
8002
|
+
* Scheduled deactivation time
|
|
7932
8003
|
* @type {string || null}
|
|
7933
8004
|
*/
|
|
7934
8005
|
this.OfflineTime = null;
|
|
7935
8006
|
|
|
7936
8007
|
/**
|
|
7937
|
-
* Sub-status returned for
|
|
8008
|
+
* Sub-status returned for an instance in process
|
|
7938
8009
|
* @type {number || null}
|
|
7939
8010
|
*/
|
|
7940
8011
|
this.SubStatus = null;
|
|
@@ -7982,123 +8053,165 @@ class InstanceSet extends AbstractModel {
|
|
|
7982
8053
|
this.CloseTime = null;
|
|
7983
8054
|
|
|
7984
8055
|
/**
|
|
7985
|
-
* Read weight of
|
|
8056
|
+
* Read weight of a replica node
|
|
7986
8057
|
* @type {number || null}
|
|
7987
8058
|
*/
|
|
7988
8059
|
this.SlaveReadWeight = null;
|
|
7989
8060
|
|
|
7990
8061
|
/**
|
|
7991
8062
|
* Instance tag information
|
|
7992
|
-
Note: This field may return null, indicating that no valid
|
|
8063
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
7993
8064
|
* @type {Array.<InstanceTagInfo> || null}
|
|
7994
8065
|
*/
|
|
7995
8066
|
this.InstanceTags = null;
|
|
7996
8067
|
|
|
7997
8068
|
/**
|
|
7998
8069
|
* Project name
|
|
7999
|
-
Note: This field may return null, indicating that no valid
|
|
8070
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
8000
8071
|
* @type {string || null}
|
|
8001
8072
|
*/
|
|
8002
8073
|
this.ProjectName = null;
|
|
8003
8074
|
|
|
8004
8075
|
/**
|
|
8005
|
-
* Whether
|
|
8006
|
-
Note: This field may return null, indicating that no valid
|
|
8076
|
+
* Whether an instance is password-free. <ul><li>`true`: Yes. </li><li>`false`: No. </li></ul>
|
|
8077
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
8007
8078
|
* @type {boolean || null}
|
|
8008
8079
|
*/
|
|
8009
8080
|
this.NoAuth = null;
|
|
8010
8081
|
|
|
8011
8082
|
/**
|
|
8012
8083
|
* Number of client connections
|
|
8013
|
-
Note: This field may return null, indicating that no valid
|
|
8084
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
8014
8085
|
* @type {number || null}
|
|
8015
8086
|
*/
|
|
8016
8087
|
this.ClientLimit = null;
|
|
8017
8088
|
|
|
8018
8089
|
/**
|
|
8019
8090
|
* DTS status (internal parameter, which can be ignored)
|
|
8020
|
-
Note: This field may return null, indicating that no valid
|
|
8091
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
8021
8092
|
* @type {number || null}
|
|
8022
8093
|
*/
|
|
8023
8094
|
this.DtsStatus = null;
|
|
8024
8095
|
|
|
8025
8096
|
/**
|
|
8026
|
-
*
|
|
8027
|
-
Note: This field may return null, indicating that no valid
|
|
8097
|
+
* Upper shard bandwidth limit in MB
|
|
8098
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
8028
8099
|
* @type {number || null}
|
|
8029
8100
|
*/
|
|
8030
8101
|
this.NetLimit = null;
|
|
8031
8102
|
|
|
8032
8103
|
/**
|
|
8033
8104
|
* Password-free instance flag (internal parameter, which can be ignored)
|
|
8034
|
-
Note: This field may return null, indicating that no valid
|
|
8105
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
8035
8106
|
* @type {number || null}
|
|
8036
8107
|
*/
|
|
8037
8108
|
this.PasswordFree = null;
|
|
8038
8109
|
|
|
8039
|
-
/**
|
|
8040
|
-
* Read-only instance flag (internal parameter, which can be ignored)
|
|
8041
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8042
|
-
* @type {number || null}
|
|
8043
|
-
*/
|
|
8044
|
-
this.ReadOnly = null;
|
|
8045
|
-
|
|
8046
8110
|
/**
|
|
8047
8111
|
* Internal parameter, which can be ignored.
|
|
8048
|
-
Note: This field may return null, indicating that no valid
|
|
8112
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
8049
8113
|
* @type {string || null}
|
|
8050
8114
|
*/
|
|
8051
8115
|
this.Vip6 = null;
|
|
8052
8116
|
|
|
8117
|
+
/**
|
|
8118
|
+
* Read-only instance flag (internal parameter, which can be ignored)
|
|
8119
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
8120
|
+
* @type {number || null}
|
|
8121
|
+
*/
|
|
8122
|
+
this.ReadOnly = null;
|
|
8123
|
+
|
|
8053
8124
|
/**
|
|
8054
8125
|
* Internal parameter, which can be ignored.
|
|
8055
|
-
Note: This field may return null, indicating that no valid
|
|
8126
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
8056
8127
|
* @type {string || null}
|
|
8057
8128
|
*/
|
|
8058
8129
|
this.RemainBandwidthDuration = null;
|
|
8059
8130
|
|
|
8060
8131
|
/**
|
|
8061
|
-
*
|
|
8062
|
-
Note: This field may return null, indicating that no valid
|
|
8132
|
+
* This parameter can be ignored for Redis instance.
|
|
8133
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
8063
8134
|
* @type {number || null}
|
|
8064
8135
|
*/
|
|
8065
8136
|
this.DiskSize = null;
|
|
8066
8137
|
|
|
8067
8138
|
/**
|
|
8068
|
-
* Monitoring
|
|
8069
|
-
Note: This field may return null, indicating that no valid
|
|
8139
|
+
* Monitoring granularity type. <ul><li>`1m`: Monitoring at 1-minute granularity). </li><li>`5s`: Monitoring at 5-second granularity. </li></ul>
|
|
8140
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
8070
8141
|
* @type {string || null}
|
|
8071
8142
|
*/
|
|
8072
8143
|
this.MonitorVersion = null;
|
|
8073
8144
|
|
|
8074
8145
|
/**
|
|
8075
|
-
*
|
|
8076
|
-
Note: This field may return null, indicating that no valid
|
|
8146
|
+
* The minimum number of max client connections
|
|
8147
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
8077
8148
|
* @type {number || null}
|
|
8078
8149
|
*/
|
|
8079
8150
|
this.ClientLimitMin = null;
|
|
8080
8151
|
|
|
8081
8152
|
/**
|
|
8082
|
-
*
|
|
8083
|
-
Note: This field may return null, indicating that no valid
|
|
8153
|
+
* The maximum number of max client connections
|
|
8154
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
8084
8155
|
* @type {number || null}
|
|
8085
8156
|
*/
|
|
8086
8157
|
this.ClientLimitMax = null;
|
|
8087
8158
|
|
|
8088
8159
|
/**
|
|
8089
8160
|
* Instance node details
|
|
8090
|
-
Note: This field may return null, indicating that no valid
|
|
8161
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
8091
8162
|
* @type {Array.<RedisNodeInfo> || null}
|
|
8092
8163
|
*/
|
|
8093
8164
|
this.NodeSet = null;
|
|
8094
8165
|
|
|
8095
8166
|
/**
|
|
8096
|
-
*
|
|
8097
|
-
Note: This field may return null, indicating that no valid
|
|
8167
|
+
* Information of the region where the instance is deployed, such as `ap-guangzhou`.
|
|
8168
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
8098
8169
|
* @type {string || null}
|
|
8099
8170
|
*/
|
|
8100
8171
|
this.Region = null;
|
|
8101
8172
|
|
|
8173
|
+
/**
|
|
8174
|
+
* Public IP
|
|
8175
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
8176
|
+
* @type {string || null}
|
|
8177
|
+
*/
|
|
8178
|
+
this.WanAddress = null;
|
|
8179
|
+
|
|
8180
|
+
/**
|
|
8181
|
+
* Polaris service address
|
|
8182
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
8183
|
+
* @type {string || null}
|
|
8184
|
+
*/
|
|
8185
|
+
this.PolarisServer = null;
|
|
8186
|
+
|
|
8187
|
+
/**
|
|
8188
|
+
* The current proxy version of an instance
|
|
8189
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
8190
|
+
* @type {string || null}
|
|
8191
|
+
*/
|
|
8192
|
+
this.CurrentProxyVersion = null;
|
|
8193
|
+
|
|
8194
|
+
/**
|
|
8195
|
+
* The current cache minor version of an instance
|
|
8196
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
8197
|
+
* @type {string || null}
|
|
8198
|
+
*/
|
|
8199
|
+
this.CurrentRedisVersion = null;
|
|
8200
|
+
|
|
8201
|
+
/**
|
|
8202
|
+
* Proxy version, which can be upgraded for the instance
|
|
8203
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
8204
|
+
* @type {string || null}
|
|
8205
|
+
*/
|
|
8206
|
+
this.UpgradeProxyVersion = null;
|
|
8207
|
+
|
|
8208
|
+
/**
|
|
8209
|
+
* Cache minor version, which can be upgraded for the instance
|
|
8210
|
+
Note: This field may return null, indicating that no valid value can be obtained.
|
|
8211
|
+
* @type {string || null}
|
|
8212
|
+
*/
|
|
8213
|
+
this.UpgradeRedisVersion = null;
|
|
8214
|
+
|
|
8102
8215
|
}
|
|
8103
8216
|
|
|
8104
8217
|
/**
|
|
@@ -8164,8 +8277,8 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
8164
8277
|
this.DtsStatus = 'DtsStatus' in params ? params.DtsStatus : null;
|
|
8165
8278
|
this.NetLimit = 'NetLimit' in params ? params.NetLimit : null;
|
|
8166
8279
|
this.PasswordFree = 'PasswordFree' in params ? params.PasswordFree : null;
|
|
8167
|
-
this.ReadOnly = 'ReadOnly' in params ? params.ReadOnly : null;
|
|
8168
8280
|
this.Vip6 = 'Vip6' in params ? params.Vip6 : null;
|
|
8281
|
+
this.ReadOnly = 'ReadOnly' in params ? params.ReadOnly : null;
|
|
8169
8282
|
this.RemainBandwidthDuration = 'RemainBandwidthDuration' in params ? params.RemainBandwidthDuration : null;
|
|
8170
8283
|
this.DiskSize = 'DiskSize' in params ? params.DiskSize : null;
|
|
8171
8284
|
this.MonitorVersion = 'MonitorVersion' in params ? params.MonitorVersion : null;
|
|
@@ -8181,6 +8294,12 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
8181
8294
|
}
|
|
8182
8295
|
}
|
|
8183
8296
|
this.Region = 'Region' in params ? params.Region : null;
|
|
8297
|
+
this.WanAddress = 'WanAddress' in params ? params.WanAddress : null;
|
|
8298
|
+
this.PolarisServer = 'PolarisServer' in params ? params.PolarisServer : null;
|
|
8299
|
+
this.CurrentProxyVersion = 'CurrentProxyVersion' in params ? params.CurrentProxyVersion : null;
|
|
8300
|
+
this.CurrentRedisVersion = 'CurrentRedisVersion' in params ? params.CurrentRedisVersion : null;
|
|
8301
|
+
this.UpgradeProxyVersion = 'UpgradeProxyVersion' in params ? params.UpgradeProxyVersion : null;
|
|
8302
|
+
this.UpgradeRedisVersion = 'UpgradeRedisVersion' in params ? params.UpgradeRedisVersion : null;
|
|
8184
8303
|
|
|
8185
8304
|
}
|
|
8186
8305
|
}
|
|
@@ -8214,24 +8333,24 @@ class ReleaseWanAddressRequest extends AbstractModel {
|
|
|
8214
8333
|
}
|
|
8215
8334
|
|
|
8216
8335
|
/**
|
|
8217
|
-
*
|
|
8336
|
+
* CloseSSL response structure.
|
|
8218
8337
|
* @class
|
|
8219
8338
|
*/
|
|
8220
|
-
class
|
|
8339
|
+
class CloseSSLResponse extends AbstractModel {
|
|
8221
8340
|
constructor(){
|
|
8222
8341
|
super();
|
|
8223
8342
|
|
|
8224
8343
|
/**
|
|
8225
|
-
*
|
|
8226
|
-
* @type {
|
|
8344
|
+
* Task ID
|
|
8345
|
+
* @type {number || null}
|
|
8227
8346
|
*/
|
|
8228
|
-
this.
|
|
8347
|
+
this.TaskId = null;
|
|
8229
8348
|
|
|
8230
8349
|
/**
|
|
8231
|
-
*
|
|
8350
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
8232
8351
|
* @type {string || null}
|
|
8233
8352
|
*/
|
|
8234
|
-
this.
|
|
8353
|
+
this.RequestId = null;
|
|
8235
8354
|
|
|
8236
8355
|
}
|
|
8237
8356
|
|
|
@@ -8242,8 +8361,8 @@ class ResourceTag extends AbstractModel {
|
|
|
8242
8361
|
if (!params) {
|
|
8243
8362
|
return;
|
|
8244
8363
|
}
|
|
8245
|
-
this.
|
|
8246
|
-
this.
|
|
8364
|
+
this.TaskId = 'TaskId' in params ? params.TaskId : null;
|
|
8365
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
8247
8366
|
|
|
8248
8367
|
}
|
|
8249
8368
|
}
|
|
@@ -8615,6 +8734,34 @@ class ModifyInstanceParamsRequest extends AbstractModel {
|
|
|
8615
8734
|
}
|
|
8616
8735
|
}
|
|
8617
8736
|
|
|
8737
|
+
/**
|
|
8738
|
+
* OpenSSL request structure.
|
|
8739
|
+
* @class
|
|
8740
|
+
*/
|
|
8741
|
+
class OpenSSLRequest extends AbstractModel {
|
|
8742
|
+
constructor(){
|
|
8743
|
+
super();
|
|
8744
|
+
|
|
8745
|
+
/**
|
|
8746
|
+
* Instance ID
|
|
8747
|
+
* @type {string || null}
|
|
8748
|
+
*/
|
|
8749
|
+
this.InstanceId = null;
|
|
8750
|
+
|
|
8751
|
+
}
|
|
8752
|
+
|
|
8753
|
+
/**
|
|
8754
|
+
* @private
|
|
8755
|
+
*/
|
|
8756
|
+
deserialize(params) {
|
|
8757
|
+
if (!params) {
|
|
8758
|
+
return;
|
|
8759
|
+
}
|
|
8760
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
8761
|
+
|
|
8762
|
+
}
|
|
8763
|
+
}
|
|
8764
|
+
|
|
8618
8765
|
/**
|
|
8619
8766
|
* Backup download information
|
|
8620
8767
|
* @class
|
|
@@ -9466,13 +9613,13 @@ class DisassociateSecurityGroupsRequest extends AbstractModel {
|
|
|
9466
9613
|
super();
|
|
9467
9614
|
|
|
9468
9615
|
/**
|
|
9469
|
-
* Database engine name
|
|
9616
|
+
* Database engine name, which is `redis` for this API.
|
|
9470
9617
|
* @type {string || null}
|
|
9471
9618
|
*/
|
|
9472
9619
|
this.Product = null;
|
|
9473
9620
|
|
|
9474
9621
|
/**
|
|
9475
|
-
* Security group ID
|
|
9622
|
+
* Security group ID
|
|
9476
9623
|
* @type {string || null}
|
|
9477
9624
|
*/
|
|
9478
9625
|
this.SecurityGroupId = null;
|
|
@@ -10013,6 +10160,41 @@ class InstanceClusterShard extends AbstractModel {
|
|
|
10013
10160
|
}
|
|
10014
10161
|
}
|
|
10015
10162
|
|
|
10163
|
+
/**
|
|
10164
|
+
* OpenSSL response structure.
|
|
10165
|
+
* @class
|
|
10166
|
+
*/
|
|
10167
|
+
class OpenSSLResponse extends AbstractModel {
|
|
10168
|
+
constructor(){
|
|
10169
|
+
super();
|
|
10170
|
+
|
|
10171
|
+
/**
|
|
10172
|
+
* Task ID
|
|
10173
|
+
* @type {number || null}
|
|
10174
|
+
*/
|
|
10175
|
+
this.TaskId = null;
|
|
10176
|
+
|
|
10177
|
+
/**
|
|
10178
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
10179
|
+
* @type {string || null}
|
|
10180
|
+
*/
|
|
10181
|
+
this.RequestId = null;
|
|
10182
|
+
|
|
10183
|
+
}
|
|
10184
|
+
|
|
10185
|
+
/**
|
|
10186
|
+
* @private
|
|
10187
|
+
*/
|
|
10188
|
+
deserialize(params) {
|
|
10189
|
+
if (!params) {
|
|
10190
|
+
return;
|
|
10191
|
+
}
|
|
10192
|
+
this.TaskId = 'TaskId' in params ? params.TaskId : null;
|
|
10193
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
10194
|
+
|
|
10195
|
+
}
|
|
10196
|
+
}
|
|
10197
|
+
|
|
10016
10198
|
/**
|
|
10017
10199
|
* Tendis slow query details
|
|
10018
10200
|
* @class
|
|
@@ -10896,6 +11078,7 @@ module.exports = {
|
|
|
10896
11078
|
InstanceTextParam: InstanceTextParam,
|
|
10897
11079
|
ParamTemplateInfo: ParamTemplateInfo,
|
|
10898
11080
|
DescribeInstanceMonitorTopNCmdTookResponse: DescribeInstanceMonitorTopNCmdTookResponse,
|
|
11081
|
+
CloseSSLRequest: CloseSSLRequest,
|
|
10899
11082
|
DescribeInstanceMonitorBigKeySizeDistRequest: DescribeInstanceMonitorBigKeySizeDistRequest,
|
|
10900
11083
|
DescribeInstanceAccountRequest: DescribeInstanceAccountRequest,
|
|
10901
11084
|
SwitchProxyRequest: SwitchProxyRequest,
|
|
@@ -10935,6 +11118,7 @@ module.exports = {
|
|
|
10935
11118
|
StartupInstanceResponse: StartupInstanceResponse,
|
|
10936
11119
|
DescribeInstanceDTSInstanceInfo: DescribeInstanceDTSInstanceInfo,
|
|
10937
11120
|
TradeDealDetail: TradeDealDetail,
|
|
11121
|
+
ResourceTag: ResourceTag,
|
|
10938
11122
|
AssociateSecurityGroupsResponse: AssociateSecurityGroupsResponse,
|
|
10939
11123
|
ReplicaGroup: ReplicaGroup,
|
|
10940
11124
|
DescribeTaskInfoResponse: DescribeTaskInfoResponse,
|
|
@@ -10960,7 +11144,7 @@ module.exports = {
|
|
|
10960
11144
|
ModfiyInstancePasswordResponse: ModfiyInstancePasswordResponse,
|
|
10961
11145
|
InstanceSet: InstanceSet,
|
|
10962
11146
|
ReleaseWanAddressRequest: ReleaseWanAddressRequest,
|
|
10963
|
-
|
|
11147
|
+
CloseSSLResponse: CloseSSLResponse,
|
|
10964
11148
|
ModifyMaintenanceWindowResponse: ModifyMaintenanceWindowResponse,
|
|
10965
11149
|
DescribeInstanceMonitorBigKeyTypeDistRequest: DescribeInstanceMonitorBigKeyTypeDistRequest,
|
|
10966
11150
|
DescribeInstanceMonitorTopNCmdTookRequest: DescribeInstanceMonitorTopNCmdTookRequest,
|
|
@@ -10969,6 +11153,7 @@ module.exports = {
|
|
|
10969
11153
|
InquiryPriceCreateInstanceRequest: InquiryPriceCreateInstanceRequest,
|
|
10970
11154
|
UpgradeSmallVersionResponse: UpgradeSmallVersionResponse,
|
|
10971
11155
|
ModifyInstanceParamsRequest: ModifyInstanceParamsRequest,
|
|
11156
|
+
OpenSSLRequest: OpenSSLRequest,
|
|
10972
11157
|
BackupDownloadInfo: BackupDownloadInfo,
|
|
10973
11158
|
BigKeyTypeInfo: BigKeyTypeInfo,
|
|
10974
11159
|
DescribeInstanceNodeInfoRequest: DescribeInstanceNodeInfoRequest,
|
|
@@ -10996,6 +11181,7 @@ module.exports = {
|
|
|
10996
11181
|
DeleteInstanceAccountResponse: DeleteInstanceAccountResponse,
|
|
10997
11182
|
DescribeInstanceMonitorSIPRequest: DescribeInstanceMonitorSIPRequest,
|
|
10998
11183
|
InstanceClusterShard: InstanceClusterShard,
|
|
11184
|
+
OpenSSLResponse: OpenSSLResponse,
|
|
10999
11185
|
TendisSlowLogDetail: TendisSlowLogDetail,
|
|
11000
11186
|
ChangeInstanceRoleResponse: ChangeInstanceRoleResponse,
|
|
11001
11187
|
UpgradeProxyVersionRequest: UpgradeProxyVersionRequest,
|
|
@@ -109,6 +109,7 @@ const KillMasterGroupRequest = models.KillMasterGroupRequest;
|
|
|
109
109
|
const InstanceTextParam = models.InstanceTextParam;
|
|
110
110
|
const ParamTemplateInfo = models.ParamTemplateInfo;
|
|
111
111
|
const DescribeInstanceMonitorTopNCmdTookResponse = models.DescribeInstanceMonitorTopNCmdTookResponse;
|
|
112
|
+
const CloseSSLRequest = models.CloseSSLRequest;
|
|
112
113
|
const DescribeInstanceMonitorBigKeySizeDistRequest = models.DescribeInstanceMonitorBigKeySizeDistRequest;
|
|
113
114
|
const DescribeInstanceAccountRequest = models.DescribeInstanceAccountRequest;
|
|
114
115
|
const SwitchProxyRequest = models.SwitchProxyRequest;
|
|
@@ -148,6 +149,7 @@ const SwitchProxyResponse = models.SwitchProxyResponse;
|
|
|
148
149
|
const StartupInstanceResponse = models.StartupInstanceResponse;
|
|
149
150
|
const DescribeInstanceDTSInstanceInfo = models.DescribeInstanceDTSInstanceInfo;
|
|
150
151
|
const TradeDealDetail = models.TradeDealDetail;
|
|
152
|
+
const ResourceTag = models.ResourceTag;
|
|
151
153
|
const AssociateSecurityGroupsResponse = models.AssociateSecurityGroupsResponse;
|
|
152
154
|
const ReplicaGroup = models.ReplicaGroup;
|
|
153
155
|
const DescribeTaskInfoResponse = models.DescribeTaskInfoResponse;
|
|
@@ -173,7 +175,7 @@ const ModifyParamTemplateRequest = models.ModifyParamTemplateRequest;
|
|
|
173
175
|
const ModfiyInstancePasswordResponse = models.ModfiyInstancePasswordResponse;
|
|
174
176
|
const InstanceSet = models.InstanceSet;
|
|
175
177
|
const ReleaseWanAddressRequest = models.ReleaseWanAddressRequest;
|
|
176
|
-
const
|
|
178
|
+
const CloseSSLResponse = models.CloseSSLResponse;
|
|
177
179
|
const ModifyMaintenanceWindowResponse = models.ModifyMaintenanceWindowResponse;
|
|
178
180
|
const DescribeInstanceMonitorBigKeyTypeDistRequest = models.DescribeInstanceMonitorBigKeyTypeDistRequest;
|
|
179
181
|
const DescribeInstanceMonitorTopNCmdTookRequest = models.DescribeInstanceMonitorTopNCmdTookRequest;
|
|
@@ -182,6 +184,7 @@ const DescribeCommonDBInstancesResponse = models.DescribeCommonDBInstancesRespon
|
|
|
182
184
|
const InquiryPriceCreateInstanceRequest = models.InquiryPriceCreateInstanceRequest;
|
|
183
185
|
const UpgradeSmallVersionResponse = models.UpgradeSmallVersionResponse;
|
|
184
186
|
const ModifyInstanceParamsRequest = models.ModifyInstanceParamsRequest;
|
|
187
|
+
const OpenSSLRequest = models.OpenSSLRequest;
|
|
185
188
|
const BackupDownloadInfo = models.BackupDownloadInfo;
|
|
186
189
|
const BigKeyTypeInfo = models.BigKeyTypeInfo;
|
|
187
190
|
const DescribeInstanceNodeInfoRequest = models.DescribeInstanceNodeInfoRequest;
|
|
@@ -209,6 +212,7 @@ const InquiryPriceUpgradeInstanceResponse = models.InquiryPriceUpgradeInstanceRe
|
|
|
209
212
|
const DeleteInstanceAccountResponse = models.DeleteInstanceAccountResponse;
|
|
210
213
|
const DescribeInstanceMonitorSIPRequest = models.DescribeInstanceMonitorSIPRequest;
|
|
211
214
|
const InstanceClusterShard = models.InstanceClusterShard;
|
|
215
|
+
const OpenSSLResponse = models.OpenSSLResponse;
|
|
212
216
|
const TendisSlowLogDetail = models.TendisSlowLogDetail;
|
|
213
217
|
const ChangeInstanceRoleResponse = models.ChangeInstanceRoleResponse;
|
|
214
218
|
const UpgradeProxyVersionRequest = models.UpgradeProxyVersionRequest;
|
|
@@ -553,6 +557,17 @@ class RedisClient extends AbstractClient {
|
|
|
553
557
|
this.request("DisableReplicaReadonly", req, resp, cb);
|
|
554
558
|
}
|
|
555
559
|
|
|
560
|
+
/**
|
|
561
|
+
* This API is used to enable SSL.
|
|
562
|
+
* @param {OpenSSLRequest} req
|
|
563
|
+
* @param {function(string, OpenSSLResponse):void} cb
|
|
564
|
+
* @public
|
|
565
|
+
*/
|
|
566
|
+
OpenSSL(req, cb) {
|
|
567
|
+
let resp = new OpenSSLResponse();
|
|
568
|
+
this.request("OpenSSL", req, resp, cb);
|
|
569
|
+
}
|
|
570
|
+
|
|
556
571
|
/**
|
|
557
572
|
* This API is used to query the DTS task details of an instance.
|
|
558
573
|
* @param {DescribeInstanceDTSInfoRequest} req
|
|
@@ -642,14 +657,14 @@ class RedisClient extends AbstractClient {
|
|
|
642
657
|
}
|
|
643
658
|
|
|
644
659
|
/**
|
|
645
|
-
* This API
|
|
646
|
-
* @param {
|
|
647
|
-
* @param {function(string,
|
|
660
|
+
* This API has been disused. It was used to query the list of Redis instance information.
|
|
661
|
+
* @param {DescribeCommonDBInstancesRequest} req
|
|
662
|
+
* @param {function(string, DescribeCommonDBInstancesResponse):void} cb
|
|
648
663
|
* @public
|
|
649
664
|
*/
|
|
650
|
-
|
|
651
|
-
let resp = new
|
|
652
|
-
this.request("
|
|
665
|
+
DescribeCommonDBInstances(req, cb) {
|
|
666
|
+
let resp = new DescribeCommonDBInstancesResponse();
|
|
667
|
+
this.request("DescribeCommonDBInstances", req, resp, cb);
|
|
653
668
|
}
|
|
654
669
|
|
|
655
670
|
/**
|
|
@@ -664,14 +679,14 @@ class RedisClient extends AbstractClient {
|
|
|
664
679
|
}
|
|
665
680
|
|
|
666
681
|
/**
|
|
667
|
-
* This API is used to
|
|
668
|
-
* @param {
|
|
669
|
-
* @param {function(string,
|
|
682
|
+
* This API is used to query the download address of a backup RDB (it is in beta test and can be used only after you apply for the eligibility).
|
|
683
|
+
* @param {DescribeBackupUrlRequest} req
|
|
684
|
+
* @param {function(string, DescribeBackupUrlResponse):void} cb
|
|
670
685
|
* @public
|
|
671
686
|
*/
|
|
672
|
-
|
|
673
|
-
let resp = new
|
|
674
|
-
this.request("
|
|
687
|
+
DescribeBackupUrl(req, cb) {
|
|
688
|
+
let resp = new DescribeBackupUrlResponse();
|
|
689
|
+
this.request("DescribeBackupUrl", req, resp, cb);
|
|
675
690
|
}
|
|
676
691
|
|
|
677
692
|
/**
|
|
@@ -873,14 +888,14 @@ class RedisClient extends AbstractClient {
|
|
|
873
888
|
}
|
|
874
889
|
|
|
875
890
|
/**
|
|
876
|
-
* This API
|
|
877
|
-
* @param {
|
|
878
|
-
* @param {function(string,
|
|
891
|
+
* This API is used to enable public network access.
|
|
892
|
+
* @param {AllocateWanAddressRequest} req
|
|
893
|
+
* @param {function(string, AllocateWanAddressResponse):void} cb
|
|
879
894
|
* @public
|
|
880
895
|
*/
|
|
881
|
-
|
|
882
|
-
let resp = new
|
|
883
|
-
this.request("
|
|
896
|
+
AllocateWanAddress(req, cb) {
|
|
897
|
+
let resp = new AllocateWanAddressResponse();
|
|
898
|
+
this.request("AllocateWanAddress", req, resp, cb);
|
|
884
899
|
}
|
|
885
900
|
|
|
886
901
|
/**
|
|
@@ -895,14 +910,14 @@ class RedisClient extends AbstractClient {
|
|
|
895
910
|
}
|
|
896
911
|
|
|
897
912
|
/**
|
|
898
|
-
* This API is used to
|
|
899
|
-
* @param {
|
|
900
|
-
* @param {function(string,
|
|
913
|
+
* This API is used to query the hot key of an instance.
|
|
914
|
+
* @param {DescribeInstanceMonitorHotKeyRequest} req
|
|
915
|
+
* @param {function(string, DescribeInstanceMonitorHotKeyResponse):void} cb
|
|
901
916
|
* @public
|
|
902
917
|
*/
|
|
903
|
-
|
|
904
|
-
let resp = new
|
|
905
|
-
this.request("
|
|
918
|
+
DescribeInstanceMonitorHotKey(req, cb) {
|
|
919
|
+
let resp = new DescribeInstanceMonitorHotKeyResponse();
|
|
920
|
+
this.request("DescribeInstanceMonitorHotKey", req, resp, cb);
|
|
906
921
|
}
|
|
907
922
|
|
|
908
923
|
/**
|
|
@@ -1026,6 +1041,17 @@ class RedisClient extends AbstractClient {
|
|
|
1026
1041
|
this.request("DescribeInstanceDealDetail", req, resp, cb);
|
|
1027
1042
|
}
|
|
1028
1043
|
|
|
1044
|
+
/**
|
|
1045
|
+
* This API is used to disable SSL.
|
|
1046
|
+
* @param {CloseSSLRequest} req
|
|
1047
|
+
* @param {function(string, CloseSSLResponse):void} cb
|
|
1048
|
+
* @public
|
|
1049
|
+
*/
|
|
1050
|
+
CloseSSL(req, cb) {
|
|
1051
|
+
let resp = new CloseSSLResponse();
|
|
1052
|
+
this.request("CloseSSL", req, resp, cb);
|
|
1053
|
+
}
|
|
1054
|
+
|
|
1029
1055
|
/**
|
|
1030
1056
|
* This API is used to delete an instance sub-account.
|
|
1031
1057
|
* @param {DeleteInstanceAccountRequest} req
|
|
@@ -1060,14 +1086,14 @@ class RedisClient extends AbstractClient {
|
|
|
1060
1086
|
}
|
|
1061
1087
|
|
|
1062
1088
|
/**
|
|
1063
|
-
* This API is used to
|
|
1064
|
-
* @param {
|
|
1065
|
-
* @param {function(string,
|
|
1089
|
+
* This API is used to renew an instance.
|
|
1090
|
+
* @param {RenewInstanceRequest} req
|
|
1091
|
+
* @param {function(string, RenewInstanceResponse):void} cb
|
|
1066
1092
|
* @public
|
|
1067
1093
|
*/
|
|
1068
|
-
|
|
1069
|
-
let resp = new
|
|
1070
|
-
this.request("
|
|
1094
|
+
RenewInstance(req, cb) {
|
|
1095
|
+
let resp = new RenewInstanceResponse();
|
|
1096
|
+
this.request("RenewInstance", req, resp, cb);
|
|
1071
1097
|
}
|
|
1072
1098
|
|
|
1073
1099
|
/**
|
|
@@ -1093,14 +1119,14 @@ class RedisClient extends AbstractClient {
|
|
|
1093
1119
|
}
|
|
1094
1120
|
|
|
1095
1121
|
/**
|
|
1096
|
-
* This API is used to
|
|
1097
|
-
* @param {
|
|
1098
|
-
* @param {function(string,
|
|
1122
|
+
* This API is used to modify the role of an instance in a replication group.
|
|
1123
|
+
* @param {ChangeInstanceRoleRequest} req
|
|
1124
|
+
* @param {function(string, ChangeInstanceRoleResponse):void} cb
|
|
1099
1125
|
* @public
|
|
1100
1126
|
*/
|
|
1101
|
-
|
|
1102
|
-
let resp = new
|
|
1103
|
-
this.request("
|
|
1127
|
+
ChangeInstanceRole(req, cb) {
|
|
1128
|
+
let resp = new ChangeInstanceRoleResponse();
|
|
1129
|
+
this.request("ChangeInstanceRole", req, resp, cb);
|
|
1104
1130
|
}
|
|
1105
1131
|
|
|
1106
1132
|
|
|
@@ -664,31 +664,31 @@ class DescribeLogListRequest extends AbstractModel {
|
|
|
664
664
|
super();
|
|
665
665
|
|
|
666
666
|
/**
|
|
667
|
-
* Sorting order. Valid values: desc
|
|
667
|
+
* Sorting order (required). Valid values: `desc`, `asc`.
|
|
668
668
|
* @type {string || null}
|
|
669
669
|
*/
|
|
670
670
|
this.Sort = null;
|
|
671
671
|
|
|
672
672
|
/**
|
|
673
|
-
* searchlog
|
|
673
|
+
* This parameter is required. Valid values: `searchlog`, `histogram`.
|
|
674
674
|
* @type {string || null}
|
|
675
675
|
*/
|
|
676
676
|
this.ActionType = null;
|
|
677
677
|
|
|
678
678
|
/**
|
|
679
|
-
* Project ID
|
|
679
|
+
* Project ID (required)
|
|
680
680
|
* @type {number || null}
|
|
681
681
|
*/
|
|
682
682
|
this.ID = null;
|
|
683
683
|
|
|
684
684
|
/**
|
|
685
|
-
* Start time
|
|
685
|
+
* Start time (required)
|
|
686
686
|
* @type {string || null}
|
|
687
687
|
*/
|
|
688
688
|
this.StartTime = null;
|
|
689
689
|
|
|
690
690
|
/**
|
|
691
|
-
*
|
|
691
|
+
* The number of raw logs returned for a single query. This parameter is required. Maximum value: 100.
|
|
692
692
|
* @type {number || null}
|
|
693
693
|
*/
|
|
694
694
|
this.Limit = null;
|
|
@@ -700,13 +700,13 @@ class DescribeLogListRequest extends AbstractModel {
|
|
|
700
700
|
this.Context = null;
|
|
701
701
|
|
|
702
702
|
/**
|
|
703
|
-
* Query statement, which can contain up to 4,096 characters.
|
|
703
|
+
* Query statement, which is required and can contain up to 4,096 characters.
|
|
704
704
|
* @type {string || null}
|
|
705
705
|
*/
|
|
706
706
|
this.Query = null;
|
|
707
707
|
|
|
708
708
|
/**
|
|
709
|
-
* End time
|
|
709
|
+
* End time (required)
|
|
710
710
|
* @type {string || null}
|
|
711
711
|
*/
|
|
712
712
|
this.EndTime = null;
|
|
@@ -2348,6 +2348,12 @@ class DescribeDataPerformancePageRequest extends AbstractModel {
|
|
|
2348
2348
|
*/
|
|
2349
2349
|
this.Env = null;
|
|
2350
2350
|
|
|
2351
|
+
/**
|
|
2352
|
+
* Network status
|
|
2353
|
+
* @type {string || null}
|
|
2354
|
+
*/
|
|
2355
|
+
this.NetStatus = null;
|
|
2356
|
+
|
|
2351
2357
|
}
|
|
2352
2358
|
|
|
2353
2359
|
/**
|
|
@@ -2379,6 +2385,7 @@ class DescribeDataPerformancePageRequest extends AbstractModel {
|
|
|
2379
2385
|
this.From = 'From' in params ? params.From : null;
|
|
2380
2386
|
this.CostType = 'CostType' in params ? params.CostType : null;
|
|
2381
2387
|
this.Env = 'Env' in params ? params.Env : null;
|
|
2388
|
+
this.NetStatus = 'NetStatus' in params ? params.NetStatus : null;
|
|
2382
2389
|
|
|
2383
2390
|
}
|
|
2384
2391
|
}
|
|
@@ -2597,6 +2604,12 @@ class DescribeDataFetchUrlRequest extends AbstractModel {
|
|
|
2597
2604
|
*/
|
|
2598
2605
|
this.Ret = null;
|
|
2599
2606
|
|
|
2607
|
+
/**
|
|
2608
|
+
* Network status
|
|
2609
|
+
* @type {string || null}
|
|
2610
|
+
*/
|
|
2611
|
+
this.NetStatus = null;
|
|
2612
|
+
|
|
2600
2613
|
}
|
|
2601
2614
|
|
|
2602
2615
|
/**
|
|
@@ -2631,6 +2644,7 @@ class DescribeDataFetchUrlRequest extends AbstractModel {
|
|
|
2631
2644
|
this.Env = 'Env' in params ? params.Env : null;
|
|
2632
2645
|
this.Status = 'Status' in params ? params.Status : null;
|
|
2633
2646
|
this.Ret = 'Ret' in params ? params.Ret : null;
|
|
2647
|
+
this.NetStatus = 'NetStatus' in params ? params.NetStatus : null;
|
|
2634
2648
|
|
|
2635
2649
|
}
|
|
2636
2650
|
}
|
|
@@ -201,7 +201,7 @@ class RumClient extends AbstractClient {
|
|
|
201
201
|
}
|
|
202
202
|
|
|
203
203
|
/**
|
|
204
|
-
* This API is used to get the DescribeDataFetchProject information.
|
|
204
|
+
* This API is used to get the `DescribeDataFetchProject` information and has been deprecated. Use `DescribeDataFetchUrl` instead.
|
|
205
205
|
* @param {DescribeDataFetchProjectRequest} req
|
|
206
206
|
* @param {function(string, DescribeDataFetchProjectResponse):void} cb
|
|
207
207
|
* @public
|