tencentcloud-sdk-dasb 3.0.942 → 3.0.943

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 +37 -13
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5e13bd5fb3e09777bb863ce346b8fc99d054646e
4
- data.tar.gz: ea676cac3222c6319340052c08be1c8259912607
3
+ metadata.gz: 8670c8614381a7a67a253eed3dd7474e9cba1461
4
+ data.tar.gz: 0df7d79ed6b6fb681abcdb5117cb9429cf8a27c5
5
5
  SHA512:
6
- metadata.gz: f4437625d24874e9bcd07f4f4be90745a12268f6cda7ee6a7c54dc86792ddbd91102368103da80ac9c11e92700cba7ef42da15a781774dd54eda0b533fdfcb7a
7
- data.tar.gz: 7832e5bb0f727b6babed3d258ff4f633820b0c30cbefc325ded8e3ec007e7ce363e14776170ff0dc1da6deac91070c54fa66fc25cb1b35cddb1399501bd7c28a
6
+ metadata.gz: d36061173c4e1a6b055f49d83a3e7c5fec2ef68a3250e3f68b9e4761a8612c9140fa3ccfd2d9c70e6ec66d7e4a12726025df37fd5a23a7271802764930ee9c38
7
+ data.tar.gz: f14ef879e1ac34881767e01760d8430eab657e6f01237417db202cdd7c64cd38ff11a3d4511791e502d6b0e4e36610ccf6749e62fc5ea96c6010b699f1065ac1
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.942
1
+ 3.0.943
@@ -705,13 +705,15 @@ module TencentCloud
705
705
  # @type DeviceDepartmentName: String
706
706
  # @param Size: 会话大小
707
707
  # @type Size: Integer
708
+ # @param SignValue: 签名值
709
+ # @type SignValue: String
708
710
 
709
- attr_accessor :Cmd, :Time, :TimeOffset, :Action, :Sid, :UserName, :Account, :InstanceId, :FromIp, :SessionTime, :SessTime, :ConfirmTime, :UserDepartmentId, :UserDepartmentName, :DeviceDepartmentId, :DeviceDepartmentName, :Size
711
+ attr_accessor :Cmd, :Time, :TimeOffset, :Action, :Sid, :UserName, :Account, :InstanceId, :FromIp, :SessionTime, :SessTime, :ConfirmTime, :UserDepartmentId, :UserDepartmentName, :DeviceDepartmentId, :DeviceDepartmentName, :Size, :SignValue
710
712
  extend Gem::Deprecate
711
713
  deprecate :SessTime, :none, 2024, 11
712
714
  deprecate :SessTime=, :none, 2024, 11
713
715
 
714
- 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)
716
+ 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, signvalue=nil)
715
717
  @Cmd = cmd
716
718
  @Time = time
717
719
  @TimeOffset = timeoffset
@@ -729,6 +731,7 @@ module TencentCloud
729
731
  @DeviceDepartmentId = devicedepartmentid
730
732
  @DeviceDepartmentName = devicedepartmentname
731
733
  @Size = size
734
+ @SignValue = signvalue
732
735
  end
733
736
 
734
737
  def deserialize(params)
@@ -749,6 +752,7 @@ module TencentCloud
749
752
  @DeviceDepartmentId = params['DeviceDepartmentId']
750
753
  @DeviceDepartmentName = params['DeviceDepartmentName']
751
754
  @Size = params['Size']
755
+ @SignValue = params['SignValue']
752
756
  end
753
757
  end
754
758
 
@@ -4013,10 +4017,12 @@ module TencentCloud
4013
4017
  # @type Operation: String
4014
4018
  # @param Result: 操作结果,1-成功,2-失败
4015
4019
  # @type Result: Integer
4020
+ # @param SignValue: 签名值
4021
+ # @type SignValue: String
4016
4022
 
4017
- attr_accessor :UserName, :RealName, :Time, :SourceIp, :Kind, :Operation, :Result
4023
+ attr_accessor :UserName, :RealName, :Time, :SourceIp, :Kind, :Operation, :Result, :SignValue
4018
4024
 
4019
- def initialize(username=nil, realname=nil, time=nil, sourceip=nil, kind=nil, operation=nil, result=nil)
4025
+ def initialize(username=nil, realname=nil, time=nil, sourceip=nil, kind=nil, operation=nil, result=nil, signvalue=nil)
4020
4026
  @UserName = username
4021
4027
  @RealName = realname
4022
4028
  @Time = time
@@ -4024,6 +4030,7 @@ module TencentCloud
4024
4030
  @Kind = kind
4025
4031
  @Operation = operation
4026
4032
  @Result = result
4033
+ @SignValue = signvalue
4027
4034
  end
4028
4035
 
4029
4036
  def deserialize(params)
@@ -4034,6 +4041,7 @@ module TencentCloud
4034
4041
  @Kind = params['Kind']
