tencentcloud-sdk-redis 1.0.351 → 1.0.354
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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20180412/models.rb +7 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6813e896e03aff5e03cb3ab1bc25a1da8a0c0615
|
|
4
|
+
data.tar.gz: fafe1c86c0c9d4b480c7d4570ad9998fe2d81fe3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2ae0ee22ced9ff6e14a10f476b7d73301e077b79b257094a17035e577e7ec3c9a27103508612ebdb966850e82a439f697f0d0e03c410904edf6446fa4fd5a87e
|
|
7
|
+
data.tar.gz: 03402204377233afcd8d3ae25cb0df142959ffb1d5e1b9723b33775648edf47b68e8cdcab801c23b4d72fdc630c4997dcbabd9705fd9276b7e40161a06cc7c6e
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.354
|
data/lib/v20180412/models.rb
CHANGED
|
@@ -2209,7 +2209,7 @@ module TencentCloud
|
|
|
2209
2209
|
|
|
2210
2210
|
# DescribeInstances请求参数结构体
|
|
2211
2211
|
class DescribeInstancesRequest < TencentCloud::Common::AbstractModel
|
|
2212
|
-
# @param Limit:
|
|
2212
|
+
# @param Limit: 返回数量,参数默认值20,最大值为1000
|
|
2213
2213
|
# @type Limit: Integer
|
|
2214
2214
|
# @param Offset: 偏移量,取Limit整数倍
|
|
2215
2215
|
# @type Offset: Integer
|
|
@@ -2257,10 +2257,12 @@ module TencentCloud
|
|
|
2257
2257
|
# @type InstanceTags: Array
|
|
2258
2258
|
# @param TagKeys: 根据标签的Key筛选资源,不传或者传空数组则不进行过滤
|
|
2259
2259
|
# @type TagKeys: Array
|
|
2260
|
+
# @param ProductVersions: 需要过滤的产品版本支持多个,"local"本地盘版,"cloud"云盘版,"cdc"独享集群版,如果不传则默认不过滤
|
|
2261
|
+
# @type ProductVersions: Array
|
|
2260
2262
|
|
|
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
|
|
2263
|
+
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
2264
|
|
|
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)
|
|
2265
|
+
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
2266
|
@Limit = limit
|
|
2265
2267
|
@Offset = offset
|
|
2266
2268
|
@InstanceId = instanceid
|
|
@@ -2285,6 +2287,7 @@ module TencentCloud
|
|
|
2285
2287
|
@MonitorVersion = monitorversion
|
|
2286
2288
|
@InstanceTags = instancetags
|
|
2287
2289
|
@TagKeys = tagkeys
|
|
2290
|
+
@ProductVersions = productversions
|
|
2288
2291
|
end
|
|
2289
2292
|
|
|
2290
2293
|
def deserialize(params)
|
|
@@ -2319,6 +2322,7 @@ module TencentCloud
|
|
|
2319
2322
|
end
|
|
2320
2323
|
end
|
|
2321
2324
|
@TagKeys = params['TagKeys']
|
|
2325
|
+
@ProductVersions = params['ProductVersions']
|
|
2322
2326
|
end
|
|
2323
2327
|
end
|
|
2324
2328
|
|
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.
|
|
4
|
+
version: 1.0.354
|
|
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
|
+
date: 2022-07-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|