Class: TencentCloud::Goosefs::V20220519::DescribeFileSystemsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Goosefs::V20220519::DescribeFileSystemsResponse
- Defined in:
- lib/v20220519/models.rb
Overview
DescribeFileSystems返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(fsattributelist = nil, totalcount = nil, requestid = nil) ⇒ DescribeFileSystemsResponse
constructor
A new instance of DescribeFileSystemsResponse.
Constructor Details
#initialize(fsattributelist = nil, totalcount = nil, requestid = nil) ⇒ DescribeFileSystemsResponse
Returns a new instance of DescribeFileSystemsResponse.
991 992 993 994 995 |
# File 'lib/v20220519/models.rb', line 991 def initialize(fsattributelist=nil, totalcount=nil, requestid=nil) @FSAttributeList = fsattributelist @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#FSAttributeList ⇒ Object
989 990 991 |
# File 'lib/v20220519/models.rb', line 989 def FSAttributeList @FSAttributeList end |
#RequestId ⇒ Object
989 990 991 |
# File 'lib/v20220519/models.rb', line 989 def RequestId @RequestId end |
#TotalCount ⇒ Object
989 990 991 |
# File 'lib/v20220519/models.rb', line 989 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 |
# File 'lib/v20220519/models.rb', line 997 def deserialize(params) unless params['FSAttributeList'].nil? @FSAttributeList = [] params['FSAttributeList'].each do |i| fsattribute_tmp = FSAttribute.new fsattribute_tmp.deserialize(i) @FSAttributeList << fsattribute_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |