2011-05-30 01:20:13 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
module Fog
|
|
|
|
module Vcloud
|
|
|
|
class Compute
|
|
|
|
class Real
|
|
|
|
|
|
|
|
def configure_vm_memory(vm_data)
|
2011-06-08 23:51:41 -04:00
|
|
|
edit_uri = vm_data.select {|k,v| k == :Link && v[:rel] == 'edit'}
|
|
|
|
edit_uri = edit_uri.kind_of?(Array) ? edit_uri.flatten[1][:href] : edit_uri[:Link][:href]
|
2011-05-30 01:20:13 -04:00
|
|
|
|
|
|
|
body = <<EOF
|
2012-08-05 11:08:40 -04:00
|
|
|
<Item xmlns="http://www.vmware.com/vcloud/v1.5" xmlns:rasd="http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_ResourceAllocationSettingData" xmlns:vcloud="http://www.vmware.com/vcloud/v1.5" vcloud:href="#{edit_uri}" vcloud:type="application/vnd.vmware.vcloud.rasdItem+xml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.vmware.com/vcloud/v1.5 http://#{@host}/api/v1.5/schema/master.xsd http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_ResourceAllocationSettingData http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2.22.0/CIM_ResourceAllocationSettingData.xsd">
|
|
|
|
<rasd:AllocationUnits>byte * 2^20</rasd:AllocationUnits>
|
|
|
|
<rasd:Description>Memory Size</rasd:Description>
|
|
|
|
<rasd:ElementName>#{vm_data[:'rasd:VirtualQuantity']} MB of memory</rasd:ElementName>
|
|
|
|
<rasd:InstanceID>5</rasd:InstanceID>
|
|
|
|
<rasd:Reservation>0</rasd:Reservation>
|
|
|
|
<rasd:ResourceType>4</rasd:ResourceType>
|
|
|
|
<rasd:VirtualQuantity>#{vm_data[:'rasd:VirtualQuantity']}</rasd:VirtualQuantity>
|
|
|
|
<rasd:Weight>0</rasd:Weight>
|
|
|
|
<Link rel="edit" type="application/vnd.vmware.vcloud.rasdItem+xml" href="#{edit_uri}"/>
|
|
|
|
</Item>
|
2011-05-30 01:20:13 -04:00
|
|
|
EOF
|
|
|
|
|
|
|
|
request(
|
|
|
|
:body => body,
|
|
|
|
:expects => 202,
|
|
|
|
:headers => {'Content-Type' => vm_data[:"vcloud_type"] },
|
|
|
|
:method => 'PUT',
|
|
|
|
:uri => edit_uri,
|
|
|
|
:parse => true
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|