tencentcloud-sdk-redis 1.0.353 → 1.0.356

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20180412/models.rb +23 -7
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7e1f198cf5c704ff9bf1514b8746fdea33e2e75d
4
- data.tar.gz: 8eb5cfa8d5a134d1cc5738f318630c0ea166c49a
3
+ metadata.gz: c60aed5b02f34f5349d0f0d58aa08414ae7cf67e
4
+ data.tar.gz: cd1d36b85b16f31028ef90b4f87ab8fd54313347
5
5
  SHA512:
6
- metadata.gz: 21b2c237e2454d2e4b5a0680f872171d2f561d4ec4c3850ffeb3dc07c077e21252ee9b85a401aaa87dabbf41ce47807f462e790a1bc84ea8596914e38bf5d2d9
7
- data.tar.gz: da2e19039c75c4d2341ecde39aeaa8c5260e0cc55ecbe8af1d95f04f328c9b002cabdeab928e1b16c674f5018167d535db2475c0fd9972a3255e85198aa5d581
6
+ metadata.gz: 04e9cbafd15c876e9e2334a6311060d765b8e50aa6a40f8898c2f2215a72a72bdaf8d60bc2b3eed6eacf2b58ddab71e2a25071e21f93294148b7163c71df69cf
7
+ data.tar.gz: da68ed49cf303a69929ec28d1d2e309a331cde37a2994394d500383441ecd30dfd251106c8f69322962e87f0cfada24b1bd0f125deb06170040a1e1ccb73bada
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.353
1
+ 1.0.356
@@ -560,10 +560,14 @@ module TencentCloud
560
560
  # @type TemplateId: String
561
561
  # @param DryRun: false :默认值,发送正常请求,通过检查后直接创建实例 true:发送检查请求,不会创建实例。
562
562
  # @type DryRun: Boolean
563
+ # @param ProductVersion: "local"本地盘版,"cloud"云盘版,"cdc"独享集群版,如果不传默认发货为本地盘版本
564
+ # @type ProductVersion: String
565
+ # @param RedisClusterId: 独享集群id,ProductVersion="cdc"时必传
566
+ # @type RedisClusterId: String
563
567
 
564
- attr_accessor :TypeId, :MemSize, :GoodsNum, :Period, :BillingMode, :ZoneId, :Password, :VpcId, :SubnetId, :ProjectId, :AutoRenew, :SecurityGroupIdList, :VPort, :RedisShardNum, :RedisReplicasNum, :ReplicasReadonly, :InstanceName, :NoAuth, :NodeSet, :ResourceTags, :ZoneName, :TemplateId, :DryRun
568
+ attr_accessor :TypeId, :MemSize, :GoodsNum, :Period, :BillingMode, :ZoneId, :Password, :VpcId, :SubnetId, :ProjectId, :AutoRenew, :SecurityGroupIdList, :VPort, :RedisShardNum, :RedisReplicasNum, :ReplicasReadonly, :InstanceName, :NoAuth, :NodeSet, :ResourceTags, :ZoneName, :TemplateId, :DryRun, :ProductVersion, :RedisClusterId
565
569
 
566
- def initialize(typeid=nil, memsize=nil, goodsnum=nil, period=nil, billingmode=nil, zoneid=nil, password=nil, vpcid=nil, subnetid=nil, projectid=nil, autorenew=nil, securitygroupidlist=nil, vport=nil, redisshardnum=nil, redisreplicasnum=nil, replicasreadonly=nil, instancename=nil, noauth=nil, nodeset=nil, resourcetags=nil, zonename=nil, templateid=nil, dryrun=nil)
570
+ def initialize(typeid=nil, memsize=nil, goodsnum=nil, period=nil, billingmode=nil, zoneid=nil, password=nil, vpcid=nil, subnetid=nil, projectid=nil, autorenew=nil, securitygroupidlist=nil, vport=nil, redisshardnum=nil, redisreplicasnum=nil, replicasreadonly=nil, instancename=nil, noauth=nil, nodeset=nil, resourcetags=nil, zonename=nil, templateid=nil, dryrun=nil, productversion=nil, redisclusterid=nil)
567
571
  @TypeId = typeid
568
572
  @MemSize = memsize
569
573
  @GoodsNum = goodsnum
@@ -587,6 +591,8 @@ module TencentCloud
587
591
  @ZoneName = zonename
588
592
  @TemplateId = templateid
589
593
  @DryRun = dryrun
594
+ @ProductVersion = productversion
595
+ @RedisClusterId = redisclusterid
590
596
  end
591
597
 
592
598
  def deserialize(params)
@@ -627,6 +633,8 @@ module TencentCloud
627
633
  @ZoneName = params['ZoneName']
628
634
  @TemplateId = params['TemplateId']
629
635
  @DryRun = params['DryRun']
636
+ @ProductVersion = params['ProductVersion']
637
+ @RedisClusterId = params['RedisClusterId']
630
638
  end
631
639
  end
632
640
 
@@ -2209,7 +2217,7 @@ module TencentCloud
2209
2217
 
2210
2218
  # DescribeInstances请求参数结构体
2211
2219
  class DescribeInstancesRequest < TencentCloud::Common::AbstractModel
2212
- # @param Limit: 实例列表的大小,参数默认值20,传值则以传参为准,如果传参大于具体配置etc/conf/component.properties中的DescribeInstancesPageLimit配置项 (读不到配置默认配置项为1000),则以配置项为准
2220
+ # @param Limit: 返回数量,参数默认值20,最大值为1000
2213
2221
  # @type Limit: Integer
2214
2222
  # @param Offset: 偏移量,取Limit整数倍
2215
2223
  # @type Offset: Integer
@@ -2257,10 +2265,12 @@ module TencentCloud
2257
2265
  # @type InstanceTags: Array
