in core/src/main/java/com/google/cloud/sql/core/ConnectionConfig.java [192:209]
private ConnectionConfig(
String cloudSqlInstance,
String namedConnector,
String unixSocketPath,
List<IpType> ipTypes,
AuthType authType,
String unixSocketPathSuffix,
String domainName,
ConnectorConfig connectorConfig) {
this.cloudSqlInstance = cloudSqlInstance;
this.namedConnector = namedConnector;
this.unixSocketPath = unixSocketPath;
this.ipTypes = ipTypes;
this.unixSocketPathSuffix = unixSocketPathSuffix;
this.connectorConfig = connectorConfig;
this.authType = authType;
this.domainName = domainName;
}