class Softlayer::Notification

Constants

SERVICE

Attributes

id[RW]
key_name[RW]
name[RW]
preference_count[RW]
preferences[RW]
required_preference_count[RW]
required_preferences[RW]

Public Class Methods

get_all_objects() click to toggle source
# File lib/softlayer/notification.rb, line 18
def self.get_all_objects
  request(:get_all_objects, Array[Softlayer::Notification])
end

Public Instance Methods

get_object() click to toggle source
# File lib/softlayer/notification.rb, line 22
def get_object
  request(:get_object, Softlayer::Notification)
end
get_preferences() click to toggle source
# File lib/softlayer/notification.rb, line 26
def get_preferences
  request(:get_preferences, Array[Softlayer::Notification::Preference])
end
get_required_preferences() click to toggle source
# File lib/softlayer/notification.rb, line 30
def get_required_preferences
  request(:get_required_preferences, Array[Softlayer::Notification::Preference])
end