Class: Velocify::Agent

Inherits:
Object
  • Object
show all
Includes:
Model
Defined in:
lib/velocify/agent.rb

Class Method Summary collapse

Methods included from Model

included

Class Method Details

.find_all(destruct: false, return_array: false) ⇒ Object

Retrieve the entire list of agents



7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# File 'lib/velocify/agent.rb', line 7

def self.find_all destruct: false, return_array: false
  verify_credentials!

  request do
    destruct_response? destruct
    operation :get_agents
    authenticate? true
    transform do |resp|
      if return_array
        arrayify resp[:agents][:agent]
      else
        resp
      end
    end
  end
end