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