class Fog::Google::SQL::Flags

Public Instance Methods

all() click to toggle source

List all available database flags

@return [Array<Fog::Google::SQL::Flag>] List of flags

# File lib/fog/google/models/sql/flags.rb, line 14
def all
  data = service.list_flags.body['items'] || []
  load(data)
end