Class: Fog::Google::SQL::BackupRun

Inherits:
Model
  • Object
show all
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

Instance Method Details

#ready?Boolean

Checks if the instance backup run is done

Returns:

  • (Boolean)

    True if the backup run is done; False otherwise



31
32
33
# File 'lib/fog/google/models/sql/backup_run.rb', line 31

def ready?
  status == READY_STATUS
end