tencentcloud-sdk-dasb 3.0.925 → 3.0.926
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/v20191018/models.rb +14 -10
- 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: 148989830fb2a8140945b401a59f45eedacce654
|
|
4
|
+
data.tar.gz: 5eb7d1e5a431300b1fa360f984ddb240a1002b86
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fbff5f4a1f28888e5018b511f99b404384d2c56d5b4a2ed2a573bc007e71200c8cfae1c7ec1be85bd23d99a65b8c148dcbabb33de3c2a3d30b1b580cebdf06c3
|
|
7
|
+
data.tar.gz: 4074cae9be6dbd0c3f0e9e79913b637f033e56209ecf7f80717cbe04c378b61d6a867f0521638ffe05c052813707fbf721d44f2d453b229a3ee9a821c078723a
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.926
|
data/lib/v20191018/models.rb
CHANGED
|
@@ -749,8 +749,8 @@ module TencentCloud
|
|
|
749
749
|
|
|
750
750
|
attr_accessor :Cmd, :Time, :TimeOffset, :Action, :Sid, :UserName, :Account, :InstanceId, :FromIp, :SessionTime, :SessTime, :ConfirmTime, :UserDepartmentId, :UserDepartmentName, :DeviceDepartmentId, :DeviceDepartmentName, :Size
|
|
751
751
|
extend Gem::Deprecate
|
|
752
|
-
deprecate :SessTime, :none, 2024,
|
|
753
|
-
deprecate :SessTime=, :none, 2024,
|
|
752
|
+
deprecate :SessTime, :none, 2024, 10
|
|
753
|
+
deprecate :SessTime=, :none, 2024, 10
|
|
754
754
|
|
|
755
755
|
def initialize(cmd=nil, time=nil, timeoffset=nil, action=nil, sid=nil, username=nil, account=nil, instanceid=nil, fromip=nil, sessiontime=nil, sesstime=nil, confirmtime=nil, userdepartmentid=nil, userdepartmentname=nil, devicedepartmentid=nil, devicedepartmentname=nil, size=nil)
|
|
756
756
|
@Cmd = cmd
|
|
@@ -2268,10 +2268,12 @@ module TencentCloud
|
|
|
2268
2268
|
|
|
2269
2269
|
# DescribeDeviceGroupMembers请求参数结构体
|
|
2270
2270
|
class DescribeDeviceGroupMembersRequest < TencentCloud::Common::AbstractModel
|
|
2271
|
-
# @param Id: 资产组ID
|
|
2272
|
-
# @type Id: Integer
|
|
2273
2271
|
# @param Bound: true - 查询已在该资产组的资产,false - 查询未在该资产组的资产
|
|
2274
2272
|
# @type Bound: Boolean
|
|
2273
|
+
# @param Id: 资产组ID,Id和IdSet二选一
|
|
2274
|
+
# @type Id: Integer
|
|
2275
|
+
# @param IdSet: 资产组ID集合,传Id,IdSet不生效。
|
|
2276
|
+
# @type IdSet: Array
|
|
2275
2277
|
# @param Name: 资产名或资产IP,模糊查询
|
|
2276
2278
|
# @type Name: String
|
|
2277
2279
|
# @param Offset: 分页偏移位置,默认值为0
|
|
@@ -2285,11 +2287,12 @@ module TencentCloud
|
|
|
2285
2287
|
# @param TagFilters: 过滤条件,可按照标签键、标签进行过滤。如果同时指定标签键和标签过滤条件,它们之间为“AND”的关系
|
|
2286
2288
|
# @type TagFilters: Array
|
|
2287
2289
|
|
|
2288
|
-
attr_accessor :Id, :
|
|
2290
|
+
attr_accessor :Bound, :Id, :IdSet, :Name, :Offset, :Limit, :Kind, :DepartmentId, :TagFilters
|
|
2289
2291
|
|
|
2290
|
-
def initialize(id=nil,
|
|
2291
|
-
@Id = id
|
|
2292
|
+
def initialize(bound=nil, id=nil, idset=nil, name=nil, offset=nil, limit=nil, kind=nil, departmentid=nil, tagfilters=nil)
|
|
2292
2293
|
@Bound = bound
|
|
2294
|
+
@Id = id
|
|
2295
|
+
@IdSet = idset
|
|
2293
2296
|
@Name = name
|
|
2294
2297
|
@Offset = offset
|
|
2295
2298
|
@Limit = limit
|
|
@@ -2299,8 +2302,9 @@ module TencentCloud
|
|
|
2299
2302
|
end
|
|
2300
2303
|
|
|
2301
2304
|
def deserialize(params)
|
|
2302
|
-
@Id = params['Id']
|
|
2303
2305
|
@Bound = params['Bound']
|
|
2306
|
+
@Id = params['Id']
|
|
2307
|
+
@IdSet = params['IdSet']
|
|
2304
2308
|
@Name = params['Name']
|
|
2305
2309
|
@Offset = params['Offset']
|
|
2306
2310
|
@Limit = params['Limit']
|
|
@@ -4658,8 +4662,8 @@ module TencentCloud
|
|
|
4658
4662
|
|
|
4659
4663
|
attr_accessor :Time, :UserName, :RealName, :InstanceId, :DeviceName, :PublicIp, :PrivateIp, :Cmd, :Action, :Sid, :TimeOffset, :Account, :FromIp, :SessionTime, :SessTime, :ConfirmTime, :UserDepartmentId, :UserDepartmentName, :DeviceDepartmentId, :DeviceDepartmentName, :Size
|
|
4660
4664
|
extend Gem::Deprecate
|
|
4661
|
-
deprecate :SessTime, :none, 2024,
|
|
4662
|
-
deprecate :SessTime=, :none, 2024,
|
|
4665
|
+
deprecate :SessTime, :none, 2024, 10
|
|
4666
|
+
deprecate :SessTime=, :none, 2024, 10
|
|
4663
4667
|
|
|
4664
4668
|
def initialize(time=nil, username=nil, realname=nil, instanceid=nil, devicename=nil, publicip=nil, privateip=nil, cmd=nil, action=nil, sid=nil, timeoffset=nil, account=nil, fromip=nil, sessiontime=nil, sesstime=nil, confirmtime=nil, userdepartmentid=nil, userdepartmentname=nil, devicedepartmentid=nil, devicedepartmentname=nil, size=nil)
|
|
4665
4669
|
@Time = time
|
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.
|
|
4
|
+
version: 3.0.926
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-10-
|
|
11
|
+
date: 2024-10-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|