Class: TencentCloud::Bmlb::V20180625::DescribeL7ListenersExResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Bmlb::V20180625::DescribeL7ListenersExResponse
- Defined in:
- lib/v20180625/models.rb
Overview
DescribeL7ListenersEx返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, listenerset = nil, requestid = nil) ⇒ DescribeL7ListenersExResponse
constructor
A new instance of DescribeL7ListenersExResponse.
Constructor Details
#initialize(totalcount = nil, listenerset = nil, requestid = nil) ⇒ DescribeL7ListenersExResponse
Returns a new instance of DescribeL7ListenersExResponse.
1494 1495 1496 1497 1498 |
# File 'lib/v20180625/models.rb', line 1494 def initialize(totalcount=nil, listenerset=nil, requestid=nil) @TotalCount = totalcount @ListenerSet = listenerset @RequestId = requestid end |
Instance Attribute Details
#ListenerSet ⇒ Object
1492 1493 1494 |
# File 'lib/v20180625/models.rb', line 1492 def ListenerSet @ListenerSet end |
#RequestId ⇒ Object
1492 1493 1494 |
# File 'lib/v20180625/models.rb', line 1492 def RequestId @RequestId end |
#TotalCount ⇒ Object
1492 1493 1494 |
# File 'lib/v20180625/models.rb', line 1492 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 |
# File 'lib/v20180625/models.rb', line 1500 def deserialize(params) @TotalCount = params['TotalCount'] unless params['ListenerSet'].nil? @ListenerSet = [] params['ListenerSet'].each do |i| l7exlistener_tmp = L7ExListener.new l7exlistener_tmp.deserialize(i) @ListenerSet << l7exlistener_tmp end end @RequestId = params['RequestId'] end |