tencentcloud-sdk-redis 3.0.560 → 3.0.563

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 30747feacb47ad1d78abf07361379e22861df088
4
- data.tar.gz: 9facbfb7c5d0ea07cd5e2d9a54beaa4375b24ae1
3
+ metadata.gz: 49c3bddb8b70f41e2b782c231179c3b19e663eb3
4
+ data.tar.gz: 0116322fcf99eb5178e177721aafab72db8f6ffe
5
5
  SHA512:
6
- metadata.gz: 58c902555a2d873535fc9c8f8a4e73352b12bac3dfffe471e199ff5b52cd0f80fe37d6ee00620860b9fb81526f6cf14fb7fe989873ede2f65eed6aff3badbcfd
7
- data.tar.gz: 182975a33c56730116ba079c3da05d94101f1cbd1c0724c6ed9fac8928290c8e6bf0110406bd95ceaba6d13cc9be69474f09c6e13d1d0001423de07fce505ca1
6
+ metadata.gz: c25666091fe90d632ef6576764b2b700ab9e3250fd1f626c00990bb26e93d0e050ca179e7beac77010b55db8b1a4d06ee318f479dee110952d836431355328e2
7
+ data.tar.gz: a30df38cbe95cc33dfe1bdc5364cd7c4767da4584c96fa848ce9bf538866efc4b633a09fda18dc0fa6df217cad1ae670b9a9d0706ce86759829a023e217f2eb8
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.560
1
+ 3.0.563
@@ -989,7 +989,7 @@ module TencentCloud
989
989
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
990
990
  end
991
991
 
992
- # 获取集群版实例分片信息
992
+ # 本接口(DescribeInstanceShards)用于获取集群架构实例的分片信息。
993
993
 
994
994
  # @param request: Request instance for DescribeInstanceShards.
995
995
  # @type request: :class:`Tencentcloud::redis::V20180412::DescribeInstanceShardsRequest`
@@ -1037,7 +1037,7 @@ module TencentCloud
1037
1037
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1038
1038
  end
1039
1039
 
1040
- # 查询Redis实例列表
1040
+ # 本接口(DescribeInstances)用于查询Redis实例列表。
1041
1041
 
1042
1042
  # @param request: Request instance for DescribeInstances.
1043
1043
  # @type request: :class:`Tencentcloud::redis::V20180412::DescribeInstancesRequest`
@@ -1565,7 +1565,7 @@ module TencentCloud
1565
1565
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1566
1566
  end
1567
1567
 
1568
- # 模拟故障
1568
+ # 本接口(KillMasterGroup)模拟故障。
1569
1569
 
1570
1570
  # @param request: Request instance for KillMasterGroup.
1571
1571
  # @type request: :class:`Tencentcloud::redis::V20180412::KillMasterGroupRequest`
@@ -2569,9 +2569,11 @@ module TencentCloud
2569
2569
 
2570
2570
  # DescribeInstanceShards请求参数结构体
2571
2571
  class DescribeInstanceShardsRequest < TencentCloud::Common::AbstractModel
2572
- # @param InstanceId: 实例ID
2572
+ # @param InstanceId: 指定实例 ID。例如:crs-xjhsdj****。请登录[Redis控制台](https://console.cloud.tencent.com/redis)在实例列表复制实例 ID。
2573
2573
  # @type InstanceId: String
2574
- # @param FilterSlave: 是否过滤掉从节信息
2574
+ # @param FilterSlave: 是否过滤掉从节信息。
2575
+ # - true;过滤从节点。
2576
+ # - false:不过滤。
2575
2577
  # @type FilterSlave: Boolean
2576
2578
 
2577
2579
  attr_accessor :InstanceId, :FilterSlave
@@ -2589,9 +2591,9 @@ module TencentCloud
2589
2591
 
2590
2592
  # DescribeInstanceShards返回参数结构体
2591
2593
  class DescribeInstanceShardsResponse < TencentCloud::Common::AbstractModel
