Class: TencentCloud::Thpc::V20230321::StorageMount
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Thpc::V20230321::StorageMount
- Defined in:
- lib/v20230321/models.rb
Overview
存储目录挂载配置。
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(source = nil, target = nil, storagetype = nil) ⇒ StorageMount
constructor
A new instance of StorageMount.
Constructor Details
#initialize(source = nil, target = nil, storagetype = nil) ⇒ StorageMount
Returns a new instance of StorageMount.
3488 3489 3490 3491 3492 |
# File 'lib/v20230321/models.rb', line 3488 def initialize(source=nil, target=nil, storagetype=nil) @Source = source @Target = target @StorageType = storagetype end |
Instance Attribute Details
#Source ⇒ Object
3486 3487 3488 |
# File 'lib/v20230321/models.rb', line 3486 def Source @Source end |
#StorageType ⇒ Object
3486 3487 3488 |
# File 'lib/v20230321/models.rb', line 3486 def StorageType @StorageType end |
#Target ⇒ Object
3486 3487 3488 |
# File 'lib/v20230321/models.rb', line 3486 def Target @Target end |
Instance Method Details
#deserialize(params) ⇒ Object
3494 3495 3496 3497 3498 |
# File 'lib/v20230321/models.rb', line 3494 def deserialize(params) @Source = params['Source'] @Target = params['Target'] @StorageType = params['StorageType'] end |