Class: TencentCloud::Dbbrain::V20210527::TableSpaceData
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dbbrain::V20210527::TableSpaceData
- Defined in:
- lib/v20210527/models.rb
Overview
库表空间统计数据。
Instance Attribute Summary collapse
- #DataFree ⇒ Object
- #DataLength ⇒ Object
- #Engine ⇒ Object
- #FragRatio ⇒ Object
- #IndexLength ⇒ Object
- #PhysicalFileSize ⇒ Object
- #TableName ⇒ Object
- #TableRows ⇒ Object
- #TableSchema ⇒ Object
- #TotalLength ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(tablename = nil, tableschema = nil, engine = nil, datalength = nil, indexlength = nil, datafree = nil, totallength = nil, fragratio = nil, tablerows = nil, physicalfilesize = nil) ⇒ TableSpaceData
constructor
A new instance of TableSpaceData.
Constructor Details
#initialize(tablename = nil, tableschema = nil, engine = nil, datalength = nil, indexlength = nil, datafree = nil, totallength = nil, fragratio = nil, tablerows = nil, physicalfilesize = nil) ⇒ TableSpaceData
Returns a new instance of TableSpaceData.
7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 |
# File 'lib/v20210527/models.rb', line 7650 def initialize(tablename=nil, tableschema=nil, engine=nil, datalength=nil, indexlength=nil, datafree=nil, totallength=nil, fragratio=nil, tablerows=nil, physicalfilesize=nil) @TableName = tablename @TableSchema = tableschema @Engine = engine @DataLength = datalength @IndexLength = indexlength @DataFree = datafree @TotalLength = totallength @FragRatio = fragratio @TableRows = tablerows @PhysicalFileSize = physicalfilesize end |
Instance Attribute Details
#DataFree ⇒ Object
7648 7649 7650 |
# File 'lib/v20210527/models.rb', line 7648 def DataFree @DataFree end |
#DataLength ⇒ Object
7648 7649 7650 |
# File 'lib/v20210527/models.rb', line 7648 def DataLength @DataLength end |
#Engine ⇒ Object
7648 7649 7650 |
# File 'lib/v20210527/models.rb', line 7648 def Engine @Engine end |
#FragRatio ⇒ Object
7648 7649 7650 |
# File 'lib/v20210527/models.rb', line 7648 def FragRatio @FragRatio end |
#IndexLength ⇒ Object
7648 7649 7650 |
# File 'lib/v20210527/models.rb', line 7648 def IndexLength @IndexLength end |
#PhysicalFileSize ⇒ Object
7648 7649 7650 |
# File 'lib/v20210527/models.rb', line 7648 def PhysicalFileSize @PhysicalFileSize end |
#TableName ⇒ Object
7648 7649 7650 |
# File 'lib/v20210527/models.rb', line 7648 def TableName @TableName end |
#TableRows ⇒ Object
7648 7649 7650 |
# File 'lib/v20210527/models.rb', line 7648 def TableRows @TableRows end |
#TableSchema ⇒ Object
7648 7649 7650 |
# File 'lib/v20210527/models.rb', line 7648 def TableSchema @TableSchema end |
#TotalLength ⇒ Object
7648 7649 7650 |
# File 'lib/v20210527/models.rb', line 7648 def TotalLength @TotalLength end |
Instance Method Details
#deserialize(params) ⇒ Object
7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 |
# File 'lib/v20210527/models.rb', line 7663 def deserialize(params) @TableName = params['TableName'] @TableSchema = params['TableSchema'] @Engine = params['Engine'] @DataLength = params['DataLength'] @IndexLength = params['IndexLength'] @DataFree = params['DataFree'] @TotalLength = params['TotalLength'] @FragRatio = params['FragRatio'] @TableRows = params['TableRows'] @PhysicalFileSize = params['PhysicalFileSize'] end |