Class: Fog::Compute::VcloudDirector::CatalogItem
- Defined in:
- lib/fog/vcloud_director/models/compute/catalog_item.rb
Instance Attribute Summary
Attributes inherited from Model
Instance Method Summary collapse
Methods inherited from Model
#initialize, #inspect, #lazy_load_attrs, #make_attr_loaded_method, #make_lazy_load_method
Methods inherited from Model
#initialize, #inspect, #reload, #symbolize_keys, #to_json, #wait_for
Methods included from Attributes::ClassMethods
#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes
Methods included from Fog::Core::DeprecatedConnectionAccessors
#connection, #connection=, #prepare_service_value
Methods included from Attributes::InstanceMethods
#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #persisted?, #requires, #requires_one
Constructor Details
This class inherits a constructor from Fog::Compute::VcloudDirector::Model
Instance Method Details
#instantiate(vapp_name, options = {}) ⇒ Object
17 18 19 20 21 |
# File 'lib/fog/vcloud_director/models/compute/catalog_item.rb', line 17 def instantiate(vapp_name, ={}) response = service.instantiate_vapp_template(vapp_name, vapp_template_id, ) service.process_task(response.body[:Tasks][:Task]) response.body[:href].split('/').last # returns the vapp_id if it was instantiated successfully . end |