Class: TencentCloud::Ssa::V20180608::DescribeLeakDetectionListRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ssa::V20180608::DescribeLeakDetectionListRequest
- Defined in:
- lib/v20180608/models.rb
Overview
DescribeLeakDetectionList请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(filters = nil, limit = nil, page = nil, starttime = nil, endtime = nil) ⇒ DescribeLeakDetectionListRequest
constructor
A new instance of DescribeLeakDetectionListRequest.
Constructor Details
#initialize(filters = nil, limit = nil, page = nil, starttime = nil, endtime = nil) ⇒ DescribeLeakDetectionListRequest
Returns a new instance of DescribeLeakDetectionListRequest.
2196 2197 2198 2199 2200 2201 2202 |
# File 'lib/v20180608/models.rb', line 2196 def initialize(filters=nil, limit=nil, page=nil, starttime=nil, endtime=nil) @Filters = filters @Limit = limit @Page = page @StartTime = starttime @EndTime = endtime end |
Instance Attribute Details
#EndTime ⇒ Object
2194 2195 2196 |
# File 'lib/v20180608/models.rb', line 2194 def EndTime @EndTime end |
#Filters ⇒ Object
2194 2195 2196 |
# File 'lib/v20180608/models.rb', line 2194 def Filters @Filters end |
#Limit ⇒ Object
2194 2195 2196 |
# File 'lib/v20180608/models.rb', line 2194 def Limit @Limit end |
#Page ⇒ Object
2194 2195 2196 |
# File 'lib/v20180608/models.rb', line 2194 def Page @Page end |
#StartTime ⇒ Object
2194 2195 2196 |
# File 'lib/v20180608/models.rb', line 2194 def StartTime @StartTime end |
Instance Method Details
#deserialize(params) ⇒ Object
2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 |
# File 'lib/v20180608/models.rb', line 2204 def deserialize(params) unless params['Filters'].nil? @Filters = [] params['Filters'].each do |i| filter_tmp = Filter.new filter_tmp.deserialize(i) @Filters << filter_tmp end end @Limit = params['Limit'] @Page = params['Page'] @StartTime = params['StartTime'] @EndTime = params['EndTime'] end |