class Softlayer::Layout::Profile

Constants

SERVICE

Attributes

active_flag[RW]
create_date[RW]
id[RW]
layout_container_count[RW]
layout_containers[RW]
layout_preference_count[RW]
layout_preferences[RW]
modify_date[RW]
name[RW]
user_record_id[RW]

Public Class Methods

create_object(message) click to toggle source

template_object

# File lib/softlayer/layout/profile.rb, line 20
def self.create_object(message)
  request(:create_object, Boolean, message)
end

Public Instance Methods

delete_object() click to toggle source
# File lib/softlayer/layout/profile.rb, line 24
def delete_object
  request(:delete_object, Boolean)
end
edit_object(message) click to toggle source

template_object

# File lib/softlayer/layout/profile.rb, line 29
def edit_object(message)
  request(:edit_object, Boolean, message)
end
get_layout_containers() click to toggle source
# File lib/softlayer/layout/profile.rb, line 33
def get_layout_containers
  request(:get_layout_containers, Array[Softlayer::Layout::Container])
end
get_layout_preferences() click to toggle source
# File lib/softlayer/layout/profile.rb, line 37
def get_layout_preferences
  request(:get_layout_preferences, Array[Softlayer::Layout::Profile::Preference])
end
get_object() click to toggle source
# File lib/softlayer/layout/profile.rb, line 41
def get_object
  request(:get_object, Softlayer::Layout::Profile)
end
modify_preference(message) click to toggle source

template_object

# File lib/softlayer/layout/profile.rb, line 46
def modify_preference(message)
  request(:modify_preference, Softlayer::Layout::Profile::Preference, message)
end
modify_preferences(message) click to toggle source

layout_preference_objects

# File lib/softlayer/layout/profile.rb, line 51
def modify_preferences(message)
  request(:modify_preferences, Array[Softlayer::Layout::Profile::Preference], message)
end