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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20220308/models.rb +17 -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: e17cf6e83e1e335dff3d2e05792f580155278747
|
4
|
+
data.tar.gz: b19948dfaf2489e6618229318e4c8a0917ecfa0b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d23abc375a82799ac18edaca83009558cfee71f2164a8b259e403f38f5c27883b18ccb9315d81331dbcb6dfd5ecfd93d2f2cd79d6fbe39b409875d68c1962393
|
7
|
+
data.tar.gz: 694c0734c58039c6077790794c0bbc43690182489c22237e8072b2db974de32bd15ce971a23e849a8e5cf365f619c8d3416282621e129a2ade71baac8ae08bd0
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1066
|
data/lib/v20220308/models.rb
CHANGED
@@ -1095,14 +1095,19 @@ module TencentCloud
|
|
1095
1095
|
# @type TypeList: Array
|
1096
1096
|
# @param MonitorVersion: 内部参数,用户可忽略。
|
1097
1097
|
# @type MonitorVersion: String
|
1098
|
-
# @param InstanceTags:
|
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.
|
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-
|
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
|