Class: TencentCloud::Chdfs::V20201112::DescribeFileSystemsResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Chdfs::V20201112::DescribeFileSystemsResponse
- Defined in:
- lib/v20201112/models.rb
Overview
DescribeFileSystems返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(filesystems = nil, isover = nil, nextfilesystemidmarker = nil, requestid = nil) ⇒ DescribeFileSystemsResponse
constructor
A new instance of DescribeFileSystemsResponse.
Constructor Details
#initialize(filesystems = nil, isover = nil, nextfilesystemidmarker = nil, requestid = nil) ⇒ DescribeFileSystemsResponse
Returns a new instance of DescribeFileSystemsResponse.
838 839 840 841 842 843 |
# File 'lib/v20201112/models.rb', line 838 def initialize(filesystems=nil, isover=nil, nextfilesystemidmarker=nil, requestid=nil) @FileSystems = filesystems @IsOver = isover @NextFileSystemIdMarker = nextfilesystemidmarker @RequestId = requestid end |
Instance Attribute Details
#FileSystems ⇒ Object
836 837 838 |
# File 'lib/v20201112/models.rb', line 836 def FileSystems @FileSystems end |
#IsOver ⇒ Object
836 837 838 |
# File 'lib/v20201112/models.rb', line 836 def IsOver @IsOver end |
#NextFileSystemIdMarker ⇒ Object
836 837 838 |
# File 'lib/v20201112/models.rb', line 836 def NextFileSystemIdMarker @NextFileSystemIdMarker end |
#RequestId ⇒ Object
836 837 838 |
# File 'lib/v20201112/models.rb', line 836 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
845 846 847 848 849 850 851 852 853 854 855 856 857 |
# File 'lib/v20201112/models.rb', line 845 def deserialize(params) unless params['FileSystems'].nil? @FileSystems = [] params['FileSystems'].each do |i| filesystem_tmp = FileSystem.new filesystem_tmp.deserialize(i) @FileSystems << filesystem_tmp end end @IsOver = params['IsOver'] @NextFileSystemIdMarker = params['NextFileSystemIdMarker'] @RequestId = params['RequestId'] end |