tencentcloud-sdk-cfw 3.0.702 → 3.0.703

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20190904/models.rb +56 -12
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9f8a2fab7dbaa0dc13ed147c00942aeadafa427e
4
- data.tar.gz: a56e28bd092ff54aa93b8455c10d3017f0b6f26b
3
+ metadata.gz: dcd951368f039c7b9fbda8e5e007ff690ba48930
4
+ data.tar.gz: ab0750295380e1567aea602c6efe5a1842d48e24
5
5
  SHA512:
6
- metadata.gz: 0aad0d52f558818ee70f838ac911264071be1ce15ded2ff72271f36a28c24fe6feddf0ebd8c1930e3651365c4345711945a0c9e0e4c54929817ca407c711e5fe
7
- data.tar.gz: 1967ac0929e6cd1728592cec3715a828d99a7c6d20da87d75c9907841c441c4570d736c4697abbf6e1b7df9a3e15d380c3f0b56a3e7779e28e355bd38684b64c
6
+ metadata.gz: 3b74ca1ed3aaa5158ae474f84eb1477beb9554bd1db504e03baf28ee27e853710786faeef2fcaea49fdf519bd1a5b60e5972917831b95953a65c6bdbf0266d9f
7
+ data.tar.gz: 15330f16c3927c1cc75c84321cb4130f1b3adcb44c365a184050e281fb613d10463c497d01f7fecfe8ff648c1d47c5ef510d8ce95ad0ac52a41bc5e27a76223a
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.702
1
+ 3.0.703
@@ -793,15 +793,19 @@ module TencentCloud
793
793
  # @type IpString: String
794
794
  # @param Type: 1 ip模板
795
795
  # 5 域名模板
796
+ # 6 协议端口模板
796
797
  # @type Type: Integer
798
+ # @param ProtocolType: 协议端口模板,协议类型,4:4层协议,7:7层协议,Type=6时必填
799
+ # @type ProtocolType: String
797
800
 
798
- attr_accessor :Name, :Detail, :IpString, :Type
801
+ attr_accessor :Name, :Detail, :IpString, :Type, :ProtocolType
799
802
 
800
- def initialize(name=nil, detail=nil, ipstring=nil, type=nil)
803
+ def initialize(name=nil, detail=nil, ipstring=nil, type=nil, protocoltype=nil)
801
804
  @Name = name
802
805
  @Detail = detail
803
806
  @IpString = ipstring
804
807
  @Type = type
808
+ @ProtocolType = protocoltype
805
809
  end
806
810
 
807
811
  def deserialize(params)
@@ -809,6 +813,7 @@ module TencentCloud
809
813
  @Detail = params['Detail']
810
814
  @IpString = params['IpString']
811
815
  @Type = params['Type']
816
+ @ProtocolType = params['ProtocolType']
812
817
  end
813
818
  end
814
819
 
@@ -2401,16 +2406,22 @@ module TencentCloud
2401
2406
  # @type SearchValue: String
2402
2407
  # @param Uuid: 检索地址模板唯一id
2403
2408
  # @type Uuid: String
2409
+ # @param TemplateType: 1:ip模板,5:域名模板,6:协议端口模板
2410
+ # @type TemplateType: String
2411
+ # @param TemplateId: 模板Id
2412
+ # @type TemplateId: String
2404
2413
 
2405
- attr_accessor :Offset, :Limit, :By, :Order, :SearchValue, :Uuid
2414
+ attr_accessor :Offset, :Limit, :By, :Order, :SearchValue, :Uuid, :TemplateType, :TemplateId
2406
2415
 
2407
- def initialize(offset=nil, limit=nil, by=nil, order=nil, searchvalue=nil, uuid=nil)
2416
+ def initialize(offset=nil, limit=nil, by=nil, order=nil, searchvalue=nil, uuid=nil, templatetype=nil, templateid=nil)
2408
2417
  @Offset = offset
2409
2418
  @Limit = limit
2410
2419
  @By = by
2411
2420
  @Order = order
2412
2421
  @SearchValue = searchvalue
2413
2422
  @Uuid = uuid
2423
+ @TemplateType = templatetype
2424
+ @TemplateId = templateid
2414
2425
  end
2415
2426
 
2416
2427
  def deserialize(params)
