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.
7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 |
# File 'lib/v20210527/models.rb', line 7744 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
7742 7743 7744 |
# File 'lib/v20210527/models.rb', line 7742 def DataFree @DataFree end |
#DataLength ⇒ Object
7742 7743 7744 |
# File 'lib/v20210527/models.rb', line 7742 def DataLength @DataLength end |
#Engine ⇒ Object
7742 7743 7744 |
# File 'lib/v20210527/models.rb', line 7742 def Engine @Engine end |
#FragRatio ⇒ Object
7742 7743 7744 |
# File 'lib/v20210527/models.rb', line 7742 def FragRatio @FragRatio end |
#IndexLength ⇒ Object
7742 7743 7744 |
# File 'lib/v20210527/models.rb', line 7742 def IndexLength @IndexLength end |
#PhysicalFileSize ⇒ Object
7742 7743 7744 |
# File 'lib/v20210527/models.rb', line 7742 def PhysicalFileSize @PhysicalFileSize end |
#TableName ⇒ Object
7742 7743 7744 |
# File 'lib/v20210527/models.rb', line 7742 def TableName @TableName end |
#TableRows ⇒ Object
7742 7743 7744 |
# File 'lib/v20210527/models.rb', line 7742 def TableRows @TableRows end |
#TableSchema ⇒ Object
7742 7743 7744 |
# File 'lib/v20210527/models.rb', line 7742 def TableSchema @TableSchema end |
#TotalLength ⇒ Object
7742 7743 7744 |
# File 'lib/v20210527/models.rb', line 7742 def TotalLength @TotalLength end |
Instance Method Details
#deserialize(params) ⇒ Object
7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 |
# File 'lib/v20210527/models.rb', line 7757 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 |