Sha256: 0c83a2599d7482c5a5c8c086ee645c07baa7a1fc95dcfbe838c7037a6ba4eb48
Contents?: true
Size: 765 Bytes
Versions: 17
Compression:
Stored size: 765 Bytes
Contents
require 'fog/openstack/models/model' module Fog module Orchestration class OpenStack class Resource < Fog::OpenStack::Model include Reflectable identity :id %w{resource_name description links logical_resource_id physical_resource_id resource_status updated_time required_by resource_status_reason resource_type}.each do |a| attribute a.to_sym end def events(options={}) @events ||= service.events.all(self, options) end def metadata @metadata ||= service.show_resource_metadata(stack, self.resource_name).body['metadata'] end def template @template ||= service.templates.get(self) end end end end end
Version data entries
17 entries across 17 versions & 2 rubygems