Class: TencentCloud::Cfs::V20190719::DescribeCfsFileSystemsResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cfs::V20190719::DescribeCfsFileSystemsResponse
- Defined in:
- lib/v20190719/models.rb
Overview
DescribeCfsFileSystems返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(filesystems = nil, totalcount = nil, requestid = nil) ⇒ DescribeCfsFileSystemsResponse
constructor
A new instance of DescribeCfsFileSystemsResponse.
Constructor Details
#initialize(filesystems = nil, totalcount = nil, requestid = nil) ⇒ DescribeCfsFileSystemsResponse
Returns a new instance of DescribeCfsFileSystemsResponse.
1870 1871 1872 1873 1874 |
# File 'lib/v20190719/models.rb', line 1870 def initialize(filesystems=nil, totalcount=nil, requestid=nil) @FileSystems = filesystems @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#FileSystems ⇒ Object
1868 1869 1870 |
# File 'lib/v20190719/models.rb', line 1868 def FileSystems @FileSystems end |
#RequestId ⇒ Object
1868 1869 1870 |
# File 'lib/v20190719/models.rb', line 1868 def RequestId @RequestId end |
#TotalCount ⇒ Object
1868 1869 1870 |
# File 'lib/v20190719/models.rb', line 1868 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 |
# File 'lib/v20190719/models.rb', line 1876 def deserialize(params) unless params['FileSystems'].nil? @FileSystems = [] params['FileSystems'].each do |i| filesysteminfo_tmp = FileSystemInfo.new filesysteminfo_tmp.deserialize(i) @FileSystems << filesysteminfo_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |