1
0
Fork 0
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:
Kevin Menard 2013-11-19 16:44:19 -08:00
commit 3ab7c2b0a3
2 changed files with 10 additions and 8 deletions

View file

@ -12,6 +12,7 @@ module Fog
attribute :freespace
attribute :accessible # reachable by at least one hypervisor
attribute :capacity
attribute :uncommitted
def to_s
name

View file

@ -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