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/ecloud/models/compute/internet_services.rb

47 lines
1.2 KiB
Ruby
Raw Normal View History

require 'fog/ecloud/models/compute/internet_service'
module Fog
module Compute
class Ecloud
class InternetServices < Fog::Ecloud::Collection
2012-06-07 12:50:11 -04:00
identity :href
2012-06-07 12:50:11 -04:00
model Fog::Compute::Ecloud::InternetService
def all
2012-06-07 12:50:11 -04:00
data = connection.get_internet_services(href).body[:InternetServices]
if data.is_a?(Hash)
load(data[:InternetService])
elsif data.is_a?(String) && data.empty?
load([])
end
end
def get(uri)
2012-06-07 12:50:11 -04:00
if data = connection.get_internet_service(uri)
new(data.body)
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"
options[:protocol] ||= "TCP"
options[:enabled] ||= true
options[:description] ||= ""
options[:persistence] ||= {}
options[:persistence][:type] ||= "None"
data = connection.internet_service_create(options).body
object = new(data)
end
def public_ip_id
href.scan(/\d+/)[0]
end
end
end
end
end