Sha256: eac161d4d50f2fb0c8942152f9fad3ded2b57b59737f6e63c1b58cefc5babc75

Contents?: true

Size: 1.47 KB

Versions: 53

Compression:

Stored size: 1.47 KB

Contents

module Fog
  module Compute
    class RackspaceV2
      class Real
        
        # Retrieves list of attached volumes
        # @param [String] server_id
        # @return [Excon::Response] response:
        #   * body [Hash]:
        #     * volumeAttachment [Array]:
        #       * [Hash]:
        #         * device [String] - The name of the device, such as /dev/xvdb. Specify auto for auto-assignment.
        #         * serverId [String] - The id of the server that attached the volume
        #         * id [String] - The id of the attachment
        #         * volumeId [String] - The id of the volume that was attached
        # @raise [Fog::Compute::RackspaceV2::NotFound] - HTTP 404
        # @raise [Fog::Compute::RackspaceV2::BadRequest] - HTTP 400
        # @raise [Fog::Compute::RackspaceV2::InternalServerError] - HTTP 500
        # @raise [Fog::Compute::RackspaceV2::ServiceError]
        # @see http://docs.rackspace.com/servers/api/v2/cs-devguide/content/List_Volume_Attachments.html
        def list_attachments(server_id)
          request(
            :expects => [200, 203, 300],
            :method => 'GET',
            :path => "servers/#{server_id}/os-volume_attachments"
          )
        end
      end

      class Mock
        def list_attachments(server_id)
          volumes_array = self.data[:volume_attachments].select { |va| va["serverId"] == server_id }
          response(:body => {"volumeAttachments" => volumes_array})
        end
      end
    end
  end
end

Version data entries

53 entries across 53 versions & 3 rubygems

Version Path
fog-maestrodev-1.20.0.20140305101839 lib/fog/rackspace/requests/compute_v2/list_attachments.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/rackspace/requests/compute_v2/list_attachments.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/rackspace/requests/compute_v2/list_attachments.rb
fog-1.20.0 lib/fog/rackspace/requests/compute_v2/list_attachments.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/rackspace/requests/compute_v2/list_attachments.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/rackspace/requests/compute_v2/list_attachments.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/rackspace/requests/compute_v2/list_attachments.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/rackspace/requests/compute_v2/list_attachments.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/rackspace/requests/compute_v2/list_attachments.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/rackspace/requests/compute_v2/list_attachments.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/rackspace/requests/compute_v2/list_attachments.rb
fog-1.19.0 lib/fog/rackspace/requests/compute_v2/list_attachments.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/rackspace/requests/compute_v2/list_attachments.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/rackspace/requests/compute_v2/list_attachments.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/rackspace/requests/compute_v2/list_attachments.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/rackspace/requests/compute_v2/list_attachments.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/rackspace/requests/compute_v2/list_attachments.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/rackspace/requests/compute_v2/list_attachments.rb
fog-maestrodev-1.18.0.20131209090811 lib/fog/rackspace/requests/compute_v2/list_attachments.rb
fog-maestrodev-1.18.0.20131206115947 lib/fog/rackspace/requests/compute_v2/list_attachments.rb