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

50 lines
1.3 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
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([])
end
end
def get(uri)
data = service.get_internet_service(uri).body
2012-11-27 19:57:16 -05:00
if data == ""
new({})
else
new(data)
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"
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
end
end
end
end