Class: Fog::SharedFileSystem::OpenStack::ShareExportLocations
Instance Attribute Summary collapse
#response
Instance Method Summary
collapse
#destroy, #load_response, #summary
Instance Attribute Details
#share ⇒ Object
Returns the value of attribute share.
10
11
12
|
# File 'lib/fog/shared_file_system/openstack/models/share_export_locations.rb', line 10
def share
@share
end
|
Instance Method Details
#all ⇒ Object
12
13
14
15
|
# File 'lib/fog/shared_file_system/openstack/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) ⇒ Object
Also known as:
get
17
18
19
20
|
# File 'lib/fog/shared_file_system/openstack/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
|
#new(attributes = {}) ⇒ Object
24
25
26
27
|
# File 'lib/fog/shared_file_system/openstack/models/share_export_locations.rb', line 24
def new(attributes = {})
requires :share
super({:share => @share}.merge!(attributes))
end
|