Class: Fog::Rackspace::Monitoring::AgentToken

Inherits:
Base
  • Object
show all
Defined in:
lib/fog/rackspace/models/monitoring/agent_token.rb

Instance Attribute Summary

Attributes inherited from Model

#collection, #service

Instance Method Summary collapse

Methods inherited from Base

#compare?, #hash

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

#destroyObject



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

#paramsObject



14
15
16
17
18
19
20
# File 'lib/fog/rackspace/models/monitoring/agent_token.rb', line 14

def params
  options = {
    'label'                => label,
    'token'                => token
  }
  options.reject {|key, value| value.nil?}
end

#saveObject



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