class Fog::OpenStack::SharedFileSystem::ShareExportLocations

Attributes

share[RW]

Public Instance Methods

all() click to toggle source
# File lib/fog/openstack/shared_file_system/models/share_export_locations.rb, line 12
def all
  requires :share
  load_response(service.list_share_export_locations(@share.id), 'export_locations')
end
find_by_id(id) click to toggle source
# File lib/fog/openstack/shared_file_system/models/share_export_locations.rb, line 17
def find_by_id(id)
  location_hash = service.get_share_export_location(@share.id,id).body['export_location']
  new(location_hash.merge(:service => service))
end
Also aliased as: get
get(id)
Alias for: find_by_id
new(attributes = {}) click to toggle source
Calls superclass method
# File lib/fog/openstack/shared_file_system/models/share_export_locations.rb, line 24
def new(attributes = {})
  requires :share
  super({:share => @share}.merge!(attributes))
end