Sha256: 42d0f041bd333060189a845d96881848964d56776f15228acb208425f65b7cb4
Contents?: true
Size: 695 Bytes
Versions: 85
Compression:
Stored size: 695 Bytes
Contents
module Fog module Compute class OpenStack class Real def delete_key_pair(key_name) request( :expects => 202, :method => 'DELETE', :path => "os-keypairs/#{key_name}" ) end end class Mock def delete_key_pair(key_name) response = Excon::Response.new response.status = 202 response.headers = { "Content-Type" => "text/html; charset=UTF-8", "Content-Length" => "0", "Date" => Date.new } response.body = {} response end end # mock end # openstack end # compute end # fog
Version data entries
85 entries across 85 versions & 13 rubygems