Class: TencentCloud::Dbbrain::V20210527::SchemaSpaceData
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dbbrain::V20210527::SchemaSpaceData
- Defined in:
- lib/v20210527/models.rb
Overview
库空间统计数据。
Instance Attribute Summary collapse
- #DataFree ⇒ Object
- #DataLength ⇒ Object
- #FragRatio ⇒ Object
- #IndexLength ⇒ Object
- #PhysicalFileSize ⇒ Object
- #TableRows ⇒ Object
- #TableSchema ⇒ Object
- #TotalLength ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(tableschema = nil, datalength = nil, indexlength = nil, datafree = nil, totallength = nil, fragratio = nil, tablerows = nil, physicalfilesize = nil) ⇒ SchemaSpaceData
constructor
A new instance of SchemaSpaceData.
Constructor Details
#initialize(tableschema = nil, datalength = nil, indexlength = nil, datafree = nil, totallength = nil, fragratio = nil, tablerows = nil, physicalfilesize = nil) ⇒ SchemaSpaceData
Returns a new instance of SchemaSpaceData.
7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 |
# File 'lib/v20210527/models.rb', line 7138 def initialize(tableschema=nil, datalength=nil, indexlength=nil, datafree=nil, totallength=nil, fragratio=nil, tablerows=nil, physicalfilesize=nil) @TableSchema = tableschema @DataLength = datalength @IndexLength = indexlength @DataFree = datafree @TotalLength = totallength @FragRatio = fragratio @TableRows = tablerows @PhysicalFileSize = physicalfilesize end |
Instance Attribute Details
#DataFree ⇒ Object
7136 7137 7138 |
# File 'lib/v20210527/models.rb', line 7136 def DataFree @DataFree end |
#DataLength ⇒ Object
7136 7137 7138 |
# File 'lib/v20210527/models.rb', line 7136 def DataLength @DataLength end |
#FragRatio ⇒ Object
7136 7137 7138 |
# File 'lib/v20210527/models.rb', line 7136 def FragRatio @FragRatio end |
#IndexLength ⇒ Object
7136 7137 7138 |
# File 'lib/v20210527/models.rb', line 7136 def IndexLength @IndexLength end |
#PhysicalFileSize ⇒ Object
7136 7137 7138 |
# File 'lib/v20210527/models.rb', line 7136 def PhysicalFileSize @PhysicalFileSize end |
#TableRows ⇒ Object
7136 7137 7138 |
# File 'lib/v20210527/models.rb', line 7136 def TableRows @TableRows end |
#TableSchema ⇒ Object
7136 7137 7138 |
# File 'lib/v20210527/models.rb', line 7136 def TableSchema @TableSchema end |
#TotalLength ⇒ Object
7136 7137 7138 |
# File 'lib/v20210527/models.rb', line 7136 def TotalLength @TotalLength end |
Instance Method Details
#deserialize(params) ⇒ Object
7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 |
# File 'lib/v20210527/models.rb', line 7149 def deserialize(params) @TableSchema = params['TableSchema'] @DataLength = params['DataLength'] @IndexLength = params['IndexLength'] @DataFree = params['DataFree'] @TotalLength = params['TotalLength'] @FragRatio = params['FragRatio'] @TableRows = params['TableRows'] @PhysicalFileSize = params['PhysicalFileSize'] end |