4035
4042
  @Operation = params['Operation']
4036
4043
  @Result = params['Result']
4044
+ @SignValue = params['SignValue']
4037
4045
  end
4038
4046
  end
4039
4047
 
@@ -4207,7 +4215,7 @@ module TencentCloud
4207
4215
  # @type LogDelivery: String
4208
4216
  # @param DeployModel: 部署模式
4209
4217
  # @type DeployModel: Integer
4210
- # @param IntranetAccess: 0 默认值,非内网访问,1 内网访问
4218
+ # @param IntranetAccess: 0 默认值,非内网访问,1 内网访问,2 内网访问开通中,3 内网访问关闭中
4211
4219
  # @type IntranetAccess: Integer
4212
4220
  # @param IntranetPrivateIpSet: 内网访问的ip
4213
4221
  # @type IntranetPrivateIpSet: Array
@@ -4646,13 +4654,15 @@ module TencentCloud
4646
4654
  # @type DeviceDepartmentName: String
4647
4655
  # @param Size: 会话大小
4648
4656
  # @type Size: Integer
4657
+ # @param SignValue: 签名值
4658
+ # @type SignValue: String
4649
4659
 
4650
- attr_accessor :Time, :UserName, :RealName, :InstanceId, :DeviceName, :PublicIp, :PrivateIp, :Cmd, :Action, :Sid, :TimeOffset, :Account, :FromIp, :SessionTime, :SessTime, :ConfirmTime, :UserDepartmentId, :UserDepartmentName, :DeviceDepartmentId, :DeviceDepartmentName, :Size
4660
+ attr_accessor :Time, :UserName, :RealName, :InstanceId, :DeviceName, :PublicIp, :PrivateIp, :Cmd, :Action, :Sid, :TimeOffset, :Account, :FromIp, :SessionTime, :SessTime, :ConfirmTime, :UserDepartmentId, :UserDepartmentName, :DeviceDepartmentId, :DeviceDepartmentName, :Size, :SignValue
4651
4661
  extend Gem::Deprecate
4652
4662
  deprecate :SessTime, :none, 2024, 11
4653
4663
  deprecate :SessTime=, :none, 2024, 11
4654
4664
 
4655
- 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
+ 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, signvalue=nil)
4656
4666
  @Time = time
4657
4667
  @UserName = username
4658
4668
  @RealName = realname
@@ -4674,6 +4684,7 @@ module TencentCloud
4674
4684
  @DeviceDepartmentId = devicedepartmentid
4675
4685
  @DeviceDepartmentName = devicedepartmentname
4676
4686
  @Size = size
4687
+ @SignValue = signvalue
4677
4688
  end
4678
4689
 
4679
4690
  def deserialize(params)
@@ -4698,6 +4709,7 @@ module TencentCloud
4698
4709
  @DeviceDepartmentId = params['DeviceDepartmentId']
4699
4710
  @DeviceDepartmentName = params['DeviceDepartmentName']
4700
4711
  @Size = params['Size']
4712
+ @SignValue = params['SignValue']
4701
4713
  end
4702
4714
  end
4703
4715
 
@@ -4795,10 +4807,12 @@ module TencentCloud
4795
4807
  # @type Size: Integer
4796
4808
  # @param Action: 堡垒机拦截情况, 1-已执行, 2-被阻断
4797
4809
  # @type Action: Integer
4810
+ # @param SignValue: 签名值
4811
+ # @type SignValue: String
4798
4812
 
4799
- attr_accessor :Time, :Method, :Protocol, :FileCurr, :FileNew, :Size, :Action
4813
+ attr_accessor :Time, :Method, :Protocol, :FileCurr, :FileNew, :Size, :Action, :SignValue
4800
4814
 
4801
- def initialize(time=nil, method=nil, protocol=nil, filecurr=nil, filenew=nil, size=nil, action=nil)
4815
+ def initialize(time=nil, method=nil, protocol=nil, filecurr=nil, filenew=nil, size=nil, action=nil, signvalue=nil)
4802
4816
  @Time = time
4803
4817
  @Method = method
4804
4818
  @Protocol = protocol
@@ -4806,6 +4820,7 @@ module TencentCloud
4806
4820
  @FileNew = filenew
4807
4821
  @Size = size
4808
4822
  @Action = action
4823
+ @SignValue = signvalue
4809
4824
  end
4810
4825
 
4811
4826
  def deserialize(params)
@@ -4816,6 +4831,7 @@ module TencentCloud
4816
4831
  @FileNew = params['FileNew']
4817
4832
  @Size = params['Size']
4818
4833
  @Action = params['Action']
4834
+ @SignValue = params['SignValue']
4819
4835
  end
4820
4836
  end
4821
4837
 
