Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 726 Bytes

File metadata and controls

24 lines (18 loc) · 726 Bytes

VultrRuby::UpdateConnectionPoolRequest

Properties

Name Type Description Notes
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::UpdateConnectionPoolRequest.new(
  database: null,
  username: null,
  mode: null,
  size: null
)