Class: Fog::DNS::Google::Change
- Inherits:
-
Model
- Object
- Model
- Fog::DNS::Google::Change
- Defined in:
- lib/fog/dns/google/models/change.rb
Overview
Represents a Change resource
Constant Summary collapse
- DONE_STATE =
"done".freeze
- PENDING_STATE =
"pending".freeze
Instance Method Summary collapse
-
#pending? ⇒ Boolean
Checks if the change operation is pending.
-
#ready? ⇒ Boolean
Checks if the change operation is done.
Instance Method Details
#pending? ⇒ Boolean
Checks if the change operation is pending
24 25 26 |
# File 'lib/fog/dns/google/models/change.rb', line 24 def pending? status == PENDING_STATE end |
#ready? ⇒ Boolean
Checks if the change operation is done
32 33 34 |
# File 'lib/fog/dns/google/models/change.rb', line 32 def ready? status == DONE_STATE end |