Class: Bosh::AwsCloud::InstanceManager::DiskInfo
- Inherits:
-
Object
- Object
- Bosh::AwsCloud::InstanceManager::DiskInfo
- Defined in:
- lib/cloud/aws/instance_manager.rb
Instance Attribute Summary collapse
-
#count ⇒ Object
readonly
Returns the value of attribute count.
-
#size ⇒ Object
readonly
Returns the value of attribute size.
Instance Method Summary collapse
-
#initialize(size, count) ⇒ DiskInfo
constructor
A new instance of DiskInfo.
Constructor Details
#initialize(size, count) ⇒ DiskInfo
Returns a new instance of DiskInfo.
11 12 13 14 |
# File 'lib/cloud/aws/instance_manager.rb', line 11 def initialize(size, count) @size = size @count = count end |
Instance Attribute Details
#count ⇒ Object (readonly)
Returns the value of attribute count.
9 10 11 |
# File 'lib/cloud/aws/instance_manager.rb', line 9 def count @count end |
#size ⇒ Object (readonly)
Returns the value of attribute size.
9 10 11 |
# File 'lib/cloud/aws/instance_manager.rb', line 9 def size @size end |