Method: IControl::LocalLB::ProfileRADIUS#add_client

Defined in:
lib/icontrol/local_lb/profile_radius.rb

#add_client(opts) ⇒ Object

Adds to the lists of host and network addresses from which clients can connect. See get_client for more information on the client specification.

Parameters:

  • opts (Hash)

Options Hash (opts):

  • :clients (String[])

    The lists of clients.

Raises:

  • (IControl::IControl::Common::AccessDenied)

    raised if the client credentials are not valid.

  • (IControl::IControl::Common::InvalidArgument)

    raised if one of the arguments is invalid.

  • (IControl::IControl::Common::OperationFailed)

    raised if an operation error occurs.



20
21
22
23
# File 'lib/icontrol/local_lb/profile_radius.rb', line 20

def add_client(opts)
  opts = check_params(opts,[:clients])
  super(opts)
end