Sha256: 0df9855efc70fd792ba4facbb6833e43dfae7878b23453472d5d228c8db3ca47
Contents?: true
Size: 444 Bytes
Versions: 41
Compression:
Stored size: 444 Bytes
Contents
require "fog/core/collection" require "fog/google/models/sql/flag" module Fog module Google class SQL class Flags < Fog::Collection model Fog::Google::SQL::Flag ## # List all available database flags # # @return [Array<Fog::Google::SQL::Flag>] List of flags def all data = service.list_flags.to_h[:items] || [] load(data) end end end end end
Version data entries
41 entries across 41 versions & 2 rubygems