mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
750fb59f25
Improve the models to work with the current api version. add tests that use fake-data, that was captured from a real vCloud. Also removed a couple of dead code. Tests have been added for everything that changed or have been added. All the existing but untouched parts have not been tested.
41 lines
1.3 KiB
Ruby
41 lines
1.3 KiB
Ruby
module Fog
|
|
module Vcloud
|
|
class Compute
|
|
class Vdc < Fog::Vcloud::Model
|
|
|
|
identity :href
|
|
|
|
ignore_attributes :xmlns, :xmlns_xsi, :xmlns_xsd
|
|
|
|
attribute :name
|
|
attribute :type
|
|
attribute :description, :aliases => :Description
|
|
attribute :network_quota, :aliases => :NetworkQuota, :type => :integer
|
|
attribute :nic_quota, :aliases => :NicQuota, :type => :integer
|
|
attribute :vm_quota, :aliases => :VmQuota, :type => :integer
|
|
attribute :is_enabled, :aliases => :IsEnabled, :type => :boolean
|
|
attribute :compute_capacity, :aliases => :ComputeCapacity
|
|
attribute :storage_capacity, :aliases => :StorageCapacity
|
|
attribute :available_networks, :aliases => :AvailableNetworks, :squash => :Network
|
|
|
|
attribute :other_links, :aliases => :Link
|
|
|
|
attribute :resource_entities, :aliases => :ResourceEntities, :squash => :ResourceEntity
|
|
|
|
def networks
|
|
@networks ||= Fog::Vcloud::Compute::Networks.
|
|
new( :connection => connection,
|
|
:href => href )
|
|
end
|
|
|
|
def vapps
|
|
@vapps ||= Fog::Vcloud::Compute::Vapps.
|
|
new( :connection => connection,
|
|
:href => href
|
|
)
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|