Sha256: eb7f5ddbc29e9696f9117e2a1c94a17b1b5e1b66865425fe56fa4feb29bf4ab4
Contents?: true
Size: 552 Bytes
Versions: 26
Compression:
Stored size: 552 Bytes
Contents
module Fog module Brightbox class Compute class Real def reset_ftp_password_account(options = {}) request( :expects => [200], :method => 'POST', :path => "/1.0/account/reset_ftp_password", :headers => {"Content-Type" => "application/json"}, :body => options.to_json ) end end class Mock def reset_ftp_password_account(options = {}) Fog::Mock.not_implemented end end end end end
Version data entries
26 entries across 26 versions & 3 rubygems