Sha256: c6f7af1fa5c04c47352180058d6faaa66545509a7cac4327d2891b2cf73873c9
Contents?: true
Size: 445 Bytes
Versions: 22
Compression:
Stored size: 445 Bytes
Contents
require 'fog/core/collection' require 'fog/google/models/sql/tier' module Fog module Google class SQL class Tiers < Fog::Collection model Fog::Google::SQL::Tier ## # Lists all available service tiers # # @return [Array<Fog::Google::SQL::Tier>] List of tiers def all data = service.list_tiers.body['items'] || [] load(data) end end end end end
Version data entries
22 entries across 20 versions & 5 rubygems