Class: TencentCloud::Tke::V20180525::NfsVolume
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tke::V20180525::NfsVolume
- Defined in:
- lib/v20180525/models.rb
Overview
EKS Instance Nfs Volume
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(name = nil, path = nil, server = nil, readonly = nil) ⇒ NfsVolume
constructor
A new instance of NfsVolume.
Constructor Details
#initialize(name = nil, path = nil, server = nil, readonly = nil) ⇒ NfsVolume
Returns a new instance of NfsVolume.
16517 16518 16519 16520 16521 16522 |
# File 'lib/v20180525/models.rb', line 16517 def initialize(name=nil, path=nil, server=nil, readonly=nil) @Name = name @Path = path @Server = server @ReadOnly = readonly end |
Instance Attribute Details
#Name ⇒ Object
16515 16516 16517 |
# File 'lib/v20180525/models.rb', line 16515 def Name @Name end |
#Path ⇒ Object
16515 16516 16517 |
# File 'lib/v20180525/models.rb', line 16515 def Path @Path end |
#ReadOnly ⇒ Object
16515 16516 16517 |
# File 'lib/v20180525/models.rb', line 16515 def ReadOnly @ReadOnly end |
#Server ⇒ Object
16515 16516 16517 |
# File 'lib/v20180525/models.rb', line 16515 def Server @Server end |
Instance Method Details
#deserialize(params) ⇒ Object
16524 16525 16526 16527 16528 16529 |
# File 'lib/v20180525/models.rb', line 16524 def deserialize(params) @Name = params['Name'] @Path = params['Path'] @Server = params['Server'] @ReadOnly = params['ReadOnly'] end |