Class: Marathon::Client
- Inherits:
-
Object
- Object
- Marathon::Client
- Includes:
- HTTParty
- Defined in:
- lib/marathon/client.rb
Instance Method Summary collapse
- #endpoints(id = nil) ⇒ Object
-
#initialize(host = nil, user = nil, pass = nil) ⇒ Client
constructor
A new instance of Client.
- #list ⇒ Object
- #scale(id, num_instances) ⇒ Object
- #start(id, opts) ⇒ Object
- #stop(id) ⇒ Object
Constructor Details
#initialize(host = nil, user = nil, pass = nil) ⇒ Client
Returns a new instance of Client.
14 15 16 17 18 19 20 21 |
# File 'lib/marathon/client.rb', line 14 def initialize(host = nil, user = nil, pass = nil) @host = host || ENV['MARATHON_HOST'] || 'http://localhost:8080' @default_options = {} if user && pass @default_options[:basic_auth] = {:username => user, :password => pass} end end |
Instance Method Details
#endpoints(id = nil) ⇒ Object
27 28 29 30 31 32 33 |
# File 'lib/marathon/client.rb', line 27 def endpoints(id = nil) if id.nil? wrap_request(:get, "/v1/endpoints") else wrap_request(:get, "/v1/endpoints/#{id}") end end |
#list ⇒ Object
23 24 25 |
# File 'lib/marathon/client.rb', line 23 def list wrap_request(:get, '/v1/apps') end |
#scale(id, num_instances) ⇒ Object
41 42 43 44 |
# File 'lib/marathon/client.rb', line 41 def scale(id, num_instances) body = {:id => id, :instances => num_instances} wrap_request(:post, '/v1/apps/scale', :body => body) end |
#start(id, opts) ⇒ Object
35 36 37 38 39 |
# File 'lib/marathon/client.rb', line 35 def start(id, opts) body = opts.dup body[:id] = id wrap_request(:post, '/v1/apps/start', :body => body) end |
#stop(id) ⇒ Object
46 47 48 49 |
# File 'lib/marathon/client.rb', line 46 def stop(id) body = {:id => id} wrap_request(:post, '/v1/apps/stop', :body => body) end |