tencentcloud-sdk-cdb 1.0.324 → 1.0.325

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20170320/models.rb +33 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 75f99c1f349c43c357592c8865c6832c30a8f100
4
- data.tar.gz: 6a7f061135fc42bb98f5bd21cf3a9f571b1a771c
3
+ metadata.gz: 4f6aad11b30a0c6a6ff9de2fe00ae55984767962
4
+ data.tar.gz: 984ca00d01caa2caadc917ea229bdd04127c8a9e
5
5
  SHA512:
6
- metadata.gz: 73d594198a390abff925ec6c284183e414bcae3b9b5e7debea3ad6d1d7d707a805ca78690c29e91891b19ec945218de4e0249a454241b3bc07dcc13ff98b917e
7
- data.tar.gz: 3e63e05485e0f2668fb841d1e8142caa0e38678a5d1040668c26f2a10faa1b3c5c3929bdd432eb343b7fc7c2f1c7fb704e4adbbd44d4e0b4fd1d69b9ba40aa6e
6
+ metadata.gz: e4120559a47f74c341572a31650e3be2b555de27c7a5d1aeddaa87ae8684a49e7fbdc776a08825cd1f07558d2cd0a1ef878d0b9b02a64986f47c420c37120941
7
+ data.tar.gz: 7d3df4184b714242e7e6f28e9b4985d368b8f965a392065dc279582b5b1da1e52daf2cd147bf92ebf26e4b947a74eb57918abec97b95b13ef8db55180c0d4531
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.324
1
+ 1.0.325
@@ -4002,10 +4002,12 @@ module TencentCloud
4002
4002
  # @type UniqueVpcIds: Array
4003
4003
  # @param UniqSubnetIds: 私有网络字符型subnetId
4004
4004
  # @type UniqSubnetIds: Array
4005
+ # @param Tags: 标签键值
4006
+ # @type Tags: Array
4005
4007
 
4006
- attr_accessor :ProjectId, :InstanceTypes, :Vips, :Status, :Offset, :Limit, :SecurityGroupId, :PayTypes, :InstanceNames, :TaskStatus, :EngineVersions, :VpcIds, :ZoneIds, :SubnetIds, :CdbErrors, :OrderBy, :OrderDirection, :WithSecurityGroup, :WithExCluster, :ExClusterId, :InstanceIds, :InitFlag, :WithDr, :WithRo, :WithMaster, :DeployGroupIds, :TagKeysForSearch, :CageIds, :TagValues, :UniqueVpcIds, :UniqSubnetIds
4008
+ attr_accessor :ProjectId, :InstanceTypes, :Vips, :Status, :Offset, :Limit, :SecurityGroupId, :PayTypes, :InstanceNames, :TaskStatus, :EngineVersions, :VpcIds, :ZoneIds, :SubnetIds, :CdbErrors, :OrderBy, :OrderDirection, :WithSecurityGroup, :WithExCluster, :ExClusterId, :InstanceIds, :InitFlag, :WithDr, :WithRo, :WithMaster, :DeployGroupIds, :TagKeysForSearch, :CageIds, :TagValues, :UniqueVpcIds, :UniqSubnetIds, :Tags
4007
4009
 
4008
- def initialize(projectid=nil, instancetypes=nil, vips=nil, status=nil, offset=nil, limit=nil, securitygroupid=nil, paytypes=nil, instancenames=nil, taskstatus=nil, engineversions=nil, vpcids=nil, zoneids=nil, subnetids=nil, cdberrors=nil, orderby=nil, orderdirection=nil, withsecuritygroup=nil, withexcluster=nil, exclusterid=nil, instanceids=nil, initflag=nil, withdr=nil, withro=nil, withmaster=nil, deploygroupids=nil, tagkeysforsearch=nil, cageids=nil, tagvalues=nil, uniquevpcids=nil, uniqsubnetids=nil)
4010
+ def initialize(projectid=nil, instancetypes=nil, vips=nil, status=nil, offset=nil, limit=nil, securitygroupid=nil, paytypes=nil, instancenames=nil, taskstatus=nil, engineversions=nil, vpcids=nil, zoneids=nil, subnetids=nil, cdberrors=nil, orderby=nil, orderdirection=nil, withsecuritygroup=nil, withexcluster=nil, exclusterid=nil, instanceids=nil, initflag=nil, withdr=nil, withro=nil, withmaster=nil, deploygroupids=nil, tagkeysforsearch=nil, cageids=nil, tagvalues=nil, uniquevpcids=nil, uniqsubnetids=nil, tags=nil)
4009
4011
  @ProjectId = projectid
4010
4012
  @InstanceTypes = instancetypes
4011
4013
  @Vips = vips
@@ -4037,6 +4039,7 @@ module TencentCloud
4037
4039
  @TagValues = tagvalues
4038
4040
  @UniqueVpcIds = uniquevpcids
4039
4041
  @UniqSubnetIds = uniqsubnetids
4042
+ @Tags = tags
4040
4043
  end
4041
4044
 
4042
4045
  def deserialize(params)
@@ -4071,6 +4074,14 @@ module TencentCloud
4071
4074
  @TagValues = params['TagValues']
4072
4075
  @UniqueVpcIds = params['UniqueVpcIds']
4073
4076
  @UniqSubnetIds = params['UniqSubnetIds']
4077
+ unless params['Tags'].nil?
4078
+ @Tags = []
4079
+ params['Tags'].each do |i|
4080
+ tag_tmp = Tag.new
4081
+ tag_tmp.deserialize(i)
4082
+ @Tags << tag_tmp
4083
+ end
4084
+ end
4074
4085
  end
4075
4086
  end
4076
4087
 
@@ -10200,6 +10211,26 @@ module TencentCloud
10200
10211
  end
10201
10212
  end
10202
10213
 
10214
+ # 标签结构
10215
+ class Tag < TencentCloud::Common::AbstractModel
10216
+ # @param Key: 标签键
10217
+ # @type Key: String
10218
+ # @param Value: 标签值
10219
+ # @type Value: String
10220
+
10221
+ attr_accessor :Key, :Value
10222
+
10223
+ def initialize(key=nil, value=nil)
10224
+ @Key = key
10225
+ @Value = value
10226
+ end
10227
+
10228
+ def deserialize(params)
10229
+ @Key = params['Key']
10230
+ @Value = params['Value']
10231
+ end
10232
+ end
10233
+
10203
10234
  # 标签信息
10204
10235
  class TagInfo < TencentCloud::Common::AbstractModel
10205
10236
  # @param TagKey: 标签键
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cdb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.324
4
+ version: 1.0.325
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-05-31 00:00:00.000000000 Z
11
+ date: 2022-06-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common