Class: Fog::Compute::Ecloud::InternetService
Instance Attribute Summary
#loaded
Attributes inherited from Model
#collection, #connection
Instance Method Summary
collapse
#load_unless_loaded!, #reload
Methods inherited from Model
#initialize, #inspect, #reload, #symbolize_keys, #to_json, #wait_for
#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes
#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #requires, #requires_one
Constructor Details
This class inherits a constructor from Fog::Model
Instance Method Details
#create_monitor(options = {}) ⇒ Object
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
# File 'lib/fog/ecloud/models/compute/internet_service.rb', line 49
def create_monitor(options = {})
options = {:type => :default}.merge(options)
case options[:type]
when :default
data = connection.monitors_create_default(href + "/action/createDefaultMonitor").body
when :ping
options[:enabled] ||= true
options[:uri] = href + "/action/createPingMonitor"
data = connection.monitors_create_ping(options).body
when :http
options[:uri] = href + "/action/createHttpMonitor"
data = connection.monitors_create_http(options).body
when :ecv
options[:uri] = href + "/action/createEcvMonitor"
data = connection.monitors_create_ecv(options).body
when :loopback
data = connection.monitors_create_loopback(href).body
end
monitor = Fog::Compute::Ecloud::Monitors.new(:connection => connection, :href => data[:href])
end
|
#delete ⇒ Object
44
45
46
47
|
# File 'lib/fog/ecloud/models/compute/internet_service.rb', line 44
def delete
data = connection.internet_service_delete(href).body
task = Fog::Compute::Ecloud::Tasks.new(:connection => connection, :href => data[:href])[0]
end
|
#disable_monitor ⇒ Object
70
71
72
73
|
# File 'lib/fog/ecloud/models/compute/internet_service.rb', line 70
def disable_monitor
data = connection.monitors_disable(href + "/action/disableMonitor").body
task = Fog::Compute::Ecloud::Tasks.new(:connection => connection, :href => data[:href])
end
|
#edit(options) ⇒ Object
38
39
40
41
42
|
# File 'lib/fog/ecloud/models/compute/internet_service.rb', line 38
def edit(options)
options[:uri] = href
data = connection.internet_service_edit(options).body
task = Fog::Compute::Ecloud::Tasks.new(:connection => connection, :href => data[:href])[0]
end
|
#id ⇒ Object
75
76
77
|
# File 'lib/fog/ecloud/models/compute/internet_service.rb', line 75
def id
href.scan(/\d+/)[0]
end
|
#monitors ⇒ Object
25
26
27
|
# File 'lib/fog/ecloud/models/compute/internet_service.rb', line 25
def monitors
@monitors ||= Fog::Compute::Ecloud::Monitors.new(:connection => connection, :href => "/cloudapi/ecloud/internetServices/#{id}/monitor")
end
|
#nodes ⇒ Object
21
22
23
|
# File 'lib/fog/ecloud/models/compute/internet_service.rb', line 21
def nodes
@nodes ||= Fog::Compute::Ecloud::Nodes.new(:connection => connection, :href => href)
end
|
#save ⇒ Object
29
30
31
32
33
34
35
36
|
# File 'lib/fog/ecloud/models/compute/internet_service.rb', line 29
def save
if new_record?
result = connection.internet_service_create( collection.href, _compose_service_data )
merge_attributes(result.body)
else
connection.configure_internet_service( href, _compose_service_data, _compose_ip_data )
end
end
|