Class: Fog::Compute::RackspaceV2::Attachments
- Inherits:
-
Fog::Collection
- Object
- Fog::Collection
- Fog::Compute::RackspaceV2::Attachments
- Defined in:
- lib/fog/rackspace/models/compute_v2/attachments.rb
Instance Attribute Summary collapse
-
#server ⇒ Object
Returns the value of attribute server.
Instance Method Summary collapse
-
#all ⇒ Fog::Compute::RackspaceV2::Attachments
Retrieves attachments belonging to server.
-
#get(volume_id) ⇒ Fog::Compute::RackspaceV2::Attachment
Retrieves attachment belonging to server.
Instance Attribute Details
#server ⇒ Object
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
#all ⇒ Fog::Compute::RackspaceV2::Attachments
Retrieves attachments belonging to server
19 20 21 22 |
# File 'lib/fog/rackspace/models/compute_v2/attachments.rb', line 19 def all data = service.(server.id).body['volumeAttachments'] load(data) end |
#get(volume_id) ⇒ Fog::Compute::RackspaceV2::Attachment
Retrieves attachment belonging to server
31 32 33 34 |
# File 'lib/fog/rackspace/models/compute_v2/attachments.rb', line 31 def get(volume_id) data = service.(server.id, volume_id).body['volumeAttachment'] data && new(data) end |