fluke/devops-service/db/mongo/models/stack/stack_openstack.rb
2015-07-15 17:25:06 +04:00

12 lines
211 B
Ruby

module Devops
module Model
class StackOpenstack < StackBase
self.provider = 'openstack'
def stack_status
details[:body]['stack']['stack_status'] if details
end
end
end
end