Class: TencentCloud::Chdfs::V20190718::DescribeMountPointsResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Chdfs::V20190718::DescribeMountPointsResponse
- Defined in:
- lib/v20190718/models.rb
Overview
DescribeMountPoints返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(mountpoints = nil, requestid = nil) ⇒ DescribeMountPointsResponse
constructor
A new instance of DescribeMountPointsResponse.
Constructor Details
#initialize(mountpoints = nil, requestid = nil) ⇒ DescribeMountPointsResponse
Returns a new instance of DescribeMountPointsResponse.
849 850 851 852 |
# File 'lib/v20190718/models.rb', line 849 def initialize(mountpoints=nil, requestid=nil) @MountPoints = mountpoints @RequestId = requestid end |
Instance Attribute Details
#MountPoints ⇒ Object
847 848 849 |
# File 'lib/v20190718/models.rb', line 847 def MountPoints @MountPoints end |
#RequestId ⇒ Object
847 848 849 |
# File 'lib/v20190718/models.rb', line 847 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
854 855 856 857 858 859 860 861 862 863 864 |
# File 'lib/v20190718/models.rb', line 854 def deserialize(params) unless params['MountPoints'].nil? @MountPoints = [] params['MountPoints'].each do |i| mountpoint_tmp = MountPoint.new mountpoint_tmp.deserialize(i) @MountPoints << mountpoint_tmp end end @RequestId = params['RequestId'] end |