class RhnSatellite::Schedule

Public Class Methods

archive_actions(action_ids) click to toggle source
# File lib/rhn_satellite/schedule.rb, line 6
def archive_actions(action_ids)
  base.default_call('schedule.archiveActions',action_ids)
end
cancel_actions(action_ids) click to toggle source
# File lib/rhn_satellite/schedule.rb, line 10
def cancel_actions(action_ids)
  base.default_call('schedule.cancelActions',action_ids)
end
delete_actions(action_ids) click to toggle source
# File lib/rhn_satellite/schedule.rb, line 14
def delete_actions(action_ids)
  base.default_call('schedule.deleteActions',action_ids)
end
list_all_actions() click to toggle source
# File lib/rhn_satellite/schedule.rb, line 18
def list_all_actions
  base.default_call('schedule.listAllActions').to_a
end
list_archived_actions() click to toggle source
# File lib/rhn_satellite/schedule.rb, line 22
def list_archived_actions
  base.default_call('schedule.listArchivedActions').to_a
end
list_completed_actions() click to toggle source
# File lib/rhn_satellite/schedule.rb, line 26
def list_completed_actions
  base.default_call('schedule.listCompletedActions').to_a
end
list_completed_systems(action_id) click to toggle source
# File lib/rhn_satellite/schedule.rb, line 30
def list_completed_systems(action_id)
  base.default_call('schedule.listCompletedSystems',action_id).to_a
end
list_failed_actions() click to toggle source
# File lib/rhn_satellite/schedule.rb, line 34
def list_failed_actions
  base.default_call('schedule.listFailedActions').to_a
end
list_failed_systems(action_id) click to toggle source
# File lib/rhn_satellite/schedule.rb, line 38
def list_failed_systems(action_id)
  base.default_call('schedule.listFailedSystems',action_id).to_a
end
list_in_progress_actions() click to toggle source
# File lib/rhn_satellite/schedule.rb, line 42
def list_in_progress_actions
  base.default_call('schedule.listInProgressActions').to_a
end
list_in_progress_systems(action_id) click to toggle source
# File lib/rhn_satellite/schedule.rb, line 46
def list_in_progress_systems(action_id)
  base.default_call('schedule.listInProgressSystems',action_id).to_a
end
reschedule_actions(action_ids,only_failed) click to toggle source
# File lib/rhn_satellite/schedule.rb, line 50
def reschedule_actions(action_ids,only_failed)
  base.default_call('schedule.rescheduleActions',action_ids,only_failed)
end