lib/fog/ibm/models/compute/instance-type.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'fog/core/model'

module Fog
  module Compute
    class IBM
      class InstanceType < Fog::Model
        identity :id
        attribute :detail
        attribute :label
        attribute :price
      end
    end
  end
end