2592
- # @param InstanceShards: 实例分片列表信息
2594
+ # @param InstanceShards: 实例分片列表信息,包括:节点信息、节点ID、Key数量、使用容量、容量倾斜率等信息。
2593
2595
  # @type InstanceShards: Array
2594
- # @param TotalCount: 实例分片节点总数
2596
+ # @param TotalCount: 实例分片节点数量。
2595
2597
  # @type TotalCount: Integer
2596
2598
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2597
2599
  # @type RequestId: String
@@ -2669,11 +2671,12 @@ module TencentCloud
2669
2671
  class DescribeInstancesRequest < TencentCloud::Common::AbstractModel
2670
2672
  # @param Limit: 每页输出实例的数量,参数默认值20,最大值为1000。
2671
2673
  # @type Limit: Integer
2672
- # @param Offset: 分页偏移量,取Limit整数倍。
2674
+ # @param Offset: 分页偏移量,取Limit整数倍。计算公式:offset=limit*(页码-1)。
2673
2675
  # @type Offset: Integer
2674
- # @param InstanceId: 实例 ID,如:crs-6ubhgouj
2676
+ # @param InstanceId: 指定实例 ID。例如:crs-xjhsdj****。请登录[Redis控制台](https://console.cloud.tencent.com/redis)在实例列表复制实例 ID
2677
+
2675
2678
  # @type InstanceId: String
2676
- # @param OrderBy: 实例排序依据,枚举值如下所示:<ul><li>projectId:项目ID。</li><li>createtime:实例创建时间。</li><li>instancename:实例名称。</li><li>type:实例类型。</li><li>curDeadline:实例到期时间。</li></ul>
2679
+ # @param OrderBy: 实例列表排序依据,枚举值如下所示:<ul><li>projectId:依据项目ID排序。</li><li>createtime:依据实例创建时间排序。</li><li>instancename:依据实例名称排序。</li><li>type:依据实例类型排序。</li><li>curDeadline:依据实例到期时间排序。</li></ul>
2677
2680
  # @type OrderBy: String
2678
2681
  # @param OrderType: 实例排序方式,默认为倒序排序。<ul><li>1:倒序。</li><li>0:顺序。</li></ul>
2679
2682
  # @type OrderType: Integer
@@ -2699,7 +2702,7 @@ module TencentCloud
2699
2702
  # @type TypeVersion: Integer
2700
2703
  # @param EngineName: 存储引擎信息。可设置为Redis-2.8、Redis-4.0、Redis-5.0、Redis-6.0 或者 CKV。
2701
2704
  # @type EngineName: String
2702
- # @param AutoRenew: 续费模式。<ul><li>0:默认状态(手动续费)。</li><li>1:自动续费。</li><li>2:明确不自动续费。</ul>
2705
+ # @param AutoRenew: 续费模式。<ul><li>0:手动续费。</li><li>1:自动续费。</li><li>2:到期不再续费。</ul>
2703
2706
  # @type AutoRenew: Array
2704
2707
  # @param BillingMode: 计费模式。<ul><li>postpaid:按量计费。</li><li>prepaid:包年包月。</li></ul>
2705
2708
  # @type BillingMode: String
@@ -2715,7 +2718,7 @@ module TencentCloud
2715
2718
  # @type InstanceTags: Array
2716
2719
  # @param TagKeys: 根据标签的 Key 筛选资源,该参数不配置或者数组设置为空值,则不根据标签Key进行过滤。
2717
2720
  # @type TagKeys: Array
2718
- # @param ProductVersions: 实例的产品版本。如果该参数不配置或者数组设置为空值,则默认不依据此参数过滤实例。<ul><li>local:本地盘版。</li><li>cloud:云盘版。</li><li>cdc:独享集群版。</li></ul>
2721
+ # @param ProductVersions: 实例的产品版本。如果该参数不配置或者数组设置为空值,则默认不依据此参数过滤实例。<ul><li>local:本地盘版。</li><li>cdc:独享集群版。</li></ul>
2719
2722
  # @type ProductVersions: Array
