class Fog::Compute::OracleCloud::SecurityLists
Public Instance Methods
all()
click to toggle source
# File lib/fog/oraclecloud/models/compute/security_lists.rb, line 10 def all data = service.list_security_lists().body['result'] load(data) end
get(name)
click to toggle source
# File lib/fog/oraclecloud/models/compute/security_lists.rb, line 15 def get(name) data = service.get_security_list(name).body new(data) end