Class: Fog::Rackspace::Monitoring::AgentToken
- Defined in:
- lib/fog/rackspace/models/monitoring/agent_token.rb
Instance Attribute Summary
Attributes inherited from Model
Instance Method Summary collapse
Methods inherited from Base
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 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
#destroy ⇒ Object
32 33 34 35 |
# File 'lib/fog/rackspace/models/monitoring/agent_token.rb', line 32 def destroy requires :id service.delete_agent_token(id) end |
#params ⇒ Object
14 15 16 17 18 19 20 |
# File 'lib/fog/rackspace/models/monitoring/agent_token.rb', line 14 def params = { 'label' => label, 'token' => token } .reject {|key, value| value.nil?} end |
#save ⇒ Object
22 23 24 25 26 27 28 29 30 |
# File 'lib/fog/rackspace/models/monitoring/agent_token.rb', line 22 def save if identity raise NotImplementedError.new "Updating Agent Tokens is not currently implemented" else data = service.create_agent_token(params) self.id = data.headers['X-Object-ID'] end true end |