Sha256: 130090e7b325c56708395cad3a55b1ceae3b4e4b7fb8c32f9c346b6c30b7de85
Contents?: true
Size: 672 Bytes
Versions: 10
Compression:
Stored size: 672 Bytes
Contents
module Fog module Compute class Ecloud class Real def login_banner_edit(data) validate_data([:display], data) body = build_login_banner_edit(data) request( :expects => 200, :method => "PUT", :headers => {}, :body => body, :uri => data[:uri], :parse => true ) end private def build_login_banner_edit(data) xml = Builder::XmlMarkup.new xml.LoginBanner do xml.Display data[:display] xml.Text data[:text] if data[:text] end end end end end end
Version data entries
10 entries across 8 versions & 3 rubygems