Sha256: 949a5d7f207e2ed89081b93d10258ddc12a6878d09bd6e63bd0119fb511a9312
Contents?: true
Size: 815 Bytes
Versions: 65
Compression:
Stored size: 815 Bytes
Contents
module Fog module Compute class Ecloud class Real def authentication_levels_edit(data) validate_data([:basic, :sha1, :sha256, :sha512], data) body = build_authentication_levels_edit(data) request( :expects => 202, :method => 'PUT', :headers => {}, :body => body, :uri => data[:uri], :parse => true ) end private def build_authentication_levels_edit(data) xml = Builder::XmlMarkup.new xml.AuthenticationLevels do xml.BasicEnabled data[:basic] xml.SHA1Enabled data[:sha1] xml.SHA256Enabled data[:sha256] xml.SHA512Enabled data[:sha512] end end end end end end
Version data entries
65 entries across 65 versions & 6 rubygems