1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/linode/requests/compute/linode_config_create.rb

23 lines
506 B
Ruby

module Fog
module Compute
class Linode
class Real
def linode_config_create(linode_id, kernel_id, name, disk_list)
request(
:expects => 200,
:method => 'GET',
:query => {
:api_action => 'linode.config.create',
:linodeId => linode_id,
:kernelId => kernel_id,
:label => name,
:diskList => disk_list
}
)
end
end
end
end
end