Class: Fog::Compute::RackspaceV2::Attachments

Inherits:
Fog::Collection
  • Object
show all
Defined in:
lib/fog/rackspace/models/compute_v2/attachments.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#serverObject

Returns the value of attribute server.



10
11
12
# File 'lib/fog/rackspace/models/compute_v2/attachments.rb', line 10

def server
  @server
end

Instance Method Details

#allFog::Compute::RackspaceV2::Attachments

Retrieves attachments belonging to server

Returns:

Raises:

See Also:



19
20
21
22
# File 'lib/fog/rackspace/models/compute_v2/attachments.rb', line 19

def all
  data = service.list_attachments(server.id).body['volumeAttachments']
  load(data)
end

#get(volume_id) ⇒ Fog::Compute::RackspaceV2::Attachment

Retrieves attachment belonging to server

Parameters:

  • volume_id (String)

Returns:

Raises:



31
32
33
34
# File 'lib/fog/rackspace/models/compute_v2/attachments.rb', line 31

def get(volume_id)
  data = service.get_attachment(server.id, volume_id).body['volumeAttachment']
  data && new(data)
end