Sha256: 338b862d3c1acd81630e91bf2999a3919323244cf7a80d1f929254d895e91573
Contents?: true
Size: 945 Bytes
Versions: 39
Compression:
Stored size: 945 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
39 entries across 37 versions & 5 rubygems