Class: TencentCloud::Waf::V20180125::DeleteHostRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Waf::V20180125::DeleteHostRequest
- Defined in:
- lib/v20180125/models.rb
Overview
DeleteHost请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(hostsdel = nil) ⇒ DeleteHostRequest
constructor
A new instance of DeleteHostRequest.
Constructor Details
#initialize(hostsdel = nil) ⇒ DeleteHostRequest
Returns a new instance of DeleteHostRequest.
4848 4849 4850 |
# File 'lib/v20180125/models.rb', line 4848 def initialize(hostsdel=nil) @HostsDel = hostsdel end |
Instance Attribute Details
#HostsDel ⇒ Object
4846 4847 4848 |
# File 'lib/v20180125/models.rb', line 4846 def HostsDel @HostsDel end |
Instance Method Details
#deserialize(params) ⇒ Object
4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 |
# File 'lib/v20180125/models.rb', line 4852 def deserialize(params) unless params['HostsDel'].nil? @HostsDel = [] params['HostsDel'].each do |i| hostdel_tmp = HostDel.new hostdel_tmp.deserialize(i) @HostsDel << hostdel_tmp end end end |