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
- READY_STATUS =
"DONE".freeze
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
31 32 33 |
# File 'lib/fog/google/models/sql/backup_run.rb', line 31 def ready? status == READY_STATUS end |