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/backup_internet_service.rb

46 lines
1.4 KiB
Ruby
Raw Normal View History

module Fog
module Compute
class Ecloud
class BackupInternetService < Fog::Ecloud::Model
2012-06-07 12:50:11 -04:00
identity :href
attribute :name, :aliases => :Name
2012-06-07 12:50:11 -04:00
attribute :type, :aliases => :Type
attribute :other_links, :aliases => :Links
attribute :protocol, :aliases => :Protocol
attribute :enabled, :aliases => :Enabled, :type => :boolean
attribute :description, :aliases => :Description
2012-06-07 12:50:11 -04:00
attribute :persistence, :aliases => :Persistence
attribute :redirect_url, :aliases => :RedirectUrl
2012-06-07 12:50:11 -04:00
def tasks
@tasks = Fog::Compute::Ecloud::Tasks.new(:service => service, :href => href)
end
2012-06-07 12:50:11 -04:00
def internet_services
@internet_services = Fog::Compute::Ecloud::InternetServices.new(:service => service, :href => href)
end
2012-06-07 12:50:11 -04:00
def node_services
@node_services = Fog::Compute::Ecloud::NodeServices.new(:service => service, :href => href)
end
2012-06-07 12:50:11 -04:00
def edit(options)
options[:uri] = href
data = service.backup_internet_service_edit(options).body
2012-06-07 12:50:11 -04:00
object = collection.from_data(data)
end
2012-06-07 12:50:11 -04:00
def delete
data = service.backup_internet_service_delete(href).body
task = Fog::Compute::Ecloud::Tasks.new(:service => service, :href => data[:href])[0]
end
2012-06-07 12:50:11 -04:00
def id
href.scan(/\d+/)[0]
end
end
end
end
end