mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
4ffab4b18f
This is so the Live Specification can be accessed, which is expecially helpful in learning the ins and outs of Verizon's Enterprise Cloud. The Live Specification is available at /cloudapi/spec, and the hardcoded paths were hindering using it.
45 lines
1.2 KiB
Ruby
45 lines
1.2 KiB
Ruby
require 'fog/ecloud/models/compute/internet_service'
|
|
|
|
module Fog
|
|
module Compute
|
|
class Ecloud
|
|
class InternetServices < Fog::Ecloud::Collection
|
|
|
|
identity :href
|
|
|
|
model Fog::Compute::Ecloud::InternetService
|
|
|
|
def all
|
|
data = service.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)
|
|
data = service.get_internet_service(uri).body
|
|
new(data)
|
|
rescue Fog::Errors::NotFound
|
|
nil
|
|
end
|
|
|
|
def create(options)
|
|
options[:uri] = "#{service.base_path}/internetServices/publicIps/#{public_ip_id}/action/createInternetService"
|
|
options[:protocol] ||= "TCP"
|
|
options[:enabled] ||= true
|
|
options[:description] ||= ""
|
|
options[:persistence] ||= {}
|
|
options[:persistence][:type] ||= "None"
|
|
data = service.internet_service_create(options).body
|
|
object = new(data)
|
|
end
|
|
|
|
def public_ip_id
|
|
href.scan(/\d+/)[0]
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|