@@ -4938,10 +4954,12 @@ module TencentCloud
4938
4954
  # @type FileCurr: String
4939
4955
  # @param FileNew: 上传或新建文件(夹)路径及名称
4940
4956
  # @type FileNew: String
4957
+ # @param SignValue: 签名值
4958
+ # @type SignValue: String
4941
4959
 
4942
- attr_accessor :Time, :UserName, :RealName, :InstanceId, :DeviceName, :PublicIp, :PrivateIp, :Action, :Method, :FileCurr, :FileNew
4960
+ attr_accessor :Time, :UserName, :RealName, :InstanceId, :DeviceName, :PublicIp, :PrivateIp, :Action, :Method, :FileCurr, :FileNew, :SignValue
4943
4961
 
4944
- def initialize(time=nil, username=nil, realname=nil, instanceid=nil, devicename=nil, publicip=nil, privateip=nil, action=nil, method=nil, filecurr=nil, filenew=nil)
4962
+ def initialize(time=nil, username=nil, realname=nil, instanceid=nil, devicename=nil, publicip=nil, privateip=nil, action=nil, method=nil, filecurr=nil, filenew=nil, signvalue=nil)
4945
4963
  @Time = time
4946
4964
  @UserName = username
4947
4965
  @RealName = realname
@@ -4953,6 +4971,7 @@ module TencentCloud
4953
4971
  @Method = method
4954
4972
  @FileCurr = filecurr
4955
4973
  @FileNew = filenew
4974
+ @SignValue = signvalue
4956
4975
  end
4957
4976
 
4958
4977
  def deserialize(params)
@@ -4967,6 +4986,7 @@ module TencentCloud
4967
4986
  @Method = params['Method']
4968
4987
  @FileCurr = params['FileCurr']
4969
4988
  @FileNew = params['FileNew']
4989
+ @SignValue = params['SignValue']
4970
4990
  end
4971
4991
  end
4972
4992
 
@@ -5360,14 +5380,16 @@ module TencentCloud
5360
5380
  # @type ActiveStatus: Integer
5361
5381
  # @param LockStatus: 锁定状态 0 - 未锁定 1 - 锁定
5362
5382
  # @type LockStatus: Integer
5383
+ # @param UKeyStatus: ukey绑定状态 0 - 未绑定 1 - 已绑定
5384
+ # @type UKeyStatus: Integer
5363
5385
  # @param Status: 状态 与Filter中一致
5364
5386
  # @type Status: String
5365
5387
  # @param AclVersion: 权限版本
5366
5388
  # @type AclVersion: Integer
5367
5389
 
5368
- attr_accessor :UserName, :RealName, :Id, :Phone, :Email, :ValidateFrom, :ValidateTo, :GroupSet, :AuthType, :ValidateTime, :Department, :DepartmentId, :ActiveStatus, :LockStatus, :Status, :AclVersion
5390
+ attr_accessor :UserName, :RealName, :Id, :Phone, :Email, :ValidateFrom, :ValidateTo, :GroupSet, :AuthType, :ValidateTime, :Department, :DepartmentId, :ActiveStatus, :LockStatus, :UKeyStatus, :Status, :AclVersion
5369
5391
 
5370
- def initialize(username=nil, realname=nil, id=nil, phone=nil, email=nil, validatefrom=nil, validateto=nil, groupset=nil, authtype=nil, validatetime=nil, department=nil, departmentid=nil, activestatus=nil, lockstatus=nil, status=nil, aclversion=nil)
5392
+ def initialize(username=nil, realname=nil, id=nil, phone=nil, email=nil, validatefrom=nil, validateto=nil, groupset=nil, authtype=nil, validatetime=nil, department=nil, departmentid=nil, activestatus=nil, lockstatus=nil, ukeystatus=nil, status=nil, aclversion=nil)
5371
5393
  @UserName = username
5372
5394
  @RealName = realname
5373
5395
  @Id = id
@@ -5382,6 +5404,7 @@ module TencentCloud
5382
5404
  @DepartmentId = departmentid
5383
5405
  @ActiveStatus = activestatus
5384
5406
  @LockStatus = lockstatus
5407
+ @UKeyStatus = ukeystatus
5385
5408
  @Status = status
5386
5409
  @AclVersion = aclversion
5387
5410
  end
@@ -5411,6 +5434,7 @@ module TencentCloud
5411
5434
  @DepartmentId = params['DepartmentId']
5412
5435
  @ActiveStatus = params['ActiveStatus']
5413
5436
  @LockStatus = params['LockStatus']
5437
+ @UKeyStatus = params['UKeyStatus']
5414
5438
  @Status = params['Status']
5415
5439
  @AclVersion = params['AclVersion']
5416
5440
  end
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.942
4
+ version: 3.0.943
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-11-15 00:00:00.000000000 Z
11
+ date: 2024-11-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common