tencentcloud-sdk-waf 3.0.476 → 3.0.477

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/v20180125/models.rb +57 -1
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7d5a7cb6a56681d389ddc4c45a873953a26eedd8
4
- data.tar.gz: d59d4341e3fee1095be862f2dbd95d2d5cd1d380
3
+ metadata.gz: 73a6abe556e4040207b945bd0e3dc668ee9dacf1
4
+ data.tar.gz: 6629ce1e5f061e702b1a78a12d0fd2d0ba9c61ff
5
5
  SHA512:
6
- metadata.gz: 46285bdbda91b201dacb0e89cf5426bbb7f96d80ffe483e4d42c0c295e9eb3ebe76c4256a89a10cee8ade425ec3f063f13fda6030acc0ad29419c44b53129bde
7
- data.tar.gz: 54c8280cad7b51ed4c14e3242386353f71d2a697ac618d1c6f6bf5c7a050b09a1283960540f2a06e6ca2a1deb6a63cbaca5feb703b177b2883c2bbc6acf7c8f3
6
+ metadata.gz: 8a5eb57c2e0093f623130a02caace8d8b8b833b77e4a54af205eb262b087bfca768757d9d88ba9b9f9e217a01a8087a1a57127cf30a1b69840961b0121b21a11
7
+ data.tar.gz: 7ce654f121b49db951f49e0dc7c71ee35a8b229df3020fdde767749897518938721dfb96ac6e4c0e4fbfdb12bef60fd0f088038ecac743ccf10d2afe8cee33c5
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.476
1
+ 3.0.477
@@ -2731,12 +2731,68 @@ module TencentCloud
2731
2731
 
2732
2732
  # 负载均衡算法
2733
2733
  class LoadBalancerPackageNew < TencentCloud::Common::AbstractModel
2734
+ # @param ListenerId: 监听id
2735
+ # 注意:此字段可能返回 null,表示取不到有效值。
2736
+ # @type ListenerId: String
2737
+ # @param ListenerName: 监听名
2738
+ # 注意:此字段可能返回 null,表示取不到有效值。
2739
+ # @type ListenerName: String
2740
+ # @param LoadBalancerId: 负载均衡id
2741
+ # 注意:此字段可能返回 null,表示取不到有效值。
2742
+ # @type LoadBalancerId: String
2743
+ # @param LoadBalancerName: 负载均衡名
2744
+ # 注意:此字段可能返回 null,表示取不到有效值。
2745
+ # @type LoadBalancerName: String
2746
+ # @param Protocol: 协议
2747
+ # 注意:此字段可能返回 null,表示取不到有效值。
2748
+ # @type Protocol: String
2749
+ # @param Region: 地区
2750
+ # 注意:此字段可能返回 null,表示取不到有效值。
2751
+ # @type Region: String
2752
+ # @param Vip: 接入IP
2753
+ # 注意:此字段可能返回 null,表示取不到有效值。
2754
+ # @type Vip: String
2755
+ # @param Vport: 接入端口
2756
+ # 注意:此字段可能返回 null,表示取不到有效值。
2757
+ # @type Vport: Integer
2758
+ # @param Zone: 地域
2759
+ # 注意:此字段可能返回 null,表示取不到有效值。
2760
+ # @type Zone: String
2761
+ # @param NumericalVpcId: VPCID
2762
+ # 注意:此字段可能返回 null,表示取不到有效值。
2763
+ # @type NumericalVpcId: Integer
2764
+ # @param LoadBalancerType: CLB类型
2765
+ # 注意:此字段可能返回 null,表示取不到有效值。
2766
+ # @type LoadBalancerType: String
2734
2767
 
2768
+ attr_accessor :ListenerId, :ListenerName, :LoadBalancerId, :LoadBalancerName, :Protocol, :Region, :Vip, :Vport, :Zone, :NumericalVpcId, :LoadBalancerType
2735
2769
 
2736
- def initialize()
2770
+ def initialize(listenerid=nil, listenername=nil, loadbalancerid=nil, loadbalancername=nil, protocol=nil, region=nil, vip=nil, vport=nil, zone=nil, numericalvpcid=nil, loadbalancertype=nil)
2771
+ @ListenerId = listenerid
2772
+ @ListenerName = listenername
2773
+ @LoadBalancerId = loadbalancerid
2774
+ @LoadBalancerName = loadbalancername
2775
+ @Protocol = protocol
2776
+ @Region = region
2777
+ @Vip = vip
2778
+ @Vport = vport
2779
+ @Zone = zone
2780
+ @NumericalVpcId = numericalvpcid
2781
+ @LoadBalancerType = loadbalancertype
2737
2782
  end
2738
2783
 
2739
2784
  def deserialize(params)
2785
+ @ListenerId = params['ListenerId']
2786
+ @ListenerName = params['ListenerName']
2787
+ @LoadBalancerId = params['LoadBalancerId']
2788
+ @LoadBalancerName = params['LoadBalancerName']
2789
+ @Protocol = params['Protocol']
2790
+ @Region = params['Region']
2791
+ @Vip = params['Vip']
2792
+ @Vport = params['Vport']
2793
+ @Zone = params['Zone']
2794
+ @NumericalVpcId = params['NumericalVpcId']
2795
+ @LoadBalancerType = params['LoadBalancerType']
2740
2796
  end
2741
2797
  end
2742
2798
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-waf
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.476
4
+ version: 3.0.477
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-12-19 00:00:00.000000000 Z
11
+ date: 2022-12-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common