.setReadTimeout(new Duration(5, TimeUnit.SECONDS))
.setKeepAliveInterval(new Duration(6, TimeUnit.SECONDS))
.setMaxConnections(12)
.setMaxConnectionsPerServer(3)
.setMaxRequestsQueuedPerDestination(10)
.setMaxContentLength(new DataSize(1, Unit.MEGABYTE))
.setSocksProxy(HostAndPort.fromParts("localhost", 1080))
.setKeyStorePath("key-store")
.setKeyStorePassword("key-store-password");
ConfigAssertions.assertFullMapping(properties, expected);