tencentcloud-sdk-cfw 3.0.1195 → 3.0.1199

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/v20190904/models.rb +11 -3
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 781e6be073868a5372fb77d79269f2dcaacd2ca3
4
- data.tar.gz: 4e2f033336e8beeb5baa0d0c5863d0384d336035
3
+ metadata.gz: 333b0ef0726ab89c6c3922be56c4f6546d0f7fe0
4
+ data.tar.gz: c3e070699c56c95bc77df1cb75536e8e6bb8c5e5
5
5
  SHA512:
6
- metadata.gz: 8fe02665fe45341161d4493071e535ebcb56f106575af15e97c99cb43dd3da0ef1b494628e838d621003ceefb7f5059318b40e3c860ed6097046a686a676b219
7
- data.tar.gz: b50b904eb2be485a283852e2c29fc11c18e0cd75bf30c5d3801baed16b145d811824b40115132b5bc50a8220e57ba13f55b5280f237766be10aece55d010d866
6
+ metadata.gz: 0ac77b34b59ad1c27a792d8dc35e5c69dddbb010f291f38b3449f43fc1742a0a256d7f2d1e80c1cf54e409dc1843aaa1f2711256c17b2ba0034a7f1ebde5a0ca
7
+ data.tar.gz: 86e88a8dc31fd241d51b18ed89cc856931251b5390f66b9f283eccb9e616efcef17e2b4acc140635a6e03b64fcc723897ac4f24283255b332586eeda92fa0f07
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1195
1
+ 3.0.1199
@@ -5943,12 +5943,13 @@ module TencentCloud
5943
5943
  # @param IsSerialRegion: 0: 该地域暂未支持串行
5944
5944
  # 1: 该用户未在该地域配置串行带宽
5945
5945
  # 2: 该用户已在该地域配置串行带宽,可以开启串行开关
5946
+ # 3. 该地域可以支持串行,但是未部署公共集群
5946
5947
  # @type IsSerialRegion: Integer
5947
5948
  # @param IsPublicClb: 0: 不是公网CLB 可以开启串行开关
5948
5949
  # 1: 是公网CLB 不可以开启串行开关
5949
5950
  # @type IsPublicClb: Integer
5950
5951
  # @param EndpointBindEipNum: 0: 开启开关时提示要创建私有连接。
5951
- # 1: 关闭该开关是提示删除私有连接。
5952
+ # 1: 关闭该开关时提示删除私有连接。
5952
5953
  # 如果大于 1: 关闭开关 、开启开关不需提示创建删除私有连接。
5953
5954
  # @type EndpointBindEipNum: Integer
5954
5955
  # @param ScanMode: 扫描深度
@@ -5976,10 +5977,15 @@ module TencentCloud
5976
5977
  # @type Domain: String
5977
5978
  # @param OverUsedStatus: IP超量状态
5978
5979
  # @type OverUsedStatus: Integer
5980
+ # @param SwitchSupportType: 0 都不支持
5981
+ # 1 支持旁路
5982
+ # 2 支持串行
5983
+ # 3 旁路串行都支持
5984
+ # @type SwitchSupportType: Integer
5979
5985
 
5980
- attr_accessor :PublicIp, :PublicIpType, :InstanceId, :InstanceName, :IntranetIp, :AssetType, :Region, :PortRiskCount, :LastScanTime, :IsRegionEip, :VpcId, :IsSerialRegion, :IsPublicClb, :EndpointBindEipNum, :ScanMode, :ScanStatus, :Status, :EndpointId, :EndpointIp, :SwitchMode, :SwitchWeight, :Domain, :OverUsedStatus
5986
+ attr_accessor :PublicIp, :PublicIpType, :InstanceId, :InstanceName, :IntranetIp, :AssetType, :Region, :PortRiskCount, :LastScanTime, :IsRegionEip, :VpcId, :IsSerialRegion, :IsPublicClb, :EndpointBindEipNum, :ScanMode, :ScanStatus, :Status, :EndpointId, :EndpointIp, :SwitchMode, :SwitchWeight, :Domain, :OverUsedStatus, :SwitchSupportType
5981
5987
 
5982
- def initialize(publicip=nil, publiciptype=nil, instanceid=nil, instancename=nil, intranetip=nil, assettype=nil, region=nil, portriskcount=nil, lastscantime=nil, isregioneip=nil, vpcid=nil, isserialregion=nil, ispublicclb=nil, endpointbindeipnum=nil, scanmode=nil, scanstatus=nil, status=nil, endpointid=nil, endpointip=nil, switchmode=nil, switchweight=nil, domain=nil, overusedstatus=nil)
5988
+ def initialize(publicip=nil, publiciptype=nil, instanceid=nil, instancename=nil, intranetip=nil, assettype=nil, region=nil, portriskcount=nil, lastscantime=nil, isregioneip=nil, vpcid=nil, isserialregion=nil, ispublicclb=nil, endpointbindeipnum=nil, scanmode=nil, scanstatus=nil, status=nil, endpointid=nil, endpointip=nil, switchmode=nil, switchweight=nil, domain=nil, overusedstatus=nil, switchsupporttype=nil)
5983
5989
  @PublicIp = publicip
5984
5990
  @PublicIpType = publiciptype
5985
5991
  @InstanceId = instanceid
@@ -6003,6 +6009,7 @@ module TencentCloud
6003
6009
  @SwitchWeight = switchweight
6004
6010
  @Domain = domain
6005
6011
  @OverUsedStatus = overusedstatus
6012
+ @SwitchSupportType = switchsupporttype
6006
6013
  end
6007
6014
 
6008
6015
  def deserialize(params)
@@ -6029,6 +6036,7 @@ module TencentCloud
6029
6036
  @SwitchWeight = params['SwitchWeight']
6030
6037
  @Domain = params['Domain']
6031
6038
  @OverUsedStatus = params['OverUsedStatus']
6039
+ @SwitchSupportType = params['SwitchSupportType']
6032
6040
  end
6033
6041
  end
6034
6042
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cfw
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1195
4
+ version: 3.0.1199
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-01-04 00:00:00.000000000 Z
11
+ date: 2026-01-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common