Class: TencentCloud::Goosefs::V20220519::DeleteCrossVpcSubnetSupportForClientNodeRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Goosefs::V20220519::DeleteCrossVpcSubnetSupportForClientNodeRequest
- Defined in:
- lib/v20220519/models.rb
Overview
DeleteCrossVpcSubnetSupportForClientNode请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(filesystemid = nil, subnetinfo = nil) ⇒ DeleteCrossVpcSubnetSupportForClientNodeRequest
constructor
A new instance of DeleteCrossVpcSubnetSupportForClientNodeRequest.
Constructor Details
#initialize(filesystemid = nil, subnetinfo = nil) ⇒ DeleteCrossVpcSubnetSupportForClientNodeRequest
Returns a new instance of DeleteCrossVpcSubnetSupportForClientNodeRequest.
587 588 589 590 |
# File 'lib/v20220519/models.rb', line 587 def initialize(filesystemid=nil, subnetinfo=nil) @FileSystemId = filesystemid @SubnetInfo = subnetinfo end |
Instance Attribute Details
#FileSystemId ⇒ Object
585 586 587 |
# File 'lib/v20220519/models.rb', line 585 def FileSystemId @FileSystemId end |
#SubnetInfo ⇒ Object
585 586 587 |
# File 'lib/v20220519/models.rb', line 585 def SubnetInfo @SubnetInfo end |
Instance Method Details
#deserialize(params) ⇒ Object
592 593 594 595 596 597 598 |
# File 'lib/v20220519/models.rb', line 592 def deserialize(params) @FileSystemId = params['FileSystemId'] unless params['SubnetInfo'].nil? @SubnetInfo = SubnetInfo.new @SubnetInfo.deserialize(params['SubnetInfo']) end end |