in spanner-data-validator-java/src/main/java/com/google/migration/dto/Shard.java [22:41]
public Shard(
String logicalShardId,
String host,
String port,
String user,
String password,
String dbName,
String namespace,
String secretManagerUri,
String connectionProperties) {
this.logicalShardId = logicalShardId;
this.host = host;
this.port = port;
this.user = user;
this.password = password;
this.dbName = dbName;
this.namespace = namespace;
this.secretManagerUri = secretManagerUri;
this.connectionProperties = connectionProperties;
}