@@ -2420,6 +2431,8 @@ module TencentCloud
2420
2431
  @Order = params['Order']
2421
2432
  @SearchValue = params['SearchValue']
2422
2433
  @Uuid = params['Uuid']
2434
+ @TemplateType = params['TemplateType']
2435
+ @TemplateId = params['TemplateId']
2423
2436
  end
2424
2437
  end
2425
2438
 
@@ -2431,15 +2444,24 @@ module TencentCloud
2431
2444
  # @type Data: Array
2432
2445
  # @param NameList: 模板名称列表
2433
2446
  # @type NameList: Array
2447
+ # @param IpTemplateCount: Ip地址模板数量
2448
+ # @type IpTemplateCount: Integer
2449
+ # @param DomainTemplateCount: 域名地址模板数量
2450
+ # @type DomainTemplateCount: Integer
2451
+ # @param PortTemplateCount: 协议端口模板数量
2452
+ # @type PortTemplateCount: Integer
2434
2453
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2435
2454
  # @type RequestId: String
2436
2455
 
2437
- attr_accessor :Total, :Data, :NameList, :RequestId
2456
+ attr_accessor :Total, :Data, :NameList, :IpTemplateCount, :DomainTemplateCount, :PortTemplateCount, :RequestId
2438
2457
 
2439
- def initialize(total=nil, data=nil, namelist=nil, requestid=nil)
2458
+ def initialize(total=nil, data=nil, namelist=nil, iptemplatecount=nil, domaintemplatecount=nil, porttemplatecount=nil, requestid=nil)
2440
2459
  @Total = total
2441
2460
  @Data = data
2442
2461
  @NameList = namelist
2462
+ @IpTemplateCount = iptemplatecount
2463
+ @DomainTemplateCount = domaintemplatecount
2464
+ @PortTemplateCount = porttemplatecount
2443
2465
  @RequestId = requestid
2444
2466
  end
2445
2467
 
@@ -2454,6 +2476,9 @@ module TencentCloud
2454
2476
  end
2455
2477
  end
2456
2478
  @NameList = params['NameList']
2479
+ @IpTemplateCount = params['IpTemplateCount']
2480
+ @DomainTemplateCount = params['DomainTemplateCount']
2481
+ @PortTemplateCount = params['PortTemplateCount']
2457
2482
  @RequestId = params['RequestId']
2458
2483
  end
2459
2484
  end
@@ -4714,10 +4739,13 @@ module TencentCloud
4714
4739
  # @param SwitchWeight: 开关权重
4715
4740
  # 注意:此字段可能返回 null,表示取不到有效值。
4716
4741
  # @type SwitchWeight: Integer
4742
+ # @param Domain: 域名化CLB的域名
4743
+ # 注意:此字段可能返回 null,表示取不到有效值。
4744
+ # @type Domain: String
4717
4745
 
4718
- attr_accessor :PublicIp, :PublicIpType, :InstanceId, :InstanceName, :IntranetIp, :AssetType, :Region, :PortRiskCount, :LastScanTime, :IsRegionEip, :VpcId, :IsSerialRegion, :IsPublicClb, :EndpointBindEipNum, :ScanMode, :ScanStatus, :Status, :EndpointId, :EndpointIp, :SwitchMode, :SwitchWeight
4746
+ attr_accessor :PublicIp, :PublicIpType, :InstanceId, :InstanceName, :IntranetIp, :AssetType, :Region, :PortRiskCount, :LastScanTime, :IsRegionEip, :VpcId, :IsSerialRegion, :IsPublicClb, :EndpointBindEipNum, :ScanMode, :ScanStatus, :Status, :EndpointId, :EndpointIp, :SwitchMode, :SwitchWeight, :Domain
4719
4747
 
4720
- 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)
4748
+ 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)
4721
4749
  @PublicIp = publicip
4722
4750
  @PublicIpType = publiciptype
4723
4751
  @InstanceId = instanceid
@@ -4739,6 +4767,7 @@ module TencentCloud
4739
4767
  @EndpointIp = endpointip
4740
4768
  @SwitchMode = switchmode
4741
4769
  @SwitchWeight = switchweight
4770
+ @Domain = domain
4742
4771
  end
4743
4772
 
4744
4773
  def deserialize(params)
