Sha256: f357cb8f30ef3c2b1972fe0dc1c3f2356568477f433f6f2d0f2c4aadebf39d0c
Contents?: true
Size: 946 Bytes
Versions: 61
Compression:
Stored size: 946 Bytes
Contents
module Fog module Bluebox class BLB class Real # Get details of an lb_application. # # ==== Parameters # * lb_application_id<~Integer> - ID of application # # ==== Returns # * response<~Excon::Response>: # * body<~Hash>: # * 'id'<~String> - UUID of application # * 'ip_v4'<~Array> - IPv4 addresses # * 'ip_v6'<~String> - IPv6 address # * 'name'<~String> - The hostname # * 'lb_services'<~Array> - Listening services # * 'source_ip_v4'<~String> - address that application connects to pool members from (v1 only) def get_lb_application(lb_application_id) request( :expects => 200, :method => 'GET', :path => "api/lb_applications/#{lb_application_id}.json" ) end end class Mock end end end end
Version data entries
61 entries across 61 versions & 6 rubygems