VultrRuby::ConnectionPool Properties Name Type Description Notes name String The name of the connection pool. [optional] database String The logical database associated with the connection pool. [optional] username String The database user associated with the connection pool. [optional] mode String The mode for the connection pool. * `session` * `transaction` * `statement` [optional] size Integer The size of the connection pool. [optional] Example require 'vultr_ruby' instance = VultrRuby::ConnectionPool.new( name: null, database: null, username: null, mode: null, size: null )