fog/fog-digitalocean

View on GitHub
lib/fog/compute/digitalocean/models/flavor.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Fog
  module Compute
    class DigitalOcean
      class Flavor < Fog::Model
        identity  :slug
        attribute :available
        attribute :transfer
        attribute :price_monthly
        attribute :price_hourly
        attribute :memory
        attribute :vcpus
        attribute :disk
        attribute :regions
      end
    end
  end
end