public BulkImportStoredProcedureOptions()

in bulkimport/src/main/java/com/microsoft/azure/documentdb/bulkimport/BulkImportStoredProcedureOptions.java [52:63]


    public BulkImportStoredProcedureOptions(
            boolean disableAutomaticIdGeneration,
            boolean softStopOnConflict,
            String systemCollectionId,
            boolean enableBsonSchema,
            boolean enableUpsert) {
        this.disableAutomaticIdGeneration = disableAutomaticIdGeneration;
        this.softStopOnConflict = softStopOnConflict;
        this.systemCollectionId = systemCollectionId;
        this.enableBsonSchema = enableBsonSchema;
        this.enableUpsert = enableUpsert;
    }