tencentcloud-sdk-dasb 3.0.442 → 3.0.444

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 +53 -11
  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: b8996cb6d516943dd7d5bb75a1467ec482c2fd16
4
+ data.tar.gz: 97a3e5b12ea40e80b357f884936c642f4dc17994
5
5
  SHA512:
6
- metadata.gz: 0f20d931bf7e0b1d91e44b02cc983b22e5fae130ce2ae104d2a53ddebcd1703e4514883c99394d9373b385f7e309f5dc2f0aff2f662e9145adae69576b17c4a3
7
- data.tar.gz: 10293cd55bc094ed80c51ea8bfe57f7b607b80df8df9694008cfa63862f0ed75739b732bb4864b9d6edde76ed09e74d17c42c31a33216704de8cf831421bd0a8
6
+ metadata.gz: 9e589638759fc8869fa3fe398205564049f82f4d237c57c37544b8c8d2e2d4128f328e9abd52d1da9320da2522d03aa2643802b11fe4269de3461191ee936161
7
+ data.tar.gz: 508915ca12e82acfca07c0cae9fd420c4e0cf37d20ec70237e778e9a6efb15340127a3c3defc9864df9b06e6d2330da303a203d74b4211703857146120a71ce2
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.442
1
+ 3.0.444
@@ -829,7 +829,7 @@ module TencentCloud
829
829
  # @type IdSet: Array
830
830
  # @param Name: 访问权限名称,模糊查询,最长64字符
831
831
  # @type Name: String
832
- # @param Offset: 分页偏移位置
832
+ # @param Offset: 分页偏移位置,默认值为0
833
833
  # @type Offset: Integer
834
834
  # @param Limit: 每页条目数量,默认20,最大500
835
835
  # @type Limit: Integer
@@ -945,7 +945,7 @@ module TencentCloud
945
945
  # @type Bound: Boolean
946
946
  # @param Name: 资产名或资产IP,模糊查询
947
947
  # @type Name: String
948
- # @param Offset: 分页偏移位置
948
+ # @param Offset: 分页偏移位置,默认值为0
949
949
  # @type Offset: Integer
950
950
  # @param Limit: 每页条目数,默认20, 最大500
951
951
  # @type Limit: Integer
@@ -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
 
@@ -1014,7 +1025,7 @@ module TencentCloud
1014
1025
  # @type IdSet: Array
1015
1026
  # @param Name: 资产组名,最长64个字符,模糊查询
1016
1027
  # @type Name: String
1017
- # @param Offset: 分页偏移位置
1028
+ # @param Offset: 分页偏移位置,默认值为0
1018
1029
  # @type Offset: Integer
1019
1030
  # @param Limit: 每页条目数量,缺省20,最大500
1020
1031
  # @type Limit: Integer
@@ -1083,7 +1094,7 @@ module TencentCloud
1083
1094
  # @type ApCodeSet: Array
1084
1095
  # @param Kind: 操作系统类型, 1 - Linux, 2 - Windows, 3 - MySQL, 4 - SQLServer
1085
1096
  # @type Kind: Integer
1086
- # @param Offset: 分页,偏移位置
1097
+ # @param Offset: 分页偏移位置,默认值为0
1087
1098
  # @type Offset: Integer
1088
1099
  # @param Limit: 每页条目数量,默认20
1089
1100
  # @type Limit: Integer
@@ -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
 
@@ -1217,7 +1239,7 @@ module TencentCloud
1217
1239
  # @type Bound: Boolean
1218
1240
  # @param Name: 用户名或用户姓名,最长64个字符,模糊查询
1219
1241
  # @type Name: String
1220
- # @param Offset: 分页偏移位置
1242
+ # @param Offset: 分页偏移位置,默认值为0
1221
1243
  # @type Offset: Integer
1222
1244
  # @param Limit: 每页条目数量,默认20, 最大500
1223
1245
  # @type Limit: Integer
@@ -1282,7 +1304,7 @@ module TencentCloud
1282
1304
  # @type IdSet: Array
1283
1305
  # @param Name: 用户组名,模糊查询,长度:0-64字符
1284
1306
  # @type Name: String
1285
- # @param Offset: 分页偏移位置
1307
+ # @param Offset: 分页偏移位置,默认值为0
1286
1308
  # @type Offset: Integer
1287
1309
  # @param Limit: 每页条目数量,缺省20,最大500
1288
1310
  # @type Limit: Integer
@@ -1345,7 +1367,7 @@ module TencentCloud
1345
1367
  # @type IdSet: Array
1346
1368
  # @param Name: 模糊查询,IdSet、UserName、Phone为空时才生效,对用户名和姓名进行模糊查询
1347
1369
  # @type Name: String
1348
- # @param Offset: 分页,偏移位置
1370
+ # @param Offset: 分页偏移位置,默认值为0
1349
1371
  # @type Offset: Integer
1350
1372
  # @param Limit: 每页条目数量,默认20, 最大500
1351
1373
  # @type Limit: Integer
@@ -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.444
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-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common