class Fog::Compute::Oracle::ServerUpdateConfigurations
Public Instance Methods
all()
click to toggle source
# 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)
click to toggle source
# 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