fluke/devops-service/db/mongo/models/stack/stack_openstack.rb

12 lines
211 B
Ruby
Raw Normal View History

2015-03-06 12:20:30 +03:00
module Devops
module Model
class StackOpenstack < StackBase
2015-07-14 16:51:40 +03:00
self.provider = 'openstack'
2015-07-15 16:25:06 +03:00
def stack_status
details[:body]['stack']['stack_status'] if details
end
2015-03-06 12:20:30 +03:00
end
end
2015-02-12 13:01:05 +03:00
end