Sha256: 2ef09eb7248cfd77900b5e5f72b1fdb5e3f4516d43d8db7b80965223b498a9cd
Contents?: true
Size: 1.66 KB
Versions: 8
Compression:
Stored size: 1.66 KB
Contents
# frozen_string_literal: true module ProconBypassMan module RemoteAction module RemotePbmJob require "procon_bypass_man/remote_action/remote_pbm_job/value_objects/remote_pbm_job_object" require "procon_bypass_man/remote_action/remote_pbm_job/base_action" require "procon_bypass_man/remote_action/remote_pbm_job/change_pbm_version_action" require "procon_bypass_man/remote_action/remote_pbm_job/reboot_os_action" require "procon_bypass_man/remote_action/remote_pbm_job/stop_pbm_action" require "procon_bypass_man/remote_action/remote_pbm_job/restore_pbm_setting" require "procon_bypass_man/remote_action/remote_pbm_job/report_procon_status" require "procon_bypass_man/remote_action/remote_pbm_job/commands/update_remote_pbm_job_status_command" require "procon_bypass_man/remote_action/remote_pbm_job/commands/run_remote_pbm_job_dispatch_command" ACTION_CHANGE_PBM_VERSION = "change_pbm_version" ACTION_REBOOT_OS = "reboot_os" ACTION_STOP_PBM = "stop_pbm" ACTION_RESTORE_SETTING = "restore_pbm_setting" ACTION_REPORT_PORCON_STATUS = 'report_porcon_status' ACTIONS_IN_MASTER_PROCESS = [ ACTION_CHANGE_PBM_VERSION, ACTION_REBOOT_OS, ACTION_STOP_PBM, ACTION_RESTORE_SETTING, ] ACTIONS_IN_BYPASS_PROCESS = [ ACTION_REPORT_PORCON_STATUS, ] ACTIONS = ACTIONS_IN_MASTER_PROCESS + ACTIONS_IN_BYPASS_PROCESS STATUS_FAILED = :failed STATUS_IN_PROGRESS = :in_progress STATUS_PROCESSED = :processed ACTION_STATUSES = [ STATUS_FAILED, STATUS_IN_PROGRESS, STATUS_PROCESSED, ] end end end
Version data entries
8 entries across 8 versions & 1 rubygems