Class: Fog::Compute::Brightbox::ApiClient
- Defined in:
- lib/fog/brightbox/models/compute/api_client.rb
Instance Attribute Summary
Attributes inherited from Model
Instance Method Summary collapse
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 Attributes::InstanceMethods
#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #requires, #requires_one
Constructor Details
This class inherits a constructor from Fog::Model
Instance Method Details
#destroy ⇒ Object
23 24 25 26 27 |
# File 'lib/fog/brightbox/models/compute/api_client.rb', line 23 def destroy requires :identity connection.destroy_api_client(identity) true end |
#reset_secret ⇒ Object
29 30 31 32 33 |
# File 'lib/fog/brightbox/models/compute/api_client.rb', line 29 def reset_secret requires :identity connection.reset_secret_api_client(identity) true end |
#save ⇒ Object
12 13 14 15 16 17 18 19 20 21 |
# File 'lib/fog/brightbox/models/compute/api_client.rb', line 12 def save raise Fog::Errors::Error.new('Resaving an existing object may create a duplicate') if identity = { :name => name, :description => description }.delete_if {|k,v| v.nil? || v == "" } data = connection.create_api_client() merge_attributes(data) true end |