fog/fog-ecloud

View on GitHub
lib/fog/compute/ecloud/models/operating_system.rb

Summary

Maintainability
A
15 mins
Test Coverage
module Fog
  module Compute
    class Ecloud
      class OperatingSystem < Fog::Ecloud::Model
        identity :href

        attribute :name, :aliases => :Name
        attribute :type, :aliases => :Type

        def id
          href.scan(/\d+/)[0]
        end
      end
    end
  end
end