Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fog-google / lib / fog / google / models / sql / tier.rb
Size: Mime:
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