tencentcloud-sdk-bh 3.0.1190 → 3.0.1202
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/v20230418/models.rb +37 -13
- 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: 172c1c1f9440253b3f92f54eda8fc297dbc26897
|
|
4
|
+
data.tar.gz: 84d25042dc73e68284ab74a5e990b2fb55485722
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 320d407ca627a38524e538446b5e5a8a246abdcf56e19e4f8dde0dae90127e575807b14164a9e604c446c374e5792777a09ab9d290e8030a1a2c54f2ec3c9035
|
|
7
|
+
data.tar.gz: c3ce6138ed28ff2aaf42b55890355beed9fa214768e5073914f240995771c51f5884d3695539e5844c25804f422ac36d70c801090bdc362d0ed2438c7596b834
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1202
|
data/lib/v20230418/models.rb
CHANGED
|
@@ -74,10 +74,10 @@ module TencentCloud
|
|
|
74
74
|
|
|
75
75
|
attr_accessor :Account, :LoginAccount, :LoginPassword, :DeviceId, :InstanceId, :Password, :PrivateKey, :PrivateKeyPassword, :Exe, :Drivers, :Width, :Height, :IntranetAccess, :AutoManageAccessCredential
|
|
76
76
|
extend Gem::Deprecate
|
|
77
|
-
deprecate :LoginAccount, :none,
|
|
78
|
-
deprecate :LoginAccount=, :none,
|
|
79
|
-
deprecate :LoginPassword, :none,
|
|
80
|
-
deprecate :LoginPassword=, :none,
|
|
77
|
+
deprecate :LoginAccount, :none, 2026, 1
|
|
78
|
+
deprecate :LoginAccount=, :none, 2026, 1
|
|
79
|
+
deprecate :LoginPassword, :none, 2026, 1
|
|
80
|
+
deprecate :LoginPassword=, :none, 2026, 1
|
|
81
81
|
|
|
82
82
|
def initialize(account=nil, loginaccount=nil, loginpassword=nil, deviceid=nil, instanceid=nil, password=nil, privatekey=nil, privatekeypassword=nil, exe=nil, drivers=nil, width=nil, height=nil, intranetaccess=nil, automanageaccesscredential=nil)
|
|
83
83
|
@Account = account
|
|
@@ -5825,8 +5825,8 @@ module TencentCloud
|
|
|
5825
5825
|
|
|
5826
5826
|
attr_accessor :ResourceId, :Status, :ResourceEdition, :ResourceNode, :AutoRenewFlag, :PackageBandwidth, :PackageNode, :LogDelivery
|
|
5827
5827
|
extend Gem::Deprecate
|
|
5828
|
-
deprecate :Status, :none,
|
|
5829
|
-
deprecate :Status=, :none,
|
|
5828
|
+
deprecate :Status, :none, 2026, 1
|
|
5829
|
+
deprecate :Status=, :none, 2026, 1
|
|
5830
5830
|
|
|
5831
5831
|
def initialize(resourceid=nil, status=nil, resourceedition=nil, resourcenode=nil, autorenewflag=nil, packagebandwidth=nil, packagenode=nil, logdelivery=nil)
|
|
5832
5832
|
@ResourceId = resourceid
|
|
@@ -6635,16 +6635,22 @@ module TencentCloud
|
|
|
6635
6635
|
# @type StartTime: String
|
|
6636
6636
|
# @param EndTime: 结束时间
|
|
6637
6637
|
# @type EndTime: String
|
|
6638
|
+
# @param OperationSet: 操作类型
|
|
6639
|
+
# @type OperationSet: Array
|
|
6640
|
+
# @param ProtocolSet: 会话类型
|
|
6641
|
+
# @type ProtocolSet: Array
|
|
6638
6642
|
# @param Offset: 偏移量
|
|
6639
6643
|
# @type Offset: Integer
|
|
6640
6644
|
# @param Limit: 每页容量,默认为20,最大200
|
|
6641
6645
|
# @type Limit: Integer
|
|
6642
6646
|
|
|
6643
|
-
attr_accessor :StartTime, :EndTime, :Offset, :Limit
|
|
6647
|
+
attr_accessor :StartTime, :EndTime, :OperationSet, :ProtocolSet, :Offset, :Limit
|
|
6644
6648
|
|
|
6645
|
-
def initialize(starttime=nil, endtime=nil, offset=nil, limit=nil)
|
|
6649
|
+
def initialize(starttime=nil, endtime=nil, operationset=nil, protocolset=nil, offset=nil, limit=nil)
|
|
6646
6650
|
@StartTime = starttime
|
|
6647
6651
|
@EndTime = endtime
|
|
6652
|
+
@OperationSet = operationset
|
|
6653
|
+
@ProtocolSet = protocolset
|
|
6648
6654
|
@Offset = offset
|
|
6649
6655
|
@Limit = limit
|
|
6650
6656
|
end
|
|
@@ -6652,6 +6658,8 @@ module TencentCloud
|
|
|
6652
6658
|
def deserialize(params)
|
|
6653
6659
|
@StartTime = params['StartTime']
|
|
6654
6660
|
@EndTime = params['EndTime']
|
|
6661
|
+
@OperationSet = params['OperationSet']
|
|
6662
|
+
@ProtocolSet = params['ProtocolSet']
|
|
6655
6663
|
@Offset = params['Offset']
|
|
6656
6664
|
@Limit = params['Limit']
|
|
6657
6665
|
end
|
|
@@ -7409,7 +7417,7 @@ module TencentCloud
|
|
|
7409
7417
|
# @type RealName: String
|
|
7410
7418
|
# @param DeviceName: 主机名,长度不超过64
|
|
7411
7419
|
# @type DeviceName: String
|
|
7412
|
-
# @param Status: 状态,1为活跃,2为结束,3为强制离线,4
|
|
7420
|
+
# @param Status: 状态,1为活跃,2为结束,3为强制离线,4为其他错误,5暂停会话
|
|
7413
7421
|
# @type Status: Integer
|
|
7414
7422
|
# @param StatusSet: 状态,1为活跃,2为结束,3为强制离线
|
|
7415
7423
|
# @type StatusSet: Array
|
|
@@ -7721,10 +7729,18 @@ module TencentCloud
|
|
|
7721
7729
|
# @type Workload: String
|
|
7722
7730
|
# @param PodName: K8S集群容器名称
|
|
7723
7731
|
# @type PodName: String
|
|
7724
|
-
|
|
7725
|
-
|
|
7726
|
-
|
|
7727
|
-
|
|
7732
|
+
# @param Mode: 访问方式 1-直链 2-客户端 3-web 大部分情况下是2
|
|
7733
|
+
# @type Mode: Integer
|
|
7734
|
+
# @param DisableMonitor: 是否禁用会话监控。0-不禁用;1-禁用会话,仅展示中断;2-禁用会话,不展示中断
|
|
7735
|
+
# @type DisableMonitor: Integer
|
|
7736
|
+
# @param RealTimeBandwidthIn: 实时入带宽,单位Mbps
|
|
7737
|
+
# @type RealTimeBandwidthIn: Float
|
|
7738
|
+
# @param RealTimeBandwidthOut: 实时出带宽,单位Mbps
|
|
7739
|
+
# @type RealTimeBandwidthOut: Float
|
|
7740
|
+
|
|
7741
|
+
attr_accessor :UserName, :RealName, :Account, :StartTime, :EndTime, :Size, :InstanceId, :DeviceName, :PrivateIp, :PublicIp, :FromIp, :Duration, :Count, :DangerCount, :Status, :Id, :ApCode, :Protocol, :AppAssetKind, :AppAssetUrl, :ReplayType, :DeviceKind, :Namespace, :Workload, :PodName, :Mode, :DisableMonitor, :RealTimeBandwidthIn, :RealTimeBandwidthOut
|
|
7742
|
+
|
|
7743
|
+
def initialize(username=nil, realname=nil, account=nil, starttime=nil, endtime=nil, size=nil, instanceid=nil, devicename=nil, privateip=nil, publicip=nil, fromip=nil, duration=nil, count=nil, dangercount=nil, status=nil, id=nil, apcode=nil, protocol=nil, appassetkind=nil, appasseturl=nil, replaytype=nil, devicekind=nil, namespace=nil, workload=nil, podname=nil, mode=nil, disablemonitor=nil, realtimebandwidthin=nil, realtimebandwidthout=nil)
|
|
7728
7744
|
@UserName = username
|
|
7729
7745
|
@RealName = realname
|
|
7730
7746
|
@Account = account
|
|
@@ -7750,6 +7766,10 @@ module TencentCloud
|
|
|
7750
7766
|
@Namespace = namespace
|
|
7751
7767
|
@Workload = workload
|
|
7752
7768
|
@PodName = podname
|
|
7769
|
+
@Mode = mode
|
|
7770
|
+
@DisableMonitor = disablemonitor
|
|
7771
|
+
@RealTimeBandwidthIn = realtimebandwidthin
|
|
7772
|
+
@RealTimeBandwidthOut = realtimebandwidthout
|
|
7753
7773
|
end
|
|
7754
7774
|
|
|
7755
7775
|
def deserialize(params)
|
|
@@ -7778,6 +7798,10 @@ module TencentCloud
|
|
|
7778
7798
|
@Namespace = params['Namespace']
|
|
7779
7799
|
@Workload = params['Workload']
|
|
7780
7800
|
@PodName = params['PodName']
|
|
7801
|
+
@Mode = params['Mode']
|
|
7802
|
+
@DisableMonitor = params['DisableMonitor']
|
|
7803
|
+
@RealTimeBandwidthIn = params['RealTimeBandwidthIn']
|
|
7804
|
+
@RealTimeBandwidthOut = params['RealTimeBandwidthOut']
|
|
7781
7805
|
end
|
|
7782
7806
|
end
|
|
7783
7807
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-bh
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.1202
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-01-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|
|
@@ -33,9 +33,9 @@ executables: []
|
|
|
33
33
|
extensions: []
|
|
34
34
|
extra_rdoc_files: []
|
|
35
35
|
files:
|
|
36
|
-
- lib/tencentcloud-sdk-bh.rb
|
|
37
36
|
- lib/v20230418/client.rb
|
|
38
37
|
- lib/v20230418/models.rb
|
|
38
|
+
- lib/tencentcloud-sdk-bh.rb
|
|
39
39
|
- lib/VERSION
|
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
|
41
41
|
licenses:
|