class Utils::ProbeClient::EnvProxy

def []=(key, value)

Returns:
  • (String) - the updated environment variable value returned by the server

Parameters:
  • value (String) -- the value to assign to the environment variable
  • key (String) -- the environment variable key to set
def []=(key, value)
  response = @server.transmit_with_response(type: 'set_env', key:, value:)
  response.env
end