Sha256: 1436c00e14dfbb3a6fb3e8ec7864f0b576d3b9b7caaa646f8f28a15763c0cbfc
Contents?: true
Size: 1.37 KB
Versions: 39
Compression:
Stored size: 1.37 KB
Contents
module Fog module Compute class RackspaceV2 class Real # Retreive single keypair details # @param [String] key_name name of the key for which to request the details # @return [Excon::Response] response : # * body [Hash]: - # * 'keypair' [Hash]: - # * 'fingerprint' [String]: unique fingerprint of the keypair # * 'name' [String]: unique name of the keypair # * 'public_key' [String]: the public key assigne to the keypair # @raise [Fog::Compute::RackspaceV2::NotFound] # @raise [Fog::Compute::RackspaceV2::BadRequest] # @raise [Fog::Compute::RackspaceV2::InternalServerError] # @raise [Fog::Compute::RackspaceV2::ServiceError] # @see http://docs.rackspace.com/servers/api/v2/cs-devguide/content/ListKeyPairs.html def get_keypair(key_name) request( :method => 'GET', :expects => 200, :path => "/os-keypairs/#{key_name}" ) end end class Mock def get_keypair(key_name) key = self.data[:keypairs].select { |k| key_name.include? k['keypair']['name'] }.first if key.nil? raise Fog::Compute::RackspaceV2::NotFound end response(:body => key, :status => 200) end end end end end
Version data entries
39 entries across 37 versions & 6 rubygems