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.



10530
10531
10532
# File 'lib/v20180125/models.rb', line 10530

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

Instance Attribute Details

#WebshellObject

Parameters:

  • Webshell:

    域名webshell状态



10528
10529
10530
# File 'lib/v20180125/models.rb', line 10528

def Webshell
  @Webshell
end

Instance Method Details

#deserialize(params) ⇒ Object



10534
10535
10536
10537
10538
10539
# File 'lib/v20180125/models.rb', line 10534

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