2720
2723
  # @param InstanceIds: 批量查询指定的实例 ID,返回结果已 Limit 限制为主。
2721
2724
  # @type InstanceIds: Array
@@ -3325,17 +3328,17 @@ module TencentCloud
3325
3328
 
3326
3329
  # DescribeSlowLog请求参数结构体
3327
3330
  class DescribeSlowLogRequest < TencentCloud::Common::AbstractModel
3328
- # @param InstanceId: 实例Id
3331
+ # @param InstanceId: 指定实例 ID。例如:crs-xjhsdj****。请登录[Redis控制台](https://console.cloud.tencent.com/redis)在实例列表复制实例 ID
3329
3332
  # @type InstanceId: String
3330
- # @param BeginTime: 开始时间。
3333
+ # @param BeginTime: 预查询慢日志的起始时间。
3331
3334
  # @type BeginTime: String
3332
- # @param EndTime: 结束时间。
3335
+ # @param EndTime: 预查询慢日志的结束时间。
3333
3336
  # @type EndTime: String
3334
- # @param MinQueryTime: 慢查询平均执行时间阈值(单位:毫秒)。
3337
+ # @param MinQueryTime: 慢查询平均执行时间阈值,单位:毫秒。
3335
3338
  # @type MinQueryTime: Integer
3336
3339
  # @param Limit: 每个页面展示的慢查询条数,默认值为20。
3337
3340
  # @type Limit: Integer
3338
- # @param Offset: 慢查询条数的偏移量,取Limit整数倍。
3341
+ # @param Offset: 慢查询条数的偏移量,取Limit整数倍。计算公式:offset=limit*(页码-1)。
3339
3342
  # @type Offset: Integer
3340
3343
  # @param Role: 节点所属角色。<ul><li>master:主节点。</li><li>slave:从节点。</li></ul>
3341
3344
  # @type Role: String
@@ -4114,31 +4117,38 @@ module TencentCloud
4114
4117
 
4115
4118
  # 实例节点类型
4116
4119
  class InstanceClusterNode < TencentCloud::Common::AbstractModel
4117
- # @param Name: 节点名称
4120
+ # @param Name: 节点名称。
4118
4121
  # @type Name: String
4119
- # @param RunId: 实例运行时节点Id
4122
+ # @param RunId: 实例运行时节点 ID。
4120
4123
  # @type RunId: String
4121
- # @param Role: 集群角色:0-master;1-slave
4124
+ # @param Role: 集群角色。
4125
+ # - 0:master。
4126
+ # - 1:slave。
4122
4127
  # @type Role: Integer
4123
- # @param Status: 节点状态:0-readwrite, 1-read, 2-backup
4128
+ # @param Status: 节点状态。
4129
+ # - 0:readwrite,。
4130
+ # - 1:read。
4131
+ # - 2:backup。
4124
4132
  # @type Status: Integer
4125
- # @param Connected: 服务状态:0-down;1-on
4133
+ # @param Connected: 服务状态。
4134
+ # 0-down。
4135
+ # 1-on
4126
4136
  # @type Connected: Integer
4127
- # @param CreateTime: 节点创建时间
4137
+ # @param CreateTime: 节点创建时间。
4128
4138
  # @type CreateTime: String
4129
- # @param DownTime: 节点下线时间
4139
+ # @param DownTime: 节点下线时间。
4130
4140
  # @type DownTime: String
4131
- # @param Slots: 节点slot分布
4141
+ # @param Slots: 节点 Slot 分布区间。
4132
4142
  # @type Slots: String
4133
- # @param Keys: 节点key分布
4143
+ # @param Keys: 节点 Key分布。
4134
4144
  # @type Keys: Integer
4135
- # @param Qps: 节点qps
4145
+ # @param Qps: 节点 QPS。分片节点每秒执行次数。单位:次/秒。
4136
4146
  # @type Qps: Integer
4137
- # @param QpsSlope: 节点qps倾斜度
4147
+ # @param QpsSlope: 节点 QPS 倾斜度。
4138
4148
  # @type QpsSlope: Float
