class Opsmgr::Api::InstallationDeletionStatusResult
Constants
- DELETE_IN_PROGRESS
- NO_INSTALLATION
Attributes
status[R]
Public Class Methods
new(status_hash)
click to toggle source
# File lib/opsmgr/api/results.rb, line 49 def initialize(status_hash) @status = status_hash['status'] end
Public Instance Methods
in_progress?()
click to toggle source
# File lib/opsmgr/api/results.rb, line 53 def in_progress? status == DELETE_IN_PROGRESS end