mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
54 lines
1.6 KiB
Ruby
54 lines
1.6 KiB
Ruby
module Fog
|
|
module Vcloud
|
|
module Terremark
|
|
module Ecloud
|
|
module Real
|
|
|
|
def configure_node(node_uri, node_data)
|
|
validate_node_data(node_data, true)
|
|
|
|
request(
|
|
:body => generate_configure_node_request(node_data),
|
|
:expects => 200,
|
|
:headers => {'Content-Type' => 'application/vnd.tmrk.ecloud.nodeService+xml'},
|
|
:method => 'PUT',
|
|
:uri => node_uri,
|
|
:parse => true
|
|
)
|
|
end
|
|
|
|
private
|
|
|
|
def generate_configure_node_request(node_data)
|
|
builder = Builder::XmlMarkup.new
|
|
builder.NodeService(:"xmlns:i" => "http://www.w3.org/2001/XMLSchema-instance",
|
|
:xmlns => "urn:tmrk:eCloudExtensions-2.0") {
|
|
builder.Name(node_data[:name])
|
|
builder.Enabled(node_data[:enabled].to_s)
|
|
builder.Description(node_data[:description])
|
|
}
|
|
end
|
|
|
|
end
|
|
|
|
module Mock
|
|
|
|
def configure_node(node_uri, node_data)
|
|
node_uri = ensure_unparsed(node_uri)
|
|
|
|
validate_node_data(node_data, true)
|
|
|
|
if node = mock_node_from_url(node_uri)
|
|
node[:name] = node_data[:name]
|
|
node[:enabled] = node_data[:enabled]
|
|
node[:description] = node_data[:description]
|
|
mock_it 200, mock_node_service_response(node, ecloud_xmlns), { 'Content-Type' => 'application/vnd.tmrk.ecloud.nodeService+xml' }
|
|
else
|
|
mock_error 200, "401 Unauthorized"
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|