@@ -4763,6 +4792,7 @@ module TencentCloud
4763
4792
  @EndpointIp = params['EndpointIp']
4764
4793
  @SwitchMode = params['SwitchMode']
4765
4794
  @SwitchWeight = params['SwitchWeight']
4795
+ @Domain = params['Domain']
4766
4796
  end
4767
4797
  end
4768
4798
 
@@ -5412,15 +5442,18 @@ module TencentCloud
5412
5442
  # @param Type: 1 ip模板
5413
5443
  # 5 域名模板
5414
5444
  # @type Type: Integer
5445
+ # @param ProtocolType: 协议端口模板,协议类型,4:4层协议,7:7层协议。Type=6时必填。
5446
+ # @type ProtocolType: String
5415
5447
 
5416
- attr_accessor :Uuid, :Name, :Detail, :IpString, :Type
5448
+ attr_accessor :Uuid, :Name, :Detail, :IpString, :Type, :ProtocolType
5417
5449
 
5418
- def initialize(uuid=nil, name=nil, detail=nil, ipstring=nil, type=nil)
5450
+ def initialize(uuid=nil, name=nil, detail=nil, ipstring=nil, type=nil, protocoltype=nil)
5419
5451
  @Uuid = uuid
5420
5452
  @Name = name
5421
5453
  @Detail = detail
5422
5454
  @IpString = ipstring
5423
5455
  @Type = type
5456
+ @ProtocolType = protocoltype
5424
5457
  end
5425
5458
 
5426
5459
  def deserialize(params)
@@ -5429,6 +5462,7 @@ module TencentCloud
5429
5462
  @Detail = params['Detail']
5430
5463
  @IpString = params['IpString']
5431
5464
  @Type = params['Type']
5465
+ @ProtocolType = params['ProtocolType']
5432
5466
  end
5433
5467
  end
5434
5468
 
@@ -8482,10 +8516,16 @@ module TencentCloud
8482
8516
  # @param RulesNum: 关联规则条数
8483
8517
  # 注意:此字段可能返回 null,表示取不到有效值。
8484
8518
  # @type RulesNum: Integer
8519
+ # @param TemplateId: 模板Id
8520
+ # 注意:此字段可能返回 null,表示取不到有效值。
8521
+ # @type TemplateId: String
8522
+ # @param ProtocolType: 协议端口模板,协议类型,4:4层协议,7:7层协议
8523
+ # 注意:此字段可能返回 null,表示取不到有效值。
8524
+ # @type ProtocolType: String
8485
8525
 
8486
- attr_accessor :Uuid, :Name, :Detail, :IpString, :InsertTime, :UpdateTime, :Type, :RulesNum
8526
+ attr_accessor :Uuid, :Name, :Detail, :IpString, :InsertTime, :UpdateTime, :Type, :RulesNum, :TemplateId, :ProtocolType
8487
8527
 
8488
- def initialize(uuid=nil, name=nil, detail=nil, ipstring=nil, inserttime=nil, updatetime=nil, type=nil, rulesnum=nil)
8528
+ def initialize(uuid=nil, name=nil, detail=nil, ipstring=nil, inserttime=nil, updatetime=nil, type=nil, rulesnum=nil, templateid=nil, protocoltype=nil)
8489
8529
  @Uuid = uuid
8490
8530
  @Name = name
8491
8531
  @Detail = detail
@@ -8494,6 +8534,8 @@ module TencentCloud
8494
8534
  @UpdateTime = updatetime
8495
8535
  @Type = type
8496
8536
  @RulesNum = rulesnum
8537
+ @TemplateId = templateid
8538
+ @ProtocolType = protocoltype
8497
8539
  end
8498
8540
 
8499
8541
  def deserialize(params)
@@ -8505,6 +8547,8 @@ module TencentCloud
8505
8547
  @UpdateTime = params['UpdateTime']
8506
8548
  @Type = params['Type']
8507
8549
  @RulesNum = params['RulesNum']
8550
+ @TemplateId = params['TemplateId']
8551
+ @ProtocolType = params['ProtocolType']
8508
8552
  end
8509
8553
  end
8510
8554
 
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.702
4
+ version: 3.0.703
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-14 00:00:00.000000000 Z
11
+ date: 2023-11-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common