in core/src/main/java/com/google/cloud/sql/ConnectorConfig.java [53:78]
private ConnectorConfig(
String targetPrincipal,
List<String> delegates,
String adminRootUrl,
String adminServicePath,
Supplier<GoogleCredentials> googleCredentialsSupplier,
GoogleCredentials googleCredentials,
String googleCredentialsPath,
String adminQuotaProject,
String universeDomain,
RefreshStrategy refreshStrategy,
Function<String, String> instanceNameResolver,
Duration failoverPeriod) {
this.targetPrincipal = targetPrincipal;
this.delegates = delegates;
this.adminRootUrl = adminRootUrl;
this.adminServicePath = adminServicePath;
this.googleCredentialsSupplier = googleCredentialsSupplier;
this.googleCredentials = googleCredentials;
this.googleCredentialsPath = googleCredentialsPath;
this.adminQuotaProject = adminQuotaProject;
this.universeDomain = universeDomain;
this.refreshStrategy = refreshStrategy;
this.instanceNameResolver = instanceNameResolver;
this.failoverPeriod = failoverPeriod;
}