Class: Fog::Google::SQL::BackupRun
- Inherits:
-
Model
- Object
- Model
- Fog::Google::SQL::BackupRun
- Defined in:
- lib/fog/google/models/sql/backup_run.rb
Overview
A database instance backup run resource
Constant Summary collapse
- DONE_STATE =
'DONE'
Instance Method Summary collapse
-
#ready? ⇒ Boolean
Checks if the instance backup run is done.
Instance Method Details
#ready? ⇒ Boolean
Checks if the instance backup run is done
28 29 30 |
# File 'lib/fog/google/models/sql/backup_run.rb', line 28 def ready? self.state == DONE_STATE end |