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.



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

def server
  @server
end

Instance Method Details

#allFog::Compute::RackspaceV2::Attachments

Retrieves attachments belonging to server

Returns:

Raises:

See Also:



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

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:

Returns:

Raises:



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

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