2011-08-24 21:29:14 -04:00
|
|
|
require 'fog/ecloud/models/compute/internet_service'
|
2011-02-17 13:44:46 -05:00
|
|
|
|
|
|
|
module Fog
|
2011-06-16 19:28:54 -04:00
|
|
|
module Compute
|
|
|
|
class Ecloud
|
2011-02-17 13:44:46 -05:00
|
|
|
class InternetServices < Fog::Ecloud::Collection
|
|
|
|
|
2012-06-07 12:50:11 -04:00
|
|
|
identity :href
|
2011-02-17 13:44:46 -05:00
|
|
|
|
2012-06-07 12:50:11 -04:00
|
|
|
model Fog::Compute::Ecloud::InternetService
|
2011-02-17 13:44:46 -05:00
|
|
|
|
|
|
|
def all
|
2012-12-22 18:27:38 -05:00
|
|
|
data = service.get_internet_services(href).body[:InternetServices]
|
2012-06-07 12:50:11 -04:00
|
|
|
if data.is_a?(Hash)
|
|
|
|
load(data[:InternetService])
|
|
|
|
elsif data.is_a?(String) && data.empty?
|
|
|
|
load([])
|
2011-02-17 13:44:46 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def get(uri)
|
2012-12-22 18:27:38 -05:00
|
|
|
data = service.get_internet_service(uri).body
|
2012-11-27 19:57:16 -05:00
|
|
|
if data == ""
|
|
|
|
new({})
|
|
|
|
else
|
|
|
|
new(data)
|
2011-02-17 13:44:46 -05:00
|
|
|
end
|
|
|
|
rescue Fog::Errors::NotFound
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
2012-06-07 12:50:11 -04:00
|
|
|
def create(options)
|
|
|
|
options[:uri] = "/cloudapi/ecloud/internetServices/publicIps/#{public_ip_id}/action/createInternetService"
|
2012-11-27 19:57:16 -05:00
|
|
|
options[:protocol] ||= "TCP"
|
|
|
|
options[:enabled] ||= true
|
|
|
|
options[:description] ||= ""
|
|
|
|
options[:persistence] ||= {}
|
2012-06-07 12:50:11 -04:00
|
|
|
options[:persistence][:type] ||= "None"
|
2012-12-22 18:27:38 -05:00
|
|
|
data = service.internet_service_create(options).body
|
2012-06-07 12:50:11 -04:00
|
|
|
object = new(data)
|
|
|
|
end
|
|
|
|
|
|
|
|
def public_ip_id
|
|
|
|
href.scan(/\d+/)[0]
|
|
|
|
end
|
2011-02-17 13:44:46 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|