Class: TencentCloud::Teo::V20220901::DescribeL4ProxyRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Teo::V20220901::DescribeL4ProxyRequest
- Defined in:
- lib/v20220901/models.rb
Overview
DescribeL4Proxy请求参数结构体
Instance Attribute Summary collapse
-
#Filters ⇒ Object
Returns the value of attribute Filters.
-
#Limit ⇒ Object
Returns the value of attribute Limit.
-
#Offset ⇒ Object
Returns the value of attribute Offset.
-
#ZoneId ⇒ Object
Returns the value of attribute ZoneId.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(zoneid = nil, offset = nil, limit = nil, filters = nil) ⇒ DescribeL4ProxyRequest
constructor
A new instance of DescribeL4ProxyRequest.
Constructor Details
#initialize(zoneid = nil, offset = nil, limit = nil, filters = nil) ⇒ DescribeL4ProxyRequest
Returns a new instance of DescribeL4ProxyRequest.
9059 9060 9061 9062 9063 9064 |
# File 'lib/v20220901/models.rb', line 9059 def initialize(zoneid=nil, offset=nil, limit=nil, filters=nil) @ZoneId = zoneid @Offset = offset @Limit = limit @Filters = filters end |
Instance Attribute Details
#Filters ⇒ Object
Returns the value of attribute Filters.
9057 9058 9059 |
# File 'lib/v20220901/models.rb', line 9057 def Filters @Filters end |
#Limit ⇒ Object
Returns the value of attribute Limit.
9057 9058 9059 |
# File 'lib/v20220901/models.rb', line 9057 def Limit @Limit end |
#Offset ⇒ Object
Returns the value of attribute Offset.
9057 9058 9059 |
# File 'lib/v20220901/models.rb', line 9057 def Offset @Offset end |
#ZoneId ⇒ Object
Returns the value of attribute ZoneId.
9057 9058 9059 |
# File 'lib/v20220901/models.rb', line 9057 def ZoneId @ZoneId end |
Instance Method Details
#deserialize(params) ⇒ Object
9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 |
# File 'lib/v20220901/models.rb', line 9066 def deserialize(params) @ZoneId = params['ZoneId'] @Offset = params['Offset'] @Limit = params['Limit'] unless params['Filters'].nil? @Filters = [] params['Filters'].each do |i| filter_tmp = Filter.new filter_tmp.deserialize(i) @Filters << filter_tmp end end end |