Represents a Change resource
Checks if the change operation is pending
@return [Boolean] True if the change operation is pending; False otherwise
# File lib/fog/google/models/dns/change.rb, line 26 def pending? self.status == PENDING_STATE end
Checks if the change operation is done
@return [Boolean] True if the change operation is done; False otherwise
# File lib/fog/google/models/dns/change.rb, line 34 def ready? self.status == DONE_STATE end