Method: IControl::LocalLB::ProfileFastL4#set_tcp_window_scale_mode

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

#set_tcp_window_scale_mode(opts) ⇒ Object

Sets the TCP window scale options for this profile.

Parameters:

  • opts (Hash)

Options Hash (opts):

  • :modes (IControl::LocalLB::ProfileTCPOptionMode)

    The TCP window scale options for the specified profiles. Note: mode “rewrite” is invalid for window scale mode, and as of 9.4.2, the method will throw Common::InvalidArgument and do nothing if you use this option in any mode element.

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.



682
683
684
685
# File 'lib/icontrol/local_lb/profile_fast_l4.rb', line 682

def set_tcp_window_scale_mode(opts)
  opts = check_params(opts,[:modes])
  super(opts)
end