4139
- # @param Storage: 节点存储
4149
+ # @param Storage: 节点存储。
4140
4150
  # @type Storage: Integer
4141
- # @param StorageSlope: 节点存储倾斜度
4151
+ # @param StorageSlope: 节点存储倾斜度。
4142
4152
  # @type StorageSlope: Float
4143
4153
 
4144
4154
  attr_accessor :Name, :RunId, :Role, :Status, :Connected, :CreateTime, :DownTime, :Slots, :Keys, :Qps, :QpsSlope, :Storage, :StorageSlope
@@ -4371,9 +4381,9 @@ module TencentCloud
4371
4381
 
4372
4382
  # 实例节点
4373
4383
  class InstanceNode < TencentCloud::Common::AbstractModel
4374
- # @param Id: Id
4384
+ # @param Id: 实例 ID。
4375
4385
  # @type Id: Integer
4376
- # @param InstanceClusterNode: 节点详细信息
4386
+ # @param InstanceClusterNode: 节点详细信息。
4377
4387
  # @type InstanceClusterNode: Array
4378
4388
 
4379
4389
  attr_accessor :Id, :InstanceClusterNode
@@ -4833,9 +4843,9 @@ module TencentCloud
4833
4843
 
4834
4844
  # 实例标签信息
4835
4845
  class InstanceTagInfo < TencentCloud::Common::AbstractModel
4836
- # @param TagKey: 标签键
4846
+ # @param TagKey: 标签键。
4837
4847
  # @type TagKey: String
4838
- # @param TagValue: 标签值
4848
+ # @param TagValue: 标签值。
4839
4849
  # @type TagValue: String
4840
4850
 
4841
4851
  attr_accessor :TagKey, :TagValue
@@ -5001,17 +5011,14 @@ module TencentCloud
5001
5011
 
5002
5012
  # KillMasterGroup请求参数结构体
5003
5013
  class KillMasterGroupRequest < TencentCloud::Common::AbstractModel
5004
- # @param InstanceId: 实例ID
5014
+ # @param InstanceId: 指定实例 ID。例如:crs-xjhsdj****。请登录[Redis控制台](https://console.cloud.tencent.com/redis)在实例列表复制实例 ID。
5005
5015
  # @type InstanceId: String
5006
- # @param Password: 1.长度8-30位,推荐使用12位以上的密码
5007
- # 2.不能以"/"开头
5008
- # 3.至少包含两项
5009
- # a.小写字母a-z
5010
- # b.大写字母A-Z
5011
- # c.数字0-9
5012
- # d.()`~!@#$%^&*-+=_|{}[]:;<>,.?/
5016
+ # @param Password: 该参数用于配置指定实例的访问密码。若为免密认证,该参数则无需配置。密码复杂度要求如下所示。
5017
+ # - 长度8-30位,推荐使用12位以上的密码
5018
+ # - 不能以"/"开头
5019
+ # - 至少包含小写字母a-z、大写字母A-Z、数字0-9及其 ()`~!@#$%^&*-+=_|{}[]:;<>,.?/中的两项。
5013
5020
  # @type Password: String
5014
- # @param ShardIds: 单AZ实例节点信息
5021
+ # @param ShardIds: 分片集群的分片 ID。
5015
5022
  # @type ShardIds: Array
5016
5023
 
5017
5024
  attr_accessor :InstanceId, :Password, :ShardIds
@@ -5031,7 +5038,7 @@ module TencentCloud
5031
5038
 
5032
5039
  # KillMasterGroup返回参数结构体
5033
5040
  class KillMasterGroupResponse < TencentCloud::Common::AbstractModel
5034
- # @param TaskId: 异步任务ID
5041
+ # @param TaskId: 异步任务ID
5035
5042
  # @type TaskId: Integer
5036
5043
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5037
5044
  # @type RequestId: String
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-redis
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.560
4
+ version: 3.0.563
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-04-26 00:00:00.000000000 Z
11
+ date: 2023-05-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common