Class: Fog::Compute::Oracle::ServerUpdateConfigurations
Instance Attribute Summary
#response
Instance Method Summary
collapse
#id_value, #load_response, #new_from_response
Instance Method Details
#all ⇒ Object
10
11
12
13
|
# File 'lib/fog/oracle/models/compute/server_update_configurations.rb', line 10
def all()
data = service.list_server_update_configurations()
load_response(data)
end
|
#get(id) ⇒ Object
15
16
17
18
|
# File 'lib/fog/oracle/models/compute/server_update_configurations.rb', line 15
def get(id)
data = service.get_server_update_configuration(id_value(id))
new_from_response(data)
end
|