fog/fog-storm_on_demand

View on GitHub
lib/fog/compute/storm_on_demand/models/template.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Fog
  module Compute
    class StormOnDemand
      class Template < Fog::Model
        identity :id
        attribute :name
        attribute :deprecated
        attribute :description
        attribute :manage_level
        attribute :os
        attribute :zone_availability
      end

      def restore(options)
        requires :identity
        service.restore_template({:id => identity}.merge!(options))
      end
    end
  end
end