mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
2e0b7e545a
Done with `rubocop --auto-correct --only EmptyLineBetweenDefs,EmptyLines,EmptyLinesAroundBody`
34 lines
1.1 KiB
Ruby
34 lines
1.1 KiB
Ruby
module Fog
|
|
module Bluebox
|
|
class BLB
|
|
class Real
|
|
# Get details of an lb_machine.
|
|
#
|
|
# ==== Parameters
|
|
# * lb_backend_id<~String> - backend machine belongs to
|
|
# * lb_machine_id<~String> - machine to look up
|
|
#
|
|
# ==== Returns
|
|
# * response<~Excon::Response>:
|
|
# * body<~Hash>:
|
|
# * id<~String> - machine ID
|
|
# * ip<~String> - machine IP address for this member (v4 or v6)
|
|
# * port<~Integer> - service port for this member
|
|
# * hostname<~String> - name as registered with Box Panel
|
|
# * acl_name<~String> - name of ACL for this machine
|
|
# * created<~DateTime> - when machine was added to load balancer backend
|
|
# * maxconn<~Integer> - maximum concurrent connections for this member (BLBv2 only)
|
|
def get_lb_machine(lb_backend_id, lb_machine_id)
|
|
request(
|
|
:expects => 200,
|
|
:method => 'GET',
|
|
:path => "api/lb_backends/#{lb_backend_id}/lb_machines/#{lb_machine_id}.json"
|
|
)
|
|
end
|
|
end
|
|
|
|
class Mock
|
|
end
|
|
end
|
|
end
|
|
end
|