├── .gitattributes ├── .github ├── CODEOWNERS ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── check-schema-latest.sh │ ├── check_schema_version.sh │ ├── lint.yml │ └── unified-tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── LICENSE.md ├── README.md ├── bin └── builder.py ├── docs ├── README.md └── workforce-human-oidc-auth.md ├── markdown_link_config.json ├── mkdocs.yml ├── scripts ├── README.md ├── check_links.py ├── check_md_html.py ├── generate_index.py └── migrate_to_md.py └── source ├── Makefile ├── auth ├── auth.md ├── auth.rst ├── includes │ └── calculating_a_signature.png └── tests │ ├── README.md │ ├── legacy │ ├── connection-string.json │ └── connection-string.yml │ ├── mongodb-aws.md │ ├── mongodb-oidc.md │ └── unified │ ├── mongodb-oidc-no-retry.json │ └── mongodb-oidc-no-retry.yml ├── benchmarking ├── benchmarking.md ├── benchmarking.rst ├── data │ ├── extended_bson.tgz │ ├── extended_bson_legacy.tgz │ ├── parallel.tgz │ └── single_and_multi_document.tgz ├── odm-benchmarking.md └── odm-data │ ├── flat_models.tgz │ └── nested_models.tgz ├── bson-binary-encrypted └── binary-encrypted.md ├── bson-binary-uuid └── uuid.md ├── bson-binary-vector ├── bson-binary-vector.md └── tests │ ├── README.md │ ├── float32.json │ ├── int8.json │ └── packed_bit.json ├── bson-corpus ├── bson-corpus.md ├── bson-corpus.rst └── tests │ ├── array.json │ ├── binary.json │ ├── boolean.json │ ├── bsonview │ ├── code.json │ ├── code_w_scope.json │ ├── datetime.json │ ├── dbpointer.json │ ├── dbref.json │ ├── decimal128-1.json │ ├── decimal128-2.json │ ├── decimal128-3.json │ ├── decimal128-4.json │ ├── decimal128-5.json │ ├── decimal128-6.json │ ├── decimal128-7.json │ ├── document.json │ ├── double.json │ ├── int32.json │ ├── int64.json │ ├── maxkey.json │ ├── minkey.json │ ├── multi-type-deprecated.json │ ├── multi-type.json │ ├── null.json │ ├── oid.json │ ├── regex.json │ ├── string.json │ ├── symbol.json │ ├── timestamp.json │ ├── top.json │ └── undefined.json ├── bson-decimal128 ├── decimal128.md └── decimal128.rst ├── bson-objectid └── objectid.md ├── causal-consistency ├── causal-consistency.md └── causal-consistency.rst ├── change-streams ├── change-streams.md ├── change-streams.rst └── tests │ ├── README.md │ └── unified │ ├── change-streams-clusterTime.json │ ├── change-streams-clusterTime.yml │ ├── change-streams-disambiguatedPaths.json │ ├── change-streams-disambiguatedPaths.yml │ ├── change-streams-errors.json │ ├── change-streams-errors.yml │ ├── change-streams-nsType.json │ ├── change-streams-nsType.yml │ ├── change-streams-pre_and_post_images.json │ ├── change-streams-pre_and_post_images.yml │ ├── change-streams-resume-allowlist.json │ ├── change-streams-resume-allowlist.yml │ ├── change-streams-resume-errorLabels.json │ ├── change-streams-resume-errorLabels.yml │ ├── change-streams-showExpandedEvents.json │ ├── change-streams-showExpandedEvents.yml │ ├── change-streams.json │ └── change-streams.yml ├── client-side-encryption ├── client-side-encryption.md ├── client-side-encryption.rst ├── corpus │ ├── corpus-encrypted.json │ ├── corpus-key-aws.json │ ├── corpus-key-azure.json │ ├── corpus-key-gcp.json │ ├── corpus-key-kmip.json │ ├── corpus-key-local.json │ ├── corpus-schema.json │ └── corpus.json ├── etc │ ├── data │ │ ├── encryptedFields-prefix-suffix.json │ │ ├── encryptedFields-substring.json │ │ ├── encryptedFields.json │ │ ├── keys │ │ │ ├── key1-document.json │ │ │ ├── key1-id.json │ │ │ ├── key2-document.json │ │ │ └── key2-id.json │ │ ├── lookup │ │ │ ├── key-doc.json │ │ │ ├── schema-csfle.json │ │ │ ├── schema-csfle2.json │ │ │ ├── schema-non-csfle.json │ │ │ ├── schema-qe.json │ │ │ └── schema-qe2.json │ │ ├── range-encryptedFields-Date.json │ │ ├── range-encryptedFields-DecimalNoPrecision.json │ │ ├── range-encryptedFields-DecimalPrecision.json │ │ ├── range-encryptedFields-DoubleNoPrecision.json │ │ ├── range-encryptedFields-DoublePrecision.json │ │ ├── range-encryptedFields-Int.json │ │ └── range-encryptedFields-Long.json │ ├── generate-corpus.py │ ├── generate-limits.py │ ├── generate-test.py │ ├── test-templates │ │ ├── aggregate.yml.template │ │ ├── awsTemporary.yml.template │ │ ├── azureKMS.yml.template │ │ ├── badQueries.yml.template │ │ ├── badSchema.yml.template │ │ ├── basic.yml.template │ │ ├── bulk.yml.template │ │ ├── bypassAutoEncryption.yml.template │ │ ├── bypassedCommand.yml.template │ │ ├── count.yml.template │ │ ├── countDocuments.yml.template │ │ ├── create-and-createIndexes.yml.template │ │ ├── delete.yml.template │ │ ├── distinct.yml.template │ │ ├── explain.yml.template │ │ ├── find.yml.template │ │ ├── findOneAndDelete.yml.template │ │ ├── findOneAndReplace.yml.template │ │ ├── findOneAndUpdate.yml.template │ │ ├── fle2v2-Compact.yml.template │ │ ├── fle2v2-DecryptExistingData.yml.template │ │ ├── fle2v2-Delete.yml.template │ │ ├── fle2v2-EncryptedFields-vs-jsonSchema.yml.template │ │ ├── fle2v2-EncryptedFieldsMap-defaults.yml.template │ │ ├── fle2v2-FindOneAndUpdate.yml.template │ │ ├── fle2v2-InsertFind-Indexed.yml.template │ │ ├── fle2v2-InsertFind-Unindexed.yml.template │ │ ├── fle2v2-MissingKey.yml.template │ │ ├── fle2v2-NoEncryption.yml.template │ │ ├── fle2v2-Rangev2-Compact.yml.template │ │ ├── fle2v2-Rangev2-Date-Aggregate.yml.template │ │ ├── fle2v2-Rangev2-Date-Correctness.yml.template │ │ ├── fle2v2-Rangev2-Date-Delete.yml.template │ │ ├── fle2v2-Rangev2-Date-FindOneAndUpdate.yml.template │ │ ├── fle2v2-Rangev2-Date-InsertFind.yml.template │ │ ├── fle2v2-Rangev2-Date-Update.yml.template │ │ ├── fle2v2-Rangev2-Decimal-Aggregate.yml.template │ │ ├── fle2v2-Rangev2-Decimal-Correctness.yml.template │ │ ├── fle2v2-Rangev2-Decimal-Delete.yml.template │ │ ├── fle2v2-Rangev2-Decimal-FindOneAndUpdate.yml.template │ │ ├── fle2v2-Rangev2-Decimal-InsertFind.yml.template │ │ ├── fle2v2-Rangev2-Decimal-Update.yml.template │ │ ├── fle2v2-Rangev2-DecimalPrecision-Aggregate.yml.template │ │ ├── fle2v2-Rangev2-DecimalPrecision-Correctness.yml.template │ │ ├── fle2v2-Rangev2-DecimalPrecision-Delete.yml.template │ │ ├── fle2v2-Rangev2-DecimalPrecision-FindOneAndUpdate.yml.template │ │ ├── fle2v2-Rangev2-DecimalPrecision-InsertFind.yml.template │ │ ├── fle2v2-Rangev2-DecimalPrecision-Update.yml.template │ │ ├── fle2v2-Rangev2-Defaults.yml.template │ │ ├── fle2v2-Rangev2-Double-Aggregate.yml.template │ │ ├── fle2v2-Rangev2-Double-Correctness.yml.template │ │ ├── fle2v2-Rangev2-Double-Delete.yml.template │ │ ├── fle2v2-Rangev2-Double-FindOneAndUpdate.yml.template │ │ ├── fle2v2-Rangev2-Double-InsertFind.yml.template │ │ ├── fle2v2-Rangev2-Double-Update.yml.template │ │ ├── fle2v2-Rangev2-DoublePrecision-Aggregate.yml.template │ │ ├── fle2v2-Rangev2-DoublePrecision-Correctness.yml.template │ │ ├── fle2v2-Rangev2-DoublePrecision-Delete.yml.template │ │ ├── fle2v2-Rangev2-DoublePrecision-FindOneAndUpdate.yml.template │ │ ├── fle2v2-Rangev2-DoublePrecision-InsertFind.yml.template │ │ ├── fle2v2-Rangev2-DoublePrecision-Update.yml.template │ │ ├── fle2v2-Rangev2-Int-Aggregate.yml.template │ │ ├── fle2v2-Rangev2-Int-Correctness.yml.template │ │ ├── fle2v2-Rangev2-Int-Delete.yml.template │ │ ├── fle2v2-Rangev2-Int-FindOneAndUpdate.yml.template │ │ ├── fle2v2-Rangev2-Int-InsertFind.yml.template │ │ ├── fle2v2-Rangev2-Int-Update.yml.template │ │ ├── fle2v2-Rangev2-Long-Aggregate.yml.template │ │ ├── fle2v2-Rangev2-Long-Correctness.yml.template │ │ ├── fle2v2-Rangev2-Long-Delete.yml.template │ │ ├── fle2v2-Rangev2-Long-FindOneAndUpdate.yml.template │ │ ├── fle2v2-Rangev2-Long-InsertFind.yml.template │ │ ├── fle2v2-Rangev2-Long-Update.yml.template │ │ ├── fle2v2-Update.yml.template │ │ ├── fle2v2-validatorAndPartialFieldExpression.yml.template │ │ ├── gcpKMS.yml.template │ │ ├── getMore.yml.template │ │ ├── insert.yml.template │ │ ├── keyAltName.yml.template │ │ ├── keyCache.yml.template │ │ ├── kmipKMS.yml.template │ │ ├── localKMS.yml.template │ │ ├── malformedCiphertext.yml.template │ │ ├── missingKey.yml.template │ │ ├── namedKMS.yml.template │ │ ├── noSchema.yml.template │ │ ├── replaceOne.yml.template │ │ ├── timeoutMS.yml.template │ │ ├── types.yml.template │ │ ├── unsupportedCommand.yml.template │ │ ├── updateMany.yml.template │ │ ├── updateOne.yml.template │ │ └── validatorAndPartialFieldExpression.yml.template │ ├── update-corpus.py │ └── validate-corpus.py ├── external │ ├── external-key.json │ └── external-schema.json ├── includes │ ├── components.png │ └── wire_protocol_diagram.png ├── limits │ ├── limits-doc.json │ ├── limits-encryptedFields.json │ ├── limits-key.json │ ├── limits-qe-doc.json │ └── limits-schema.json ├── subtype6.rst └── tests │ ├── README.md │ ├── benchmarks.md │ ├── legacy │ ├── aggregate.json │ ├── aggregate.yml │ ├── awsTemporary.json │ ├── awsTemporary.yml │ ├── azureKMS.json │ ├── azureKMS.yml │ ├── badQueries.json │ ├── badQueries.yml │ ├── badSchema.json │ ├── badSchema.yml │ ├── basic.json │ ├── basic.yml │ ├── bulk.json │ ├── bulk.yml │ ├── bypassAutoEncryption.json │ ├── bypassAutoEncryption.yml │ ├── bypassedCommand.json │ ├── bypassedCommand.yml │ ├── count.json │ ├── count.yml │ ├── countDocuments.json │ ├── countDocuments.yml │ ├── create-and-createIndexes.json │ ├── create-and-createIndexes.yml │ ├── delete.json │ ├── delete.yml │ ├── distinct.json │ ├── distinct.yml │ ├── explain.json │ ├── explain.yml │ ├── find.json │ ├── find.yml │ ├── findOneAndDelete.json │ ├── findOneAndDelete.yml │ ├── findOneAndReplace.json │ ├── findOneAndReplace.yml │ ├── findOneAndUpdate.json │ ├── findOneAndUpdate.yml │ ├── fle2v2-BypassQueryAnalysis.json │ ├── fle2v2-BypassQueryAnalysis.yml │ ├── fle2v2-Compact.json │ ├── fle2v2-Compact.yml │ ├── fle2v2-CreateCollection-OldServer.json │ ├── fle2v2-CreateCollection-OldServer.yml │ ├── fle2v2-CreateCollection.json │ ├── fle2v2-CreateCollection.yml │ ├── fle2v2-DecryptExistingData.json │ ├── fle2v2-DecryptExistingData.yml │ ├── fle2v2-Delete.json │ ├── fle2v2-Delete.yml │ ├── fle2v2-EncryptedFields-vs-EncryptedFieldsMap.json │ ├── fle2v2-EncryptedFields-vs-EncryptedFieldsMap.yml │ ├── fle2v2-EncryptedFields-vs-jsonSchema.json │ ├── fle2v2-EncryptedFields-vs-jsonSchema.yml │ ├── fle2v2-EncryptedFieldsMap-defaults.json │ ├── fle2v2-EncryptedFieldsMap-defaults.yml │ ├── fle2v2-FindOneAndUpdate.json │ ├── fle2v2-FindOneAndUpdate.yml │ ├── fle2v2-InsertFind-Indexed.json │ ├── fle2v2-InsertFind-Indexed.yml │ ├── fle2v2-InsertFind-Unindexed.json │ ├── fle2v2-InsertFind-Unindexed.yml │ ├── fle2v2-MissingKey.json │ ├── fle2v2-MissingKey.yml │ ├── fle2v2-NoEncryption.json │ ├── fle2v2-NoEncryption.yml │ ├── fle2v2-Rangev2-Compact.json │ ├── fle2v2-Rangev2-Compact.yml │ ├── fle2v2-Rangev2-Date-Aggregate.json │ ├── fle2v2-Rangev2-Date-Aggregate.yml │ ├── fle2v2-Rangev2-Date-Correctness.json │ ├── fle2v2-Rangev2-Date-Correctness.yml │ ├── fle2v2-Rangev2-Date-Delete.json │ ├── fle2v2-Rangev2-Date-Delete.yml │ ├── fle2v2-Rangev2-Date-FindOneAndUpdate.json │ ├── fle2v2-Rangev2-Date-FindOneAndUpdate.yml │ ├── fle2v2-Rangev2-Date-InsertFind.json │ ├── fle2v2-Rangev2-Date-InsertFind.yml │ ├── fle2v2-Rangev2-Date-Update.json │ ├── fle2v2-Rangev2-Date-Update.yml │ ├── fle2v2-Rangev2-Decimal-Aggregate.json │ ├── fle2v2-Rangev2-Decimal-Aggregate.yml │ ├── fle2v2-Rangev2-Decimal-Correctness.json │ ├── fle2v2-Rangev2-Decimal-Correctness.yml │ ├── fle2v2-Rangev2-Decimal-Delete.json │ ├── fle2v2-Rangev2-Decimal-Delete.yml │ ├── fle2v2-Rangev2-Decimal-FindOneAndUpdate.json │ ├── fle2v2-Rangev2-Decimal-FindOneAndUpdate.yml │ ├── fle2v2-Rangev2-Decimal-InsertFind.json │ ├── fle2v2-Rangev2-Decimal-InsertFind.yml │ ├── fle2v2-Rangev2-Decimal-Update.json │ ├── fle2v2-Rangev2-Decimal-Update.yml │ ├── fle2v2-Rangev2-DecimalPrecision-Aggregate.json │ ├── fle2v2-Rangev2-DecimalPrecision-Aggregate.yml │ ├── fle2v2-Rangev2-DecimalPrecision-Correctness.json │ ├── fle2v2-Rangev2-DecimalPrecision-Correctness.yml │ ├── fle2v2-Rangev2-DecimalPrecision-Delete.json │ ├── fle2v2-Rangev2-DecimalPrecision-Delete.yml │ ├── fle2v2-Rangev2-DecimalPrecision-FindOneAndUpdate.json │ ├── fle2v2-Rangev2-DecimalPrecision-FindOneAndUpdate.yml │ ├── fle2v2-Rangev2-DecimalPrecision-InsertFind.json │ ├── fle2v2-Rangev2-DecimalPrecision-InsertFind.yml │ ├── fle2v2-Rangev2-DecimalPrecision-Update.json │ ├── fle2v2-Rangev2-DecimalPrecision-Update.yml │ ├── fle2v2-Rangev2-Defaults.json │ ├── fle2v2-Rangev2-Defaults.yml │ ├── fle2v2-Rangev2-Double-Aggregate.json │ ├── fle2v2-Rangev2-Double-Aggregate.yml │ ├── fle2v2-Rangev2-Double-Correctness.json │ ├── fle2v2-Rangev2-Double-Correctness.yml │ ├── fle2v2-Rangev2-Double-Delete.json │ ├── fle2v2-Rangev2-Double-Delete.yml │ ├── fle2v2-Rangev2-Double-FindOneAndUpdate.json │ ├── fle2v2-Rangev2-Double-FindOneAndUpdate.yml │ ├── fle2v2-Rangev2-Double-InsertFind.json │ ├── fle2v2-Rangev2-Double-InsertFind.yml │ ├── fle2v2-Rangev2-Double-Update.json │ ├── fle2v2-Rangev2-Double-Update.yml │ ├── fle2v2-Rangev2-DoublePrecision-Aggregate.json │ ├── fle2v2-Rangev2-DoublePrecision-Aggregate.yml │ ├── fle2v2-Rangev2-DoublePrecision-Correctness.json │ ├── fle2v2-Rangev2-DoublePrecision-Correctness.yml │ ├── fle2v2-Rangev2-DoublePrecision-Delete.json │ ├── fle2v2-Rangev2-DoublePrecision-Delete.yml │ ├── fle2v2-Rangev2-DoublePrecision-FindOneAndUpdate.json │ ├── fle2v2-Rangev2-DoublePrecision-FindOneAndUpdate.yml │ ├── fle2v2-Rangev2-DoublePrecision-InsertFind.json │ ├── fle2v2-Rangev2-DoublePrecision-InsertFind.yml │ ├── fle2v2-Rangev2-DoublePrecision-Update.json │ ├── fle2v2-Rangev2-DoublePrecision-Update.yml │ ├── fle2v2-Rangev2-Int-Aggregate.json │ ├── fle2v2-Rangev2-Int-Aggregate.yml │ ├── fle2v2-Rangev2-Int-Correctness.json │ ├── fle2v2-Rangev2-Int-Correctness.yml │ ├── fle2v2-Rangev2-Int-Delete.json │ ├── fle2v2-Rangev2-Int-Delete.yml │ ├── fle2v2-Rangev2-Int-FindOneAndUpdate.json │ ├── fle2v2-Rangev2-Int-FindOneAndUpdate.yml │ ├── fle2v2-Rangev2-Int-InsertFind.json │ ├── fle2v2-Rangev2-Int-InsertFind.yml │ ├── fle2v2-Rangev2-Int-Update.json │ ├── fle2v2-Rangev2-Int-Update.yml │ ├── fle2v2-Rangev2-Long-Aggregate.json │ ├── fle2v2-Rangev2-Long-Aggregate.yml │ ├── fle2v2-Rangev2-Long-Correctness.json │ ├── fle2v2-Rangev2-Long-Correctness.yml │ ├── fle2v2-Rangev2-Long-Delete.json │ ├── fle2v2-Rangev2-Long-Delete.yml │ ├── fle2v2-Rangev2-Long-FindOneAndUpdate.json │ ├── fle2v2-Rangev2-Long-FindOneAndUpdate.yml │ ├── fle2v2-Rangev2-Long-InsertFind.json │ ├── fle2v2-Rangev2-Long-InsertFind.yml │ ├── fle2v2-Rangev2-Long-Update.json │ ├── fle2v2-Rangev2-Long-Update.yml │ ├── fle2v2-Rangev2-WrongType.json │ ├── fle2v2-Rangev2-WrongType.yml │ ├── fle2v2-Update.json │ ├── fle2v2-Update.yml │ ├── fle2v2-validatorAndPartialFieldExpression.json │ ├── fle2v2-validatorAndPartialFieldExpression.yml │ ├── gcpKMS.json │ ├── gcpKMS.yml │ ├── getMore.json │ ├── getMore.yml │ ├── insert.json │ ├── insert.yml │ ├── keyAltName.json │ ├── keyAltName.yml │ ├── keyCache.json │ ├── keyCache.yml │ ├── kmipKMS.json │ ├── kmipKMS.yml │ ├── localKMS.json │ ├── localKMS.yml │ ├── localSchema.json │ ├── localSchema.yml │ ├── malformedCiphertext.json │ ├── malformedCiphertext.yml │ ├── maxWireVersion.json │ ├── maxWireVersion.yml │ ├── missingKey.json │ ├── missingKey.yml │ ├── namedKMS.json │ ├── namedKMS.yml │ ├── noSchema.json │ ├── noSchema.yml │ ├── replaceOne.json │ ├── replaceOne.yml │ ├── timeoutMS.json │ ├── timeoutMS.yml │ ├── types.json │ ├── types.yml │ ├── unsupportedCommand.json │ ├── unsupportedCommand.yml │ ├── updateMany.json │ ├── updateMany.yml │ ├── updateOne.json │ ├── updateOne.yml │ ├── validatorAndPartialFieldExpression.json │ └── validatorAndPartialFieldExpression.yml │ └── unified │ ├── QE-Text-cleanupStructuredEncryptionData.json │ ├── QE-Text-cleanupStructuredEncryptionData.yml │ ├── QE-Text-compactStructuredEncryptionData.json │ ├── QE-Text-compactStructuredEncryptionData.yml │ ├── QE-Text-prefixPreview.json │ ├── QE-Text-prefixPreview.yml │ ├── QE-Text-substringPreview.json │ ├── QE-Text-substringPreview.yml │ ├── QE-Text-suffixPreview.json │ ├── QE-Text-suffixPreview.yml │ ├── addKeyAltName.json │ ├── addKeyAltName.yml │ ├── aggregate.json │ ├── aggregate.yml │ ├── awsTemporary.json │ ├── awsTemporary.yml │ ├── azureKMS.json │ ├── azureKMS.yml │ ├── badQueries.json │ ├── badQueries.yml │ ├── badSchema.json │ ├── badSchema.yml │ ├── basic.json │ ├── basic.yml │ ├── bulk.json │ ├── bulk.yml │ ├── bypassAutoEncryption.json │ ├── bypassAutoEncryption.yml │ ├── bypassedCommand.json │ ├── bypassedCommand.yml │ ├── client-bulkWrite-qe.json │ ├── client-bulkWrite-qe.yml │ ├── count.json │ ├── count.yml │ ├── countDocuments.json │ ├── countDocuments.yml │ ├── create-and-createIndexes.json │ ├── create-and-createIndexes.yml │ ├── createDataKey-kms_providers-invalid.json │ ├── createDataKey-kms_providers-invalid.yml │ ├── createDataKey.json │ ├── createDataKey.yml │ ├── delete.json │ ├── delete.yml │ ├── deleteKey.json │ ├── deleteKey.yml │ ├── distinct.json │ ├── distinct.yml │ ├── explain.json │ ├── explain.yml │ ├── find.json │ ├── find.yml │ ├── findOneAndDelete.json │ ├── findOneAndDelete.yml │ ├── findOneAndReplace.json │ ├── findOneAndReplace.yml │ ├── findOneAndUpdate.json │ ├── findOneAndUpdate.yml │ ├── fle2v2-BypassQueryAnalysis.json │ ├── fle2v2-BypassQueryAnalysis.yml │ ├── fle2v2-Compact.json │ ├── fle2v2-Compact.yml │ ├── fle2v2-CreateCollection-OldServer.json │ ├── fle2v2-CreateCollection-OldServer.yml │ ├── fle2v2-CreateCollection.json │ ├── fle2v2-CreateCollection.yml │ ├── fle2v2-DecryptExistingData.json │ ├── fle2v2-DecryptExistingData.yml │ ├── fle2v2-Delete.json │ ├── fle2v2-Delete.yml │ ├── fle2v2-EncryptedFields-vs-EncryptedFieldsMap.json │ ├── fle2v2-EncryptedFields-vs-EncryptedFieldsMap.yml │ ├── fle2v2-EncryptedFields-vs-jsonSchema.json │ ├── fle2v2-EncryptedFields-vs-jsonSchema.yml │ ├── fle2v2-EncryptedFieldsMap-defaults.json │ ├── fle2v2-EncryptedFieldsMap-defaults.yml │ ├── fle2v2-FindOneAndUpdate.json │ ├── fle2v2-FindOneAndUpdate.yml │ ├── fle2v2-InsertFind-Indexed.json │ ├── fle2v2-InsertFind-Indexed.yml │ ├── fle2v2-InsertFind-Unindexed.json │ ├── fle2v2-InsertFind-Unindexed.yml │ ├── fle2v2-MissingKey.json │ ├── fle2v2-MissingKey.yml │ ├── fle2v2-NoEncryption.json │ ├── fle2v2-NoEncryption.yml │ ├── fle2v2-Rangev2-Compact.json │ ├── fle2v2-Rangev2-Compact.yml │ ├── fle2v2-Rangev2-Date-Aggregate.json │ ├── fle2v2-Rangev2-Date-Aggregate.yml │ ├── fle2v2-Rangev2-Date-Correctness.json │ ├── fle2v2-Rangev2-Date-Correctness.yml │ ├── fle2v2-Rangev2-Date-Delete.json │ ├── fle2v2-Rangev2-Date-Delete.yml │ ├── fle2v2-Rangev2-Date-FindOneAndUpdate.json │ ├── fle2v2-Rangev2-Date-FindOneAndUpdate.yml │ ├── fle2v2-Rangev2-Date-InsertFind.json │ ├── fle2v2-Rangev2-Date-InsertFind.yml │ ├── fle2v2-Rangev2-Date-Update.json │ ├── fle2v2-Rangev2-Date-Update.yml │ ├── fle2v2-Rangev2-Decimal-Aggregate.json │ ├── fle2v2-Rangev2-Decimal-Aggregate.yml │ ├── fle2v2-Rangev2-Decimal-Correctness.json │ ├── fle2v2-Rangev2-Decimal-Correctness.yml │ ├── fle2v2-Rangev2-Decimal-Delete.json │ ├── fle2v2-Rangev2-Decimal-Delete.yml │ ├── fle2v2-Rangev2-Decimal-FindOneAndUpdate.json │ ├── fle2v2-Rangev2-Decimal-FindOneAndUpdate.yml │ ├── fle2v2-Rangev2-Decimal-InsertFind.json │ ├── fle2v2-Rangev2-Decimal-InsertFind.yml │ ├── fle2v2-Rangev2-Decimal-Update.json │ ├── fle2v2-Rangev2-Decimal-Update.yml │ ├── fle2v2-Rangev2-DecimalPrecision-Aggregate.json │ ├── fle2v2-Rangev2-DecimalPrecision-Aggregate.yml │ ├── fle2v2-Rangev2-DecimalPrecision-Correctness.json │ ├── fle2v2-Rangev2-DecimalPrecision-Correctness.yml │ ├── fle2v2-Rangev2-DecimalPrecision-Delete.json │ ├── fle2v2-Rangev2-DecimalPrecision-Delete.yml │ ├── fle2v2-Rangev2-DecimalPrecision-FindOneAndUpdate.json │ ├── fle2v2-Rangev2-DecimalPrecision-FindOneAndUpdate.yml │ ├── fle2v2-Rangev2-DecimalPrecision-InsertFind.json │ ├── fle2v2-Rangev2-DecimalPrecision-InsertFind.yml │ ├── fle2v2-Rangev2-DecimalPrecision-Update.json │ ├── fle2v2-Rangev2-DecimalPrecision-Update.yml │ ├── fle2v2-Rangev2-Defaults.json │ ├── fle2v2-Rangev2-Defaults.yml │ ├── fle2v2-Rangev2-Double-Aggregate.json │ ├── fle2v2-Rangev2-Double-Aggregate.yml │ ├── fle2v2-Rangev2-Double-Correctness.json │ ├── fle2v2-Rangev2-Double-Correctness.yml │ ├── fle2v2-Rangev2-Double-Delete.json │ ├── fle2v2-Rangev2-Double-Delete.yml │ ├── fle2v2-Rangev2-Double-FindOneAndUpdate.json │ ├── fle2v2-Rangev2-Double-FindOneAndUpdate.yml │ ├── fle2v2-Rangev2-Double-InsertFind.json │ ├── fle2v2-Rangev2-Double-InsertFind.yml │ ├── fle2v2-Rangev2-Double-Update.json │ ├── fle2v2-Rangev2-Double-Update.yml │ ├── fle2v2-Rangev2-DoublePrecision-Aggregate.json │ ├── fle2v2-Rangev2-DoublePrecision-Aggregate.yml │ ├── fle2v2-Rangev2-DoublePrecision-Correctness.json │ ├── fle2v2-Rangev2-DoublePrecision-Correctness.yml │ ├── fle2v2-Rangev2-DoublePrecision-Delete.json │ ├── fle2v2-Rangev2-DoublePrecision-Delete.yml │ ├── fle2v2-Rangev2-DoublePrecision-FindOneAndUpdate.json │ ├── fle2v2-Rangev2-DoublePrecision-FindOneAndUpdate.yml │ ├── fle2v2-Rangev2-DoublePrecision-InsertFind.json │ ├── fle2v2-Rangev2-DoublePrecision-InsertFind.yml │ ├── fle2v2-Rangev2-DoublePrecision-Update.json │ ├── fle2v2-Rangev2-DoublePrecision-Update.yml │ ├── fle2v2-Rangev2-Int-Aggregate.json │ ├── fle2v2-Rangev2-Int-Aggregate.yml │ ├── fle2v2-Rangev2-Int-Correctness.json │ ├── fle2v2-Rangev2-Int-Correctness.yml │ ├── fle2v2-Rangev2-Int-Delete.json │ ├── fle2v2-Rangev2-Int-Delete.yml │ ├── fle2v2-Rangev2-Int-FindOneAndUpdate.json │ ├── fle2v2-Rangev2-Int-FindOneAndUpdate.yml │ ├── fle2v2-Rangev2-Int-InsertFind.json │ ├── fle2v2-Rangev2-Int-InsertFind.yml │ ├── fle2v2-Rangev2-Int-Update.json │ ├── fle2v2-Rangev2-Int-Update.yml │ ├── fle2v2-Rangev2-Long-Aggregate.json │ ├── fle2v2-Rangev2-Long-Aggregate.yml │ ├── fle2v2-Rangev2-Long-Correctness.json │ ├── fle2v2-Rangev2-Long-Correctness.yml │ ├── fle2v2-Rangev2-Long-Delete.json │ ├── fle2v2-Rangev2-Long-Delete.yml │ ├── fle2v2-Rangev2-Long-FindOneAndUpdate.json │ ├── fle2v2-Rangev2-Long-FindOneAndUpdate.yml │ ├── fle2v2-Rangev2-Long-InsertFind.json │ ├── fle2v2-Rangev2-Long-InsertFind.yml │ ├── fle2v2-Rangev2-Long-Update.json │ ├── fle2v2-Rangev2-Long-Update.yml │ ├── fle2v2-Rangev2-WrongType.json │ ├── fle2v2-Rangev2-WrongType.yml │ ├── fle2v2-Update.json │ ├── fle2v2-Update.yml │ ├── fle2v2-validatorAndPartialFieldExpression.json │ ├── fle2v2-validatorAndPartialFieldExpression.yml │ ├── gcpKMS.json │ ├── gcpKMS.yml │ ├── getKey.json │ ├── getKey.yml │ ├── getKeyByAltName.json │ ├── getKeyByAltName.yml │ ├── getKeys.json │ ├── getKeys.yml │ ├── getMore.json │ ├── getMore.yml │ ├── insert.json │ ├── insert.yml │ ├── keyAltName.json │ ├── keyAltName.yml │ ├── keyCache.json │ ├── keyCache.yml │ ├── kmipKMS.json │ ├── kmipKMS.yml │ ├── localKMS.json │ ├── localKMS.yml │ ├── localSchema.json │ ├── localSchema.yml │ ├── malformedCiphertext.json │ ├── malformedCiphertext.yml │ ├── maxWireVersion.json │ ├── maxWireVersion.yml │ ├── missingKey.json │ ├── missingKey.yml │ ├── namedKMS-createDataKey.json │ ├── namedKMS-createDataKey.yml │ ├── namedKMS-explicit.json │ ├── namedKMS-explicit.yml │ ├── namedKMS-rewrapManyDataKey.json │ ├── namedKMS-rewrapManyDataKey.yml │ ├── namedKMS.json │ ├── namedKMS.yml │ ├── noSchema.json │ ├── noSchema.yml │ ├── removeKeyAltName.json │ ├── removeKeyAltName.yml │ ├── replaceOne.json │ ├── replaceOne.yml │ ├── rewrapManyDataKey-decrypt_failure.json │ ├── rewrapManyDataKey-decrypt_failure.yml │ ├── rewrapManyDataKey-encrypt_failure.json │ ├── rewrapManyDataKey-encrypt_failure.yml │ ├── rewrapManyDataKey.json │ ├── rewrapManyDataKey.yml │ ├── timeoutMS.json │ ├── timeoutMS.yml │ ├── types.json │ ├── types.yml │ ├── unsupportedCommand.json │ ├── unsupportedCommand.yml │ ├── updateMany.json │ ├── updateMany.yml │ ├── updateOne.json │ ├── updateOne.yml │ ├── validatorAndPartialFieldExpression.json │ └── validatorAndPartialFieldExpression.yml ├── client-side-operations-timeout ├── client-side-operations-timeout.md ├── client-side-operations-timeout.rst ├── etc │ ├── generate-basic-tests.py │ └── templates │ │ ├── deprecated-options.yml.template │ │ ├── global-timeoutMS.yml.template │ │ ├── override-collection-timeoutMS.yml.template │ │ ├── override-database-timeoutMS.yml.template │ │ ├── override-operation-timeoutMS.yml.template │ │ ├── retryability-legacy-timeouts.yml.template │ │ └── retryability-timeoutMS.yml.template └── tests │ ├── README.md │ ├── bulkWrite.json │ ├── bulkWrite.yml │ ├── change-streams.json │ ├── change-streams.yml │ ├── close-cursors.json │ ├── close-cursors.yml │ ├── command-execution.json │ ├── command-execution.yml │ ├── convenient-transactions.json │ ├── convenient-transactions.yml │ ├── cursors.json │ ├── cursors.yml │ ├── deprecated-options.json │ ├── deprecated-options.yml │ ├── error-transformations.json │ ├── error-transformations.yml │ ├── global-timeoutMS.json │ ├── global-timeoutMS.yml │ ├── gridfs-advanced.json │ ├── gridfs-advanced.yml │ ├── gridfs-delete.json │ ├── gridfs-delete.yml │ ├── gridfs-download.json │ ├── gridfs-download.yml │ ├── gridfs-find.json │ ├── gridfs-find.yml │ ├── gridfs-upload.json │ ├── gridfs-upload.yml │ ├── legacy-timeouts.json │ ├── legacy-timeouts.yml │ ├── non-tailable-cursors.json │ ├── non-tailable-cursors.yml │ ├── override-collection-timeoutMS.json │ ├── override-collection-timeoutMS.yml │ ├── override-database-timeoutMS.json │ ├── override-database-timeoutMS.yml │ ├── override-operation-timeoutMS.json │ ├── override-operation-timeoutMS.yml │ ├── retryability-legacy-timeouts.json │ ├── retryability-legacy-timeouts.yml │ ├── retryability-timeoutMS.json │ ├── retryability-timeoutMS.yml │ ├── runCursorCommand.json │ ├── runCursorCommand.yml │ ├── sessions-inherit-timeoutMS.json │ ├── sessions-inherit-timeoutMS.yml │ ├── sessions-override-operation-timeoutMS.json │ ├── sessions-override-operation-timeoutMS.yml │ ├── sessions-override-timeoutMS.json │ ├── sessions-override-timeoutMS.yml │ ├── tailable-awaitData.json │ ├── tailable-awaitData.yml │ ├── tailable-non-awaitData.json │ ├── tailable-non-awaitData.yml │ ├── waitQueueTimeout.json │ └── waitQueueTimeout.yml ├── collation ├── collation.md └── collation.rst ├── collection-management └── tests │ ├── README.md │ ├── clustered-indexes.json │ ├── clustered-indexes.yml │ ├── createCollection-pre_and_post_images.json │ ├── createCollection-pre_and_post_images.yml │ ├── listCollections-rawdata.json │ ├── listCollections-rawdata.yml │ ├── modifyCollection-errorResponse.json │ ├── modifyCollection-errorResponse.yml │ ├── modifyCollection-pre_and_post_images.json │ ├── modifyCollection-pre_and_post_images.yml │ ├── timeseries-collection.json │ └── timeseries-collection.yml ├── command-logging-and-monitoring ├── command-logging-and-monitoring.md ├── command-logging-and-monitoring.rst └── tests │ ├── README.md │ ├── logging │ ├── command.json │ ├── command.yml │ ├── driver-connection-id.json │ ├── driver-connection-id.yml │ ├── no-handshake-messages.json │ ├── no-handshake-messages.yml │ ├── no-heartbeat-messages.json │ ├── no-heartbeat-messages.yml │ ├── operation-id.json │ ├── operation-id.yml │ ├── pre-42-server-connection-id.json │ ├── pre-42-server-connection-id.yml │ ├── redacted-commands.json │ ├── redacted-commands.yml │ ├── server-connection-id.json │ ├── server-connection-id.yml │ ├── service-id.json │ ├── service-id.yml │ ├── unacknowledged-write.json │ └── unacknowledged-write.yml │ └── monitoring │ ├── bulkWrite.json │ ├── bulkWrite.yml │ ├── command.json │ ├── command.yml │ ├── deleteMany.json │ ├── deleteMany.yml │ ├── deleteOne.json │ ├── deleteOne.yml │ ├── find.json │ ├── find.yml │ ├── insertMany.json │ ├── insertMany.yml │ ├── insertOne.json │ ├── insertOne.yml │ ├── pre-42-server-connection-id.json │ ├── pre-42-server-connection-id.yml │ ├── redacted-commands.json │ ├── redacted-commands.yml │ ├── server-connection-id.json │ ├── server-connection-id.yml │ ├── unacknowledged-client-bulkWrite.json │ ├── unacknowledged-client-bulkWrite.yml │ ├── unacknowledgedBulkWrite.json │ ├── unacknowledgedBulkWrite.yml │ ├── updateMany.json │ ├── updateMany.yml │ ├── updateOne.json │ ├── updateOne.yml │ ├── writeConcernError.json │ └── writeConcernError.yml ├── compression ├── OP_COMPRESSED.md └── OP_COMPRESSED.rst ├── conf.py ├── connection-monitoring-and-pooling ├── connection-monitoring-and-pooling.md ├── connection-monitoring-and-pooling.rst └── tests │ ├── README.md │ ├── cmap-format │ ├── README.md │ ├── connection-must-have-id.json │ ├── connection-must-have-id.yml │ ├── connection-must-order-ids.json │ ├── connection-must-order-ids.yml │ ├── pool-checkin-destroy-closed.json │ ├── pool-checkin-destroy-closed.yml │ ├── pool-checkin-destroy-stale.json │ ├── pool-checkin-destroy-stale.yml │ ├── pool-checkin-make-available.json │ ├── pool-checkin-make-available.yml │ ├── pool-checkin.json │ ├── pool-checkin.yml │ ├── pool-checkout-connection.json │ ├── pool-checkout-connection.yml │ ├── pool-checkout-custom-maxConnecting-is-enforced.json │ ├── pool-checkout-custom-maxConnecting-is-enforced.yml │ ├── pool-checkout-error-closed.json │ ├── pool-checkout-error-closed.yml │ ├── pool-checkout-maxConnecting-is-enforced.json │ ├── pool-checkout-maxConnecting-is-enforced.yml │ ├── pool-checkout-maxConnecting-timeout.json │ ├── pool-checkout-maxConnecting-timeout.yml │ ├── pool-checkout-minPoolSize-connection-maxConnecting.json │ ├── pool-checkout-minPoolSize-connection-maxConnecting.yml │ ├── pool-checkout-multiple.json │ ├── pool-checkout-multiple.yml │ ├── pool-checkout-no-idle.json │ ├── pool-checkout-no-idle.yml │ ├── pool-checkout-no-stale.json │ ├── pool-checkout-no-stale.yml │ ├── pool-checkout-returned-connection-maxConnecting.json │ ├── pool-checkout-returned-connection-maxConnecting.yml │ ├── pool-clear-clears-waitqueue.json │ ├── pool-clear-clears-waitqueue.yml │ ├── pool-clear-interrupting-pending-connections.json │ ├── pool-clear-interrupting-pending-connections.yml │ ├── pool-clear-min-size.json │ ├── pool-clear-min-size.yml │ ├── pool-clear-paused.json │ ├── pool-clear-paused.yml │ ├── pool-clear-ready.json │ ├── pool-clear-ready.yml │ ├── pool-clear-schedule-run-interruptInUseConnections-false.json │ ├── pool-clear-schedule-run-interruptInUseConnections-false.yml │ ├── pool-close-destroy-conns.json │ ├── pool-close-destroy-conns.yml │ ├── pool-close.json │ ├── pool-close.yml │ ├── pool-create-max-size.json │ ├── pool-create-max-size.yml │ ├── pool-create-min-size-error.json │ ├── pool-create-min-size-error.yml │ ├── pool-create-min-size.json │ ├── pool-create-min-size.yml │ ├── pool-create-with-options.json │ ├── pool-create-with-options.yml │ ├── pool-create.json │ ├── pool-create.yml │ ├── pool-ready-ready.json │ ├── pool-ready-ready.yml │ ├── pool-ready.json │ ├── pool-ready.yml │ ├── wait-queue-fairness.json │ ├── wait-queue-fairness.yml │ ├── wait-queue-timeout.json │ └── wait-queue-timeout.yml │ └── logging │ ├── connection-logging.json │ ├── connection-logging.yml │ ├── connection-pool-options.json │ └── connection-pool-options.yml ├── connection-string ├── connection-string-spec.md ├── connection-string-spec.rst └── tests │ ├── README.md │ ├── invalid-uris.json │ ├── invalid-uris.yml │ ├── valid-auth.json │ ├── valid-auth.yml │ ├── valid-db-with-dotted-name.json │ ├── valid-db-with-dotted-name.yml │ ├── valid-host_identifiers.json │ ├── valid-host_identifiers.yml │ ├── valid-options.json │ ├── valid-options.yml │ ├── valid-unix_socket-absolute.json │ ├── valid-unix_socket-absolute.yml │ ├── valid-unix_socket-relative.json │ ├── valid-unix_socket-relative.yml │ ├── valid-warnings.json │ └── valid-warnings.yml ├── connections-survive-step-down └── tests │ └── README.md ├── crud ├── bulk-write.md ├── crud.md ├── crud.rst └── tests │ ├── README.md │ └── unified │ ├── aggregate-allowdiskuse.json │ ├── aggregate-allowdiskuse.yml │ ├── aggregate-collation.json │ ├── aggregate-collation.yml │ ├── aggregate-let.json │ ├── aggregate-let.yml │ ├── aggregate-merge-errorResponse.json │ ├── aggregate-merge-errorResponse.yml │ ├── aggregate-merge.json │ ├── aggregate-merge.yml │ ├── aggregate-out-readConcern.json │ ├── aggregate-out-readConcern.yml │ ├── aggregate-out.json │ ├── aggregate-out.yml │ ├── aggregate-rawdata.json │ ├── aggregate-rawdata.yml │ ├── aggregate-write-readPreference.json │ ├── aggregate-write-readPreference.yml │ ├── aggregate.json │ ├── aggregate.yml │ ├── bulkWrite-arrayFilters-clientError.json │ ├── bulkWrite-arrayFilters-clientError.yml │ ├── bulkWrite-arrayFilters.json │ ├── bulkWrite-arrayFilters.yml │ ├── bulkWrite-collation.json │ ├── bulkWrite-collation.yml │ ├── bulkWrite-comment.json │ ├── bulkWrite-comment.yml │ ├── bulkWrite-delete-hint-clientError.json │ ├── bulkWrite-delete-hint-clientError.yml │ ├── bulkWrite-delete-hint-serverError.json │ ├── bulkWrite-delete-hint-serverError.yml │ ├── bulkWrite-delete-hint.json │ ├── bulkWrite-delete-hint.yml │ ├── bulkWrite-deleteMany-hint-unacknowledged.json │ ├── bulkWrite-deleteMany-hint-unacknowledged.yml │ ├── bulkWrite-deleteMany-let.json │ ├── bulkWrite-deleteMany-let.yml │ ├── bulkWrite-deleteMany-rawdata.json │ ├── bulkWrite-deleteMany-rawdata.yml │ ├── bulkWrite-deleteOne-hint-unacknowledged.json │ ├── bulkWrite-deleteOne-hint-unacknowledged.yml │ ├── bulkWrite-deleteOne-let.json │ ├── bulkWrite-deleteOne-let.yml │ ├── bulkWrite-deleteOne-rawdata.json │ ├── bulkWrite-deleteOne-rawdata.yml │ ├── bulkWrite-errorResponse.json │ ├── bulkWrite-errorResponse.yml │ ├── bulkWrite-insertOne-dots_and_dollars.json │ ├── bulkWrite-insertOne-dots_and_dollars.yml │ ├── bulkWrite-replaceOne-dots_and_dollars.json │ ├── bulkWrite-replaceOne-dots_and_dollars.yml │ ├── bulkWrite-replaceOne-hint-unacknowledged.json │ ├── bulkWrite-replaceOne-hint-unacknowledged.yml │ ├── bulkWrite-replaceOne-let.json │ ├── bulkWrite-replaceOne-let.yml │ ├── bulkWrite-replaceOne-rawdata.json │ ├── bulkWrite-replaceOne-rawdata.yml │ ├── bulkWrite-replaceOne-sort.json │ ├── bulkWrite-replaceOne-sort.yml │ ├── bulkWrite-update-hint-clientError.json │ ├── bulkWrite-update-hint-clientError.yml │ ├── bulkWrite-update-hint-serverError.json │ ├── bulkWrite-update-hint-serverError.yml │ ├── bulkWrite-update-hint.json │ ├── bulkWrite-update-hint.yml │ ├── bulkWrite-update-validation.json │ ├── bulkWrite-update-validation.yml │ ├── bulkWrite-updateMany-dots_and_dollars.json │ ├── bulkWrite-updateMany-dots_and_dollars.yml │ ├── bulkWrite-updateMany-hint-unacknowledged.json │ ├── bulkWrite-updateMany-hint-unacknowledged.yml │ ├── bulkWrite-updateMany-let.json │ ├── bulkWrite-updateMany-let.yml │ ├── bulkWrite-updateMany-pipeline.json │ ├── bulkWrite-updateMany-pipeline.yml │ ├── bulkWrite-updateMany-rawdata.json │ ├── bulkWrite-updateMany-rawdata.yml │ ├── bulkWrite-updateOne-dots_and_dollars.json │ ├── bulkWrite-updateOne-dots_and_dollars.yml │ ├── bulkWrite-updateOne-hint-unacknowledged.json │ ├── bulkWrite-updateOne-hint-unacknowledged.yml │ ├── bulkWrite-updateOne-let.json │ ├── bulkWrite-updateOne-let.yml │ ├── bulkWrite-updateOne-pipeline.json │ ├── bulkWrite-updateOne-pipeline.yml │ ├── bulkWrite-updateOne-rawdata.json │ ├── bulkWrite-updateOne-rawdata.yml │ ├── bulkWrite-updateOne-sort.json │ ├── bulkWrite-updateOne-sort.yml │ ├── bulkWrite.json │ ├── bulkWrite.yml │ ├── bypassDocumentValidation.json │ ├── bypassDocumentValidation.yml │ ├── client-bulkWrite-delete-options.json │ ├── client-bulkWrite-delete-options.yml │ ├── client-bulkWrite-delete-rawdata.json │ ├── client-bulkWrite-delete-rawdata.yml │ ├── client-bulkWrite-errorResponse.json │ ├── client-bulkWrite-errorResponse.yml │ ├── client-bulkWrite-errors.json │ ├── client-bulkWrite-errors.yml │ ├── client-bulkWrite-mixed-namespaces.json │ ├── client-bulkWrite-mixed-namespaces.yml │ ├── client-bulkWrite-options.json │ ├── client-bulkWrite-options.yml │ ├── client-bulkWrite-ordered.json │ ├── client-bulkWrite-ordered.yml │ ├── client-bulkWrite-partialResults.json │ ├── client-bulkWrite-partialResults.yml │ ├── client-bulkWrite-replaceOne-rawdata.json │ ├── client-bulkWrite-replaceOne-rawdata.yml │ ├── client-bulkWrite-replaceOne-sort.json │ ├── client-bulkWrite-replaceOne-sort.yml │ ├── client-bulkWrite-results.json │ ├── client-bulkWrite-results.yml │ ├── client-bulkWrite-update-options.json │ ├── client-bulkWrite-update-options.yml │ ├── client-bulkWrite-update-pipeline.json │ ├── client-bulkWrite-update-pipeline.yml │ ├── client-bulkWrite-update-rawdata.json │ ├── client-bulkWrite-update-rawdata.yml │ ├── client-bulkWrite-update-validation.json │ ├── client-bulkWrite-update-validation.yml │ ├── client-bulkWrite-updateOne-sort.json │ ├── client-bulkWrite-updateOne-sort.yml │ ├── count-collation.json │ ├── count-collation.yml │ ├── count-empty.json │ ├── count-empty.yml │ ├── count-rawdata.json │ ├── count-rawdata.yml │ ├── count.json │ ├── count.yml │ ├── countDocuments-comment.json │ ├── countDocuments-comment.yml │ ├── countDocuments-rawdata.json │ ├── countDocuments-rawdata.yml │ ├── create-null-ids.json │ ├── create-null-ids.yml │ ├── db-aggregate-rawdata.json │ ├── db-aggregate-rawdata.yml │ ├── db-aggregate-write-readPreference.json │ ├── db-aggregate-write-readPreference.yml │ ├── db-aggregate.json │ ├── db-aggregate.yml │ ├── deleteMany-collation.json │ ├── deleteMany-collation.yml │ ├── deleteMany-comment.json │ ├── deleteMany-comment.yml │ ├── deleteMany-hint-clientError.json │ ├── deleteMany-hint-clientError.yml │ ├── deleteMany-hint-serverError.json │ ├── deleteMany-hint-serverError.yml │ ├── deleteMany-hint-unacknowledged.json │ ├── deleteMany-hint-unacknowledged.yml │ ├── deleteMany-hint.json │ ├── deleteMany-hint.yml │ ├── deleteMany-let.json │ ├── deleteMany-let.yml │ ├── deleteMany-rawdata.json │ ├── deleteMany-rawdata.yml │ ├── deleteMany.json │ ├── deleteMany.yml │ ├── deleteOne-collation.json │ ├── deleteOne-collation.yml │ ├── deleteOne-comment.json │ ├── deleteOne-comment.yml │ ├── deleteOne-errorResponse.json │ ├── deleteOne-errorResponse.yml │ ├── deleteOne-hint-clientError.json │ ├── deleteOne-hint-clientError.yml │ ├── deleteOne-hint-serverError.json │ ├── deleteOne-hint-serverError.yml │ ├── deleteOne-hint-unacknowledged.json │ ├── deleteOne-hint-unacknowledged.yml │ ├── deleteOne-hint.json │ ├── deleteOne-hint.yml │ ├── deleteOne-let.json │ ├── deleteOne-let.yml │ ├── deleteOne-rawdata.json │ ├── deleteOne-rawdata.yml │ ├── deleteOne.json │ ├── deleteOne.yml │ ├── distinct-collation.json │ ├── distinct-collation.yml │ ├── distinct-comment.json │ ├── distinct-comment.yml │ ├── distinct-hint.json │ ├── distinct-hint.yml │ ├── distinct-rawdata.json │ ├── distinct-rawdata.yml │ ├── distinct.json │ ├── distinct.yml │ ├── estimatedDocumentCount-comment.json │ ├── estimatedDocumentCount-comment.yml │ ├── estimatedDocumentCount-rawdata.json │ ├── estimatedDocumentCount-rawdata.yml │ ├── estimatedDocumentCount.json │ ├── estimatedDocumentCount.yml │ ├── find-allowdiskuse-clientError.json │ ├── find-allowdiskuse-clientError.yml │ ├── find-allowdiskuse-serverError.json │ ├── find-allowdiskuse-serverError.yml │ ├── find-allowdiskuse.json │ ├── find-allowdiskuse.yml │ ├── find-collation.json │ ├── find-collation.yml │ ├── find-comment.json │ ├── find-comment.yml │ ├── find-let.json │ ├── find-let.yml │ ├── find-rawdata.json │ ├── find-rawdata.yml │ ├── find.json │ ├── find.yml │ ├── findOne.json │ ├── findOne.yml │ ├── findOneAndDelete-collation.json │ ├── findOneAndDelete-collation.yml │ ├── findOneAndDelete-comment.json │ ├── findOneAndDelete-comment.yml │ ├── findOneAndDelete-hint-clientError.json │ ├── findOneAndDelete-hint-clientError.yml │ ├── findOneAndDelete-hint-serverError.json │ ├── findOneAndDelete-hint-serverError.yml │ ├── findOneAndDelete-hint-unacknowledged.json │ ├── findOneAndDelete-hint-unacknowledged.yml │ ├── findOneAndDelete-hint.json │ ├── findOneAndDelete-hint.yml │ ├── findOneAndDelete-let.json │ ├── findOneAndDelete-let.yml │ ├── findOneAndDelete-rawdata.json │ ├── findOneAndDelete-rawdata.yml │ ├── findOneAndDelete.json │ ├── findOneAndDelete.yml │ ├── findOneAndReplace-collation.json │ ├── findOneAndReplace-collation.yml │ ├── findOneAndReplace-comment.json │ ├── findOneAndReplace-comment.yml │ ├── findOneAndReplace-dots_and_dollars.json │ ├── findOneAndReplace-dots_and_dollars.yml │ ├── findOneAndReplace-hint-clientError.json │ ├── findOneAndReplace-hint-clientError.yml │ ├── findOneAndReplace-hint-serverError.json │ ├── findOneAndReplace-hint-serverError.yml │ ├── findOneAndReplace-hint-unacknowledged.json │ ├── findOneAndReplace-hint-unacknowledged.yml │ ├── findOneAndReplace-hint.json │ ├── findOneAndReplace-hint.yml │ ├── findOneAndReplace-let.json │ ├── findOneAndReplace-let.yml │ ├── findOneAndReplace-rawdata.json │ ├── findOneAndReplace-rawdata.yml │ ├── findOneAndReplace-upsert.json │ ├── findOneAndReplace-upsert.yml │ ├── findOneAndReplace.json │ ├── findOneAndReplace.yml │ ├── findOneAndUpdate-arrayFilters.json │ ├── findOneAndUpdate-arrayFilters.yml │ ├── findOneAndUpdate-collation.json │ ├── findOneAndUpdate-collation.yml │ ├── findOneAndUpdate-comment.json │ ├── findOneAndUpdate-comment.yml │ ├── findOneAndUpdate-dots_and_dollars.json │ ├── findOneAndUpdate-dots_and_dollars.yml │ ├── findOneAndUpdate-errorResponse.json │ ├── findOneAndUpdate-errorResponse.yml │ ├── findOneAndUpdate-hint-clientError.json │ ├── findOneAndUpdate-hint-clientError.yml │ ├── findOneAndUpdate-hint-serverError.json │ ├── findOneAndUpdate-hint-serverError.yml │ ├── findOneAndUpdate-hint-unacknowledged.json │ ├── findOneAndUpdate-hint-unacknowledged.yml │ ├── findOneAndUpdate-hint.json │ ├── findOneAndUpdate-hint.yml │ ├── findOneAndUpdate-let.json │ ├── findOneAndUpdate-let.yml │ ├── findOneAndUpdate-pipeline.json │ ├── findOneAndUpdate-pipeline.yml │ ├── findOneAndUpdate-rawdata.json │ ├── findOneAndUpdate-rawdata.yml │ ├── findOneAndUpdate.json │ ├── findOneAndUpdate.yml │ ├── insertMany-comment.json │ ├── insertMany-comment.yml │ ├── insertMany-dots_and_dollars.json │ ├── insertMany-dots_and_dollars.yml │ ├── insertMany-rawdata.json │ ├── insertMany-rawdata.yml │ ├── insertMany.json │ ├── insertMany.yml │ ├── insertOne-comment.json │ ├── insertOne-comment.yml │ ├── insertOne-dots_and_dollars.json │ ├── insertOne-dots_and_dollars.yml │ ├── insertOne-errorResponse.json │ ├── insertOne-errorResponse.yml │ ├── insertOne-rawdata.json │ ├── insertOne-rawdata.yml │ ├── insertOne.json │ ├── insertOne.yml │ ├── replaceOne-collation.json │ ├── replaceOne-collation.yml │ ├── replaceOne-comment.json │ ├── replaceOne-comment.yml │ ├── replaceOne-dots_and_dollars.json │ ├── replaceOne-dots_and_dollars.yml │ ├── replaceOne-hint-unacknowledged.json │ ├── replaceOne-hint-unacknowledged.yml │ ├── replaceOne-hint.json │ ├── replaceOne-hint.yml │ ├── replaceOne-let.json │ ├── replaceOne-let.yml │ ├── replaceOne-rawdata.json │ ├── replaceOne-rawdata.yml │ ├── replaceOne-sort.json │ ├── replaceOne-sort.yml │ ├── replaceOne-validation.json │ ├── replaceOne-validation.yml │ ├── replaceOne.json │ ├── replaceOne.yml │ ├── updateMany-arrayFilters.json │ ├── updateMany-arrayFilters.yml │ ├── updateMany-collation.json │ ├── updateMany-collation.yml │ ├── updateMany-comment.json │ ├── updateMany-comment.yml │ ├── updateMany-dots_and_dollars.json │ ├── updateMany-dots_and_dollars.yml │ ├── updateMany-hint-clientError.json │ ├── updateMany-hint-clientError.yml │ ├── updateMany-hint-serverError.json │ ├── updateMany-hint-serverError.yml │ ├── updateMany-hint-unacknowledged.json │ ├── updateMany-hint-unacknowledged.yml │ ├── updateMany-hint.json │ ├── updateMany-hint.yml │ ├── updateMany-let.json │ ├── updateMany-let.yml │ ├── updateMany-pipeline.json │ ├── updateMany-pipeline.yml │ ├── updateMany-rawdata.json │ ├── updateMany-rawdata.yml │ ├── updateMany-validation.json │ ├── updateMany-validation.yml │ ├── updateMany.json │ ├── updateMany.yml │ ├── updateOne-arrayFilters.json │ ├── updateOne-arrayFilters.yml │ ├── updateOne-collation.json │ ├── updateOne-collation.yml │ ├── updateOne-comment.json │ ├── updateOne-comment.yml │ ├── updateOne-dots_and_dollars.json │ ├── updateOne-dots_and_dollars.yml │ ├── updateOne-errorResponse.json │ ├── updateOne-errorResponse.yml │ ├── updateOne-hint-clientError.json │ ├── updateOne-hint-clientError.yml │ ├── updateOne-hint-serverError.json │ ├── updateOne-hint-serverError.yml │ ├── updateOne-hint-unacknowledged.json │ ├── updateOne-hint-unacknowledged.yml │ ├── updateOne-hint.json │ ├── updateOne-hint.yml │ ├── updateOne-let.json │ ├── updateOne-let.yml │ ├── updateOne-pipeline.json │ ├── updateOne-pipeline.yml │ ├── updateOne-rawdata.json │ ├── updateOne-rawdata.yml │ ├── updateOne-sort.json │ ├── updateOne-sort.yml │ ├── updateOne-validation.json │ ├── updateOne-validation.yml │ ├── updateOne.json │ └── updateOne.yml ├── dbref.rst ├── dbref └── dbref.md ├── driver-bulk-update.rst ├── driver-mantras.md ├── enumerate-collections.rst ├── enumerate-collections └── enumerate-collections.md ├── enumerate-databases.rst ├── enumerate-databases └── enumerate-databases.md ├── etc └── generate-handshakeError-tests.py ├── extended-json.rst ├── extended-json └── extended-json.md ├── extra.css ├── faas-automated-testing ├── faas-automated-testing.md └── faas-automated-testing.rst ├── find_getmore_killcursors_commands.rst ├── find_getmore_killcursors_commands └── find_getmore_killcursors_commands.md ├── gridfs ├── gridfs-spec.md ├── gridfs-spec.rst └── tests │ ├── README.md │ ├── delete.json │ ├── delete.yml │ ├── deleteByName.json │ ├── deleteByName.yml │ ├── download.json │ ├── download.yml │ ├── downloadByName.json │ ├── downloadByName.yml │ ├── rename.json │ ├── rename.yml │ ├── renameByName.json │ ├── renameByName.yml │ ├── upload-disableMD5.json │ ├── upload-disableMD5.yml │ ├── upload.json │ └── upload.yml ├── index-management ├── index-management.md ├── index-management.rst └── tests │ ├── README.md │ ├── createSearchIndex.json │ ├── createSearchIndex.yml │ ├── createSearchIndexes.json │ ├── createSearchIndexes.yml │ ├── dropSearchIndex.json │ ├── dropSearchIndex.yml │ ├── index-rawdata.json │ ├── index-rawdata.yml │ ├── listSearchIndexes.json │ ├── listSearchIndexes.yml │ ├── searchIndexIgnoresReadWriteConcern.json │ ├── searchIndexIgnoresReadWriteConcern.yml │ ├── updateSearchIndex.json │ └── updateSearchIndex.yml ├── index.md ├── index.rst ├── initial-dns-seedlist-discovery ├── initial-dns-seedlist-discovery.md ├── initial-dns-seedlist-discovery.rst └── tests │ ├── README.md │ ├── load-balanced │ ├── loadBalanced-directConnection.json │ ├── loadBalanced-directConnection.yml │ ├── loadBalanced-no-results.json │ ├── loadBalanced-no-results.yml │ ├── loadBalanced-replicaSet-errors.json │ ├── loadBalanced-replicaSet-errors.yml │ ├── loadBalanced-true-multiple-hosts.json │ ├── loadBalanced-true-multiple-hosts.yml │ ├── loadBalanced-true-txt.json │ ├── loadBalanced-true-txt.yml │ ├── srvMaxHosts-conflicts_with_loadBalanced-true-txt.json │ ├── srvMaxHosts-conflicts_with_loadBalanced-true-txt.yml │ ├── srvMaxHosts-conflicts_with_loadBalanced-true.json │ ├── srvMaxHosts-conflicts_with_loadBalanced-true.yml │ ├── srvMaxHosts-zero-txt.json │ ├── srvMaxHosts-zero-txt.yml │ ├── srvMaxHosts-zero.json │ └── srvMaxHosts-zero.yml │ ├── replica-set │ ├── dbname-with-commas-escaped.json │ ├── dbname-with-commas-escaped.yml │ ├── dbname-with-commas.json │ ├── dbname-with-commas.yml │ ├── direct-connection-false.json │ ├── direct-connection-false.yml │ ├── direct-connection-true.json │ ├── direct-connection-true.yml │ ├── encoded-userinfo-and-db.json │ ├── encoded-userinfo-and-db.yml │ ├── loadBalanced-false-txt.json │ ├── loadBalanced-false-txt.yml │ ├── longer-parent-in-return.json │ ├── longer-parent-in-return.yml │ ├── misformatted-option.json │ ├── misformatted-option.yml │ ├── no-results.json │ ├── no-results.yml │ ├── not-enough-parts.json │ ├── not-enough-parts.yml │ ├── one-result-default-port.json │ ├── one-result-default-port.yml │ ├── one-txt-record-multiple-strings.json │ ├── one-txt-record-multiple-strings.yml │ ├── one-txt-record.json │ ├── one-txt-record.yml │ ├── parent-part-mismatch1.json │ ├── parent-part-mismatch1.yml │ ├── parent-part-mismatch2.json │ ├── parent-part-mismatch2.yml │ ├── parent-part-mismatch3.json │ ├── parent-part-mismatch3.yml │ ├── parent-part-mismatch4.json │ ├── parent-part-mismatch4.yml │ ├── parent-part-mismatch5.json │ ├── parent-part-mismatch5.yml │ ├── returned-parent-too-short.json │ ├── returned-parent-too-short.yml │ ├── returned-parent-wrong.json │ ├── returned-parent-wrong.yml │ ├── srv-service-name.json │ ├── srv-service-name.yml │ ├── srvMaxHosts-conflicts_with_replicaSet-txt.json │ ├── srvMaxHosts-conflicts_with_replicaSet-txt.yml │ ├── srvMaxHosts-conflicts_with_replicaSet.json │ ├── srvMaxHosts-conflicts_with_replicaSet.yml │ ├── srvMaxHosts-equal_to_srv_records.json │ ├── srvMaxHosts-equal_to_srv_records.yml │ ├── srvMaxHosts-greater_than_srv_records.json │ ├── srvMaxHosts-greater_than_srv_records.yml │ ├── srvMaxHosts-less_than_srv_records.json │ ├── srvMaxHosts-less_than_srv_records.yml │ ├── srvMaxHosts-zero-txt.json │ ├── srvMaxHosts-zero-txt.yml │ ├── srvMaxHosts-zero.json │ ├── srvMaxHosts-zero.yml │ ├── two-results-default-port.json │ ├── two-results-default-port.yml │ ├── two-results-nonstandard-port.json │ ├── two-results-nonstandard-port.yml │ ├── two-txt-records.json │ ├── two-txt-records.yml │ ├── txt-record-not-allowed-option.json │ ├── txt-record-not-allowed-option.yml │ ├── txt-record-with-overridden-ssl-option.json │ ├── txt-record-with-overridden-ssl-option.yml │ ├── txt-record-with-overridden-uri-option.json │ ├── txt-record-with-overridden-uri-option.yml │ ├── txt-record-with-unallowed-option.json │ ├── txt-record-with-unallowed-option.yml │ ├── uri-with-admin-database.json │ ├── uri-with-admin-database.yml │ ├── uri-with-auth.json │ ├── uri-with-auth.yml │ ├── uri-with-port.json │ ├── uri-with-port.yml │ ├── uri-with-two-hosts.json │ ├── uri-with-two-hosts.yml │ ├── uri-with-uppercase-hostname.json │ └── uri-with-uppercase-hostname.yml │ └── sharded │ ├── srvMaxHosts-equal_to_srv_records.json │ ├── srvMaxHosts-equal_to_srv_records.yml │ ├── srvMaxHosts-greater_than_srv_records.json │ ├── srvMaxHosts-greater_than_srv_records.yml │ ├── srvMaxHosts-less_than_srv_records.json │ ├── srvMaxHosts-less_than_srv_records.yml │ ├── srvMaxHosts-zero.json │ └── srvMaxHosts-zero.yml ├── load-balancers ├── load-balancers.md ├── load-balancers.rst └── tests │ ├── README.md │ ├── cursors.json │ ├── cursors.yml │ ├── event-monitoring.json │ ├── event-monitoring.yml │ ├── lb-connection-establishment.json │ ├── lb-connection-establishment.yml │ ├── non-lb-connection-establishment.json │ ├── non-lb-connection-establishment.yml │ ├── sdam-error-handling.json │ ├── sdam-error-handling.yml │ ├── server-selection.json │ ├── server-selection.yml │ ├── transactions.json │ ├── transactions.yml │ ├── wait-queue-timeouts.json │ └── wait-queue-timeouts.yml ├── logging ├── logging.md └── logging.rst ├── max-staleness ├── max-staleness-tests.md ├── max-staleness-tests.rst ├── max-staleness.md ├── max-staleness.rst ├── test_max_staleness_spo.py ├── test_staleness_estimate.py └── tests │ ├── README.md │ ├── ReplicaSetNoPrimary │ ├── DefaultNoMaxStaleness.json │ ├── DefaultNoMaxStaleness.yml │ ├── LastUpdateTime.json │ ├── LastUpdateTime.yml │ ├── MaxStalenessTooSmall.json │ ├── MaxStalenessTooSmall.yml │ ├── Nearest.json │ ├── Nearest.yml │ ├── Nearest2.json │ ├── Nearest2.yml │ ├── NoKnownServers.json │ ├── NoKnownServers.yml │ ├── OneKnownTwoUnavailable.json │ ├── OneKnownTwoUnavailable.yml │ ├── PrimaryPreferred.json │ ├── PrimaryPreferred.yml │ ├── PrimaryPreferred_tags.json │ ├── PrimaryPreferred_tags.yml │ ├── Secondary.json │ ├── Secondary.yml │ ├── SecondaryPreferred.json │ ├── SecondaryPreferred.yml │ ├── SecondaryPreferred_tags.json │ ├── SecondaryPreferred_tags.yml │ ├── ZeroMaxStaleness.json │ └── ZeroMaxStaleness.yml │ ├── ReplicaSetWithPrimary │ ├── DefaultNoMaxStaleness.json │ ├── DefaultNoMaxStaleness.yml │ ├── LastUpdateTime.json │ ├── LastUpdateTime.yml │ ├── LongHeartbeat.json │ ├── LongHeartbeat.yml │ ├── LongHeartbeat2.json │ ├── LongHeartbeat2.yml │ ├── MaxStalenessTooSmall.json │ ├── MaxStalenessTooSmall.yml │ ├── MaxStalenessWithModePrimary.json │ ├── MaxStalenessWithModePrimary.yml │ ├── Nearest.json │ ├── Nearest.yml │ ├── Nearest2.json │ ├── Nearest2.yml │ ├── Nearest_tags.json │ ├── Nearest_tags.yml │ ├── PrimaryPreferred.json │ ├── PrimaryPreferred.yml │ ├── SecondaryPreferred.json │ ├── SecondaryPreferred.yml │ ├── SecondaryPreferred_tags.json │ ├── SecondaryPreferred_tags.yml │ ├── SecondaryPreferred_tags2.json │ ├── SecondaryPreferred_tags2.yml │ ├── Secondary_tags.json │ ├── Secondary_tags.yml │ ├── Secondary_tags2.json │ ├── Secondary_tags2.yml │ ├── ZeroMaxStaleness.json │ └── ZeroMaxStaleness.yml │ ├── Sharded │ ├── SmallMaxStaleness.json │ └── SmallMaxStaleness.yml │ ├── Single │ ├── SmallMaxStaleness.json │ └── SmallMaxStaleness.yml │ └── Unknown │ ├── SmallMaxStaleness.json │ └── SmallMaxStaleness.yml ├── message ├── OP_MSG.md └── OP_MSG.rst ├── mongodb-handshake ├── handshake.md ├── handshake.rst └── tests │ ├── README.md │ └── unified │ ├── metadata-not-propagated.json │ └── metadata-not-propagated.yml ├── objectid.rst ├── ocsp-support ├── ocsp-support.md ├── ocsp-support.rst └── tests │ └── README.md ├── open-telemetry ├── open-telemetry.md └── tests │ ├── README.md │ ├── operation │ ├── aggregate.json │ ├── aggregate.yml │ ├── atlas_search.json │ ├── atlas_search.yml │ ├── bulk_write.json │ ├── bulk_write.yml │ ├── count.json │ ├── count.yml │ ├── create_collection.json │ ├── create_collection.yml │ ├── create_indexes.json │ ├── create_indexes.yml │ ├── delete.json │ ├── delete.yml │ ├── distinct.json │ ├── distinct.yml │ ├── drop_collection.json │ ├── drop_collection.yml │ ├── drop_indexes.json │ ├── drop_indexes.yml │ ├── find.json │ ├── find.yml │ ├── find_and_modify.json │ ├── find_and_modify.yml │ ├── find_without_query_text.json │ ├── find_without_query_text.yml │ ├── insert.json │ ├── insert.yml │ ├── list_collections.json │ ├── list_collections.yml │ ├── list_databases.json │ ├── list_databases.yml │ ├── list_indexes.json │ ├── list_indexes.yml │ ├── map_reduce.json │ ├── map_reduce.yml │ ├── retries.json │ ├── retries.yml │ ├── update.json │ └── update.yml │ └── transaction │ ├── convenient.json │ ├── convenient.yml │ ├── core_api.json │ └── core_api.yml ├── polling-srv-records-for-mongos-discovery ├── polling-srv-records-for-mongos-discovery.md ├── polling-srv-records-for-mongos-discovery.rst └── tests │ └── README.md ├── read-write-concern ├── read-write-concern.md ├── read-write-concern.rst └── tests │ ├── README.md │ ├── connection-string │ ├── read-concern.json │ ├── read-concern.yml │ ├── write-concern.json │ └── write-concern.yml │ ├── document │ ├── read-concern.json │ ├── read-concern.yml │ ├── write-concern.json │ └── write-concern.yml │ └── operation │ ├── default-write-concern-2.6.json │ ├── default-write-concern-2.6.yml │ ├── default-write-concern-3.2.json │ ├── default-write-concern-3.2.yml │ ├── default-write-concern-3.4.json │ ├── default-write-concern-3.4.yml │ ├── default-write-concern-4.2.json │ └── default-write-concern-4.2.yml ├── requirements.txt ├── retryable-reads ├── retryable-reads.md ├── retryable-reads.rst └── tests │ ├── README.md │ ├── etc │ └── templates │ │ └── handshakeError.yml.template │ └── unified │ ├── aggregate-merge.json │ ├── aggregate-merge.yml │ ├── aggregate-serverErrors.json │ ├── aggregate-serverErrors.yml │ ├── aggregate.json │ ├── aggregate.yml │ ├── changeStreams-client.watch-serverErrors.json │ ├── changeStreams-client.watch-serverErrors.yml │ ├── changeStreams-client.watch.json │ ├── changeStreams-client.watch.yml │ ├── changeStreams-db.coll.watch-serverErrors.json │ ├── changeStreams-db.coll.watch-serverErrors.yml │ ├── changeStreams-db.coll.watch.json │ ├── changeStreams-db.coll.watch.yml │ ├── changeStreams-db.watch-serverErrors.json │ ├── changeStreams-db.watch-serverErrors.yml │ ├── changeStreams-db.watch.json │ ├── changeStreams-db.watch.yml │ ├── count-serverErrors.json │ ├── count-serverErrors.yml │ ├── count.json │ ├── count.yml │ ├── countDocuments-serverErrors.json │ ├── countDocuments-serverErrors.yml │ ├── countDocuments.json │ ├── countDocuments.yml │ ├── distinct-serverErrors.json │ ├── distinct-serverErrors.yml │ ├── distinct.json │ ├── distinct.yml │ ├── estimatedDocumentCount-serverErrors.json │ ├── estimatedDocumentCount-serverErrors.yml │ ├── estimatedDocumentCount.json │ ├── estimatedDocumentCount.yml │ ├── exceededTimeLimit.json │ ├── exceededTimeLimit.yml │ ├── find-serverErrors.json │ ├── find-serverErrors.yml │ ├── find.json │ ├── find.yml │ ├── findOne-serverErrors.json │ ├── findOne-serverErrors.yml │ ├── findOne.json │ ├── findOne.yml │ ├── gridfs-download-serverErrors.json │ ├── gridfs-download-serverErrors.yml │ ├── gridfs-download.json │ ├── gridfs-download.yml │ ├── gridfs-downloadByName-serverErrors.json │ ├── gridfs-downloadByName-serverErrors.yml │ ├── gridfs-downloadByName.json │ ├── gridfs-downloadByName.yml │ ├── handshakeError.json │ ├── handshakeError.yml │ ├── listCollectionNames-serverErrors.json │ ├── listCollectionNames-serverErrors.yml │ ├── listCollectionNames.json │ ├── listCollectionNames.yml │ ├── listCollectionObjects-serverErrors.json │ ├── listCollectionObjects-serverErrors.yml │ ├── listCollectionObjects.json │ ├── listCollectionObjects.yml │ ├── listCollections-serverErrors.json │ ├── listCollections-serverErrors.yml │ ├── listCollections.json │ ├── listCollections.yml │ ├── listDatabaseNames-serverErrors.json │ ├── listDatabaseNames-serverErrors.yml │ ├── listDatabaseNames.json │ ├── listDatabaseNames.yml │ ├── listDatabaseObjects-serverErrors.json │ ├── listDatabaseObjects-serverErrors.yml │ ├── listDatabaseObjects.json │ ├── listDatabaseObjects.yml │ ├── listDatabases-serverErrors.json │ ├── listDatabases-serverErrors.yml │ ├── listDatabases.json │ ├── listDatabases.yml │ ├── listIndexNames-serverErrors.json │ ├── listIndexNames-serverErrors.yml │ ├── listIndexNames.json │ ├── listIndexNames.yml │ ├── listIndexes-serverErrors.json │ ├── listIndexes-serverErrors.yml │ ├── listIndexes.json │ ├── listIndexes.yml │ ├── mapReduce.json │ ├── mapReduce.yml │ ├── readConcernMajorityNotAvailableYet.json │ └── readConcernMajorityNotAvailableYet.yml ├── retryable-writes ├── retryable-writes.md ├── retryable-writes.rst └── tests │ ├── README.md │ ├── etc │ └── templates │ │ └── handshakeError.yml.template │ └── unified │ ├── aggregate-out-merge.json │ ├── aggregate-out-merge.yml │ ├── bulkWrite-errorLabels.json │ ├── bulkWrite-errorLabels.yml │ ├── bulkWrite-serverErrors.json │ ├── bulkWrite-serverErrors.yml │ ├── bulkWrite.json │ ├── bulkWrite.yml │ ├── client-bulkWrite-clientErrors.json │ ├── client-bulkWrite-clientErrors.yml │ ├── client-bulkWrite-serverErrors.json │ ├── client-bulkWrite-serverErrors.yml │ ├── deleteMany.json │ ├── deleteMany.yml │ ├── deleteOne-errorLabels.json │ ├── deleteOne-errorLabels.yml │ ├── deleteOne-serverErrors.json │ ├── deleteOne-serverErrors.yml │ ├── deleteOne.json │ ├── deleteOne.yml │ ├── findOneAndDelete-errorLabels.json │ ├── findOneAndDelete-errorLabels.yml │ ├── findOneAndDelete-serverErrors.json │ ├── findOneAndDelete-serverErrors.yml │ ├── findOneAndDelete.json │ ├── findOneAndDelete.yml │ ├── findOneAndReplace-errorLabels.json │ ├── findOneAndReplace-errorLabels.yml │ ├── findOneAndReplace-serverErrors.json │ ├── findOneAndReplace-serverErrors.yml │ ├── findOneAndReplace.json │ ├── findOneAndReplace.yml │ ├── findOneAndUpdate-errorLabels.json │ ├── findOneAndUpdate-errorLabels.yml │ ├── findOneAndUpdate-serverErrors.json │ ├── findOneAndUpdate-serverErrors.yml │ ├── findOneAndUpdate.json │ ├── findOneAndUpdate.yml │ ├── handshakeError.json │ ├── handshakeError.yml │ ├── insertMany-errorLabels.json │ ├── insertMany-errorLabels.yml │ ├── insertMany-serverErrors.json │ ├── insertMany-serverErrors.yml │ ├── insertMany.json │ ├── insertMany.yml │ ├── insertOne-errorLabels.json │ ├── insertOne-errorLabels.yml │ ├── insertOne-noWritesPerformedError.json │ ├── insertOne-noWritesPerformedError.yml │ ├── insertOne-serverErrors.json │ ├── insertOne-serverErrors.yml │ ├── insertOne.json │ ├── insertOne.yml │ ├── replaceOne-errorLabels.json │ ├── replaceOne-errorLabels.yml │ ├── replaceOne-serverErrors.json │ ├── replaceOne-serverErrors.yml │ ├── replaceOne.json │ ├── replaceOne.yml │ ├── unacknowledged-write-concern.json │ ├── unacknowledged-write-concern.yml │ ├── updateMany.json │ ├── updateMany.yml │ ├── updateOne-errorLabels.json │ ├── updateOne-errorLabels.yml │ ├── updateOne-serverErrors.json │ ├── updateOne-serverErrors.yml │ ├── updateOne.json │ └── updateOne.yml ├── run-command ├── run-command.md ├── run-command.rst └── tests │ ├── README.md │ └── unified │ ├── runCommand.json │ ├── runCommand.yml │ ├── runCursorCommand.json │ └── runCursorCommand.yml ├── server-discovery-and-monitoring ├── server-discovery-and-monitoring-logging-and-monitoring.md ├── server-discovery-and-monitoring-logging-and-monitoring.rst ├── server-discovery-and-monitoring-summary.md ├── server-discovery-and-monitoring-summary.rst ├── server-discovery-and-monitoring-tests.md ├── server-discovery-and-monitoring-tests.rst ├── server-discovery-and-monitoring.md ├── server-discovery-and-monitoring.rst ├── server-monitoring.md ├── server-monitoring.rst └── tests │ ├── README.md │ ├── errors │ ├── error_handling_handshake.json │ ├── error_handling_handshake.yml │ ├── generate-error-tests.py │ ├── non-stale-network-error.json │ ├── non-stale-network-error.yml │ ├── non-stale-network-timeout-error.json │ ├── non-stale-network-timeout-error.yml │ ├── non-stale-topologyVersion-greater-InterruptedAtShutdown.json │ ├── non-stale-topologyVersion-greater-InterruptedAtShutdown.yml │ ├── non-stale-topologyVersion-greater-InterruptedDueToReplStateChange.json │ ├── non-stale-topologyVersion-greater-InterruptedDueToReplStateChange.yml │ ├── non-stale-topologyVersion-greater-LegacyNotPrimary.json │ ├── non-stale-topologyVersion-greater-LegacyNotPrimary.yml │ ├── non-stale-topologyVersion-greater-NotPrimaryNoSecondaryOk.json │ ├── non-stale-topologyVersion-greater-NotPrimaryNoSecondaryOk.yml │ ├── non-stale-topologyVersion-greater-NotPrimaryOrSecondary.json │ ├── non-stale-topologyVersion-greater-NotPrimaryOrSecondary.yml │ ├── non-stale-topologyVersion-greater-NotWritablePrimary.json │ ├── non-stale-topologyVersion-greater-NotWritablePrimary.yml │ ├── non-stale-topologyVersion-greater-PrimarySteppedDown.json │ ├── non-stale-topologyVersion-greater-PrimarySteppedDown.yml │ ├── non-stale-topologyVersion-greater-ShutdownInProgress.json │ ├── non-stale-topologyVersion-greater-ShutdownInProgress.yml │ ├── non-stale-topologyVersion-missing-InterruptedAtShutdown.json │ ├── non-stale-topologyVersion-missing-InterruptedAtShutdown.yml │ ├── non-stale-topologyVersion-missing-InterruptedDueToReplStateChange.json │ ├── non-stale-topologyVersion-missing-InterruptedDueToReplStateChange.yml │ ├── non-stale-topologyVersion-missing-LegacyNotPrimary.json │ ├── non-stale-topologyVersion-missing-LegacyNotPrimary.yml │ ├── non-stale-topologyVersion-missing-NotPrimaryNoSecondaryOk.json │ ├── non-stale-topologyVersion-missing-NotPrimaryNoSecondaryOk.yml │ ├── non-stale-topologyVersion-missing-NotPrimaryOrSecondary.json │ ├── non-stale-topologyVersion-missing-NotPrimaryOrSecondary.yml │ ├── non-stale-topologyVersion-missing-NotWritablePrimary.json │ ├── non-stale-topologyVersion-missing-NotWritablePrimary.yml │ ├── non-stale-topologyVersion-missing-PrimarySteppedDown.json │ ├── non-stale-topologyVersion-missing-PrimarySteppedDown.yml │ ├── non-stale-topologyVersion-missing-ShutdownInProgress.json │ ├── non-stale-topologyVersion-missing-ShutdownInProgress.yml │ ├── non-stale-topologyVersion-proccessId-changed-InterruptedAtShutdown.json │ ├── non-stale-topologyVersion-proccessId-changed-InterruptedAtShutdown.yml │ ├── non-stale-topologyVersion-proccessId-changed-InterruptedDueToReplStateChange.json │ ├── non-stale-topologyVersion-proccessId-changed-InterruptedDueToReplStateChange.yml │ ├── non-stale-topologyVersion-proccessId-changed-LegacyNotPrimary.json │ ├── non-stale-topologyVersion-proccessId-changed-LegacyNotPrimary.yml │ ├── non-stale-topologyVersion-proccessId-changed-NotPrimaryNoSecondaryOk.json │ ├── non-stale-topologyVersion-proccessId-changed-NotPrimaryNoSecondaryOk.yml │ ├── non-stale-topologyVersion-proccessId-changed-NotPrimaryOrSecondary.json │ ├── non-stale-topologyVersion-proccessId-changed-NotPrimaryOrSecondary.yml │ ├── non-stale-topologyVersion-proccessId-changed-NotWritablePrimary.json │ ├── non-stale-topologyVersion-proccessId-changed-NotWritablePrimary.yml │ ├── non-stale-topologyVersion-proccessId-changed-PrimarySteppedDown.json │ ├── non-stale-topologyVersion-proccessId-changed-PrimarySteppedDown.yml │ ├── non-stale-topologyVersion-proccessId-changed-ShutdownInProgress.json │ ├── non-stale-topologyVersion-proccessId-changed-ShutdownInProgress.yml │ ├── non-stale-topologyVersion.yml.template │ ├── post-42-InterruptedAtShutdown.json │ ├── post-42-InterruptedAtShutdown.yml │ ├── post-42-InterruptedDueToReplStateChange.json │ ├── post-42-InterruptedDueToReplStateChange.yml │ ├── post-42-LegacyNotPrimary.json │ ├── post-42-LegacyNotPrimary.yml │ ├── post-42-NotPrimaryNoSecondaryOk.json │ ├── post-42-NotPrimaryNoSecondaryOk.yml │ ├── post-42-NotPrimaryOrSecondary.json │ ├── post-42-NotPrimaryOrSecondary.yml │ ├── post-42-NotWritablePrimary.json │ ├── post-42-NotWritablePrimary.yml │ ├── post-42-PrimarySteppedDown.json │ ├── post-42-PrimarySteppedDown.yml │ ├── post-42-ShutdownInProgress.json │ ├── post-42-ShutdownInProgress.yml │ ├── post-42.yml.template │ ├── pre-42-InterruptedAtShutdown.json │ ├── pre-42-InterruptedAtShutdown.yml │ ├── pre-42-InterruptedDueToReplStateChange.json │ ├── pre-42-InterruptedDueToReplStateChange.yml │ ├── pre-42-LegacyNotPrimary.json │ ├── pre-42-LegacyNotPrimary.yml │ ├── pre-42-NotPrimaryNoSecondaryOk.json │ ├── pre-42-NotPrimaryNoSecondaryOk.yml │ ├── pre-42-NotPrimaryOrSecondary.json │ ├── pre-42-NotPrimaryOrSecondary.yml │ ├── pre-42-NotWritablePrimary.json │ ├── pre-42-NotWritablePrimary.yml │ ├── pre-42-PrimarySteppedDown.json │ ├── pre-42-PrimarySteppedDown.yml │ ├── pre-42-ShutdownInProgress.json │ ├── pre-42-ShutdownInProgress.yml │ ├── pre-42.yml.template │ ├── prefer-error-code.json │ ├── prefer-error-code.yml │ ├── stale-generation-InterruptedAtShutdown.json │ ├── stale-generation-InterruptedAtShutdown.yml │ ├── stale-generation-InterruptedDueToReplStateChange.json │ ├── stale-generation-InterruptedDueToReplStateChange.yml │ ├── stale-generation-NotPrimaryNoSecondaryOk.json │ ├── stale-generation-NotPrimaryNoSecondaryOk.yml │ ├── stale-generation-NotPrimaryOrSecondary.json │ ├── stale-generation-NotPrimaryOrSecondary.yml │ ├── stale-generation-NotWritablePrimary.json │ ├── stale-generation-NotWritablePrimary.yml │ ├── stale-generation-PrimarySteppedDown.json │ ├── stale-generation-PrimarySteppedDown.yml │ ├── stale-generation-ShutdownInProgress.json │ ├── stale-generation-ShutdownInProgress.yml │ ├── stale-generation-afterHandshakeCompletes-InterruptedAtShutdown.json │ ├── stale-generation-afterHandshakeCompletes-InterruptedAtShutdown.yml │ ├── stale-generation-afterHandshakeCompletes-InterruptedDueToReplStateChange.json │ ├── stale-generation-afterHandshakeCompletes-InterruptedDueToReplStateChange.yml │ ├── stale-generation-afterHandshakeCompletes-LegacyNotPrimary.json │ ├── stale-generation-afterHandshakeCompletes-LegacyNotPrimary.yml │ ├── stale-generation-afterHandshakeCompletes-NotPrimaryNoSecondaryOk.json │ ├── stale-generation-afterHandshakeCompletes-NotPrimaryNoSecondaryOk.yml │ ├── stale-generation-afterHandshakeCompletes-NotPrimaryOrSecondary.json │ ├── stale-generation-afterHandshakeCompletes-NotPrimaryOrSecondary.yml │ ├── stale-generation-afterHandshakeCompletes-NotWritablePrimary.json │ ├── stale-generation-afterHandshakeCompletes-NotWritablePrimary.yml │ ├── stale-generation-afterHandshakeCompletes-PrimarySteppedDown.json │ ├── stale-generation-afterHandshakeCompletes-PrimarySteppedDown.yml │ ├── stale-generation-afterHandshakeCompletes-ShutdownInProgress.json │ ├── stale-generation-afterHandshakeCompletes-ShutdownInProgress.yml │ ├── stale-generation-afterHandshakeCompletes-network.json │ ├── stale-generation-afterHandshakeCompletes-network.yml │ ├── stale-generation-afterHandshakeCompletes-timeout.json │ ├── stale-generation-afterHandshakeCompletes-timeout.yml │ ├── stale-generation-beforeHandshakeCompletes-InterruptedAtShutdown.json │ ├── stale-generation-beforeHandshakeCompletes-InterruptedAtShutdown.yml │ ├── stale-generation-beforeHandshakeCompletes-InterruptedDueToReplStateChange.json │ ├── stale-generation-beforeHandshakeCompletes-InterruptedDueToReplStateChange.yml │ ├── stale-generation-beforeHandshakeCompletes-LegacyNotPrimary.json │ ├── stale-generation-beforeHandshakeCompletes-LegacyNotPrimary.yml │ ├── stale-generation-beforeHandshakeCompletes-NotPrimaryNoSecondaryOk.json │ ├── stale-generation-beforeHandshakeCompletes-NotPrimaryNoSecondaryOk.yml │ ├── stale-generation-beforeHandshakeCompletes-NotPrimaryOrSecondary.json │ ├── stale-generation-beforeHandshakeCompletes-NotPrimaryOrSecondary.yml │ ├── stale-generation-beforeHandshakeCompletes-NotWritablePrimary.json │ ├── stale-generation-beforeHandshakeCompletes-NotWritablePrimary.yml │ ├── stale-generation-beforeHandshakeCompletes-PrimarySteppedDown.json │ ├── stale-generation-beforeHandshakeCompletes-PrimarySteppedDown.yml │ ├── stale-generation-beforeHandshakeCompletes-ShutdownInProgress.json │ ├── stale-generation-beforeHandshakeCompletes-ShutdownInProgress.yml │ ├── stale-generation-beforeHandshakeCompletes-network.json │ ├── stale-generation-beforeHandshakeCompletes-network.yml │ ├── stale-generation-beforeHandshakeCompletes-timeout.json │ ├── stale-generation-beforeHandshakeCompletes-timeout.yml │ ├── stale-generation.yml.template │ ├── stale-topologyVersion-InterruptedAtShutdown.json │ ├── stale-topologyVersion-InterruptedAtShutdown.yml │ ├── stale-topologyVersion-InterruptedDueToReplStateChange.json │ ├── stale-topologyVersion-InterruptedDueToReplStateChange.yml │ ├── stale-topologyVersion-LegacyNotPrimary.json │ ├── stale-topologyVersion-LegacyNotPrimary.yml │ ├── stale-topologyVersion-NotPrimaryNoSecondaryOk.json │ ├── stale-topologyVersion-NotPrimaryNoSecondaryOk.yml │ ├── stale-topologyVersion-NotPrimaryOrSecondary.json │ ├── stale-topologyVersion-NotPrimaryOrSecondary.yml │ ├── stale-topologyVersion-NotWritablePrimary.json │ ├── stale-topologyVersion-NotWritablePrimary.yml │ ├── stale-topologyVersion-PrimarySteppedDown.json │ ├── stale-topologyVersion-PrimarySteppedDown.yml │ ├── stale-topologyVersion-ShutdownInProgress.json │ ├── stale-topologyVersion-ShutdownInProgress.yml │ ├── stale-topologyVersion.yml.template │ ├── write_errors_ignored.json │ └── write_errors_ignored.yml │ ├── load-balanced │ ├── discover_load_balancer.json │ └── discover_load_balancer.yml │ ├── monitoring │ ├── README.md │ ├── discovered_standalone.json │ ├── discovered_standalone.yml │ ├── load_balancer.json │ ├── load_balancer.yml │ ├── replica_set_with_no_primary.json │ ├── replica_set_with_no_primary.yml │ ├── replica_set_with_primary.json │ ├── replica_set_with_primary.yml │ ├── replica_set_with_removal.json │ ├── replica_set_with_removal.yml │ ├── required_replica_set.json │ ├── required_replica_set.yml │ ├── standalone.json │ ├── standalone.yml │ ├── standalone_suppress_equal_description_changes.json │ └── standalone_suppress_equal_description_changes.yml │ ├── rs │ ├── compatible.json │ ├── compatible.yml │ ├── compatible_unknown.json │ ├── compatible_unknown.yml │ ├── discover_arbiters.json │ ├── discover_arbiters.yml │ ├── discover_arbiters_replicaset.json │ ├── discover_arbiters_replicaset.yml │ ├── discover_ghost.json │ ├── discover_ghost.yml │ ├── discover_ghost_replicaset.json │ ├── discover_ghost_replicaset.yml │ ├── discover_hidden.json │ ├── discover_hidden.yml │ ├── discover_hidden_replicaset.json │ ├── discover_hidden_replicaset.yml │ ├── discover_passives.json │ ├── discover_passives.yml │ ├── discover_passives_replicaset.json │ ├── discover_passives_replicaset.yml │ ├── discover_primary.json │ ├── discover_primary.yml │ ├── discover_primary_replicaset.json │ ├── discover_primary_replicaset.yml │ ├── discover_rsother.json │ ├── discover_rsother.yml │ ├── discover_rsother_replicaset.json │ ├── discover_rsother_replicaset.yml │ ├── discover_secondary.json │ ├── discover_secondary.yml │ ├── discover_secondary_replicaset.json │ ├── discover_secondary_replicaset.yml │ ├── discovery.json │ ├── discovery.yml │ ├── electionId_precedence_setVersion.json │ ├── electionId_precedence_setVersion.yml │ ├── equal_electionids.json │ ├── equal_electionids.yml │ ├── hosts_differ_from_seeds.json │ ├── hosts_differ_from_seeds.yml │ ├── incompatible_arbiter.json │ ├── incompatible_arbiter.yml │ ├── incompatible_ghost.json │ ├── incompatible_ghost.yml │ ├── incompatible_other.json │ ├── incompatible_other.yml │ ├── ls_timeout.json │ ├── ls_timeout.yml │ ├── member_reconfig.json │ ├── member_reconfig.yml │ ├── member_standalone.json │ ├── member_standalone.yml │ ├── new_primary.json │ ├── new_primary.yml │ ├── new_primary_new_electionid.json │ ├── new_primary_new_electionid.yml │ ├── new_primary_new_setversion.json │ ├── new_primary_new_setversion.yml │ ├── new_primary_wrong_set_name.json │ ├── new_primary_wrong_set_name.yml │ ├── non_rs_member.json │ ├── non_rs_member.yml │ ├── normalize_case.json │ ├── normalize_case.yml │ ├── normalize_case_me.json │ ├── normalize_case_me.yml │ ├── null_election_id-pre-6.0.json │ ├── null_election_id-pre-6.0.yml │ ├── null_election_id.json │ ├── null_election_id.yml │ ├── primary_becomes_ghost.json │ ├── primary_becomes_ghost.yml │ ├── primary_becomes_mongos.json │ ├── primary_becomes_mongos.yml │ ├── primary_becomes_standalone.json │ ├── primary_becomes_standalone.yml │ ├── primary_changes_set_name.json │ ├── primary_changes_set_name.yml │ ├── primary_disconnect.json │ ├── primary_disconnect.yml │ ├── primary_disconnect_electionid.json │ ├── primary_disconnect_electionid.yml │ ├── primary_disconnect_setversion.json │ ├── primary_disconnect_setversion.yml │ ├── primary_hint_from_secondary_with_mismatched_me.json │ ├── primary_hint_from_secondary_with_mismatched_me.yml │ ├── primary_mismatched_me.json │ ├── primary_mismatched_me.yml │ ├── primary_mismatched_me_not_removed.json │ ├── primary_mismatched_me_not_removed.yml │ ├── primary_reports_new_member.json │ ├── primary_reports_new_member.yml │ ├── primary_to_no_primary_mismatched_me.json │ ├── primary_to_no_primary_mismatched_me.yml │ ├── primary_wrong_set_name.json │ ├── primary_wrong_set_name.yml │ ├── repeated.json │ ├── repeated.yml │ ├── replicaset_rsnp.json │ ├── replicaset_rsnp.yml │ ├── response_from_removed.json │ ├── response_from_removed.yml │ ├── sec_not_auth.json │ ├── sec_not_auth.yml │ ├── secondary_ignore_ok_0-pre-6.0.json │ ├── secondary_ignore_ok_0-pre-6.0.yml │ ├── secondary_ignore_ok_0.json │ ├── secondary_ignore_ok_0.yml │ ├── secondary_ipv6_literal.json │ ├── secondary_ipv6_literal.yml │ ├── secondary_mismatched_me.json │ ├── secondary_mismatched_me.yml │ ├── secondary_wrong_set_name.json │ ├── secondary_wrong_set_name.yml │ ├── secondary_wrong_set_name_with_primary.json │ ├── secondary_wrong_set_name_with_primary.yml │ ├── set_version_can_rollback.json │ ├── set_version_can_rollback.yml │ ├── setversion_equal_max_without_electionid.json │ ├── setversion_equal_max_without_electionid.yml │ ├── setversion_greaterthan_max_without_electionid.json │ ├── setversion_greaterthan_max_without_electionid.yml │ ├── setversion_without_electionid-pre-6.0.json │ ├── setversion_without_electionid-pre-6.0.yml │ ├── setversion_without_electionid.json │ ├── setversion_without_electionid.yml │ ├── stepdown_change_set_name.json │ ├── stepdown_change_set_name.yml │ ├── too_new.json │ ├── too_new.yml │ ├── too_old.json │ ├── too_old.yml │ ├── topology_version_equal.json │ ├── topology_version_equal.yml │ ├── topology_version_greater.json │ ├── topology_version_greater.yml │ ├── topology_version_less.json │ ├── topology_version_less.yml │ ├── unexpected_mongos.json │ ├── unexpected_mongos.yml │ ├── use_setversion_without_electionid-pre-6.0.json │ ├── use_setversion_without_electionid-pre-6.0.yml │ ├── use_setversion_without_electionid.json │ ├── use_setversion_without_electionid.yml │ ├── wrong_set_name.json │ └── wrong_set_name.yml │ ├── sharded │ ├── compatible.json │ ├── compatible.yml │ ├── discover_single_mongos.json │ ├── discover_single_mongos.yml │ ├── ls_timeout_mongos.json │ ├── ls_timeout_mongos.yml │ ├── mongos_disconnect.json │ ├── mongos_disconnect.yml │ ├── multiple_mongoses.json │ ├── multiple_mongoses.yml │ ├── non_mongos_removed.json │ ├── non_mongos_removed.yml │ ├── normalize_uri_case.json │ ├── normalize_uri_case.yml │ ├── too_new.json │ ├── too_new.yml │ ├── too_old.json │ └── too_old.yml │ ├── single │ ├── compatible.json │ ├── compatible.yml │ ├── direct_connection_external_ip.json │ ├── direct_connection_external_ip.yml │ ├── direct_connection_mongos.json │ ├── direct_connection_mongos.yml │ ├── direct_connection_replicaset.json │ ├── direct_connection_replicaset.yml │ ├── direct_connection_rsarbiter.json │ ├── direct_connection_rsarbiter.yml │ ├── direct_connection_rsprimary.json │ ├── direct_connection_rsprimary.yml │ ├── direct_connection_rssecondary.json │ ├── direct_connection_rssecondary.yml │ ├── direct_connection_standalone.json │ ├── direct_connection_standalone.yml │ ├── direct_connection_unavailable_seed.json │ ├── direct_connection_unavailable_seed.yml │ ├── direct_connection_wrong_set_name.json │ ├── direct_connection_wrong_set_name.yml │ ├── discover_standalone.json │ ├── discover_standalone.yml │ ├── discover_unavailable_seed.json │ ├── discover_unavailable_seed.yml │ ├── ls_timeout_standalone.json │ ├── ls_timeout_standalone.yml │ ├── not_ok_response.json │ ├── not_ok_response.yml │ ├── standalone_removed.json │ ├── standalone_removed.yml │ ├── standalone_using_legacy_hello.json │ ├── standalone_using_legacy_hello.yml │ ├── too_new.json │ ├── too_new.yml │ ├── too_old.json │ ├── too_old.yml │ ├── too_old_then_upgraded.json │ └── too_old_then_upgraded.yml │ └── unified │ ├── auth-error.json │ ├── auth-error.yml │ ├── auth-misc-command-error.json │ ├── auth-misc-command-error.yml │ ├── auth-network-error.json │ ├── auth-network-error.yml │ ├── auth-network-timeout-error.json │ ├── auth-network-timeout-error.yml │ ├── auth-shutdown-error.json │ ├── auth-shutdown-error.yml │ ├── backpressure-network-error-fail.json │ ├── backpressure-network-error-fail.yml │ ├── backpressure-network-timeout-fail.json │ ├── backpressure-network-timeout-fail.yml │ ├── backpressure-server-description-unchanged-on-min-pool-size-population-error.json │ ├── backpressure-server-description-unchanged-on-min-pool-size-population-error.yml │ ├── cancel-server-check.json │ ├── cancel-server-check.yml │ ├── connectTimeoutMS.json │ ├── connectTimeoutMS.yml │ ├── find-network-error.json │ ├── find-network-error.yml │ ├── find-network-timeout-error.json │ ├── find-network-timeout-error.yml │ ├── find-shutdown-error.json │ ├── find-shutdown-error.yml │ ├── hello-command-error.json │ ├── hello-command-error.yml │ ├── hello-network-error.json │ ├── hello-network-error.yml │ ├── hello-timeout.json │ ├── hello-timeout.yml │ ├── insert-network-error.json │ ├── insert-network-error.yml │ ├── insert-shutdown-error.json │ ├── insert-shutdown-error.yml │ ├── interruptInUse-pool-clear.json │ ├── interruptInUse-pool-clear.yml │ ├── loadbalanced-emit-topology-changed-before-close.json │ ├── loadbalanced-emit-topology-changed-before-close.yml │ ├── logging-loadbalanced.json │ ├── logging-loadbalanced.yml │ ├── logging-replicaset.json │ ├── logging-replicaset.yml │ ├── logging-sharded.json │ ├── logging-sharded.yml │ ├── logging-standalone.json │ ├── logging-standalone.yml │ ├── minPoolSize-error.json │ ├── minPoolSize-error.yml │ ├── pool-clear-application-error.json │ ├── pool-clear-application-error.yml │ ├── pool-clear-checkout-error.json │ ├── pool-clear-checkout-error.yml │ ├── pool-clear-min-pool-size-error.json │ ├── pool-clear-min-pool-size-error.yml │ ├── pool-cleared-error.json │ ├── pool-cleared-error.yml │ ├── rediscover-quickly-after-step-down.json │ ├── rediscover-quickly-after-step-down.yml │ ├── replicaset-emit-topology-changed-before-close.json │ ├── replicaset-emit-topology-changed-before-close.yml │ ├── serverMonitoringMode.json │ ├── serverMonitoringMode.yml │ ├── sharded-emit-topology-changed-before-close.json │ ├── sharded-emit-topology-changed-before-close.yml │ ├── standalone-emit-topology-changed-before-close.json │ └── standalone-emit-topology-changed-before-close.yml ├── server-selection ├── server-selection-tests.md ├── server-selection.md ├── server-selection.rst └── tests │ ├── README.md │ ├── in_window │ ├── equilibrium.json │ ├── equilibrium.yml │ ├── many-choices.json │ ├── many-choices.yml │ ├── one-least-two-tied.json │ ├── one-least-two-tied.yml │ ├── rs-equilibrium.json │ ├── rs-equilibrium.yml │ ├── rs-three-choices.json │ ├── rs-three-choices.yml │ ├── three-choices.json │ ├── three-choices.yml │ ├── two-choices.json │ ├── two-choices.yml │ ├── two-least.json │ └── two-least.yml │ ├── logging │ ├── load-balanced.json │ ├── load-balanced.yml │ ├── operation-id.json │ ├── operation-id.yml │ ├── replica-set.json │ ├── replica-set.yml │ ├── sharded.json │ ├── sharded.yml │ ├── standalone.json │ └── standalone.yml │ ├── rtt │ ├── first_value.json │ ├── first_value.yml │ ├── first_value_zero.json │ ├── first_value_zero.yml │ ├── value_test_1.json │ ├── value_test_1.yml │ ├── value_test_2.json │ ├── value_test_2.yml │ ├── value_test_3.json │ ├── value_test_3.yml │ ├── value_test_4.json │ ├── value_test_4.yml │ ├── value_test_5.json │ └── value_test_5.yml │ └── server_selection │ ├── LoadBalanced │ ├── read │ │ ├── Nearest.json │ │ ├── Nearest.yml │ │ ├── Primary.json │ │ ├── Primary.yml │ │ ├── PrimaryPreferred.json │ │ ├── PrimaryPreferred.yml │ │ ├── Secondary.json │ │ ├── Secondary.yml │ │ ├── SecondaryPreferred.json │ │ └── SecondaryPreferred.yml │ └── write │ │ ├── Nearest.json │ │ ├── Nearest.yml │ │ ├── Primary.json │ │ ├── Primary.yml │ │ ├── PrimaryPreferred.json │ │ ├── PrimaryPreferred.yml │ │ ├── Secondary.json │ │ ├── Secondary.yml │ │ ├── SecondaryPreferred.json │ │ └── SecondaryPreferred.yml │ ├── ReplicaSetNoPrimary │ ├── read │ │ ├── Nearest.json │ │ ├── Nearest.yml │ │ ├── Nearest_multiple.json │ │ ├── Nearest_multiple.yml │ │ ├── Nearest_non_matching.json │ │ ├── Nearest_non_matching.yml │ │ ├── PossiblePrimary.json │ │ ├── PossiblePrimary.yml │ │ ├── PossiblePrimaryNearest.json │ │ ├── PossiblePrimaryNearest.yml │ │ ├── Primary.json │ │ ├── Primary.yml │ │ ├── PrimaryPreferred.json │ │ ├── PrimaryPreferred.yml │ │ ├── PrimaryPreferred_non_matching.json │ │ ├── PrimaryPreferred_non_matching.yml │ │ ├── Secondary.json │ │ ├── Secondary.yml │ │ ├── SecondaryPreferred.json │ │ ├── SecondaryPreferred.yml │ │ ├── SecondaryPreferred_non_matching.json │ │ ├── SecondaryPreferred_non_matching.yml │ │ ├── Secondary_multi_tags.json │ │ ├── Secondary_multi_tags.yml │ │ ├── Secondary_multi_tags2.json │ │ ├── Secondary_multi_tags2.yml │ │ ├── Secondary_non_matching.json │ │ └── Secondary_non_matching.yml │ └── write │ │ ├── SecondaryPreferred.json │ │ └── SecondaryPreferred.yml │ ├── ReplicaSetWithPrimary │ ├── read │ │ ├── Nearest.json │ │ ├── Nearest.yml │ │ ├── Nearest_multiple.json │ │ ├── Nearest_multiple.yml │ │ ├── Nearest_non_matching.json │ │ ├── Nearest_non_matching.yml │ │ ├── Primary.json │ │ ├── Primary.yml │ │ ├── PrimaryPreferred.json │ │ ├── PrimaryPreferred.yml │ │ ├── PrimaryPreferred_non_matching.json │ │ ├── PrimaryPreferred_non_matching.yml │ │ ├── Secondary.json │ │ ├── Secondary.yml │ │ ├── SecondaryPreferred.json │ │ ├── SecondaryPreferred.yml │ │ ├── SecondaryPreferred_non_matching.json │ │ ├── SecondaryPreferred_non_matching.yml │ │ ├── SecondaryPreferred_tags.json │ │ ├── SecondaryPreferred_tags.yml │ │ ├── Secondary_non_matching.json │ │ └── Secondary_non_matching.yml │ └── write │ │ ├── SecondaryPreferred.json │ │ └── SecondaryPreferred.yml │ ├── Sharded │ ├── read │ │ ├── Nearest.json │ │ ├── Nearest.yml │ │ ├── Primary.json │ │ ├── Primary.yml │ │ ├── PrimaryPreferred.json │ │ ├── PrimaryPreferred.yml │ │ ├── Secondary.json │ │ ├── Secondary.yml │ │ ├── SecondaryPreferred.json │ │ └── SecondaryPreferred.yml │ └── write │ │ ├── Nearest.json │ │ ├── Nearest.yml │ │ ├── Primary.json │ │ ├── Primary.yml │ │ ├── PrimaryPreferred.json │ │ ├── PrimaryPreferred.yml │ │ ├── Secondary.json │ │ ├── Secondary.yml │ │ ├── SecondaryPreferred.json │ │ └── SecondaryPreferred.yml │ ├── Single │ ├── read │ │ ├── SecondaryPreferred.json │ │ └── SecondaryPreferred.yml │ └── write │ │ ├── SecondaryPreferred.json │ │ └── SecondaryPreferred.yml │ └── Unknown │ ├── read │ ├── SecondaryPreferred.json │ ├── SecondaryPreferred.yml │ ├── ghost.json │ └── ghost.yml │ └── write │ ├── SecondaryPreferred.json │ ├── SecondaryPreferred.yml │ ├── ghost.json │ └── ghost.yml ├── server_write_commands.rst ├── server_write_commands └── server_write_commands.md ├── serverless-testing └── README.md ├── sessions ├── driver-sessions.md ├── driver-sessions.rst ├── snapshot-sessions.md ├── snapshot-sessions.rst └── tests │ ├── README.md │ ├── driver-sessions-dirty-session-errors.json │ ├── driver-sessions-dirty-session-errors.yml │ ├── driver-sessions-server-support.json │ ├── driver-sessions-server-support.yml │ ├── implicit-sessions-default-causal-consistency.json │ ├── implicit-sessions-default-causal-consistency.yml │ ├── snapshot-sessions-not-supported-client-error.json │ ├── snapshot-sessions-not-supported-client-error.yml │ ├── snapshot-sessions-not-supported-server-error.json │ ├── snapshot-sessions-not-supported-server-error.yml │ ├── snapshot-sessions-unsupported-ops.json │ ├── snapshot-sessions-unsupported-ops.yml │ ├── snapshot-sessions.json │ └── snapshot-sessions.yml ├── socks5-support ├── socks5.md ├── socks5.rst └── tests │ └── README.md ├── transactions-convenient-api ├── tests │ ├── README.md │ └── unified │ │ ├── callback-aborts.json │ │ ├── callback-aborts.yml │ │ ├── callback-commits.json │ │ ├── callback-commits.yml │ │ ├── callback-retry.json │ │ ├── callback-retry.yml │ │ ├── commit-retry-errorLabels.json │ │ ├── commit-retry-errorLabels.yml │ │ ├── commit-retry.json │ │ ├── commit-retry.yml │ │ ├── commit-transienttransactionerror-4.2.json │ │ ├── commit-transienttransactionerror-4.2.yml │ │ ├── commit-transienttransactionerror.json │ │ ├── commit-transienttransactionerror.yml │ │ ├── commit-writeconcernerror.json │ │ ├── commit-writeconcernerror.yml │ │ ├── commit.json │ │ ├── commit.yml │ │ ├── transaction-options.json │ │ └── transaction-options.yml ├── transactions-convenient-api.md └── transactions-convenient-api.rst ├── transactions ├── client-session-transaction-states.dot ├── client-session-transaction-states.png ├── tests │ ├── README.md │ ├── legacy-test-format.md │ └── unified │ │ ├── abort.json │ │ ├── abort.yml │ │ ├── bulk.json │ │ ├── bulk.yml │ │ ├── causal-consistency.json │ │ ├── causal-consistency.yml │ │ ├── client-bulkWrite.json │ │ ├── client-bulkWrite.yml │ │ ├── commit.json │ │ ├── commit.yml │ │ ├── count.json │ │ ├── count.yml │ │ ├── create-collection.json │ │ ├── create-collection.yml │ │ ├── create-index.json │ │ ├── create-index.yml │ │ ├── delete.json │ │ ├── delete.yml │ │ ├── do-not-retry-read-in-transaction.json │ │ ├── do-not-retry-read-in-transaction.yml │ │ ├── error-labels-blockConnection.json │ │ ├── error-labels-blockConnection.yml │ │ ├── error-labels-errorLabels.json │ │ ├── error-labels-errorLabels.yml │ │ ├── error-labels.json │ │ ├── error-labels.yml │ │ ├── errors-client.json │ │ ├── errors-client.yml │ │ ├── errors.json │ │ ├── errors.yml │ │ ├── findOneAndDelete.json │ │ ├── findOneAndDelete.yml │ │ ├── findOneAndReplace.json │ │ ├── findOneAndReplace.yml │ │ ├── findOneAndUpdate.json │ │ ├── findOneAndUpdate.yml │ │ ├── insert.json │ │ ├── insert.yml │ │ ├── isolation.json │ │ ├── isolation.yml │ │ ├── mongos-pin-auto-tests.py │ │ ├── mongos-pin-auto.json │ │ ├── mongos-pin-auto.yml │ │ ├── mongos-recovery-token-errorLabels.json │ │ ├── mongos-recovery-token-errorLabels.yml │ │ ├── mongos-recovery-token.json │ │ ├── mongos-recovery-token.yml │ │ ├── mongos-unpin.json │ │ ├── mongos-unpin.yml │ │ ├── pin-mongos.json │ │ ├── pin-mongos.yml │ │ ├── read-concern.json │ │ ├── read-concern.yml │ │ ├── read-pref.json │ │ ├── read-pref.yml │ │ ├── reads.json │ │ ├── reads.yml │ │ ├── retryable-abort-errorLabels.json │ │ ├── retryable-abort-errorLabels.yml │ │ ├── retryable-abort-handshake.json │ │ ├── retryable-abort-handshake.yml │ │ ├── retryable-abort.json │ │ ├── retryable-abort.yml │ │ ├── retryable-commit-errorLabels.json │ │ ├── retryable-commit-errorLabels.yml │ │ ├── retryable-commit-handshake.json │ │ ├── retryable-commit-handshake.yml │ │ ├── retryable-commit.json │ │ ├── retryable-commit.yml │ │ ├── retryable-writes.json │ │ ├── retryable-writes.yml │ │ ├── run-command.json │ │ ├── run-command.yml │ │ ├── transaction-options-repl.json │ │ ├── transaction-options-repl.yml │ │ ├── transaction-options.json │ │ ├── transaction-options.yml │ │ ├── update.json │ │ ├── update.yml │ │ ├── write-concern.json │ │ └── write-concern.yml ├── transactions.md └── transactions.rst ├── unified-test-format ├── schema-1.0.json ├── schema-1.1.json ├── schema-1.10.json ├── schema-1.11.json ├── schema-1.12.json ├── schema-1.13.json ├── schema-1.14.json ├── schema-1.15.json ├── schema-1.16.json ├── schema-1.17.json ├── schema-1.18.json ├── schema-1.19.json ├── schema-1.2.json ├── schema-1.20.json ├── schema-1.21.json ├── schema-1.22.json ├── schema-1.23.json ├── schema-1.24.json ├── schema-1.25.json ├── schema-1.26.json ├── schema-1.27.json ├── schema-1.3.json ├── schema-1.4.json ├── schema-1.5.json ├── schema-1.6.json ├── schema-1.7.json ├── schema-1.8.json ├── schema-1.9.json ├── schema-latest.json ├── tests │ ├── Makefile │ ├── README.md │ ├── invalid │ │ ├── clientEncryptionOpts-additionalProperties.json │ │ ├── clientEncryptionOpts-additionalProperties.yml │ │ ├── clientEncryptionOpts-keyVaultClient-required.json │ │ ├── clientEncryptionOpts-keyVaultClient-required.yml │ │ ├── clientEncryptionOpts-keyVaultClient-type.json │ │ ├── clientEncryptionOpts-keyVaultClient-type.yml │ │ ├── clientEncryptionOpts-keyVaultNamespace-required.json │ │ ├── clientEncryptionOpts-keyVaultNamespace-required.yml │ │ ├── clientEncryptionOpts-keyVaultNamespace-type.json │ │ ├── clientEncryptionOpts-keyVaultNamespace-type.yml │ │ ├── clientEncryptionOpts-kmsProviders-additionalProperties.json │ │ ├── clientEncryptionOpts-kmsProviders-additionalProperties.yml │ │ ├── clientEncryptionOpts-kmsProviders-aws-additionalProperties.json │ │ ├── clientEncryptionOpts-kmsProviders-aws-additionalProperties.yml │ │ ├── clientEncryptionOpts-kmsProviders-aws-type.json │ │ ├── clientEncryptionOpts-kmsProviders-aws-type.yml │ │ ├── clientEncryptionOpts-kmsProviders-azure-additionalProperties.json │ │ ├── clientEncryptionOpts-kmsProviders-azure-additionalProperties.yml │ │ ├── clientEncryptionOpts-kmsProviders-azure-type.json │ │ ├── clientEncryptionOpts-kmsProviders-azure-type.yml │ │ ├── clientEncryptionOpts-kmsProviders-gcp-additionalProperties.json │ │ ├── clientEncryptionOpts-kmsProviders-gcp-additionalProperties.yml │ │ ├── clientEncryptionOpts-kmsProviders-gcp-type.json │ │ ├── clientEncryptionOpts-kmsProviders-gcp-type.yml │ │ ├── clientEncryptionOpts-kmsProviders-invalidName.json │ │ ├── clientEncryptionOpts-kmsProviders-invalidName.yml │ │ ├── clientEncryptionOpts-kmsProviders-kmip-additionalProperties.json │ │ ├── clientEncryptionOpts-kmsProviders-kmip-additionalProperties.yml │ │ ├── clientEncryptionOpts-kmsProviders-kmip-type.json │ │ ├── clientEncryptionOpts-kmsProviders-kmip-type.yml │ │ ├── clientEncryptionOpts-kmsProviders-local-additionalProperties.json │ │ ├── clientEncryptionOpts-kmsProviders-local-additionalProperties.yml │ │ ├── clientEncryptionOpts-kmsProviders-local-type.json │ │ ├── clientEncryptionOpts-kmsProviders-local-type.yml │ │ ├── clientEncryptionOpts-kmsProviders-required.json │ │ ├── clientEncryptionOpts-kmsProviders-required.yml │ │ ├── clientEncryptionOpts-kmsProviders-type.json │ │ ├── clientEncryptionOpts-kmsProviders-type.yml │ │ ├── clientEncryptionOpts-tlsOptions_not_supported.json │ │ ├── clientEncryptionOpts-tlsOptions_not_supported.yml │ │ ├── collectionData-additionalProperties.json │ │ ├── collectionData-additionalProperties.yml │ │ ├── collectionData-collectionName-required.json │ │ ├── collectionData-collectionName-required.yml │ │ ├── collectionData-collectionName-type.json │ │ ├── collectionData-collectionName-type.yml │ │ ├── collectionData-createOptions-type.json │ │ ├── collectionData-createOptions-type.yml │ │ ├── collectionData-databaseName-required.json │ │ ├── collectionData-databaseName-required.yml │ │ ├── collectionData-databaseName-type.json │ │ ├── collectionData-databaseName-type.yml │ │ ├── collectionData-documents-items.json │ │ ├── collectionData-documents-items.yml │ │ ├── collectionData-documents-required.json │ │ ├── collectionData-documents-required.yml │ │ ├── collectionData-documents-type.json │ │ ├── collectionData-documents-type.yml │ │ ├── collectionOrDatabaseOptions-additionalProperties.json │ │ ├── collectionOrDatabaseOptions-additionalProperties.yml │ │ ├── collectionOrDatabaseOptions-readConcern-type.json │ │ ├── collectionOrDatabaseOptions-readConcern-type.yml │ │ ├── collectionOrDatabaseOptions-readPreference-type.json │ │ ├── collectionOrDatabaseOptions-readPreference-type.yml │ │ ├── collectionOrDatabaseOptions-timeoutMS-type.json │ │ ├── collectionOrDatabaseOptions-timeoutMS-type.yml │ │ ├── collectionOrDatabaseOptions-writeConcern-type.json │ │ ├── collectionOrDatabaseOptions-writeConcern-type.yml │ │ ├── createEntities-items.json │ │ ├── createEntities-items.yml │ │ ├── createEntities-minItems.json │ │ ├── createEntities-minItems.yml │ │ ├── createEntities-type.json │ │ ├── createEntities-type.yml │ │ ├── description-required.json │ │ ├── description-required.yml │ │ ├── entity-additionalProperties.json │ │ ├── entity-additionalProperties.yml │ │ ├── entity-bucket-additionalProperties.json │ │ ├── entity-bucket-additionalProperties.yml │ │ ├── entity-bucket-bucketOptions-type.json │ │ ├── entity-bucket-bucketOptions-type.yml │ │ ├── entity-bucket-database-required.json │ │ ├── entity-bucket-database-required.yml │ │ ├── entity-bucket-database-type.json │ │ ├── entity-bucket-database-type.yml │ │ ├── entity-bucket-id-required.json │ │ ├── entity-bucket-id-required.yml │ │ ├── entity-bucket-id-type.json │ │ ├── entity-bucket-id-type.yml │ │ ├── entity-client-additionalProperties.json │ │ ├── entity-client-additionalProperties.yml │ │ ├── entity-client-id-required.json │ │ ├── entity-client-id-required.yml │ │ ├── entity-client-id-type.json │ │ ├── entity-client-id-type.yml │ │ ├── entity-client-ignoreCommandMonitoringEvents-items.json │ │ ├── entity-client-ignoreCommandMonitoringEvents-items.yml │ │ ├── entity-client-ignoreCommandMonitoringEvents-minItems.json │ │ ├── entity-client-ignoreCommandMonitoringEvents-minItems.yml │ │ ├── entity-client-ignoreCommandMonitoringEvents-type.json │ │ ├── entity-client-ignoreCommandMonitoringEvents-type.yml │ │ ├── entity-client-observeEvents-enum.json │ │ ├── entity-client-observeEvents-enum.yml │ │ ├── entity-client-observeEvents-items.json │ │ ├── entity-client-observeEvents-items.yml │ │ ├── entity-client-observeEvents-minItems.json │ │ ├── entity-client-observeEvents-minItems.yml │ │ ├── entity-client-observeEvents-type.json │ │ ├── entity-client-observeEvents-type.yml │ │ ├── entity-client-observeLogMessages-minProperties.json │ │ ├── entity-client-observeLogMessages-minProperties.yml │ │ ├── entity-client-observeLogMessages-property-type.json │ │ ├── entity-client-observeLogMessages-property-type.yml │ │ ├── entity-client-observeLogMessages-property-value.json │ │ ├── entity-client-observeLogMessages-property-value.yml │ │ ├── entity-client-observeLogMessages-type.json │ │ ├── entity-client-observeLogMessages-type.yml │ │ ├── entity-client-observeSensitiveCommands-type.json │ │ ├── entity-client-observeSensitiveCommands-type.yml │ │ ├── entity-client-observeTracingMessages-additionalProperties.json │ │ ├── entity-client-observeTracingMessages-additionalProperties.yml │ │ ├── entity-client-observeTracingMessages-additionalPropertyType.json │ │ ├── entity-client-observeTracingMessages-additionalPropertyType.yml │ │ ├── entity-client-observeTracingMessages-type.json │ │ ├── entity-client-observeTracingMessages-type.yml │ │ ├── entity-client-serverApi-deprecationErrors-type.json │ │ ├── entity-client-serverApi-deprecationErrors-type.yml │ │ ├── entity-client-serverApi-strict-type.json │ │ ├── entity-client-serverApi-strict-type.yml │ │ ├── entity-client-serverApi-type.json │ │ ├── entity-client-serverApi-type.yml │ │ ├── entity-client-serverApi-version-required.json │ │ ├── entity-client-serverApi-version-required.yml │ │ ├── entity-client-serverApi-version-type.json │ │ ├── entity-client-serverApi-version-type.yml │ │ ├── entity-client-uriOptions-type.json │ │ ├── entity-client-uriOptions-type.yml │ │ ├── entity-client-useMultipleMongoses-type.json │ │ ├── entity-client-useMultipleMongoses-type.yml │ │ ├── entity-clientEncryption-additionalProperties.json │ │ ├── entity-clientEncryption-additionalProperties.yml │ │ ├── entity-clientEncryption-clientEncryptionOpts-required.json │ │ ├── entity-clientEncryption-clientEncryptionOpts-required.yml │ │ ├── entity-clientEncryption-clientEncryptionOpts-type.json │ │ ├── entity-clientEncryption-clientEncryptionOpts-type.yml │ │ ├── entity-clientEncryption-id-required.json │ │ ├── entity-clientEncryption-id-required.yml │ │ ├── entity-clientEncryption-id-type.json │ │ ├── entity-clientEncryption-id-type.yml │ │ ├── entity-collection-additionalProperties.json │ │ ├── entity-collection-additionalProperties.yml │ │ ├── entity-collection-collectionName-required.json │ │ ├── entity-collection-collectionName-required.yml │ │ ├── entity-collection-collectionName-type.json │ │ ├── entity-collection-collectionName-type.yml │ │ ├── entity-collection-collectionOptions-type.json │ │ ├── entity-collection-collectionOptions-type.yml │ │ ├── entity-collection-database-required.json │ │ ├── entity-collection-database-required.yml │ │ ├── entity-collection-database-type.json │ │ ├── entity-collection-database-type.yml │ │ ├── entity-collection-id-required.json │ │ ├── entity-collection-id-required.yml │ │ ├── entity-collection-id-type.json │ │ ├── entity-collection-id-type.yml │ │ ├── entity-database-additionalProperties.json │ │ ├── entity-database-additionalProperties.yml │ │ ├── entity-database-client-required.json │ │ ├── entity-database-client-required.yml │ │ ├── entity-database-client-type.json │ │ ├── entity-database-client-type.yml │ │ ├── entity-database-databaseName-required.json │ │ ├── entity-database-databaseName-required.yml │ │ ├── entity-database-databaseName-type.json │ │ ├── entity-database-databaseName-type.yml │ │ ├── entity-database-databaseOptions-type.json │ │ ├── entity-database-databaseOptions-type.yml │ │ ├── entity-database-id-required.json │ │ ├── entity-database-id-required.yml │ │ ├── entity-database-id-type.json │ │ ├── entity-database-id-type.yml │ │ ├── entity-maxProperties.json │ │ ├── entity-maxProperties.yml │ │ ├── entity-minProperties.json │ │ ├── entity-minProperties.yml │ │ ├── entity-session-additionalProperties.json │ │ ├── entity-session-additionalProperties.yml │ │ ├── entity-session-client-required.json │ │ ├── entity-session-client-required.yml │ │ ├── entity-session-client-type.json │ │ ├── entity-session-client-type.yml │ │ ├── entity-session-id-required.json │ │ ├── entity-session-id-required.yml │ │ ├── entity-session-id-type.json │ │ ├── entity-session-id-type.yml │ │ ├── entity-session-sessionOptions-type.json │ │ ├── entity-session-sessionOptions-type.yml │ │ ├── entity-stream-additionalProperties.json │ │ ├── entity-stream-additionalProperties.yml │ │ ├── entity-stream-hexBytes-pattern.json │ │ ├── entity-stream-hexBytes-pattern.yml │ │ ├── entity-stream-hexBytes-required.json │ │ ├── entity-stream-hexBytes-required.yml │ │ ├── entity-stream-hexBytes-type.json │ │ ├── entity-stream-hexBytes-type.yml │ │ ├── entity-stream-id-required.json │ │ ├── entity-stream-id-required.yml │ │ ├── entity-stream-id-type.json │ │ ├── entity-stream-id-type.yml │ │ ├── entity-thread-additionalProperties.json │ │ ├── entity-thread-additionalProperties.yml │ │ ├── entity-thread-id-required.json │ │ ├── entity-thread-id-required.yml │ │ ├── entity-thread-id-type.json │ │ ├── entity-thread-id-type.yml │ │ ├── expectedCmapEvent-connectionCheckOutFailedEvent-reason-type.json │ │ ├── expectedCmapEvent-connectionCheckOutFailedEvent-reason-type.yml │ │ ├── expectedCmapEvent-connectionCheckOutStartedEvent-additionalProperties.json │ │ ├── expectedCmapEvent-connectionCheckOutStartedEvent-additionalProperties.yml │ │ ├── expectedCmapEvent-connectionCheckedInEvent-additionalProperties.json │ │ ├── expectedCmapEvent-connectionCheckedInEvent-additionalProperties.yml │ │ ├── expectedCmapEvent-connectionCheckedOutEvent-additionalProperties.json │ │ ├── expectedCmapEvent-connectionCheckedOutEvent-additionalProperties.yml │ │ ├── expectedCmapEvent-connectionClosedEvent-reason-type.json │ │ ├── expectedCmapEvent-connectionClosedEvent-reason-type.yml │ │ ├── expectedCmapEvent-connectionCreatedEvent-additionalProperties.json │ │ ├── expectedCmapEvent-connectionCreatedEvent-additionalProperties.yml │ │ ├── expectedCmapEvent-connectionReadyEvent-additionalProperties.json │ │ ├── expectedCmapEvent-connectionReadyEvent-additionalProperties.yml │ │ ├── expectedCmapEvent-poolClearedEvent-hasServiceId-type.json │ │ ├── expectedCmapEvent-poolClearedEvent-hasServiceId-type.yml │ │ ├── expectedCmapEvent-poolClearedEvent-interruptInUseConnections-type.json │ │ ├── expectedCmapEvent-poolClearedEvent-interruptInUseConnections-type.yml │ │ ├── expectedCmapEvent-poolClosedEvent-additionalProperties.json │ │ ├── expectedCmapEvent-poolClosedEvent-additionalProperties.yml │ │ ├── expectedCmapEvent-poolCreatedEvent-additionalProperties.json │ │ ├── expectedCmapEvent-poolCreatedEvent-additionalProperties.yml │ │ ├── expectedCmapEvent-poolReadyEvent-additionalProperties.json │ │ ├── expectedCmapEvent-poolReadyEvent-additionalProperties.yml │ │ ├── expectedCommandEvent-additionalProperties.json │ │ ├── expectedCommandEvent-additionalProperties.yml │ │ ├── expectedCommandEvent-commandFailedEvent-commandName-type.json │ │ ├── expectedCommandEvent-commandFailedEvent-commandName-type.yml │ │ ├── expectedCommandEvent-commandFailedEvent-databaseName-type.json │ │ ├── expectedCommandEvent-commandFailedEvent-databaseName-type.yml │ │ ├── expectedCommandEvent-commandFailedEvent-hasServerConnectionId-type.json │ │ ├── expectedCommandEvent-commandFailedEvent-hasServerConnectionId-type.yml │ │ ├── expectedCommandEvent-commandFailedEvent-hasServiceId-type.json │ │ ├── expectedCommandEvent-commandFailedEvent-hasServiceId-type.yml │ │ ├── expectedCommandEvent-commandStartedEvent-additionalProperties.json │ │ ├── expectedCommandEvent-commandStartedEvent-additionalProperties.yml │ │ ├── expectedCommandEvent-commandStartedEvent-command-type.json │ │ ├── expectedCommandEvent-commandStartedEvent-command-type.yml │ │ ├── expectedCommandEvent-commandStartedEvent-commandName-type.json │ │ ├── expectedCommandEvent-commandStartedEvent-commandName-type.yml │ │ ├── expectedCommandEvent-commandStartedEvent-databaseName-type.json │ │ ├── expectedCommandEvent-commandStartedEvent-databaseName-type.yml │ │ ├── expectedCommandEvent-commandStartedEvent-hasServerConnectionId-type.json │ │ ├── expectedCommandEvent-commandStartedEvent-hasServerConnectionId-type.yml │ │ ├── expectedCommandEvent-commandStartedEvent-hasServiceId-type.json │ │ ├── expectedCommandEvent-commandStartedEvent-hasServiceId-type.yml │ │ ├── expectedCommandEvent-commandSucceededEvent-commandName-type.json │ │ ├── expectedCommandEvent-commandSucceededEvent-commandName-type.yml │ │ ├── expectedCommandEvent-commandSucceededEvent-databaseName-type.json │ │ ├── expectedCommandEvent-commandSucceededEvent-databaseName-type.yml │ │ ├── expectedCommandEvent-commandSucceededEvent-hasServerConnectionId-type.json │ │ ├── expectedCommandEvent-commandSucceededEvent-hasServerConnectionId-type.yml │ │ ├── expectedCommandEvent-commandSucceededEvent-hasServiceId-type.json │ │ ├── expectedCommandEvent-commandSucceededEvent-hasServiceId-type.yml │ │ ├── expectedCommandEvent-commandSucceededEvent-reply-type.json │ │ ├── expectedCommandEvent-commandSucceededEvent-reply-type.yml │ │ ├── expectedCommandEvent-maxProperties.json │ │ ├── expectedCommandEvent-maxProperties.yml │ │ ├── expectedCommandEvent-minProperties.json │ │ ├── expectedCommandEvent-minProperties.yml │ │ ├── expectedError-additionalProperties.json │ │ ├── expectedError-additionalProperties.yml │ │ ├── expectedError-errorCode-type.json │ │ ├── expectedError-errorCode-type.yml │ │ ├── expectedError-errorCodeName-type.json │ │ ├── expectedError-errorCodeName-type.yml │ │ ├── expectedError-errorContains-type.json │ │ ├── expectedError-errorContains-type.yml │ │ ├── expectedError-errorLabelsContain-items.json │ │ ├── expectedError-errorLabelsContain-items.yml │ │ ├── expectedError-errorLabelsContain-minItems.json │ │ ├── expectedError-errorLabelsContain-minItems.yml │ │ ├── expectedError-errorLabelsContain-type.json │ │ ├── expectedError-errorLabelsContain-type.yml │ │ ├── expectedError-errorLabelsOmit-items.json │ │ ├── expectedError-errorLabelsOmit-items.yml │ │ ├── expectedError-errorLabelsOmit-minItems.json │ │ ├── expectedError-errorLabelsOmit-minItems.yml │ │ ├── expectedError-errorLabelsOmit-type.json │ │ ├── expectedError-errorLabelsOmit-type.yml │ │ ├── expectedError-errorResponse-type.json │ │ ├── expectedError-errorResponse-type.yml │ │ ├── expectedError-isClientError-type.json │ │ ├── expectedError-isClientError-type.yml │ │ ├── expectedError-isError-const.json │ │ ├── expectedError-isError-const.yml │ │ ├── expectedError-isError-type.json │ │ ├── expectedError-isError-type.yml │ │ ├── expectedError-isTimeoutError-type.json │ │ ├── expectedError-isTimeoutError-type.yml │ │ ├── expectedError-minProperties.json │ │ ├── expectedError-minProperties.yml │ │ ├── expectedEventsForClient-additionalProperties.json │ │ ├── expectedEventsForClient-additionalProperties.yml │ │ ├── expectedEventsForClient-client-required.json │ │ ├── expectedEventsForClient-client-required.yml │ │ ├── expectedEventsForClient-client-type.json │ │ ├── expectedEventsForClient-client-type.yml │ │ ├── expectedEventsForClient-eventType-enum.json │ │ ├── expectedEventsForClient-eventType-enum.yml │ │ ├── expectedEventsForClient-eventType-type.json │ │ ├── expectedEventsForClient-eventType-type.yml │ │ ├── expectedEventsForClient-events-items.json │ │ ├── expectedEventsForClient-events-items.yml │ │ ├── expectedEventsForClient-events-required.json │ │ ├── expectedEventsForClient-events-required.yml │ │ ├── expectedEventsForClient-events-type.json │ │ ├── expectedEventsForClient-events-type.yml │ │ ├── expectedEventsForClient-events_conflicts_with_cmap_eventType.json │ │ ├── expectedEventsForClient-events_conflicts_with_cmap_eventType.yml │ │ ├── expectedEventsForClient-events_conflicts_with_command_eventType.json │ │ ├── expectedEventsForClient-events_conflicts_with_command_eventType.yml │ │ ├── expectedEventsForClient-events_conflicts_with_default_eventType.json │ │ ├── expectedEventsForClient-events_conflicts_with_default_eventType.yml │ │ ├── expectedEventsForClient-ignoreExtraEvents-type.json │ │ ├── expectedEventsForClient-ignoreExtraEvents-type.yml │ │ ├── expectedLogMessage-additionalProperties.json │ │ ├── expectedLogMessage-additionalProperties.yml │ │ ├── expectedLogMessage-component-enum.json │ │ ├── expectedLogMessage-component-enum.yml │ │ ├── expectedLogMessage-component-required.json │ │ ├── expectedLogMessage-component-required.yml │ │ ├── expectedLogMessage-component-type.json │ │ ├── expectedLogMessage-component-type.yml │ │ ├── expectedLogMessage-data-required.json │ │ ├── expectedLogMessage-data-required.yml │ │ ├── expectedLogMessage-data-type.json │ │ ├── expectedLogMessage-data-type.yml │ │ ├── expectedLogMessage-failureIsRedacted-type.json │ │ ├── expectedLogMessage-failureIsRedacted-type.yml │ │ ├── expectedLogMessage-level-enum.json │ │ ├── expectedLogMessage-level-enum.yml │ │ ├── expectedLogMessage-level-required.json │ │ ├── expectedLogMessage-level-required.yml │ │ ├── expectedLogMessage-level-type.json │ │ ├── expectedLogMessage-level-type.yml │ │ ├── expectedLogMessagesForClient-additionalProperties.json │ │ ├── expectedLogMessagesForClient-additionalProperties.yml │ │ ├── expectedLogMessagesForClient-client-required.json │ │ ├── expectedLogMessagesForClient-client-required.yml │ │ ├── expectedLogMessagesForClient-client-type.json │ │ ├── expectedLogMessagesForClient-client-type.yml │ │ ├── expectedLogMessagesForClient-ignoreExtraMessages-type.json │ │ ├── expectedLogMessagesForClient-ignoreExtraMessages-type.yml │ │ ├── expectedLogMessagesForClient-ignoreMessages-items.json │ │ ├── expectedLogMessagesForClient-ignoreMessages-items.yml │ │ ├── expectedLogMessagesForClient-ignoreMessages-type.json │ │ ├── expectedLogMessagesForClient-ignoreMessages-type.yml │ │ ├── expectedLogMessagesForClient-messages-items.json │ │ ├── expectedLogMessagesForClient-messages-items.yml │ │ ├── expectedLogMessagesForClient-messages-required.json │ │ ├── expectedLogMessagesForClient-messages-required.yml │ │ ├── expectedLogMessagesForClient-messages-type.json │ │ ├── expectedLogMessagesForClient-messages-type.yml │ │ ├── expectedSdamEvent-serverDescriptionChangedEvent-additionalProperties.json │ │ ├── expectedSdamEvent-serverDescriptionChangedEvent-additionalProperties.yml │ │ ├── expectedSdamEvent-serverDescriptionChangedEvent-serverDescription-additionalProperties.json │ │ ├── expectedSdamEvent-serverDescriptionChangedEvent-serverDescription-additionalProperties.yml │ │ ├── expectedSdamEvent-serverDescriptionChangedEvent-serverDescription-type-enum.json │ │ ├── expectedSdamEvent-serverDescriptionChangedEvent-serverDescription-type-enum.yml │ │ ├── expectedSdamEvent-serverDescriptionChangedEvent-serverDescription-type-type.json │ │ ├── expectedSdamEvent-serverDescriptionChangedEvent-serverDescription-type-type.yml │ │ ├── expectedSdamEvent-topologyDescriptionChangedEvent-additionalProperties.json │ │ ├── expectedSdamEvent-topologyDescriptionChangedEvent-additionalProperties.yml │ │ ├── expectedTracingSpans-additionalProperties.json │ │ ├── expectedTracingSpans-additionalProperties.yml │ │ ├── expectedTracingSpans-clientType.json │ │ ├── expectedTracingSpans-clientType.yml │ │ ├── expectedTracingSpans-emptyNestedSpan.json │ │ ├── expectedTracingSpans-emptyNestedSpan.yml │ │ ├── expectedTracingSpans-invalidNestedSpan.json │ │ ├── expectedTracingSpans-invalidNestedSpan.yml │ │ ├── expectedTracingSpans-missingPropertyClient.json │ │ ├── expectedTracingSpans-missingPropertyClient.yml │ │ ├── expectedTracingSpans-missingPropertySpans.json │ │ ├── expectedTracingSpans-missingPropertySpans.yml │ │ ├── expectedTracingSpans-spanMalformedAdditionalProperties.json │ │ ├── expectedTracingSpans-spanMalformedAdditionalProperties.yml │ │ ├── expectedTracingSpans-spanMalformedMissingName.json │ │ ├── expectedTracingSpans-spanMalformedMissingName.yml │ │ ├── expectedTracingSpans-spanMalformedMissingTags.json │ │ ├── expectedTracingSpans-spanMalformedMissingTags.yml │ │ ├── expectedTracingSpans-spanMalformedNestedMustBeArray.json │ │ ├── expectedTracingSpans-spanMalformedNestedMustBeArray.yml │ │ ├── expectedTracingSpans-spanMalformedTagsMustBeObject.json │ │ ├── expectedTracingSpans-spanMalformedTagsMustBeObject.yml │ │ ├── initialData-items.json │ │ ├── initialData-items.yml │ │ ├── initialData-minItems.json │ │ ├── initialData-minItems.yml │ │ ├── initialData-type.json │ │ ├── initialData-type.yml │ │ ├── operation-additionalProperties.json │ │ ├── operation-additionalProperties.yml │ │ ├── operation-arguments-type.json │ │ ├── operation-arguments-type.yml │ │ ├── operation-expectError-conflicts_with_expectResult.json │ │ ├── operation-expectError-conflicts_with_expectResult.yml │ │ ├── operation-expectError-conflicts_with_saveResultAsEntity.json │ │ ├── operation-expectError-conflicts_with_saveResultAsEntity.yml │ │ ├── operation-expectError-type.json │ │ ├── operation-expectError-type.yml │ │ ├── operation-expectEvents-type.json │ │ ├── operation-expectEvents-type.yml │ │ ├── operation-ignoreResultAndError-conflicts_with_expectError.json │ │ ├── operation-ignoreResultAndError-conflicts_with_expectError.yml │ │ ├── operation-ignoreResultAndError-conflicts_with_expectResult.json │ │ ├── operation-ignoreResultAndError-conflicts_with_expectResult.yml │ │ ├── operation-ignoreResultAndError-conflicts_with_saveResultAsEntity.json │ │ ├── operation-ignoreResultAndError-conflicts_with_saveResultAsEntity.yml │ │ ├── operation-name-required.json │ │ ├── operation-name-required.yml │ │ ├── operation-name-type.json │ │ ├── operation-name-type.yml │ │ ├── operation-object-required.json │ │ ├── operation-object-required.yml │ │ ├── operation-object-type.json │ │ ├── operation-object-type.yml │ │ ├── operation-saveResultAsEntity-type.json │ │ ├── operation-saveResultAsEntity-type.yml │ │ ├── runOnRequirement-additionalProperties.json │ │ ├── runOnRequirement-additionalProperties.yml │ │ ├── runOnRequirement-auth-type.json │ │ ├── runOnRequirement-auth-type.yml │ │ ├── runOnRequirement-authMechanism-type.json │ │ ├── runOnRequirement-authMechanism-type.yml │ │ ├── runOnRequirement-csfle-minLibmongocryptVersion-pattern.json │ │ ├── runOnRequirement-csfle-minLibmongocryptVersion-pattern.yml │ │ ├── runOnRequirement-csfle-minLibmongocryptVersion-type.json │ │ ├── runOnRequirement-csfle-minLibmongocryptVersion-type.yml │ │ ├── runOnRequirement-csfle-type.json │ │ ├── runOnRequirement-csfle-type.yml │ │ ├── runOnRequirement-maxServerVersion-pattern.json │ │ ├── runOnRequirement-maxServerVersion-pattern.yml │ │ ├── runOnRequirement-maxServerVersion-type.json │ │ ├── runOnRequirement-maxServerVersion-type.yml │ │ ├── runOnRequirement-minProperties.json │ │ ├── runOnRequirement-minProperties.yml │ │ ├── runOnRequirement-minServerVersion-pattern.json │ │ ├── runOnRequirement-minServerVersion-pattern.yml │ │ ├── runOnRequirement-minServerVersion-type.json │ │ ├── runOnRequirement-minServerVersion-type.yml │ │ ├── runOnRequirement-serverless-enum.json │ │ ├── runOnRequirement-serverless-enum.yml │ │ ├── runOnRequirement-serverless-type.json │ │ ├── runOnRequirement-serverless-type.yml │ │ ├── runOnRequirement-topologies-enum.json │ │ ├── runOnRequirement-topologies-enum.yml │ │ ├── runOnRequirement-topologies-items.json │ │ ├── runOnRequirement-topologies-items.yml │ │ ├── runOnRequirement-topologies-minItems.json │ │ ├── runOnRequirement-topologies-minItems.yml │ │ ├── runOnRequirement-topologies-type.json │ │ ├── runOnRequirement-topologies-type.yml │ │ ├── runOnRequirements-items.json │ │ ├── runOnRequirements-items.yml │ │ ├── runOnRequirements-minItems.json │ │ ├── runOnRequirements-minItems.yml │ │ ├── runOnRequirements-type.json │ │ ├── runOnRequirements-type.yml │ │ ├── schemaVersion-pattern.json │ │ ├── schemaVersion-pattern.yml │ │ ├── schemaVersion-required.json │ │ ├── schemaVersion-required.yml │ │ ├── schemaVersion-type.json │ │ ├── schemaVersion-type.yml │ │ ├── test-additionalProperties.json │ │ ├── test-additionalProperties.yml │ │ ├── test-description-required.json │ │ ├── test-description-required.yml │ │ ├── test-description-type.json │ │ ├── test-description-type.yml │ │ ├── test-expectEvents-items.json │ │ ├── test-expectEvents-items.yml │ │ ├── test-expectEvents-minItems.json │ │ ├── test-expectEvents-minItems.yml │ │ ├── test-expectEvents-type.json │ │ ├── test-expectEvents-type.yml │ │ ├── test-expectLogMessages-items.json │ │ ├── test-expectLogMessages-items.yml │ │ ├── test-expectLogMessages-minItems.json │ │ ├── test-expectLogMessages-minItems.yml │ │ ├── test-expectLogMessages-type.json │ │ ├── test-expectLogMessages-type.yml │ │ ├── test-operations-items.json │ │ ├── test-operations-items.yml │ │ ├── test-operations-required.json │ │ ├── test-operations-required.yml │ │ ├── test-operations-type.json │ │ ├── test-operations-type.yml │ │ ├── test-outcome-items.json │ │ ├── test-outcome-items.yml │ │ ├── test-outcome-minItems.json │ │ ├── test-outcome-minItems.yml │ │ ├── test-outcome-type.json │ │ ├── test-outcome-type.yml │ │ ├── test-runOnRequirements-items.json │ │ ├── test-runOnRequirements-items.yml │ │ ├── test-runOnRequirements-minItems.json │ │ ├── test-runOnRequirements-minItems.yml │ │ ├── test-runOnRequirements-type.json │ │ ├── test-runOnRequirements-type.yml │ │ ├── test-skipReason-type.json │ │ ├── test-skipReason-type.yml │ │ ├── tests-items.json │ │ ├── tests-items.yml │ │ ├── tests-minItems.json │ │ ├── tests-minItems.yml │ │ ├── tests-required.json │ │ ├── tests-required.yml │ │ ├── tests-type.json │ │ └── tests-type.yml │ ├── valid-fail │ │ ├── assertNumberConnectionsCheckedOut.json │ │ ├── assertNumberConnectionsCheckedOut.yml │ │ ├── entity-bucket-database-undefined.json │ │ ├── entity-bucket-database-undefined.yml │ │ ├── entity-client-apiVersion-unsupported.json │ │ ├── entity-client-apiVersion-unsupported.yml │ │ ├── entity-collection-database-undefined.json │ │ ├── entity-collection-database-undefined.yml │ │ ├── entity-database-client-undefined.json │ │ ├── entity-database-client-undefined.yml │ │ ├── entity-findCursor-malformed.json │ │ ├── entity-findCursor-malformed.yml │ │ ├── entity-findCursor.json │ │ ├── entity-findCursor.yml │ │ ├── entity-session-client-undefined.json │ │ ├── entity-session-client-undefined.yml │ │ ├── ignoreResultAndError-malformed.json │ │ ├── ignoreResultAndError-malformed.yml │ │ ├── ignoreResultAndError.json │ │ ├── ignoreResultAndError.yml │ │ ├── kmsProviders-missing_aws_kms_credentials.json │ │ ├── kmsProviders-missing_aws_kms_credentials.yml │ │ ├── kmsProviders-missing_azure_kms_credentials.json │ │ ├── kmsProviders-missing_azure_kms_credentials.yml │ │ ├── kmsProviders-missing_gcp_kms_credentials.json │ │ ├── kmsProviders-missing_gcp_kms_credentials.yml │ │ ├── kmsProviders-no_kms.json │ │ ├── kmsProviders-no_kms.yml │ │ ├── operation-failure.json │ │ ├── operation-failure.yml │ │ ├── operation-unsupported.json │ │ ├── operation-unsupported.yml │ │ ├── operator-matchAsDocument.json │ │ ├── operator-matchAsDocument.yml │ │ ├── operator-matchAsRoot.json │ │ ├── operator-matchAsRoot.yml │ │ ├── returnDocument-enum-invalid.json │ │ ├── returnDocument-enum-invalid.yml │ │ ├── schemaVersion-unsupported.json │ │ └── schemaVersion-unsupported.yml │ └── valid-pass │ │ ├── assertNumberConnectionsCheckedOut.json │ │ ├── assertNumberConnectionsCheckedOut.yml │ │ ├── collectionData-createOptions.json │ │ ├── collectionData-createOptions.yml │ │ ├── createEntities-operation.json │ │ ├── createEntities-operation.yml │ │ ├── entity-client-cmap-events.json │ │ ├── entity-client-cmap-events.yml │ │ ├── entity-commandCursor.json │ │ ├── entity-commandCursor.yml │ │ ├── entity-cursor-iterateOnce.json │ │ ├── entity-cursor-iterateOnce.yml │ │ ├── entity-find-cursor.json │ │ ├── entity-find-cursor.yml │ │ ├── expectedError-errorResponse.json │ │ ├── expectedError-errorResponse.yml │ │ ├── expectedError-isClientError.json │ │ ├── expectedError-isClientError.yml │ │ ├── expectedEventsForClient-eventType.json │ │ ├── expectedEventsForClient-eventType.yml │ │ ├── expectedEventsForClient-ignoreExtraEvents.json │ │ ├── expectedEventsForClient-ignoreExtraEvents.yml │ │ ├── expectedEventsForClient-topologyDescriptionChangedEvent.json │ │ ├── expectedEventsForClient-topologyDescriptionChangedEvent.yml │ │ ├── ignoreResultAndError.json │ │ ├── ignoreResultAndError.yml │ │ ├── kmsProviders-explicit_kms_credentials.json │ │ ├── kmsProviders-explicit_kms_credentials.yml │ │ ├── kmsProviders-mixed_kms_credential_fields.json │ │ ├── kmsProviders-mixed_kms_credential_fields.yml │ │ ├── kmsProviders-placeholder_kms_credentials.json │ │ ├── kmsProviders-placeholder_kms_credentials.yml │ │ ├── kmsProviders-unconfigured_kms.json │ │ ├── kmsProviders-unconfigured_kms.yml │ │ ├── observeSensitiveCommands.json │ │ ├── observeSensitiveCommands.yml │ │ ├── operation-empty_array.json │ │ ├── operation-empty_array.yml │ │ ├── operator-lte.json │ │ ├── operator-lte.yml │ │ ├── operator-matchAsDocument.json │ │ ├── operator-matchAsDocument.yml │ │ ├── operator-matchAsRoot.json │ │ ├── operator-matchAsRoot.yml │ │ ├── operator-type-number_alias.json │ │ ├── operator-type-number_alias.yml │ │ ├── poc-change-streams.json │ │ ├── poc-change-streams.yml │ │ ├── poc-command-monitoring.json │ │ ├── poc-command-monitoring.yml │ │ ├── poc-crud.json │ │ ├── poc-crud.yml │ │ ├── poc-gridfs.json │ │ ├── poc-gridfs.yml │ │ ├── poc-queryable-encryption.json │ │ ├── poc-queryable-encryption.yml │ │ ├── poc-retryable-reads.json │ │ ├── poc-retryable-reads.yml │ │ ├── poc-retryable-writes.json │ │ ├── poc-retryable-writes.yml │ │ ├── poc-sessions.json │ │ ├── poc-sessions.yml │ │ ├── poc-transactions-convenient-api.json │ │ ├── poc-transactions-convenient-api.yml │ │ ├── poc-transactions-mongos-pin-auto.json │ │ ├── poc-transactions-mongos-pin-auto.yml │ │ ├── poc-transactions.json │ │ └── poc-transactions.yml ├── unified-test-format.md └── unified-test-format.rst ├── uri-options ├── tests │ ├── README.md │ ├── auth-options.json │ ├── auth-options.yml │ ├── ca.pem │ ├── cert.pem │ ├── client.pem │ ├── compression-options.json │ ├── compression-options.yml │ ├── concern-options.json │ ├── concern-options.yml │ ├── connection-options.json │ ├── connection-options.yml │ ├── connection-pool-options.json │ ├── connection-pool-options.yml │ ├── proxy-options.json │ ├── proxy-options.yml │ ├── read-preference-options.json │ ├── read-preference-options.yml │ ├── sdam-options.json │ ├── sdam-options.yml │ ├── single-threaded-options.json │ ├── single-threaded-options.yml │ ├── srv-options.json │ ├── srv-options.yml │ ├── tls-options.json │ └── tls-options.yml ├── uri-options.md └── uri-options.rst ├── uuid.rst ├── versioned-api ├── tests │ ├── README.md │ ├── crud-api-version-1-strict.json │ ├── crud-api-version-1-strict.yml │ ├── crud-api-version-1.json │ ├── crud-api-version-1.yml │ ├── runcommand-helper-no-api-version-declared.json │ ├── runcommand-helper-no-api-version-declared.yml │ ├── test-commands-deprecation-errors.json │ ├── test-commands-deprecation-errors.yml │ ├── test-commands-strict-mode.json │ ├── test-commands-strict-mode.yml │ ├── transaction-handling.json │ └── transaction-handling.yml ├── versioned-api.md └── versioned-api.rst ├── wireversion-featurelist.rst └── wireversion-featurelist └── wireversion-featurelist.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/check-schema-latest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/.github/workflows/check-schema-latest.sh -------------------------------------------------------------------------------- /.github/workflows/check_schema_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/.github/workflows/check_schema_version.sh -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/unified-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/.github/workflows/unified-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/README.md -------------------------------------------------------------------------------- /bin/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/bin/builder.py -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/workforce-human-oidc-auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/docs/workforce-human-oidc-auth.md -------------------------------------------------------------------------------- /markdown_link_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/markdown_link_config.json -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/check_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/scripts/check_links.py -------------------------------------------------------------------------------- /scripts/check_md_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/scripts/check_md_html.py -------------------------------------------------------------------------------- /scripts/generate_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/scripts/generate_index.py -------------------------------------------------------------------------------- /scripts/migrate_to_md.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/scripts/migrate_to_md.py -------------------------------------------------------------------------------- /source/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/Makefile -------------------------------------------------------------------------------- /source/auth/auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/auth/auth.md -------------------------------------------------------------------------------- /source/auth/auth.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/auth/auth.rst -------------------------------------------------------------------------------- /source/auth/includes/calculating_a_signature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/auth/includes/calculating_a_signature.png -------------------------------------------------------------------------------- /source/auth/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/auth/tests/README.md -------------------------------------------------------------------------------- /source/auth/tests/legacy/connection-string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/auth/tests/legacy/connection-string.json -------------------------------------------------------------------------------- /source/auth/tests/legacy/connection-string.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/auth/tests/legacy/connection-string.yml -------------------------------------------------------------------------------- /source/auth/tests/mongodb-aws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/auth/tests/mongodb-aws.md -------------------------------------------------------------------------------- /source/auth/tests/mongodb-oidc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/auth/tests/mongodb-oidc.md -------------------------------------------------------------------------------- /source/auth/tests/unified/mongodb-oidc-no-retry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/auth/tests/unified/mongodb-oidc-no-retry.json -------------------------------------------------------------------------------- /source/auth/tests/unified/mongodb-oidc-no-retry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/auth/tests/unified/mongodb-oidc-no-retry.yml -------------------------------------------------------------------------------- /source/benchmarking/benchmarking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/benchmarking/benchmarking.md -------------------------------------------------------------------------------- /source/benchmarking/benchmarking.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/benchmarking/benchmarking.rst -------------------------------------------------------------------------------- /source/benchmarking/data/extended_bson.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/benchmarking/data/extended_bson.tgz -------------------------------------------------------------------------------- /source/benchmarking/data/extended_bson_legacy.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/benchmarking/data/extended_bson_legacy.tgz -------------------------------------------------------------------------------- /source/benchmarking/data/parallel.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/benchmarking/data/parallel.tgz -------------------------------------------------------------------------------- /source/benchmarking/data/single_and_multi_document.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/benchmarking/data/single_and_multi_document.tgz -------------------------------------------------------------------------------- /source/benchmarking/odm-benchmarking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/benchmarking/odm-benchmarking.md -------------------------------------------------------------------------------- /source/benchmarking/odm-data/flat_models.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/benchmarking/odm-data/flat_models.tgz -------------------------------------------------------------------------------- /source/benchmarking/odm-data/nested_models.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/benchmarking/odm-data/nested_models.tgz -------------------------------------------------------------------------------- /source/bson-binary-encrypted/binary-encrypted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-binary-encrypted/binary-encrypted.md -------------------------------------------------------------------------------- /source/bson-binary-uuid/uuid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-binary-uuid/uuid.md -------------------------------------------------------------------------------- /source/bson-binary-vector/bson-binary-vector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-binary-vector/bson-binary-vector.md -------------------------------------------------------------------------------- /source/bson-binary-vector/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-binary-vector/tests/README.md -------------------------------------------------------------------------------- /source/bson-binary-vector/tests/float32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-binary-vector/tests/float32.json -------------------------------------------------------------------------------- /source/bson-binary-vector/tests/int8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-binary-vector/tests/int8.json -------------------------------------------------------------------------------- /source/bson-binary-vector/tests/packed_bit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-binary-vector/tests/packed_bit.json -------------------------------------------------------------------------------- /source/bson-corpus/bson-corpus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-corpus/bson-corpus.md -------------------------------------------------------------------------------- /source/bson-corpus/bson-corpus.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-corpus/bson-corpus.rst -------------------------------------------------------------------------------- /source/bson-corpus/tests/array.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-corpus/tests/array.json -------------------------------------------------------------------------------- /source/bson-corpus/tests/binary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-corpus/tests/binary.json -------------------------------------------------------------------------------- /source/bson-corpus/tests/boolean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-corpus/tests/boolean.json -------------------------------------------------------------------------------- /source/bson-corpus/tests/bsonview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-corpus/tests/bsonview -------------------------------------------------------------------------------- /source/bson-corpus/tests/code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-corpus/tests/code.json -------------------------------------------------------------------------------- /source/bson-corpus/tests/code_w_scope.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-corpus/tests/code_w_scope.json -------------------------------------------------------------------------------- /source/bson-corpus/tests/datetime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-corpus/tests/datetime.json -------------------------------------------------------------------------------- /source/bson-corpus/tests/dbpointer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-corpus/tests/dbpointer.json -------------------------------------------------------------------------------- /source/bson-corpus/tests/dbref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-corpus/tests/dbref.json -------------------------------------------------------------------------------- /source/bson-corpus/tests/decimal128-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-corpus/tests/decimal128-1.json -------------------------------------------------------------------------------- /source/bson-corpus/tests/decimal128-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-corpus/tests/decimal128-2.json -------------------------------------------------------------------------------- /source/bson-corpus/tests/decimal128-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-corpus/tests/decimal128-3.json -------------------------------------------------------------------------------- /source/bson-corpus/tests/decimal128-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-corpus/tests/decimal128-4.json -------------------------------------------------------------------------------- /source/bson-corpus/tests/decimal128-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-corpus/tests/decimal128-5.json -------------------------------------------------------------------------------- /source/bson-corpus/tests/decimal128-6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-corpus/tests/decimal128-6.json -------------------------------------------------------------------------------- /source/bson-corpus/tests/decimal128-7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-corpus/tests/decimal128-7.json -------------------------------------------------------------------------------- /source/bson-corpus/tests/document.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-corpus/tests/document.json -------------------------------------------------------------------------------- /source/bson-corpus/tests/double.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-corpus/tests/double.json -------------------------------------------------------------------------------- /source/bson-corpus/tests/int32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-corpus/tests/int32.json -------------------------------------------------------------------------------- /source/bson-corpus/tests/int64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-corpus/tests/int64.json -------------------------------------------------------------------------------- /source/bson-corpus/tests/maxkey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-corpus/tests/maxkey.json -------------------------------------------------------------------------------- /source/bson-corpus/tests/minkey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-corpus/tests/minkey.json -------------------------------------------------------------------------------- /source/bson-corpus/tests/multi-type-deprecated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-corpus/tests/multi-type-deprecated.json -------------------------------------------------------------------------------- /source/bson-corpus/tests/multi-type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-corpus/tests/multi-type.json -------------------------------------------------------------------------------- /source/bson-corpus/tests/null.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-corpus/tests/null.json -------------------------------------------------------------------------------- /source/bson-corpus/tests/oid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-corpus/tests/oid.json -------------------------------------------------------------------------------- /source/bson-corpus/tests/regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-corpus/tests/regex.json -------------------------------------------------------------------------------- /source/bson-corpus/tests/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-corpus/tests/string.json -------------------------------------------------------------------------------- /source/bson-corpus/tests/symbol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-corpus/tests/symbol.json -------------------------------------------------------------------------------- /source/bson-corpus/tests/timestamp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-corpus/tests/timestamp.json -------------------------------------------------------------------------------- /source/bson-corpus/tests/top.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-corpus/tests/top.json -------------------------------------------------------------------------------- /source/bson-corpus/tests/undefined.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-corpus/tests/undefined.json -------------------------------------------------------------------------------- /source/bson-decimal128/decimal128.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-decimal128/decimal128.md -------------------------------------------------------------------------------- /source/bson-decimal128/decimal128.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-decimal128/decimal128.rst -------------------------------------------------------------------------------- /source/bson-objectid/objectid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/bson-objectid/objectid.md -------------------------------------------------------------------------------- /source/causal-consistency/causal-consistency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/causal-consistency/causal-consistency.md -------------------------------------------------------------------------------- /source/causal-consistency/causal-consistency.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/causal-consistency/causal-consistency.rst -------------------------------------------------------------------------------- /source/change-streams/change-streams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/change-streams/change-streams.md -------------------------------------------------------------------------------- /source/change-streams/change-streams.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/change-streams/change-streams.rst -------------------------------------------------------------------------------- /source/change-streams/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/change-streams/tests/README.md -------------------------------------------------------------------------------- /source/change-streams/tests/unified/change-streams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/change-streams/tests/unified/change-streams.json -------------------------------------------------------------------------------- /source/change-streams/tests/unified/change-streams.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/change-streams/tests/unified/change-streams.yml -------------------------------------------------------------------------------- /source/client-side-encryption/client-side-encryption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/client-side-encryption.md -------------------------------------------------------------------------------- /source/client-side-encryption/client-side-encryption.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/client-side-encryption.rst -------------------------------------------------------------------------------- /source/client-side-encryption/corpus/corpus-key-aws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/corpus/corpus-key-aws.json -------------------------------------------------------------------------------- /source/client-side-encryption/corpus/corpus-key-gcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/corpus/corpus-key-gcp.json -------------------------------------------------------------------------------- /source/client-side-encryption/corpus/corpus-key-kmip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/corpus/corpus-key-kmip.json -------------------------------------------------------------------------------- /source/client-side-encryption/corpus/corpus-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/corpus/corpus-schema.json -------------------------------------------------------------------------------- /source/client-side-encryption/corpus/corpus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/corpus/corpus.json -------------------------------------------------------------------------------- /source/client-side-encryption/etc/data/keys/key1-id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/etc/data/keys/key1-id.json -------------------------------------------------------------------------------- /source/client-side-encryption/etc/data/keys/key2-id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/etc/data/keys/key2-id.json -------------------------------------------------------------------------------- /source/client-side-encryption/etc/data/lookup/schema-non-csfle.json: -------------------------------------------------------------------------------- 1 | { 2 | "bsonType": "object" 3 | } 4 | -------------------------------------------------------------------------------- /source/client-side-encryption/etc/generate-corpus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/etc/generate-corpus.py -------------------------------------------------------------------------------- /source/client-side-encryption/etc/generate-limits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/etc/generate-limits.py -------------------------------------------------------------------------------- /source/client-side-encryption/etc/generate-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/etc/generate-test.py -------------------------------------------------------------------------------- /source/client-side-encryption/etc/update-corpus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/etc/update-corpus.py -------------------------------------------------------------------------------- /source/client-side-encryption/etc/validate-corpus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/etc/validate-corpus.py -------------------------------------------------------------------------------- /source/client-side-encryption/external/external-key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/external/external-key.json -------------------------------------------------------------------------------- /source/client-side-encryption/includes/components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/includes/components.png -------------------------------------------------------------------------------- /source/client-side-encryption/limits/limits-doc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/limits/limits-doc.json -------------------------------------------------------------------------------- /source/client-side-encryption/limits/limits-key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/limits/limits-key.json -------------------------------------------------------------------------------- /source/client-side-encryption/limits/limits-qe-doc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/limits/limits-qe-doc.json -------------------------------------------------------------------------------- /source/client-side-encryption/limits/limits-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/limits/limits-schema.json -------------------------------------------------------------------------------- /source/client-side-encryption/subtype6.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/subtype6.rst -------------------------------------------------------------------------------- /source/client-side-encryption/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/README.md -------------------------------------------------------------------------------- /source/client-side-encryption/tests/benchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/benchmarks.md -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/aggregate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/aggregate.json -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/aggregate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/aggregate.yml -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/azureKMS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/azureKMS.json -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/azureKMS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/azureKMS.yml -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/badQueries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/badQueries.yml -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/badSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/badSchema.json -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/badSchema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/badSchema.yml -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/basic.json -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/basic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/basic.yml -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/bulk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/bulk.json -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/bulk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/bulk.yml -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/count.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/count.json -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/count.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/count.yml -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/delete.json -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/delete.yml -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/distinct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/distinct.json -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/distinct.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/distinct.yml -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/explain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/explain.json -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/explain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/explain.yml -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/find.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/find.json -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/find.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/find.yml -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/gcpKMS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/gcpKMS.json -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/gcpKMS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/gcpKMS.yml -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/getMore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/getMore.json -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/getMore.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/getMore.yml -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/insert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/insert.json -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/insert.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/insert.yml -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/keyAltName.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/keyAltName.yml -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/keyCache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/keyCache.json -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/keyCache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/keyCache.yml -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/kmipKMS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/kmipKMS.json -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/kmipKMS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/kmipKMS.yml -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/localKMS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/localKMS.json -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/localKMS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/localKMS.yml -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/missingKey.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/missingKey.yml -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/namedKMS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/namedKMS.json -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/namedKMS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/namedKMS.yml -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/noSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/noSchema.json -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/noSchema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/noSchema.yml -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/replaceOne.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/replaceOne.yml -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/timeoutMS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/timeoutMS.json -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/types.json -------------------------------------------------------------------------------- /source/client-side-encryption/tests/legacy/types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/legacy/types.yml -------------------------------------------------------------------------------- /source/client-side-encryption/tests/unified/basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/unified/basic.json -------------------------------------------------------------------------------- /source/client-side-encryption/tests/unified/basic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/unified/basic.yml -------------------------------------------------------------------------------- /source/client-side-encryption/tests/unified/bulk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/unified/bulk.json -------------------------------------------------------------------------------- /source/client-side-encryption/tests/unified/bulk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/unified/bulk.yml -------------------------------------------------------------------------------- /source/client-side-encryption/tests/unified/count.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/unified/count.json -------------------------------------------------------------------------------- /source/client-side-encryption/tests/unified/count.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/unified/count.yml -------------------------------------------------------------------------------- /source/client-side-encryption/tests/unified/delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/unified/delete.json -------------------------------------------------------------------------------- /source/client-side-encryption/tests/unified/delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/unified/delete.yml -------------------------------------------------------------------------------- /source/client-side-encryption/tests/unified/explain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/unified/explain.yml -------------------------------------------------------------------------------- /source/client-side-encryption/tests/unified/find.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/unified/find.json -------------------------------------------------------------------------------- /source/client-side-encryption/tests/unified/find.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/unified/find.yml -------------------------------------------------------------------------------- /source/client-side-encryption/tests/unified/gcpKMS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/unified/gcpKMS.json -------------------------------------------------------------------------------- /source/client-side-encryption/tests/unified/gcpKMS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/unified/gcpKMS.yml -------------------------------------------------------------------------------- /source/client-side-encryption/tests/unified/getKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/unified/getKey.json -------------------------------------------------------------------------------- /source/client-side-encryption/tests/unified/getKey.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/unified/getKey.yml -------------------------------------------------------------------------------- /source/client-side-encryption/tests/unified/getKeys.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/unified/getKeys.yml -------------------------------------------------------------------------------- /source/client-side-encryption/tests/unified/getMore.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/unified/getMore.yml -------------------------------------------------------------------------------- /source/client-side-encryption/tests/unified/insert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/unified/insert.json -------------------------------------------------------------------------------- /source/client-side-encryption/tests/unified/insert.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/unified/insert.yml -------------------------------------------------------------------------------- /source/client-side-encryption/tests/unified/kmipKMS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/unified/kmipKMS.yml -------------------------------------------------------------------------------- /source/client-side-encryption/tests/unified/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/unified/types.json -------------------------------------------------------------------------------- /source/client-side-encryption/tests/unified/types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-encryption/tests/unified/types.yml -------------------------------------------------------------------------------- /source/client-side-operations-timeout/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-operations-timeout/tests/README.md -------------------------------------------------------------------------------- /source/client-side-operations-timeout/tests/cursors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/client-side-operations-timeout/tests/cursors.yml -------------------------------------------------------------------------------- /source/collation/collation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/collation/collation.md -------------------------------------------------------------------------------- /source/collation/collation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/collation/collation.rst -------------------------------------------------------------------------------- /source/collection-management/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/collection-management/tests/README.md -------------------------------------------------------------------------------- /source/command-logging-and-monitoring/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/command-logging-and-monitoring/tests/README.md -------------------------------------------------------------------------------- /source/compression/OP_COMPRESSED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/compression/OP_COMPRESSED.md -------------------------------------------------------------------------------- /source/compression/OP_COMPRESSED.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/compression/OP_COMPRESSED.rst -------------------------------------------------------------------------------- /source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/conf.py -------------------------------------------------------------------------------- /source/connection-string/connection-string-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/connection-string/connection-string-spec.md -------------------------------------------------------------------------------- /source/connection-string/connection-string-spec.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/connection-string/connection-string-spec.rst -------------------------------------------------------------------------------- /source/connection-string/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/connection-string/tests/README.md -------------------------------------------------------------------------------- /source/connection-string/tests/invalid-uris.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/connection-string/tests/invalid-uris.json -------------------------------------------------------------------------------- /source/connection-string/tests/invalid-uris.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/connection-string/tests/invalid-uris.yml -------------------------------------------------------------------------------- /source/connection-string/tests/valid-auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/connection-string/tests/valid-auth.json -------------------------------------------------------------------------------- /source/connection-string/tests/valid-auth.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/connection-string/tests/valid-auth.yml -------------------------------------------------------------------------------- /source/connection-string/tests/valid-options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/connection-string/tests/valid-options.json -------------------------------------------------------------------------------- /source/connection-string/tests/valid-options.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/connection-string/tests/valid-options.yml -------------------------------------------------------------------------------- /source/connection-string/tests/valid-warnings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/connection-string/tests/valid-warnings.json -------------------------------------------------------------------------------- /source/connection-string/tests/valid-warnings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/connection-string/tests/valid-warnings.yml -------------------------------------------------------------------------------- /source/connections-survive-step-down/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/connections-survive-step-down/tests/README.md -------------------------------------------------------------------------------- /source/crud/bulk-write.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/bulk-write.md -------------------------------------------------------------------------------- /source/crud/crud.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/crud.md -------------------------------------------------------------------------------- /source/crud/crud.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/crud.rst -------------------------------------------------------------------------------- /source/crud/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/README.md -------------------------------------------------------------------------------- /source/crud/tests/unified/aggregate-allowdiskuse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/aggregate-allowdiskuse.json -------------------------------------------------------------------------------- /source/crud/tests/unified/aggregate-allowdiskuse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/aggregate-allowdiskuse.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/aggregate-collation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/aggregate-collation.json -------------------------------------------------------------------------------- /source/crud/tests/unified/aggregate-collation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/aggregate-collation.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/aggregate-let.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/aggregate-let.json -------------------------------------------------------------------------------- /source/crud/tests/unified/aggregate-let.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/aggregate-let.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/aggregate-merge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/aggregate-merge.json -------------------------------------------------------------------------------- /source/crud/tests/unified/aggregate-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/aggregate-merge.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/aggregate-out-readConcern.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/aggregate-out-readConcern.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/aggregate-out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/aggregate-out.json -------------------------------------------------------------------------------- /source/crud/tests/unified/aggregate-out.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/aggregate-out.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/aggregate-rawdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/aggregate-rawdata.json -------------------------------------------------------------------------------- /source/crud/tests/unified/aggregate-rawdata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/aggregate-rawdata.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/aggregate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/aggregate.json -------------------------------------------------------------------------------- /source/crud/tests/unified/aggregate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/aggregate.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/bulkWrite-arrayFilters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/bulkWrite-arrayFilters.json -------------------------------------------------------------------------------- /source/crud/tests/unified/bulkWrite-arrayFilters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/bulkWrite-arrayFilters.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/bulkWrite-collation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/bulkWrite-collation.json -------------------------------------------------------------------------------- /source/crud/tests/unified/bulkWrite-collation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/bulkWrite-collation.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/bulkWrite-comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/bulkWrite-comment.json -------------------------------------------------------------------------------- /source/crud/tests/unified/bulkWrite-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/bulkWrite-comment.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/bulkWrite-delete-hint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/bulkWrite-delete-hint.json -------------------------------------------------------------------------------- /source/crud/tests/unified/bulkWrite-delete-hint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/bulkWrite-delete-hint.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/bulkWrite-deleteMany-let.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/bulkWrite-deleteMany-let.json -------------------------------------------------------------------------------- /source/crud/tests/unified/bulkWrite-deleteMany-let.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/bulkWrite-deleteMany-let.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/bulkWrite-deleteOne-let.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/bulkWrite-deleteOne-let.json -------------------------------------------------------------------------------- /source/crud/tests/unified/bulkWrite-deleteOne-let.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/bulkWrite-deleteOne-let.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/bulkWrite-errorResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/bulkWrite-errorResponse.json -------------------------------------------------------------------------------- /source/crud/tests/unified/bulkWrite-errorResponse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/bulkWrite-errorResponse.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/bulkWrite-replaceOne-let.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/bulkWrite-replaceOne-let.json -------------------------------------------------------------------------------- /source/crud/tests/unified/bulkWrite-replaceOne-let.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/bulkWrite-replaceOne-let.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/bulkWrite-replaceOne-sort.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/bulkWrite-replaceOne-sort.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/bulkWrite-update-hint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/bulkWrite-update-hint.json -------------------------------------------------------------------------------- /source/crud/tests/unified/bulkWrite-update-hint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/bulkWrite-update-hint.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/bulkWrite-updateMany-let.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/bulkWrite-updateMany-let.json -------------------------------------------------------------------------------- /source/crud/tests/unified/bulkWrite-updateMany-let.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/bulkWrite-updateMany-let.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/bulkWrite-updateOne-let.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/bulkWrite-updateOne-let.json -------------------------------------------------------------------------------- /source/crud/tests/unified/bulkWrite-updateOne-let.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/bulkWrite-updateOne-let.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/bulkWrite-updateOne-sort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/bulkWrite-updateOne-sort.json -------------------------------------------------------------------------------- /source/crud/tests/unified/bulkWrite-updateOne-sort.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/bulkWrite-updateOne-sort.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/bulkWrite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/bulkWrite.json -------------------------------------------------------------------------------- /source/crud/tests/unified/bulkWrite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/bulkWrite.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/bypassDocumentValidation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/bypassDocumentValidation.json -------------------------------------------------------------------------------- /source/crud/tests/unified/bypassDocumentValidation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/bypassDocumentValidation.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/client-bulkWrite-errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/client-bulkWrite-errors.json -------------------------------------------------------------------------------- /source/crud/tests/unified/client-bulkWrite-errors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/client-bulkWrite-errors.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/client-bulkWrite-options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/client-bulkWrite-options.json -------------------------------------------------------------------------------- /source/crud/tests/unified/client-bulkWrite-options.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/client-bulkWrite-options.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/client-bulkWrite-ordered.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/client-bulkWrite-ordered.json -------------------------------------------------------------------------------- /source/crud/tests/unified/client-bulkWrite-ordered.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/client-bulkWrite-ordered.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/client-bulkWrite-results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/client-bulkWrite-results.json -------------------------------------------------------------------------------- /source/crud/tests/unified/client-bulkWrite-results.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/client-bulkWrite-results.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/count-collation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/count-collation.json -------------------------------------------------------------------------------- /source/crud/tests/unified/count-collation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/count-collation.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/count-empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/count-empty.json -------------------------------------------------------------------------------- /source/crud/tests/unified/count-empty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/count-empty.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/count-rawdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/count-rawdata.json -------------------------------------------------------------------------------- /source/crud/tests/unified/count-rawdata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/count-rawdata.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/count.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/count.json -------------------------------------------------------------------------------- /source/crud/tests/unified/count.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/count.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/countDocuments-comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/countDocuments-comment.json -------------------------------------------------------------------------------- /source/crud/tests/unified/countDocuments-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/countDocuments-comment.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/countDocuments-rawdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/countDocuments-rawdata.json -------------------------------------------------------------------------------- /source/crud/tests/unified/countDocuments-rawdata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/countDocuments-rawdata.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/create-null-ids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/create-null-ids.json -------------------------------------------------------------------------------- /source/crud/tests/unified/create-null-ids.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/create-null-ids.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/db-aggregate-rawdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/db-aggregate-rawdata.json -------------------------------------------------------------------------------- /source/crud/tests/unified/db-aggregate-rawdata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/db-aggregate-rawdata.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/db-aggregate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/db-aggregate.json -------------------------------------------------------------------------------- /source/crud/tests/unified/db-aggregate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/db-aggregate.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/deleteMany-collation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/deleteMany-collation.json -------------------------------------------------------------------------------- /source/crud/tests/unified/deleteMany-collation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/deleteMany-collation.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/deleteMany-comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/deleteMany-comment.json -------------------------------------------------------------------------------- /source/crud/tests/unified/deleteMany-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/deleteMany-comment.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/deleteMany-hint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/deleteMany-hint.json -------------------------------------------------------------------------------- /source/crud/tests/unified/deleteMany-hint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/deleteMany-hint.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/deleteMany-let.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/deleteMany-let.json -------------------------------------------------------------------------------- /source/crud/tests/unified/deleteMany-let.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/deleteMany-let.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/deleteMany-rawdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/deleteMany-rawdata.json -------------------------------------------------------------------------------- /source/crud/tests/unified/deleteMany-rawdata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/deleteMany-rawdata.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/deleteMany.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/deleteMany.json -------------------------------------------------------------------------------- /source/crud/tests/unified/deleteMany.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/deleteMany.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/deleteOne-collation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/deleteOne-collation.json -------------------------------------------------------------------------------- /source/crud/tests/unified/deleteOne-collation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/deleteOne-collation.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/deleteOne-comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/deleteOne-comment.json -------------------------------------------------------------------------------- /source/crud/tests/unified/deleteOne-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/deleteOne-comment.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/deleteOne-errorResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/deleteOne-errorResponse.json -------------------------------------------------------------------------------- /source/crud/tests/unified/deleteOne-errorResponse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/deleteOne-errorResponse.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/deleteOne-hint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/deleteOne-hint.json -------------------------------------------------------------------------------- /source/crud/tests/unified/deleteOne-hint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/deleteOne-hint.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/deleteOne-let.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/deleteOne-let.json -------------------------------------------------------------------------------- /source/crud/tests/unified/deleteOne-let.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/deleteOne-let.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/deleteOne-rawdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/deleteOne-rawdata.json -------------------------------------------------------------------------------- /source/crud/tests/unified/deleteOne-rawdata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/deleteOne-rawdata.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/deleteOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/deleteOne.json -------------------------------------------------------------------------------- /source/crud/tests/unified/deleteOne.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/deleteOne.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/distinct-collation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/distinct-collation.json -------------------------------------------------------------------------------- /source/crud/tests/unified/distinct-collation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/distinct-collation.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/distinct-comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/distinct-comment.json -------------------------------------------------------------------------------- /source/crud/tests/unified/distinct-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/distinct-comment.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/distinct-hint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/distinct-hint.json -------------------------------------------------------------------------------- /source/crud/tests/unified/distinct-hint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/distinct-hint.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/distinct-rawdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/distinct-rawdata.json -------------------------------------------------------------------------------- /source/crud/tests/unified/distinct-rawdata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/distinct-rawdata.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/distinct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/distinct.json -------------------------------------------------------------------------------- /source/crud/tests/unified/distinct.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/distinct.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/estimatedDocumentCount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/estimatedDocumentCount.json -------------------------------------------------------------------------------- /source/crud/tests/unified/estimatedDocumentCount.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/estimatedDocumentCount.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/find-allowdiskuse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/find-allowdiskuse.json -------------------------------------------------------------------------------- /source/crud/tests/unified/find-allowdiskuse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/find-allowdiskuse.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/find-collation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/find-collation.json -------------------------------------------------------------------------------- /source/crud/tests/unified/find-collation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/find-collation.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/find-comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/find-comment.json -------------------------------------------------------------------------------- /source/crud/tests/unified/find-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/find-comment.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/find-let.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/find-let.json -------------------------------------------------------------------------------- /source/crud/tests/unified/find-let.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/find-let.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/find-rawdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/find-rawdata.json -------------------------------------------------------------------------------- /source/crud/tests/unified/find-rawdata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/find-rawdata.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/find.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/find.json -------------------------------------------------------------------------------- /source/crud/tests/unified/find.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/find.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/findOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/findOne.json -------------------------------------------------------------------------------- /source/crud/tests/unified/findOne.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/findOne.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/findOneAndDelete-comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/findOneAndDelete-comment.json -------------------------------------------------------------------------------- /source/crud/tests/unified/findOneAndDelete-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/findOneAndDelete-comment.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/findOneAndDelete-hint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/findOneAndDelete-hint.json -------------------------------------------------------------------------------- /source/crud/tests/unified/findOneAndDelete-hint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/findOneAndDelete-hint.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/findOneAndDelete-let.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/findOneAndDelete-let.json -------------------------------------------------------------------------------- /source/crud/tests/unified/findOneAndDelete-let.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/findOneAndDelete-let.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/findOneAndDelete-rawdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/findOneAndDelete-rawdata.json -------------------------------------------------------------------------------- /source/crud/tests/unified/findOneAndDelete-rawdata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/findOneAndDelete-rawdata.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/findOneAndDelete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/findOneAndDelete.json -------------------------------------------------------------------------------- /source/crud/tests/unified/findOneAndDelete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/findOneAndDelete.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/findOneAndReplace-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/findOneAndReplace-comment.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/findOneAndReplace-hint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/findOneAndReplace-hint.json -------------------------------------------------------------------------------- /source/crud/tests/unified/findOneAndReplace-hint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/findOneAndReplace-hint.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/findOneAndReplace-let.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/findOneAndReplace-let.json -------------------------------------------------------------------------------- /source/crud/tests/unified/findOneAndReplace-let.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/findOneAndReplace-let.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/findOneAndReplace-rawdata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/findOneAndReplace-rawdata.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/findOneAndReplace-upsert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/findOneAndReplace-upsert.json -------------------------------------------------------------------------------- /source/crud/tests/unified/findOneAndReplace-upsert.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/findOneAndReplace-upsert.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/findOneAndReplace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/findOneAndReplace.json -------------------------------------------------------------------------------- /source/crud/tests/unified/findOneAndReplace.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/findOneAndReplace.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/findOneAndUpdate-comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/findOneAndUpdate-comment.json -------------------------------------------------------------------------------- /source/crud/tests/unified/findOneAndUpdate-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/findOneAndUpdate-comment.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/findOneAndUpdate-hint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/findOneAndUpdate-hint.json -------------------------------------------------------------------------------- /source/crud/tests/unified/findOneAndUpdate-hint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/findOneAndUpdate-hint.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/findOneAndUpdate-let.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/findOneAndUpdate-let.json -------------------------------------------------------------------------------- /source/crud/tests/unified/findOneAndUpdate-let.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/findOneAndUpdate-let.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/findOneAndUpdate-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/findOneAndUpdate-pipeline.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/findOneAndUpdate-rawdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/findOneAndUpdate-rawdata.json -------------------------------------------------------------------------------- /source/crud/tests/unified/findOneAndUpdate-rawdata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/findOneAndUpdate-rawdata.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/findOneAndUpdate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/findOneAndUpdate.json -------------------------------------------------------------------------------- /source/crud/tests/unified/findOneAndUpdate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/findOneAndUpdate.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/insertMany-comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/insertMany-comment.json -------------------------------------------------------------------------------- /source/crud/tests/unified/insertMany-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/insertMany-comment.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/insertMany-rawdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/insertMany-rawdata.json -------------------------------------------------------------------------------- /source/crud/tests/unified/insertMany-rawdata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/insertMany-rawdata.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/insertMany.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/insertMany.json -------------------------------------------------------------------------------- /source/crud/tests/unified/insertMany.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/insertMany.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/insertOne-comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/insertOne-comment.json -------------------------------------------------------------------------------- /source/crud/tests/unified/insertOne-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/insertOne-comment.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/insertOne-errorResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/insertOne-errorResponse.json -------------------------------------------------------------------------------- /source/crud/tests/unified/insertOne-errorResponse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/insertOne-errorResponse.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/insertOne-rawdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/insertOne-rawdata.json -------------------------------------------------------------------------------- /source/crud/tests/unified/insertOne-rawdata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/insertOne-rawdata.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/insertOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/insertOne.json -------------------------------------------------------------------------------- /source/crud/tests/unified/insertOne.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/insertOne.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/replaceOne-collation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/replaceOne-collation.json -------------------------------------------------------------------------------- /source/crud/tests/unified/replaceOne-collation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/replaceOne-collation.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/replaceOne-comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/replaceOne-comment.json -------------------------------------------------------------------------------- /source/crud/tests/unified/replaceOne-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/replaceOne-comment.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/replaceOne-hint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/replaceOne-hint.json -------------------------------------------------------------------------------- /source/crud/tests/unified/replaceOne-hint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/replaceOne-hint.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/replaceOne-let.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/replaceOne-let.json -------------------------------------------------------------------------------- /source/crud/tests/unified/replaceOne-let.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/replaceOne-let.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/replaceOne-rawdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/replaceOne-rawdata.json -------------------------------------------------------------------------------- /source/crud/tests/unified/replaceOne-rawdata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/replaceOne-rawdata.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/replaceOne-sort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/replaceOne-sort.json -------------------------------------------------------------------------------- /source/crud/tests/unified/replaceOne-sort.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/replaceOne-sort.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/replaceOne-validation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/replaceOne-validation.json -------------------------------------------------------------------------------- /source/crud/tests/unified/replaceOne-validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/replaceOne-validation.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/replaceOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/replaceOne.json -------------------------------------------------------------------------------- /source/crud/tests/unified/replaceOne.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/replaceOne.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/updateMany-arrayFilters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/updateMany-arrayFilters.json -------------------------------------------------------------------------------- /source/crud/tests/unified/updateMany-arrayFilters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/updateMany-arrayFilters.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/updateMany-collation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/updateMany-collation.json -------------------------------------------------------------------------------- /source/crud/tests/unified/updateMany-collation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/updateMany-collation.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/updateMany-comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/updateMany-comment.json -------------------------------------------------------------------------------- /source/crud/tests/unified/updateMany-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/updateMany-comment.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/updateMany-hint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/updateMany-hint.json -------------------------------------------------------------------------------- /source/crud/tests/unified/updateMany-hint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/updateMany-hint.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/updateMany-let.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/updateMany-let.json -------------------------------------------------------------------------------- /source/crud/tests/unified/updateMany-let.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/updateMany-let.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/updateMany-pipeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/updateMany-pipeline.json -------------------------------------------------------------------------------- /source/crud/tests/unified/updateMany-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/updateMany-pipeline.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/updateMany-rawdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/updateMany-rawdata.json -------------------------------------------------------------------------------- /source/crud/tests/unified/updateMany-rawdata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/updateMany-rawdata.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/updateMany-validation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/updateMany-validation.json -------------------------------------------------------------------------------- /source/crud/tests/unified/updateMany-validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/updateMany-validation.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/updateMany.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/updateMany.json -------------------------------------------------------------------------------- /source/crud/tests/unified/updateMany.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/updateMany.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/updateOne-arrayFilters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/updateOne-arrayFilters.json -------------------------------------------------------------------------------- /source/crud/tests/unified/updateOne-arrayFilters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/updateOne-arrayFilters.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/updateOne-collation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/updateOne-collation.json -------------------------------------------------------------------------------- /source/crud/tests/unified/updateOne-collation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/updateOne-collation.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/updateOne-comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/updateOne-comment.json -------------------------------------------------------------------------------- /source/crud/tests/unified/updateOne-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/updateOne-comment.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/updateOne-errorResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/updateOne-errorResponse.json -------------------------------------------------------------------------------- /source/crud/tests/unified/updateOne-errorResponse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/updateOne-errorResponse.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/updateOne-hint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/updateOne-hint.json -------------------------------------------------------------------------------- /source/crud/tests/unified/updateOne-hint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/updateOne-hint.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/updateOne-let.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/updateOne-let.json -------------------------------------------------------------------------------- /source/crud/tests/unified/updateOne-let.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/updateOne-let.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/updateOne-pipeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/updateOne-pipeline.json -------------------------------------------------------------------------------- /source/crud/tests/unified/updateOne-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/updateOne-pipeline.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/updateOne-rawdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/updateOne-rawdata.json -------------------------------------------------------------------------------- /source/crud/tests/unified/updateOne-rawdata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/updateOne-rawdata.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/updateOne-sort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/updateOne-sort.json -------------------------------------------------------------------------------- /source/crud/tests/unified/updateOne-sort.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/updateOne-sort.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/updateOne-validation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/updateOne-validation.json -------------------------------------------------------------------------------- /source/crud/tests/unified/updateOne-validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/updateOne-validation.yml -------------------------------------------------------------------------------- /source/crud/tests/unified/updateOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/updateOne.json -------------------------------------------------------------------------------- /source/crud/tests/unified/updateOne.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/crud/tests/unified/updateOne.yml -------------------------------------------------------------------------------- /source/dbref.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/dbref.rst -------------------------------------------------------------------------------- /source/dbref/dbref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/dbref/dbref.md -------------------------------------------------------------------------------- /source/driver-bulk-update.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/driver-bulk-update.rst -------------------------------------------------------------------------------- /source/driver-mantras.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/driver-mantras.md -------------------------------------------------------------------------------- /source/enumerate-collections.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/enumerate-collections.rst -------------------------------------------------------------------------------- /source/enumerate-collections/enumerate-collections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/enumerate-collections/enumerate-collections.md -------------------------------------------------------------------------------- /source/enumerate-databases.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/enumerate-databases.rst -------------------------------------------------------------------------------- /source/enumerate-databases/enumerate-databases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/enumerate-databases/enumerate-databases.md -------------------------------------------------------------------------------- /source/etc/generate-handshakeError-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/etc/generate-handshakeError-tests.py -------------------------------------------------------------------------------- /source/extended-json.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/extended-json.rst -------------------------------------------------------------------------------- /source/extended-json/extended-json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/extended-json/extended-json.md -------------------------------------------------------------------------------- /source/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/extra.css -------------------------------------------------------------------------------- /source/faas-automated-testing/faas-automated-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/faas-automated-testing/faas-automated-testing.md -------------------------------------------------------------------------------- /source/find_getmore_killcursors_commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/find_getmore_killcursors_commands.rst -------------------------------------------------------------------------------- /source/gridfs/gridfs-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/gridfs/gridfs-spec.md -------------------------------------------------------------------------------- /source/gridfs/gridfs-spec.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/gridfs/gridfs-spec.rst -------------------------------------------------------------------------------- /source/gridfs/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/gridfs/tests/README.md -------------------------------------------------------------------------------- /source/gridfs/tests/delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/gridfs/tests/delete.json -------------------------------------------------------------------------------- /source/gridfs/tests/delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/gridfs/tests/delete.yml -------------------------------------------------------------------------------- /source/gridfs/tests/deleteByName.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/gridfs/tests/deleteByName.json -------------------------------------------------------------------------------- /source/gridfs/tests/deleteByName.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/gridfs/tests/deleteByName.yml -------------------------------------------------------------------------------- /source/gridfs/tests/download.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/gridfs/tests/download.json -------------------------------------------------------------------------------- /source/gridfs/tests/download.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/gridfs/tests/download.yml -------------------------------------------------------------------------------- /source/gridfs/tests/downloadByName.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/gridfs/tests/downloadByName.json -------------------------------------------------------------------------------- /source/gridfs/tests/downloadByName.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/gridfs/tests/downloadByName.yml -------------------------------------------------------------------------------- /source/gridfs/tests/rename.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/gridfs/tests/rename.json -------------------------------------------------------------------------------- /source/gridfs/tests/rename.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/gridfs/tests/rename.yml -------------------------------------------------------------------------------- /source/gridfs/tests/renameByName.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/gridfs/tests/renameByName.json -------------------------------------------------------------------------------- /source/gridfs/tests/renameByName.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/gridfs/tests/renameByName.yml -------------------------------------------------------------------------------- /source/gridfs/tests/upload-disableMD5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/gridfs/tests/upload-disableMD5.json -------------------------------------------------------------------------------- /source/gridfs/tests/upload-disableMD5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/gridfs/tests/upload-disableMD5.yml -------------------------------------------------------------------------------- /source/gridfs/tests/upload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/gridfs/tests/upload.json -------------------------------------------------------------------------------- /source/gridfs/tests/upload.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/gridfs/tests/upload.yml -------------------------------------------------------------------------------- /source/index-management/index-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/index-management/index-management.md -------------------------------------------------------------------------------- /source/index-management/index-management.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/index-management/index-management.rst -------------------------------------------------------------------------------- /source/index-management/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/index-management/tests/README.md -------------------------------------------------------------------------------- /source/index-management/tests/createSearchIndex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/index-management/tests/createSearchIndex.json -------------------------------------------------------------------------------- /source/index-management/tests/createSearchIndex.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/index-management/tests/createSearchIndex.yml -------------------------------------------------------------------------------- /source/index-management/tests/createSearchIndexes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/index-management/tests/createSearchIndexes.json -------------------------------------------------------------------------------- /source/index-management/tests/createSearchIndexes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/index-management/tests/createSearchIndexes.yml -------------------------------------------------------------------------------- /source/index-management/tests/dropSearchIndex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/index-management/tests/dropSearchIndex.json -------------------------------------------------------------------------------- /source/index-management/tests/dropSearchIndex.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/index-management/tests/dropSearchIndex.yml -------------------------------------------------------------------------------- /source/index-management/tests/index-rawdata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/index-management/tests/index-rawdata.json -------------------------------------------------------------------------------- /source/index-management/tests/index-rawdata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/index-management/tests/index-rawdata.yml -------------------------------------------------------------------------------- /source/index-management/tests/listSearchIndexes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/index-management/tests/listSearchIndexes.json -------------------------------------------------------------------------------- /source/index-management/tests/listSearchIndexes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/index-management/tests/listSearchIndexes.yml -------------------------------------------------------------------------------- /source/index-management/tests/updateSearchIndex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/index-management/tests/updateSearchIndex.json -------------------------------------------------------------------------------- /source/index-management/tests/updateSearchIndex.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/index-management/tests/updateSearchIndex.yml -------------------------------------------------------------------------------- /source/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/index.md -------------------------------------------------------------------------------- /source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/index.rst -------------------------------------------------------------------------------- /source/initial-dns-seedlist-discovery/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/initial-dns-seedlist-discovery/tests/README.md -------------------------------------------------------------------------------- /source/load-balancers/load-balancers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/load-balancers/load-balancers.md -------------------------------------------------------------------------------- /source/load-balancers/load-balancers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/load-balancers/load-balancers.rst -------------------------------------------------------------------------------- /source/load-balancers/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/load-balancers/tests/README.md -------------------------------------------------------------------------------- /source/load-balancers/tests/cursors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/load-balancers/tests/cursors.json -------------------------------------------------------------------------------- /source/load-balancers/tests/cursors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/load-balancers/tests/cursors.yml -------------------------------------------------------------------------------- /source/load-balancers/tests/event-monitoring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/load-balancers/tests/event-monitoring.json -------------------------------------------------------------------------------- /source/load-balancers/tests/event-monitoring.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/load-balancers/tests/event-monitoring.yml -------------------------------------------------------------------------------- /source/load-balancers/tests/sdam-error-handling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/load-balancers/tests/sdam-error-handling.json -------------------------------------------------------------------------------- /source/load-balancers/tests/sdam-error-handling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/load-balancers/tests/sdam-error-handling.yml -------------------------------------------------------------------------------- /source/load-balancers/tests/server-selection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/load-balancers/tests/server-selection.json -------------------------------------------------------------------------------- /source/load-balancers/tests/server-selection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/load-balancers/tests/server-selection.yml -------------------------------------------------------------------------------- /source/load-balancers/tests/transactions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/load-balancers/tests/transactions.json -------------------------------------------------------------------------------- /source/load-balancers/tests/transactions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/load-balancers/tests/transactions.yml -------------------------------------------------------------------------------- /source/load-balancers/tests/wait-queue-timeouts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/load-balancers/tests/wait-queue-timeouts.json -------------------------------------------------------------------------------- /source/load-balancers/tests/wait-queue-timeouts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/load-balancers/tests/wait-queue-timeouts.yml -------------------------------------------------------------------------------- /source/logging/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/logging/logging.md -------------------------------------------------------------------------------- /source/logging/logging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/logging/logging.rst -------------------------------------------------------------------------------- /source/max-staleness/max-staleness-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/max-staleness/max-staleness-tests.md -------------------------------------------------------------------------------- /source/max-staleness/max-staleness-tests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/max-staleness/max-staleness-tests.rst -------------------------------------------------------------------------------- /source/max-staleness/max-staleness.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/max-staleness/max-staleness.md -------------------------------------------------------------------------------- /source/max-staleness/max-staleness.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/max-staleness/max-staleness.rst -------------------------------------------------------------------------------- /source/max-staleness/test_max_staleness_spo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/max-staleness/test_max_staleness_spo.py -------------------------------------------------------------------------------- /source/max-staleness/test_staleness_estimate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/max-staleness/test_staleness_estimate.py -------------------------------------------------------------------------------- /source/max-staleness/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/max-staleness/tests/README.md -------------------------------------------------------------------------------- /source/max-staleness/tests/Single/SmallMaxStaleness.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/max-staleness/tests/Single/SmallMaxStaleness.yml -------------------------------------------------------------------------------- /source/message/OP_MSG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/message/OP_MSG.md -------------------------------------------------------------------------------- /source/message/OP_MSG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/message/OP_MSG.rst -------------------------------------------------------------------------------- /source/mongodb-handshake/handshake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/mongodb-handshake/handshake.md -------------------------------------------------------------------------------- /source/mongodb-handshake/handshake.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/mongodb-handshake/handshake.rst -------------------------------------------------------------------------------- /source/mongodb-handshake/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/mongodb-handshake/tests/README.md -------------------------------------------------------------------------------- /source/objectid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/objectid.rst -------------------------------------------------------------------------------- /source/ocsp-support/ocsp-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/ocsp-support/ocsp-support.md -------------------------------------------------------------------------------- /source/ocsp-support/ocsp-support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/ocsp-support/ocsp-support.rst -------------------------------------------------------------------------------- /source/ocsp-support/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/ocsp-support/tests/README.md -------------------------------------------------------------------------------- /source/open-telemetry/open-telemetry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/open-telemetry/open-telemetry.md -------------------------------------------------------------------------------- /source/open-telemetry/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/open-telemetry/tests/README.md -------------------------------------------------------------------------------- /source/open-telemetry/tests/operation/aggregate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/open-telemetry/tests/operation/aggregate.json -------------------------------------------------------------------------------- /source/open-telemetry/tests/operation/aggregate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/open-telemetry/tests/operation/aggregate.yml -------------------------------------------------------------------------------- /source/open-telemetry/tests/operation/atlas_search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/open-telemetry/tests/operation/atlas_search.json -------------------------------------------------------------------------------- /source/open-telemetry/tests/operation/atlas_search.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/open-telemetry/tests/operation/atlas_search.yml -------------------------------------------------------------------------------- /source/open-telemetry/tests/operation/bulk_write.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/open-telemetry/tests/operation/bulk_write.json -------------------------------------------------------------------------------- /source/open-telemetry/tests/operation/bulk_write.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/open-telemetry/tests/operation/bulk_write.yml -------------------------------------------------------------------------------- /source/open-telemetry/tests/operation/count.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/open-telemetry/tests/operation/count.json -------------------------------------------------------------------------------- /source/open-telemetry/tests/operation/count.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/open-telemetry/tests/operation/count.yml -------------------------------------------------------------------------------- /source/open-telemetry/tests/operation/delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/open-telemetry/tests/operation/delete.json -------------------------------------------------------------------------------- /source/open-telemetry/tests/operation/delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/open-telemetry/tests/operation/delete.yml -------------------------------------------------------------------------------- /source/open-telemetry/tests/operation/distinct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/open-telemetry/tests/operation/distinct.json -------------------------------------------------------------------------------- /source/open-telemetry/tests/operation/distinct.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/open-telemetry/tests/operation/distinct.yml -------------------------------------------------------------------------------- /source/open-telemetry/tests/operation/drop_indexes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/open-telemetry/tests/operation/drop_indexes.json -------------------------------------------------------------------------------- /source/open-telemetry/tests/operation/drop_indexes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/open-telemetry/tests/operation/drop_indexes.yml -------------------------------------------------------------------------------- /source/open-telemetry/tests/operation/find.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/open-telemetry/tests/operation/find.json -------------------------------------------------------------------------------- /source/open-telemetry/tests/operation/find.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/open-telemetry/tests/operation/find.yml -------------------------------------------------------------------------------- /source/open-telemetry/tests/operation/insert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/open-telemetry/tests/operation/insert.json -------------------------------------------------------------------------------- /source/open-telemetry/tests/operation/insert.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/open-telemetry/tests/operation/insert.yml -------------------------------------------------------------------------------- /source/open-telemetry/tests/operation/list_indexes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/open-telemetry/tests/operation/list_indexes.json -------------------------------------------------------------------------------- /source/open-telemetry/tests/operation/list_indexes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/open-telemetry/tests/operation/list_indexes.yml -------------------------------------------------------------------------------- /source/open-telemetry/tests/operation/map_reduce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/open-telemetry/tests/operation/map_reduce.json -------------------------------------------------------------------------------- /source/open-telemetry/tests/operation/map_reduce.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/open-telemetry/tests/operation/map_reduce.yml -------------------------------------------------------------------------------- /source/open-telemetry/tests/operation/retries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/open-telemetry/tests/operation/retries.json -------------------------------------------------------------------------------- /source/open-telemetry/tests/operation/retries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/open-telemetry/tests/operation/retries.yml -------------------------------------------------------------------------------- /source/open-telemetry/tests/operation/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/open-telemetry/tests/operation/update.json -------------------------------------------------------------------------------- /source/open-telemetry/tests/operation/update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/open-telemetry/tests/operation/update.yml -------------------------------------------------------------------------------- /source/open-telemetry/tests/transaction/convenient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/open-telemetry/tests/transaction/convenient.json -------------------------------------------------------------------------------- /source/open-telemetry/tests/transaction/convenient.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/open-telemetry/tests/transaction/convenient.yml -------------------------------------------------------------------------------- /source/open-telemetry/tests/transaction/core_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/open-telemetry/tests/transaction/core_api.json -------------------------------------------------------------------------------- /source/open-telemetry/tests/transaction/core_api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/open-telemetry/tests/transaction/core_api.yml -------------------------------------------------------------------------------- /source/read-write-concern/read-write-concern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/read-write-concern/read-write-concern.md -------------------------------------------------------------------------------- /source/read-write-concern/read-write-concern.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/read-write-concern/read-write-concern.rst -------------------------------------------------------------------------------- /source/read-write-concern/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/read-write-concern/tests/README.md -------------------------------------------------------------------------------- /source/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/requirements.txt -------------------------------------------------------------------------------- /source/retryable-reads/retryable-reads.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/retryable-reads/retryable-reads.md -------------------------------------------------------------------------------- /source/retryable-reads/retryable-reads.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/retryable-reads/retryable-reads.rst -------------------------------------------------------------------------------- /source/retryable-reads/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/retryable-reads/tests/README.md -------------------------------------------------------------------------------- /source/retryable-reads/tests/unified/aggregate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/retryable-reads/tests/unified/aggregate.json -------------------------------------------------------------------------------- /source/retryable-reads/tests/unified/aggregate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/retryable-reads/tests/unified/aggregate.yml -------------------------------------------------------------------------------- /source/retryable-reads/tests/unified/count.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/retryable-reads/tests/unified/count.json -------------------------------------------------------------------------------- /source/retryable-reads/tests/unified/count.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/retryable-reads/tests/unified/count.yml -------------------------------------------------------------------------------- /source/retryable-reads/tests/unified/countDocuments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/retryable-reads/tests/unified/countDocuments.yml -------------------------------------------------------------------------------- /source/retryable-reads/tests/unified/distinct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/retryable-reads/tests/unified/distinct.json -------------------------------------------------------------------------------- /source/retryable-reads/tests/unified/distinct.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/retryable-reads/tests/unified/distinct.yml -------------------------------------------------------------------------------- /source/retryable-reads/tests/unified/find.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/retryable-reads/tests/unified/find.json -------------------------------------------------------------------------------- /source/retryable-reads/tests/unified/find.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/retryable-reads/tests/unified/find.yml -------------------------------------------------------------------------------- /source/retryable-reads/tests/unified/findOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/retryable-reads/tests/unified/findOne.json -------------------------------------------------------------------------------- /source/retryable-reads/tests/unified/findOne.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/retryable-reads/tests/unified/findOne.yml -------------------------------------------------------------------------------- /source/retryable-reads/tests/unified/handshakeError.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/retryable-reads/tests/unified/handshakeError.yml -------------------------------------------------------------------------------- /source/retryable-reads/tests/unified/listDatabases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/retryable-reads/tests/unified/listDatabases.json -------------------------------------------------------------------------------- /source/retryable-reads/tests/unified/listDatabases.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/retryable-reads/tests/unified/listDatabases.yml -------------------------------------------------------------------------------- /source/retryable-reads/tests/unified/listIndexNames.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/retryable-reads/tests/unified/listIndexNames.yml -------------------------------------------------------------------------------- /source/retryable-reads/tests/unified/listIndexes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/retryable-reads/tests/unified/listIndexes.json -------------------------------------------------------------------------------- /source/retryable-reads/tests/unified/listIndexes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/retryable-reads/tests/unified/listIndexes.yml -------------------------------------------------------------------------------- /source/retryable-reads/tests/unified/mapReduce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/retryable-reads/tests/unified/mapReduce.json -------------------------------------------------------------------------------- /source/retryable-reads/tests/unified/mapReduce.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/retryable-reads/tests/unified/mapReduce.yml -------------------------------------------------------------------------------- /source/retryable-writes/retryable-writes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/retryable-writes/retryable-writes.md -------------------------------------------------------------------------------- /source/retryable-writes/retryable-writes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/retryable-writes/retryable-writes.rst -------------------------------------------------------------------------------- /source/retryable-writes/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/retryable-writes/tests/README.md -------------------------------------------------------------------------------- /source/retryable-writes/tests/unified/bulkWrite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/retryable-writes/tests/unified/bulkWrite.json -------------------------------------------------------------------------------- /source/retryable-writes/tests/unified/bulkWrite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/retryable-writes/tests/unified/bulkWrite.yml -------------------------------------------------------------------------------- /source/retryable-writes/tests/unified/deleteMany.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/retryable-writes/tests/unified/deleteMany.json -------------------------------------------------------------------------------- /source/retryable-writes/tests/unified/deleteMany.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/retryable-writes/tests/unified/deleteMany.yml -------------------------------------------------------------------------------- /source/retryable-writes/tests/unified/deleteOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/retryable-writes/tests/unified/deleteOne.json -------------------------------------------------------------------------------- /source/retryable-writes/tests/unified/deleteOne.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/retryable-writes/tests/unified/deleteOne.yml -------------------------------------------------------------------------------- /source/retryable-writes/tests/unified/insertMany.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/retryable-writes/tests/unified/insertMany.json -------------------------------------------------------------------------------- /source/retryable-writes/tests/unified/insertMany.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/retryable-writes/tests/unified/insertMany.yml -------------------------------------------------------------------------------- /source/retryable-writes/tests/unified/insertOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/retryable-writes/tests/unified/insertOne.json -------------------------------------------------------------------------------- /source/retryable-writes/tests/unified/insertOne.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/retryable-writes/tests/unified/insertOne.yml -------------------------------------------------------------------------------- /source/retryable-writes/tests/unified/replaceOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/retryable-writes/tests/unified/replaceOne.json -------------------------------------------------------------------------------- /source/retryable-writes/tests/unified/replaceOne.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/retryable-writes/tests/unified/replaceOne.yml -------------------------------------------------------------------------------- /source/retryable-writes/tests/unified/updateMany.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/retryable-writes/tests/unified/updateMany.json -------------------------------------------------------------------------------- /source/retryable-writes/tests/unified/updateMany.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/retryable-writes/tests/unified/updateMany.yml -------------------------------------------------------------------------------- /source/retryable-writes/tests/unified/updateOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/retryable-writes/tests/unified/updateOne.json -------------------------------------------------------------------------------- /source/retryable-writes/tests/unified/updateOne.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/retryable-writes/tests/unified/updateOne.yml -------------------------------------------------------------------------------- /source/run-command/run-command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/run-command/run-command.md -------------------------------------------------------------------------------- /source/run-command/run-command.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/run-command/run-command.rst -------------------------------------------------------------------------------- /source/run-command/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/run-command/tests/README.md -------------------------------------------------------------------------------- /source/run-command/tests/unified/runCommand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/run-command/tests/unified/runCommand.json -------------------------------------------------------------------------------- /source/run-command/tests/unified/runCommand.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/run-command/tests/unified/runCommand.yml -------------------------------------------------------------------------------- /source/run-command/tests/unified/runCursorCommand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/run-command/tests/unified/runCursorCommand.json -------------------------------------------------------------------------------- /source/run-command/tests/unified/runCursorCommand.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/run-command/tests/unified/runCursorCommand.yml -------------------------------------------------------------------------------- /source/server-discovery-and-monitoring/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/server-discovery-and-monitoring/tests/README.md -------------------------------------------------------------------------------- /source/server-selection/server-selection-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/server-selection/server-selection-tests.md -------------------------------------------------------------------------------- /source/server-selection/server-selection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/server-selection/server-selection.md -------------------------------------------------------------------------------- /source/server-selection/server-selection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/server-selection/server-selection.rst -------------------------------------------------------------------------------- /source/server-selection/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/server-selection/tests/README.md -------------------------------------------------------------------------------- /source/server-selection/tests/in_window/equilibrium.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/server-selection/tests/in_window/equilibrium.yml -------------------------------------------------------------------------------- /source/server-selection/tests/in_window/two-choices.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/server-selection/tests/in_window/two-choices.yml -------------------------------------------------------------------------------- /source/server-selection/tests/in_window/two-least.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/server-selection/tests/in_window/two-least.json -------------------------------------------------------------------------------- /source/server-selection/tests/in_window/two-least.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/server-selection/tests/in_window/two-least.yml -------------------------------------------------------------------------------- /source/server-selection/tests/logging/load-balanced.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/server-selection/tests/logging/load-balanced.yml -------------------------------------------------------------------------------- /source/server-selection/tests/logging/operation-id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/server-selection/tests/logging/operation-id.json -------------------------------------------------------------------------------- /source/server-selection/tests/logging/operation-id.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/server-selection/tests/logging/operation-id.yml -------------------------------------------------------------------------------- /source/server-selection/tests/logging/replica-set.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/server-selection/tests/logging/replica-set.json -------------------------------------------------------------------------------- /source/server-selection/tests/logging/replica-set.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/server-selection/tests/logging/replica-set.yml -------------------------------------------------------------------------------- /source/server-selection/tests/logging/sharded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/server-selection/tests/logging/sharded.json -------------------------------------------------------------------------------- /source/server-selection/tests/logging/sharded.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/server-selection/tests/logging/sharded.yml -------------------------------------------------------------------------------- /source/server-selection/tests/logging/standalone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/server-selection/tests/logging/standalone.json -------------------------------------------------------------------------------- /source/server-selection/tests/logging/standalone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/server-selection/tests/logging/standalone.yml -------------------------------------------------------------------------------- /source/server-selection/tests/rtt/first_value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/server-selection/tests/rtt/first_value.json -------------------------------------------------------------------------------- /source/server-selection/tests/rtt/first_value.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/server-selection/tests/rtt/first_value.yml -------------------------------------------------------------------------------- /source/server-selection/tests/rtt/first_value_zero.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/server-selection/tests/rtt/first_value_zero.json -------------------------------------------------------------------------------- /source/server-selection/tests/rtt/first_value_zero.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/server-selection/tests/rtt/first_value_zero.yml -------------------------------------------------------------------------------- /source/server-selection/tests/rtt/value_test_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/server-selection/tests/rtt/value_test_1.json -------------------------------------------------------------------------------- /source/server-selection/tests/rtt/value_test_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/server-selection/tests/rtt/value_test_1.yml -------------------------------------------------------------------------------- /source/server-selection/tests/rtt/value_test_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/server-selection/tests/rtt/value_test_2.json -------------------------------------------------------------------------------- /source/server-selection/tests/rtt/value_test_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/server-selection/tests/rtt/value_test_2.yml -------------------------------------------------------------------------------- /source/server-selection/tests/rtt/value_test_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/server-selection/tests/rtt/value_test_3.json -------------------------------------------------------------------------------- /source/server-selection/tests/rtt/value_test_3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/server-selection/tests/rtt/value_test_3.yml -------------------------------------------------------------------------------- /source/server-selection/tests/rtt/value_test_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/server-selection/tests/rtt/value_test_4.json -------------------------------------------------------------------------------- /source/server-selection/tests/rtt/value_test_4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/server-selection/tests/rtt/value_test_4.yml -------------------------------------------------------------------------------- /source/server-selection/tests/rtt/value_test_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/server-selection/tests/rtt/value_test_5.json -------------------------------------------------------------------------------- /source/server-selection/tests/rtt/value_test_5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/server-selection/tests/rtt/value_test_5.yml -------------------------------------------------------------------------------- /source/server_write_commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/server_write_commands.rst -------------------------------------------------------------------------------- /source/server_write_commands/server_write_commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/server_write_commands/server_write_commands.md -------------------------------------------------------------------------------- /source/serverless-testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/serverless-testing/README.md -------------------------------------------------------------------------------- /source/sessions/driver-sessions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/sessions/driver-sessions.md -------------------------------------------------------------------------------- /source/sessions/driver-sessions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/sessions/driver-sessions.rst -------------------------------------------------------------------------------- /source/sessions/snapshot-sessions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/sessions/snapshot-sessions.md -------------------------------------------------------------------------------- /source/sessions/snapshot-sessions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/sessions/snapshot-sessions.rst -------------------------------------------------------------------------------- /source/sessions/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/sessions/tests/README.md -------------------------------------------------------------------------------- /source/sessions/tests/snapshot-sessions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/sessions/tests/snapshot-sessions.json -------------------------------------------------------------------------------- /source/sessions/tests/snapshot-sessions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/sessions/tests/snapshot-sessions.yml -------------------------------------------------------------------------------- /source/socks5-support/socks5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/socks5-support/socks5.md -------------------------------------------------------------------------------- /source/socks5-support/socks5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/socks5-support/socks5.rst -------------------------------------------------------------------------------- /source/socks5-support/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/socks5-support/tests/README.md -------------------------------------------------------------------------------- /source/transactions-convenient-api/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions-convenient-api/tests/README.md -------------------------------------------------------------------------------- /source/transactions/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/README.md -------------------------------------------------------------------------------- /source/transactions/tests/legacy-test-format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/legacy-test-format.md -------------------------------------------------------------------------------- /source/transactions/tests/unified/abort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/abort.json -------------------------------------------------------------------------------- /source/transactions/tests/unified/abort.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/abort.yml -------------------------------------------------------------------------------- /source/transactions/tests/unified/bulk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/bulk.json -------------------------------------------------------------------------------- /source/transactions/tests/unified/bulk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/bulk.yml -------------------------------------------------------------------------------- /source/transactions/tests/unified/client-bulkWrite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/client-bulkWrite.json -------------------------------------------------------------------------------- /source/transactions/tests/unified/client-bulkWrite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/client-bulkWrite.yml -------------------------------------------------------------------------------- /source/transactions/tests/unified/commit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/commit.json -------------------------------------------------------------------------------- /source/transactions/tests/unified/commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/commit.yml -------------------------------------------------------------------------------- /source/transactions/tests/unified/count.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/count.json -------------------------------------------------------------------------------- /source/transactions/tests/unified/count.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/count.yml -------------------------------------------------------------------------------- /source/transactions/tests/unified/create-collection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/create-collection.yml -------------------------------------------------------------------------------- /source/transactions/tests/unified/create-index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/create-index.json -------------------------------------------------------------------------------- /source/transactions/tests/unified/create-index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/create-index.yml -------------------------------------------------------------------------------- /source/transactions/tests/unified/delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/delete.json -------------------------------------------------------------------------------- /source/transactions/tests/unified/delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/delete.yml -------------------------------------------------------------------------------- /source/transactions/tests/unified/error-labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/error-labels.json -------------------------------------------------------------------------------- /source/transactions/tests/unified/error-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/error-labels.yml -------------------------------------------------------------------------------- /source/transactions/tests/unified/errors-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/errors-client.json -------------------------------------------------------------------------------- /source/transactions/tests/unified/errors-client.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/errors-client.yml -------------------------------------------------------------------------------- /source/transactions/tests/unified/errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/errors.json -------------------------------------------------------------------------------- /source/transactions/tests/unified/errors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/errors.yml -------------------------------------------------------------------------------- /source/transactions/tests/unified/findOneAndDelete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/findOneAndDelete.json -------------------------------------------------------------------------------- /source/transactions/tests/unified/findOneAndDelete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/findOneAndDelete.yml -------------------------------------------------------------------------------- /source/transactions/tests/unified/findOneAndReplace.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/findOneAndReplace.yml -------------------------------------------------------------------------------- /source/transactions/tests/unified/findOneAndUpdate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/findOneAndUpdate.json -------------------------------------------------------------------------------- /source/transactions/tests/unified/findOneAndUpdate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/findOneAndUpdate.yml -------------------------------------------------------------------------------- /source/transactions/tests/unified/insert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/insert.json -------------------------------------------------------------------------------- /source/transactions/tests/unified/insert.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/insert.yml -------------------------------------------------------------------------------- /source/transactions/tests/unified/isolation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/isolation.json -------------------------------------------------------------------------------- /source/transactions/tests/unified/isolation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/isolation.yml -------------------------------------------------------------------------------- /source/transactions/tests/unified/mongos-pin-auto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/mongos-pin-auto.json -------------------------------------------------------------------------------- /source/transactions/tests/unified/mongos-pin-auto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/mongos-pin-auto.yml -------------------------------------------------------------------------------- /source/transactions/tests/unified/mongos-unpin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/mongos-unpin.json -------------------------------------------------------------------------------- /source/transactions/tests/unified/mongos-unpin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/mongos-unpin.yml -------------------------------------------------------------------------------- /source/transactions/tests/unified/pin-mongos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/pin-mongos.json -------------------------------------------------------------------------------- /source/transactions/tests/unified/pin-mongos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/pin-mongos.yml -------------------------------------------------------------------------------- /source/transactions/tests/unified/read-concern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/read-concern.json -------------------------------------------------------------------------------- /source/transactions/tests/unified/read-concern.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/read-concern.yml -------------------------------------------------------------------------------- /source/transactions/tests/unified/read-pref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/read-pref.json -------------------------------------------------------------------------------- /source/transactions/tests/unified/read-pref.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/read-pref.yml -------------------------------------------------------------------------------- /source/transactions/tests/unified/reads.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/reads.json -------------------------------------------------------------------------------- /source/transactions/tests/unified/reads.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/reads.yml -------------------------------------------------------------------------------- /source/transactions/tests/unified/retryable-abort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/retryable-abort.json -------------------------------------------------------------------------------- /source/transactions/tests/unified/retryable-abort.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/retryable-abort.yml -------------------------------------------------------------------------------- /source/transactions/tests/unified/retryable-commit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/retryable-commit.json -------------------------------------------------------------------------------- /source/transactions/tests/unified/retryable-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/retryable-commit.yml -------------------------------------------------------------------------------- /source/transactions/tests/unified/retryable-writes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/retryable-writes.json -------------------------------------------------------------------------------- /source/transactions/tests/unified/retryable-writes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/retryable-writes.yml -------------------------------------------------------------------------------- /source/transactions/tests/unified/run-command.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/run-command.json -------------------------------------------------------------------------------- /source/transactions/tests/unified/run-command.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/run-command.yml -------------------------------------------------------------------------------- /source/transactions/tests/unified/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/update.json -------------------------------------------------------------------------------- /source/transactions/tests/unified/update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/update.yml -------------------------------------------------------------------------------- /source/transactions/tests/unified/write-concern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/write-concern.json -------------------------------------------------------------------------------- /source/transactions/tests/unified/write-concern.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/tests/unified/write-concern.yml -------------------------------------------------------------------------------- /source/transactions/transactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/transactions.md -------------------------------------------------------------------------------- /source/transactions/transactions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/transactions/transactions.rst -------------------------------------------------------------------------------- /source/unified-test-format/schema-1.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/unified-test-format/schema-1.0.json -------------------------------------------------------------------------------- /source/unified-test-format/schema-1.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/unified-test-format/schema-1.1.json -------------------------------------------------------------------------------- /source/unified-test-format/schema-1.10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/unified-test-format/schema-1.10.json -------------------------------------------------------------------------------- /source/unified-test-format/schema-1.11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/unified-test-format/schema-1.11.json -------------------------------------------------------------------------------- /source/unified-test-format/schema-1.12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/unified-test-format/schema-1.12.json -------------------------------------------------------------------------------- /source/unified-test-format/schema-1.13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/unified-test-format/schema-1.13.json -------------------------------------------------------------------------------- /source/unified-test-format/schema-1.14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/unified-test-format/schema-1.14.json -------------------------------------------------------------------------------- /source/unified-test-format/schema-1.15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/unified-test-format/schema-1.15.json -------------------------------------------------------------------------------- /source/unified-test-format/schema-1.16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/unified-test-format/schema-1.16.json -------------------------------------------------------------------------------- /source/unified-test-format/schema-1.17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/unified-test-format/schema-1.17.json -------------------------------------------------------------------------------- /source/unified-test-format/schema-1.18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/unified-test-format/schema-1.18.json -------------------------------------------------------------------------------- /source/unified-test-format/schema-1.19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/unified-test-format/schema-1.19.json -------------------------------------------------------------------------------- /source/unified-test-format/schema-1.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/unified-test-format/schema-1.2.json -------------------------------------------------------------------------------- /source/unified-test-format/schema-1.20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/unified-test-format/schema-1.20.json -------------------------------------------------------------------------------- /source/unified-test-format/schema-1.21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/unified-test-format/schema-1.21.json -------------------------------------------------------------------------------- /source/unified-test-format/schema-1.22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/unified-test-format/schema-1.22.json -------------------------------------------------------------------------------- /source/unified-test-format/schema-1.23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/unified-test-format/schema-1.23.json -------------------------------------------------------------------------------- /source/unified-test-format/schema-1.24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/unified-test-format/schema-1.24.json -------------------------------------------------------------------------------- /source/unified-test-format/schema-1.25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/unified-test-format/schema-1.25.json -------------------------------------------------------------------------------- /source/unified-test-format/schema-1.26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/unified-test-format/schema-1.26.json -------------------------------------------------------------------------------- /source/unified-test-format/schema-1.27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/unified-test-format/schema-1.27.json -------------------------------------------------------------------------------- /source/unified-test-format/schema-1.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/unified-test-format/schema-1.3.json -------------------------------------------------------------------------------- /source/unified-test-format/schema-1.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/unified-test-format/schema-1.4.json -------------------------------------------------------------------------------- /source/unified-test-format/schema-1.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/unified-test-format/schema-1.5.json -------------------------------------------------------------------------------- /source/unified-test-format/schema-1.6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/unified-test-format/schema-1.6.json -------------------------------------------------------------------------------- /source/unified-test-format/schema-1.7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/unified-test-format/schema-1.7.json -------------------------------------------------------------------------------- /source/unified-test-format/schema-1.8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/unified-test-format/schema-1.8.json -------------------------------------------------------------------------------- /source/unified-test-format/schema-1.9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/unified-test-format/schema-1.9.json -------------------------------------------------------------------------------- /source/unified-test-format/schema-latest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/unified-test-format/schema-latest.json -------------------------------------------------------------------------------- /source/unified-test-format/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/unified-test-format/tests/Makefile -------------------------------------------------------------------------------- /source/unified-test-format/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/unified-test-format/tests/README.md -------------------------------------------------------------------------------- /source/unified-test-format/tests/invalid/tests-type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/unified-test-format/tests/invalid/tests-type.yml -------------------------------------------------------------------------------- /source/unified-test-format/unified-test-format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/unified-test-format/unified-test-format.md -------------------------------------------------------------------------------- /source/unified-test-format/unified-test-format.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/unified-test-format/unified-test-format.rst -------------------------------------------------------------------------------- /source/uri-options/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/uri-options/tests/README.md -------------------------------------------------------------------------------- /source/uri-options/tests/auth-options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/uri-options/tests/auth-options.json -------------------------------------------------------------------------------- /source/uri-options/tests/auth-options.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/uri-options/tests/auth-options.yml -------------------------------------------------------------------------------- /source/uri-options/tests/ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/uri-options/tests/ca.pem -------------------------------------------------------------------------------- /source/uri-options/tests/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/uri-options/tests/cert.pem -------------------------------------------------------------------------------- /source/uri-options/tests/client.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/uri-options/tests/client.pem -------------------------------------------------------------------------------- /source/uri-options/tests/compression-options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/uri-options/tests/compression-options.json -------------------------------------------------------------------------------- /source/uri-options/tests/compression-options.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/uri-options/tests/compression-options.yml -------------------------------------------------------------------------------- /source/uri-options/tests/concern-options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/uri-options/tests/concern-options.json -------------------------------------------------------------------------------- /source/uri-options/tests/concern-options.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/uri-options/tests/concern-options.yml -------------------------------------------------------------------------------- /source/uri-options/tests/connection-options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/uri-options/tests/connection-options.json -------------------------------------------------------------------------------- /source/uri-options/tests/connection-options.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/uri-options/tests/connection-options.yml -------------------------------------------------------------------------------- /source/uri-options/tests/connection-pool-options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/uri-options/tests/connection-pool-options.json -------------------------------------------------------------------------------- /source/uri-options/tests/connection-pool-options.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/uri-options/tests/connection-pool-options.yml -------------------------------------------------------------------------------- /source/uri-options/tests/proxy-options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/uri-options/tests/proxy-options.json -------------------------------------------------------------------------------- /source/uri-options/tests/proxy-options.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/uri-options/tests/proxy-options.yml -------------------------------------------------------------------------------- /source/uri-options/tests/read-preference-options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/uri-options/tests/read-preference-options.json -------------------------------------------------------------------------------- /source/uri-options/tests/read-preference-options.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/uri-options/tests/read-preference-options.yml -------------------------------------------------------------------------------- /source/uri-options/tests/sdam-options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/uri-options/tests/sdam-options.json -------------------------------------------------------------------------------- /source/uri-options/tests/sdam-options.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/uri-options/tests/sdam-options.yml -------------------------------------------------------------------------------- /source/uri-options/tests/single-threaded-options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/uri-options/tests/single-threaded-options.json -------------------------------------------------------------------------------- /source/uri-options/tests/single-threaded-options.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/uri-options/tests/single-threaded-options.yml -------------------------------------------------------------------------------- /source/uri-options/tests/srv-options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/uri-options/tests/srv-options.json -------------------------------------------------------------------------------- /source/uri-options/tests/srv-options.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/uri-options/tests/srv-options.yml -------------------------------------------------------------------------------- /source/uri-options/tests/tls-options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/uri-options/tests/tls-options.json -------------------------------------------------------------------------------- /source/uri-options/tests/tls-options.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/uri-options/tests/tls-options.yml -------------------------------------------------------------------------------- /source/uri-options/uri-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/uri-options/uri-options.md -------------------------------------------------------------------------------- /source/uri-options/uri-options.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/uri-options/uri-options.rst -------------------------------------------------------------------------------- /source/uuid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/uuid.rst -------------------------------------------------------------------------------- /source/versioned-api/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/versioned-api/tests/README.md -------------------------------------------------------------------------------- /source/versioned-api/tests/crud-api-version-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/versioned-api/tests/crud-api-version-1.json -------------------------------------------------------------------------------- /source/versioned-api/tests/crud-api-version-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/versioned-api/tests/crud-api-version-1.yml -------------------------------------------------------------------------------- /source/versioned-api/tests/transaction-handling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/versioned-api/tests/transaction-handling.json -------------------------------------------------------------------------------- /source/versioned-api/tests/transaction-handling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/versioned-api/tests/transaction-handling.yml -------------------------------------------------------------------------------- /source/versioned-api/versioned-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/versioned-api/versioned-api.md -------------------------------------------------------------------------------- /source/versioned-api/versioned-api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/versioned-api/versioned-api.rst -------------------------------------------------------------------------------- /source/wireversion-featurelist.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/specifications/HEAD/source/wireversion-featurelist.rst --------------------------------------------------------------------------------