tencentcloud-sdk-dasb 3.0.442 → 3.0.443

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/v20191018/models.rb +46 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c5de13f5a3767248a78882af663afd133e872e1e
4
- data.tar.gz: f1c0db04629e6431c4ed96b32ca35a879328c781
3
+ metadata.gz: 712723402855c5565ee87bdb4c3ecf7c84f3c2d3
4
+ data.tar.gz: 0b7a29e22e48266ef2bab34b445246e8ee09713a
5
5
  SHA512:
6
- metadata.gz: 0f20d931bf7e0b1d91e44b02cc983b22e5fae130ce2ae104d2a53ddebcd1703e4514883c99394d9373b385f7e309f5dc2f0aff2f662e9145adae69576b17c4a3
7
- data.tar.gz: 10293cd55bc094ed80c51ea8bfe57f7b607b80df8df9694008cfa63862f0ed75739b732bb4864b9d6edde76ed09e74d17c42c31a33216704de8cf831421bd0a8
6
+ metadata.gz: b246dad33059299d1fdc1fd3352c2bc8110b3b3db55725b62b454da41a38b0d13c168b55dbb4ea5b06d89c2442ffb1f5faf0553f9e83b646187cbec46b56b091
7
+ data.tar.gz: a6bf6bf5f105d0be7799f2b9279607f3e3796fd3327267d0bcec3b84d2b4f62656efc09e2ef03e9af77b39c76d742589be5e5a9ca65e8747e5e13acc919f482c
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.442
1
+ 3.0.443
@@ -953,10 +953,12 @@ module TencentCloud
953
953
  # @type Kind: Integer
954
954
  # @param DepartmentId: 所属部门ID
955
955
  # @type DepartmentId: String
956
+ # @param TagFilters: 过滤条件,可按照标签键、标签进行过滤。如果同时指定标签键和标签过滤条件,它们之间为“AND”的关系
957
+ # @type TagFilters: Array
956
958
 
957
- attr_accessor :Id, :Bound, :Name, :Offset, :Limit, :Kind, :DepartmentId
959
+ attr_accessor :Id, :Bound, :Name, :Offset, :Limit, :Kind, :DepartmentId, :TagFilters
958
960
 
959
- def initialize(id=nil, bound=nil, name=nil, offset=nil, limit=nil, kind=nil, departmentid=nil)
961
+ def initialize(id=nil, bound=nil, name=nil, offset=nil, limit=nil, kind=nil, departmentid=nil, tagfilters=nil)
960
962
  @Id = id
961
963
  @Bound = bound
962
964
  @Name = name
@@ -964,6 +966,7 @@ module TencentCloud
964
966
  @Limit = limit
965
967
  @Kind = kind
966
968
  @DepartmentId = departmentid
969
+ @TagFilters = tagfilters
967
970
  end
968
971
 
969
972
  def deserialize(params)
@@ -974,6 +977,14 @@ module TencentCloud
974
977
  @Limit = params['Limit']
975
978
  @Kind = params['Kind']
976
979
  @DepartmentId = params['DepartmentId']
980
+ unless params['TagFilters'].nil?
981
+ @TagFilters = []
982
+ params['TagFilters'].each do |i|
983
+ tagfilter_tmp = TagFilter.new
984
+ tagfilter_tmp.deserialize(i)
985
+ @TagFilters << tagfilter_tmp
986
+ end
987
+ end
977
988
  end
978
989
  end
979
990
 
@@ -1095,10 +1106,12 @@ module TencentCloud
1095
1106
  # @type KindSet: Array
1096
1107
  # @param DepartmentId: 过滤条件,可按照部门ID进行过滤
1097
1108
  # @type DepartmentId: String
1109
+ # @param TagFilters: 过滤条件,可按照标签键、标签进行过滤。如果同时指定标签键和标签过滤条件,它们之间为“AND”的关系
1110
+ # @type TagFilters: Array
1098
1111
 
1099
- attr_accessor :IdSet, :Name, :Ip, :ApCodeSet, :Kind, :Offset, :Limit, :AuthorizedUserIdSet, :ResourceIdSet, :KindSet, :DepartmentId
1112
+ attr_accessor :IdSet, :Name, :Ip, :ApCodeSet, :Kind, :Offset, :Limit, :AuthorizedUserIdSet, :ResourceIdSet, :KindSet, :DepartmentId, :TagFilters
1100
1113
 
1101
- def initialize(idset=nil, name=nil, ip=nil, apcodeset=nil, kind=nil, offset=nil, limit=nil, authorizeduseridset=nil, resourceidset=nil, kindset=nil, departmentid=nil)
1114
+ def initialize(idset=nil, name=nil, ip=nil, apcodeset=nil, kind=nil, offset=nil, limit=nil, authorizeduseridset=nil, resourceidset=nil, kindset=nil, departmentid=nil, tagfilters=nil)
1102
1115
  @IdSet = idset
1103
1116
  @Name = name
1104
1117
  @Ip = ip
@@ -1110,6 +1123,7 @@ module TencentCloud
1110
1123
  @ResourceIdSet = resourceidset
1111
1124
  @KindSet = kindset
1112
1125
  @DepartmentId = departmentid
1126
+ @TagFilters = tagfilters
1113
1127
  end
1114
1128
 
1115
1129
  def deserialize(params)
@@ -1124,6 +1138,14 @@ module TencentCloud
1124
1138
  @ResourceIdSet = params['ResourceIdSet']
1125
1139
  @KindSet = params['KindSet']
1126
1140
  @DepartmentId = params['DepartmentId']
1141
+ unless params['TagFilters'].nil?
1142
+ @TagFilters = []
1143
+ params['TagFilters'].each do |i|
1144
+ tagfilter_tmp = TagFilter.new
1145
+ tagfilter_tmp.deserialize(i)
1146
+ @TagFilters << tagfilter_tmp
1147
+ end
1148
+ end
1127
1149
  end
1128
1150
  end
1129
1151
 
@@ -1862,6 +1884,26 @@ module TencentCloud
1862
1884
  end
1863
1885
  end
1864
1886
 
1887
+ # 资产标签
1888
+ class TagFilter < TencentCloud::Common::AbstractModel
1889
+ # @param TagKey: 标签键
1890
+ # @type TagKey: String
1891
+ # @param TagValue: 标签值
1892
+ # @type TagValue: Array
1893
+
1894
+ attr_accessor :TagKey, :TagValue
1895
+
1896
+ def initialize(tagkey=nil, tagvalue=nil)
1897
+ @TagKey = tagkey
1898
+ @TagValue = tagvalue
1899
+ end
1900
+
1901
+ def deserialize(params)
1902
+ @TagKey = params['TagKey']
1903
+ @TagValue = params['TagValue']
1904
+ end
1905
+ end
1906
+
1865
1907
  # 用户信息
1866
1908
  class User < TencentCloud::Common::AbstractModel
1867
1909
  # @param UserName: 用户名, 3-20个字符 必须以英文字母开头,且不能包含字母、数字、.、_、-以外的字符
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-dasb
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.442
4
+ version: 3.0.443
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-11-01 00:00:00.000000000 Z
11
+ date: 2022-11-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common