Class: Fog::Compute::HPV2::Meta

Inherits:
Model
  • Object
show all
Includes:
MetaParent
Defined in:
lib/fog/hp/models/compute_v2/meta.rb

Instance Attribute Summary

Attributes inherited from Model

#collection, #service

Instance Method Summary collapse

Methods included from MetaParent

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

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::Model

Instance Method Details

#destroyObject



14
15
16
17
18
# File 'lib/fog/hp/models/compute_v2/meta.rb', line 14

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

#saveObject



20
21
22
23
24
# File 'lib/fog/hp/models/compute_v2/meta.rb', line 20

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