Class: Fog::Compute::OpenStack::Metadatum

Inherits:
OpenStack::Model show all
Includes:
MetaParent
Defined in:
lib/fog/openstack/models/compute/metadatum.rb

Instance Attribute Summary

Attributes inherited from OpenStack::Model

#project

Instance Method Summary collapse

Methods included from MetaParent

#collection_name, #metas_to_hash, #parent, #parent=

Methods inherited from OpenStack::Model

#create, #initialize, #update

Constructor Details

This class inherits a constructor from Fog::OpenStack::Model

Instance Method Details

#destroyObject



13
14
15
16
17
# File 'lib/fog/openstack/models/compute/metadatum.rb', line 13

def destroy
  requires :identity
  service.delete_meta(collection_name, @parent.id, key)
  true
end

#saveObject



19
20
21
22
23
# File 'lib/fog/openstack/models/compute/metadatum.rb', line 19

def save
  requires :identity, :value
  service.update_meta(collection_name, @parent.id, key, value)
  true
end