Class: TencentCloud::Waf::V20180125::ModifyWebshellStatusRequest

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20180125/models.rb

Overview

ModifyWebshellStatus请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(webshell = nil) ⇒ ModifyWebshellStatusRequest

Returns a new instance of ModifyWebshellStatusRequest.



11565
11566
11567
# File 'lib/v20180125/models.rb', line 11565

def initialize(webshell=nil)
  @Webshell = webshell
end

Instance Attribute Details

#WebshellObject

Parameters:

  • Webshell:

    域名webshell状态



11563
11564
11565
# File 'lib/v20180125/models.rb', line 11563

def Webshell
  @Webshell
end

Instance Method Details

#deserialize(params) ⇒ Object



11569
11570
11571
11572
11573
11574
# File 'lib/v20180125/models.rb', line 11569

def deserialize(params)
  unless params['Webshell'].nil?
    @Webshell = WebshellStatus.new
    @Webshell.deserialize(params['Webshell'])
  end
end