Repository URL to install this package:
|
Version:
1.12.1 ▾
|
require "fog/core/model"
module Fog
module Google
class SQL
##
# A Google Cloud SQL service tier resource
#
# @see https://cloud.google.com/sql/docs/mysql/admin-api/v1beta4/tiers
class Tier < Fog::Model
identity :tier
attribute :disk_quota, :aliases => "DiskQuota"
attribute :kind
attribute :ram, :aliases => "RAM"
attribute :region
end
end
end
end