in bulkimport/src/main/java/com/microsoft/azure/documentdb/bulkimport/DocumentBulkImporter.java [98:110]
public Builder from(DocumentClient client,
String databaseName,
String collectionName,
PartitionKeyDefinition partitionKeyDef,
int offerThroughput) {
// TODO: validate the retry options for the client
this.client = client;
this.collectionLink = String.format("/dbs/%s/colls/%s", databaseName, collectionName);
this.partitionKeyDef = partitionKeyDef;
this.offerThroughput = offerThroughput;
return this;
}