class Fog::DNS::Google::Change
Represents a Change
resource
Constants
- DONE_STATE
- PENDING_STATE
Public Instance Methods
pending?()
click to toggle source
Checks if the change operation is pending
@return [Boolean] True if the change operation is pending; False otherwise
# File lib/fog/dns/google/models/change.rb, line 24 def pending? status == PENDING_STATE end
ready?()
click to toggle source
Checks if the change operation is done
@return [Boolean] True if the change operation is done; False otherwise
# File lib/fog/dns/google/models/change.rb, line 32 def ready? status == DONE_STATE end