tencentcloud-sdk-dasb 3.0.695 → 3.0.697
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 +35 -9
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e0f8537423ae41c7b4ea63429272317c731295d6
|
4
|
+
data.tar.gz: 1b739b5e66db19174b6d75eccfb922ad5f67ce0c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 43be5115740b505a59d62b4a5ad1fe8d02622878603b158da41984be090279e2257c9080d65bca6e5d177c8521946df8a0867a6988d1eb9b57953e186f174251
|
7
|
+
data.tar.gz: cb85dbbfc90831ccc1efab3ed70cfd10e33a46364a6d2d16f04f80c663c3c2ef23428deb0992d3c2f0438c5412d8b9b0d6faab7b75d344c95a952da70fccbed8
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.697
|
data/lib/v20191018/models.rb
CHANGED
@@ -535,6 +535,9 @@ module TencentCloud
|
|
535
535
|
# @param FromIp: source ip
|
536
536
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
537
537
|
# @type FromIp: String
|
538
|
+
# @param SessionTime: 该命令所属会话的会话开始时间
|
539
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
540
|
+
# @type SessionTime: String
|
538
541
|
# @param SessTime: 该命令所属会话的会话开始时间
|
539
542
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
540
543
|
# @type SessTime: String
|
@@ -554,9 +557,12 @@ module TencentCloud
|
|
554
557
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
555
558
|
# @type DeviceDepartmentName: String
|
556
559
|
|
557
|
-
attr_accessor :Cmd, :Time, :TimeOffset, :Action, :Sid, :UserName, :Account, :InstanceId, :FromIp, :SessTime, :ConfirmTime, :UserDepartmentId, :UserDepartmentName, :DeviceDepartmentId, :DeviceDepartmentName
|
560
|
+
attr_accessor :Cmd, :Time, :TimeOffset, :Action, :Sid, :UserName, :Account, :InstanceId, :FromIp, :SessionTime, :SessTime, :ConfirmTime, :UserDepartmentId, :UserDepartmentName, :DeviceDepartmentId, :DeviceDepartmentName
|
561
|
+
extend Gem::Deprecate
|
562
|
+
deprecate :SessTime, :none, 2023, 11
|
563
|
+
deprecate :SessTime=, :none, 2023, 11
|
558
564
|
|
559
|
-
def initialize(cmd=nil, time=nil, timeoffset=nil, action=nil, sid=nil, username=nil, account=nil, instanceid=nil, fromip=nil, sesstime=nil, confirmtime=nil, userdepartmentid=nil, userdepartmentname=nil, devicedepartmentid=nil, devicedepartmentname=nil)
|
565
|
+
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)
|
560
566
|
@Cmd = cmd
|
561
567
|
@Time = time
|
562
568
|
@TimeOffset = timeoffset
|
@@ -566,6 +572,7 @@ module TencentCloud
|
|
566
572
|
@Account = account
|
567
573
|
@InstanceId = instanceid
|
568
574
|
@FromIp = fromip
|
575
|
+
@SessionTime = sessiontime
|
569
576
|
@SessTime = sesstime
|
570
577
|
@ConfirmTime = confirmtime
|
571
578
|
@UserDepartmentId = userdepartmentid
|
@@ -584,6 +591,7 @@ module TencentCloud
|
|
584
591
|
@Account = params['Account']
|
585
592
|
@InstanceId = params['InstanceId']
|
586
593
|
@FromIp = params['FromIp']
|
594
|
+
@SessionTime = params['SessionTime']
|
587
595
|
@SessTime = params['SessTime']
|
588
596
|
@ConfirmTime = params['ConfirmTime']
|
589
597
|
@UserDepartmentId = params['UserDepartmentId']
|
@@ -947,16 +955,21 @@ module TencentCloud
|
|
947
955
|
|
948
956
|
# CreateResource返回参数结构体
|
949
957
|
class CreateResourceResponse < TencentCloud::Common::AbstractModel
|
958
|
+
# @param ResourceId: 实例Id
|
959
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
960
|
+
# @type ResourceId: String
|
950
961
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
951
962
|
# @type RequestId: String
|
952
963
|
|
953
|
-
attr_accessor :RequestId
|
964
|
+
attr_accessor :ResourceId, :RequestId
|
954
965
|
|
955
|
-
def initialize(requestid=nil)
|
966
|
+
def initialize(resourceid=nil, requestid=nil)
|
967
|
+
@ResourceId = resourceid
|
956
968
|
@RequestId = requestid
|
957
969
|
end
|
958
970
|
|
959
971
|
def deserialize(params)
|
972
|
+
@ResourceId = params['ResourceId']
|
960
973
|
@RequestId = params['RequestId']
|
961
974
|
end
|
962
975
|
end
|
@@ -2702,16 +2715,21 @@ module TencentCloud
|
|
2702
2715
|
|
2703
2716
|
# ImportExternalDevice返回参数结构体
|
2704
2717
|
class ImportExternalDeviceResponse < TencentCloud::Common::AbstractModel
|
2718
|
+
# @param DeviceIdSet: 资产ID列表
|
2719
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2720
|
+
# @type DeviceIdSet: Array
|
2705
2721
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2706
2722
|
# @type RequestId: String
|
2707
2723
|
|
2708
|
-
attr_accessor :RequestId
|
2724
|
+
attr_accessor :DeviceIdSet, :RequestId
|
2709
2725
|
|
2710
|
-
def initialize(requestid=nil)
|
2726
|
+
def initialize(deviceidset=nil, requestid=nil)
|
2727
|
+
@DeviceIdSet = deviceidset
|
2711
2728
|
@RequestId = requestid
|
2712
2729
|
end
|
2713
2730
|
|
2714
2731
|
def deserialize(params)
|
2732
|
+
@DeviceIdSet = params['DeviceIdSet']
|
2715
2733
|
@RequestId = params['RequestId']
|
2716
2734
|
end
|
2717
2735
|
end
|
@@ -3675,7 +3693,10 @@ module TencentCloud
|
|
3675
3693
|
# @param FromIp: source ip
|
3676
3694
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3677
3695
|
# @type FromIp: String
|
3678
|
-
# @param
|
3696
|
+
# @param SessionTime: 该命令所属会话的会话开始时间
|
3697
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3698
|
+
# @type SessionTime: String
|
3699
|
+
# @param SessTime: 该命令所属会话的会话开始时间(废弃,使用SessionTime)
|
3679
3700
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3680
3701
|
# @type SessTime: String
|
3681
3702
|
# @param ConfirmTime: 复核时间
|
@@ -3694,9 +3715,12 @@ module TencentCloud
|
|
3694
3715
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3695
3716
|
# @type DeviceDepartmentName: String
|
3696
3717
|
|
3697
|
-
attr_accessor :Time, :UserName, :RealName, :InstanceId, :DeviceName, :PublicIp, :PrivateIp, :Cmd, :Action, :Sid, :TimeOffset, :Account, :FromIp, :SessTime, :ConfirmTime, :UserDepartmentId, :UserDepartmentName, :DeviceDepartmentId, :DeviceDepartmentName
|
3718
|
+
attr_accessor :Time, :UserName, :RealName, :InstanceId, :DeviceName, :PublicIp, :PrivateIp, :Cmd, :Action, :Sid, :TimeOffset, :Account, :FromIp, :SessionTime, :SessTime, :ConfirmTime, :UserDepartmentId, :UserDepartmentName, :DeviceDepartmentId, :DeviceDepartmentName
|
3719
|
+
extend Gem::Deprecate
|
3720
|
+
deprecate :SessTime, :none, 2023, 11
|
3721
|
+
deprecate :SessTime=, :none, 2023, 11
|
3698
3722
|
|
3699
|
-
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, sesstime=nil, confirmtime=nil, userdepartmentid=nil, userdepartmentname=nil, devicedepartmentid=nil, devicedepartmentname=nil)
|
3723
|
+
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)
|
3700
3724
|
@Time = time
|
3701
3725
|
@UserName = username
|
3702
3726
|
@RealName = realname
|
@@ -3710,6 +3734,7 @@ module TencentCloud
|
|
3710
3734
|
@TimeOffset = timeoffset
|
3711
3735
|
@Account = account
|
3712
3736
|
@FromIp = fromip
|
3737
|
+
@SessionTime = sessiontime
|
3713
3738
|
@SessTime = sesstime
|
3714
3739
|
@ConfirmTime = confirmtime
|
3715
3740
|
@UserDepartmentId = userdepartmentid
|
@@ -3732,6 +3757,7 @@ module TencentCloud
|
|
3732
3757
|
@TimeOffset = params['TimeOffset']
|
3733
3758
|
@Account = params['Account']
|
3734
3759
|
@FromIp = params['FromIp']
|
3760
|
+
@SessionTime = params['SessionTime']
|
3735
3761
|
@SessTime = params['SessTime']
|
3736
3762
|
@ConfirmTime = params['ConfirmTime']
|
3737
3763
|
@UserDepartmentId = params['UserDepartmentId']
|
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.697
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-11-
|
11
|
+
date: 2023-11-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|
@@ -33,8 +33,8 @@ executables: []
|
|
33
33
|
extensions: []
|
34
34
|
extra_rdoc_files: []
|
35
35
|
files:
|
36
|
-
- lib/v20191018/models.rb
|
37
36
|
- lib/v20191018/client.rb
|
37
|
+
- lib/v20191018/models.rb
|
38
38
|
- lib/tencentcloud-sdk-dasb.rb
|
39
39
|
- lib/VERSION
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|