mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
Merge pull request #2402 from mmatuska/vsphere_datastore_uncommitted
Add uncommitted property to the vsphere datastore object
This commit is contained in:
commit
3ab7c2b0a3
2 changed files with 10 additions and 8 deletions
|
@ -12,6 +12,7 @@ module Fog
|
|||
attribute :freespace
|
||||
attribute :accessible # reachable by at least one hypervisor
|
||||
attribute :capacity
|
||||
attribute :uncommitted
|
||||
|
||||
def to_s
|
||||
name
|
||||
|
|
|
@ -25,6 +25,7 @@ module Fog
|
|||
:type => datastore.summary.type,
|
||||
:freespace => datastore.summary.freeSpace,
|
||||
:capacity => datastore.summary.capacity,
|
||||
:uncommitted => datastore.summary.uncommitted,
|
||||
:datacenter => datacenter,
|
||||
}
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue