tencentcloud-sdk-keewidb 3.0.1064 → 3.0.1066

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/v20220308/models.rb +17 -3
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5cba650b6e0b326eeae7659c2b661ce1f631a3e0
4
- data.tar.gz: 0d62c390ab89e2bfd978b9fead8e28dc1c35272c
3
+ metadata.gz: e17cf6e83e1e335dff3d2e05792f580155278747
4
+ data.tar.gz: b19948dfaf2489e6618229318e4c8a0917ecfa0b
5
5
  SHA512:
6
- metadata.gz: 66174a0f84f62b53ab232280c0df430a02b2409eac7380be25c5d41f949f34eeee23d0570625232929589827c9719fdf926a82b9c39d5e554c258f04db60b041
7
- data.tar.gz: 59ad384991f2eb1b2caecadd2e979e03ac2bc40ad6728079709efe25a136f2b9f2415d19f346b6cec19664cd9666586ddc8a4f585af145dd5643e0389b57002b
6
+ metadata.gz: d23abc375a82799ac18edaca83009558cfee71f2164a8b259e403f38f5c27883b18ccb9315d81331dbcb6dfd5ecfd93d2f2cd79d6fbe39b409875d68c1962393
7
+ data.tar.gz: 694c0734c58039c6077790794c0bbc43690182489c22237e8072b2db974de32bd15ce971a23e849a8e5cf365f619c8d3416282621e129a2ade71baac8ae08bd0
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1064
1
+ 3.0.1066
@@ -1095,14 +1095,19 @@ module TencentCloud
1095
1095
  # @type TypeList: Array
1096
1096
  # @param MonitorVersion: 内部参数,用户可忽略。
1097
1097
  # @type MonitorVersion: String
1098
- # @param InstanceTags: 根据标签的 Key 和 Value 筛选资源。该参数不配置或者数组设置为空值,则不根据标签进行过滤。
1098
+ # @param InstanceTags: 废弃字段。请使用TagList传参。
1099
1099
  # @type InstanceTags: :class:`Tencentcloud::Keewidb.v20220308.models.InstanceTagInfo`
1100
1100
  # @param TagKeys: 根据标签的 Key 筛选资源,该参数不配置或者数组设置为空值,则不根据标签Key进行过滤。
1101
1101
  # @type TagKeys: Array
1102
+ # @param TagList: 根据标签的 Key 和 Value 筛选资源。该参数不配置或者数组设置为空值,则不根据标签进行过滤。
1103
+ # @type TagList: Array
1102
1104
 
1103
- attr_accessor :Limit, :Offset, :InstanceId, :OrderBy, :OrderType, :VpcIds, :SubnetIds, :ProjectIds, :SearchKey, :InstanceName, :UniqVpcIds, :UniqSubnetIds, :Status, :AutoRenew, :BillingMode, :Type, :SearchKeys, :TypeList, :MonitorVersion, :InstanceTags, :TagKeys
1105
+ attr_accessor :Limit, :Offset, :InstanceId, :OrderBy, :OrderType, :VpcIds, :SubnetIds, :ProjectIds, :SearchKey, :InstanceName, :UniqVpcIds, :UniqSubnetIds, :Status, :AutoRenew, :BillingMode, :Type, :SearchKeys, :TypeList, :MonitorVersion, :InstanceTags, :TagKeys, :TagList
1106
+ extend Gem::Deprecate
1107
+ deprecate :InstanceTags, :none, 2025, 5
1108
+ deprecate :InstanceTags=, :none, 2025, 5
1104
1109
 
1105
- 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, status=nil, autorenew=nil, billingmode=nil, type=nil, searchkeys=nil, typelist=nil, monitorversion=nil, instancetags=nil, tagkeys=nil)
1110
+ 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, status=nil, autorenew=nil, billingmode=nil, type=nil, searchkeys=nil, typelist=nil, monitorversion=nil, instancetags=nil, tagkeys=nil, taglist=nil)
1106
1111
  @Limit = limit
1107
1112
  @Offset = offset
1108
1113
  @InstanceId = instanceid
@@ -1124,6 +1129,7 @@ module TencentCloud
1124
1129
  @MonitorVersion = monitorversion
1125
1130
  @InstanceTags = instancetags
1126
1131
  @TagKeys = tagkeys
1132
+ @TagList = taglist
1127
1133
  end
1128
1134
 
1129
1135
  def deserialize(params)
@@ -1151,6 +1157,14 @@ module TencentCloud
1151
1157
  @InstanceTags.deserialize(params['InstanceTags'])
1152
1158
  end
1153
1159
  @TagKeys = params['TagKeys']
1160
+ unless params['TagList'].nil?
1161
+ @TagList = []
1162
+ params['TagList'].each do |i|
1163
+ instancetaginfo_tmp = InstanceTagInfo.new
1164
+ instancetaginfo_tmp.deserialize(i)
1165
+ @TagList << instancetaginfo_tmp
1166
+ end
1167
+ end
1154
1168
  end
1155
1169
  end
1156
1170
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-keewidb
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1064
4
+ version: 3.0.1066
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-05-20 00:00:00.000000000 Z
11
+ date: 2025-05-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common