2258
2266
  # @param TagKeys: 根据标签的Key筛选资源,不传或者传空数组则不进行过滤
2259
2267
  # @type TagKeys: Array
2268
+ # @param ProductVersions: 需要过滤的产品版本支持多个,"local"本地盘版,"cloud"云盘版,"cdc"独享集群版,如果不传则默认不过滤
2269
+ # @type ProductVersions: Array
2260
2270
 
2261
- attr_accessor :Limit, :Offset, :InstanceId, :OrderBy, :OrderType, :VpcIds, :SubnetIds, :ProjectIds, :SearchKey, :InstanceName, :UniqVpcIds, :UniqSubnetIds, :RegionIds, :Status, :TypeVersion, :EngineName, :AutoRenew, :BillingMode, :Type, :SearchKeys, :TypeList, :MonitorVersion, :InstanceTags, :TagKeys
2271
+ attr_accessor :Limit, :Offset, :InstanceId, :OrderBy, :OrderType, :VpcIds, :SubnetIds, :ProjectIds, :SearchKey, :InstanceName, :UniqVpcIds, :UniqSubnetIds, :RegionIds, :Status, :TypeVersion, :EngineName, :AutoRenew, :BillingMode, :Type, :SearchKeys, :TypeList, :MonitorVersion, :InstanceTags, :TagKeys, :ProductVersions
2262
2272
 
2263
- def initialize(limit=nil, offset=nil, instanceid=nil, orderby=nil, ordertype=nil, vpcids=nil, subnetids=nil, projectids=nil, searchkey=nil, instancename=nil, uniqvpcids=nil, uniqsubnetids=nil, regionids=nil, status=nil, typeversion=nil, enginename=nil, autorenew=nil, billingmode=nil, type=nil, searchkeys=nil, typelist=nil, monitorversion=nil, instancetags=nil, tagkeys=nil)
2273
+ def initialize(limit=nil, offset=nil, instanceid=nil, orderby=nil, ordertype=nil, vpcids=nil, subnetids=nil, projectids=nil, searchkey=nil, instancename=nil, uniqvpcids=nil, uniqsubnetids=nil, regionids=nil, status=nil, typeversion=nil, enginename=nil, autorenew=nil, billingmode=nil, type=nil, searchkeys=nil, typelist=nil, monitorversion=nil, instancetags=nil, tagkeys=nil, productversions=nil)
2264
2274
  @Limit = limit
2265
2275
  @Offset = offset
2266
2276
  @InstanceId = instanceid
@@ -2285,6 +2295,7 @@ module TencentCloud
2285
2295
  @MonitorVersion = monitorversion
2286
2296
  @InstanceTags = instancetags
2287
2297
  @TagKeys = tagkeys
2298
+ @ProductVersions = productversions
2288
2299
  end
2289
2300
 
2290
2301
  def deserialize(params)
@@ -2319,6 +2330,7 @@ module TencentCloud
2319
2330
  end
2320
2331
  end
2321
2332
  @TagKeys = params['TagKeys']
2333
+ @ProductVersions = params['ProductVersions']
2322
2334
  end
2323
2335
  end
2324
2336
 
@@ -3402,10 +3414,12 @@ module TencentCloud
3402
3414
  # @type ReplicasReadonly: Boolean
3403
3415
  # @param ZoneName: 实例所属的可用区名称,可参考[地域和可用区](https://cloud.tencent.com/document/product/239/4106) 。
3404
3416
  # @type ZoneName: String
3417
+ # @param ProductVersion: "local"本地盘版,"cloud"云盘版,"cdc"独享集群版,如果不传默认询价为本地盘版本
3418
+ # @type ProductVersion: String
3405
3419
 
3406
- attr_accessor :TypeId, :MemSize, :GoodsNum, :Period, :BillingMode, :ZoneId, :RedisShardNum, :RedisReplicasNum, :ReplicasReadonly, :ZoneName
3420
+ attr_accessor :TypeId, :MemSize, :GoodsNum, :Period, :BillingMode, :ZoneId, :RedisShardNum, :RedisReplicasNum, :ReplicasReadonly, :ZoneName, :ProductVersion
3407
3421
 
3408
- def initialize(typeid=nil, memsize=nil, goodsnum=nil, period=nil, billingmode=nil, zoneid=nil, redisshardnum=nil, redisreplicasnum=nil, replicasreadonly=nil, zonename=nil)
3422
+ def initialize(typeid=nil, memsize=nil, goodsnum=nil, period=nil, billingmode=nil, zoneid=nil, redisshardnum=nil, redisreplicasnum=nil, replicasreadonly=nil, zonename=nil, productversion=nil)
3409
3423
  @TypeId = typeid
3410
3424
  @MemSize = memsize
3411
3425
  @GoodsNum = goodsnum
@@ -3416,6 +3430,7 @@ module TencentCloud
3416
3430
  @RedisReplicasNum = redisreplicasnum
3417
3431
  @ReplicasReadonly = replicasreadonly
3418
3432
  @ZoneName = zonename
3433
+ @ProductVersion = productversion
3419
3434
  end
3420
3435
 
3421
3436
  def deserialize(params)
@@ -3429,6 +3444,7 @@ module TencentCloud
3429
3444
  @RedisReplicasNum = params['RedisReplicasNum']
3430
3445
  @ReplicasReadonly = params['ReplicasReadonly']
3431
3446
  @ZoneName = params['ZoneName']
3447
+ @ProductVersion = params['ProductVersion']
3432
3448
  end
3433
3449
  end
3434
3450
 
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: 1.0.353
4
+ version: 1.0.356
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-07-11 00:00:00.000000000 Z
11
+ date: 2022-07-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common