Class: TencentCloud::Dbbrain::V20191016::SchemaSpaceData
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dbbrain::V20191016::SchemaSpaceData
- Defined in:
- lib/v20191016/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
2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 |
# File 'lib/v20191016/models.rb', line 2546 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
2544 2545 2546 |
# File 'lib/v20191016/models.rb', line 2544 def DataFree @DataFree end |
#DataLength ⇒ Object
2544 2545 2546 |
# File 'lib/v20191016/models.rb', line 2544 def DataLength @DataLength end |
#FragRatio ⇒ Object
2544 2545 2546 |
# File 'lib/v20191016/models.rb', line 2544 def FragRatio @FragRatio end |
#IndexLength ⇒ Object
2544 2545 2546 |
# File 'lib/v20191016/models.rb', line 2544 def IndexLength @IndexLength end |
#PhysicalFileSize ⇒ Object
2544 2545 2546 |
# File 'lib/v20191016/models.rb', line 2544 def PhysicalFileSize @PhysicalFileSize end |
#TableRows ⇒ Object
2544 2545 2546 |
# File 'lib/v20191016/models.rb', line 2544 def TableRows @TableRows end |
#TableSchema ⇒ Object
2544 2545 2546 |
# File 'lib/v20191016/models.rb', line 2544 def TableSchema @TableSchema end |
#TotalLength ⇒ Object
2544 2545 2546 |
# File 'lib/v20191016/models.rb', line 2544 def TotalLength @TotalLength end |
Instance Method Details
#deserialize(params) ⇒ Object
2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 |
# File 'lib/v20191016/models.rb', line 2557 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 |