Class: TencentCloud::Cfw::V20190904::VpcFwInstance
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cfw::V20190904::VpcFwInstance
- Defined in:
- lib/v20190904/models.rb
Overview
vpc 防火墙下单防火墙实例结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(name = nil, vpcids = nil, fwdeploy = nil, fwinsid = nil) ⇒ VpcFwInstance
constructor
A new instance of VpcFwInstance.
Constructor Details
#initialize(name = nil, vpcids = nil, fwdeploy = nil, fwinsid = nil) ⇒ VpcFwInstance
Returns a new instance of VpcFwInstance.
10177 10178 10179 10180 10181 10182 |
# File 'lib/v20190904/models.rb', line 10177 def initialize(name=nil, vpcids=nil, fwdeploy=nil, fwinsid=nil) @Name = name @VpcIds = vpcids @FwDeploy = fwdeploy @FwInsId = fwinsid end |
Instance Attribute Details
#FwDeploy ⇒ Object
10175 10176 10177 |
# File 'lib/v20190904/models.rb', line 10175 def FwDeploy @FwDeploy end |
#FwInsId ⇒ Object
10175 10176 10177 |
# File 'lib/v20190904/models.rb', line 10175 def FwInsId @FwInsId end |
#Name ⇒ Object
10175 10176 10177 |
# File 'lib/v20190904/models.rb', line 10175 def Name @Name end |
#VpcIds ⇒ Object
10175 10176 10177 |
# File 'lib/v20190904/models.rb', line 10175 def VpcIds @VpcIds end |
Instance Method Details
#deserialize(params) ⇒ Object
10184 10185 10186 10187 10188 10189 10190 10191 10192 |
# File 'lib/v20190904/models.rb', line 10184 def deserialize(params) @Name = params['Name'] @VpcIds = params['VpcIds'] unless params['FwDeploy'].nil? @FwDeploy = FwDeploy.new @FwDeploy.deserialize(params['FwDeploy']) end @FwInsId = params['FwInsId'] end |