Class: IControl::System::DiskUsage
- Inherits:
-
Base::Struct
- Object
- Base::Struct
- IControl::System::DiskUsage
- Defined in:
- lib/icontrol/system.rb,
lib/icontrol/system.rb
Overview
A struct that contains the disk usage for each partition.
Instance Attribute Summary (collapse)
-
- (IControl::Common::ULong64) block_size
The number of bytes in one block.
-
- (IControl::Common::ULong64) free_blocks
The number of available blocks in this partition.
-
- (IControl::Common::ULong64) free_nodes
The number of free file nodes in this partition.
-
- (String) partition_name
The name of the disk partition.
-
- (IControl::Common::ULong64) total_blocks
The total number of blocks in this partition.
-
- (IControl::Common::ULong64) total_nodes
The total number of file nodes in this partition.
Method Summary
Methods inherited from Base::Struct
from_soap, icontrol_attribute, #to_soap
Instance Attribute Details
- (IControl::Common::ULong64) block_size
The number of bytes in one block.
165 166 167 |
# File 'lib/icontrol/system.rb', line 165 def block_size @block_size end |
- (IControl::Common::ULong64) free_blocks
The number of available blocks in this partition.
165 166 167 |
# File 'lib/icontrol/system.rb', line 165 def free_blocks @free_blocks end |
- (IControl::Common::ULong64) free_nodes
The number of free file nodes in this partition.
165 166 167 |
# File 'lib/icontrol/system.rb', line 165 def free_nodes @free_nodes end |
- (String) partition_name
The name of the disk partition.
165 166 167 |
# File 'lib/icontrol/system.rb', line 165 def partition_name @partition_name end |
- (IControl::Common::ULong64) total_blocks
The total number of blocks in this partition.
165 166 167 |
# File 'lib/icontrol/system.rb', line 165 def total_blocks @total_blocks end |
- (IControl::Common::ULong64) total_nodes
The total number of file nodes in this partition.
165 166 167 |
# File 'lib/icontrol/system.rb', line 165 def total_nodes @total_nodes end |