mongo 2.4.1 → 2.14.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- checksums.yaml.gz.sig +0 -0
- data/CONTRIBUTING.md +12 -54
- data/LICENSE +1 -1
- data/README.md +71 -44
- data/Rakefile +104 -9
- data/lib/mongo/active_support.rb +17 -0
- data/lib/mongo/address/ipv4.rb +38 -8
- data/lib/mongo/address/ipv6.rb +61 -12
- data/lib/mongo/address/unix.rb +9 -6
- data/lib/mongo/address/validator.rb +99 -0
- data/lib/mongo/address.rb +160 -59
- data/lib/mongo/auth/aws/conversation.rb +128 -0
- data/lib/mongo/auth/aws/credentials_retriever.rb +219 -0
- data/lib/mongo/auth/aws/request.rb +283 -0
- data/lib/mongo/auth/aws.rb +37 -0
- data/lib/mongo/auth/base.rb +129 -0
- data/lib/mongo/auth/conversation_base.rb +52 -0
- data/lib/mongo/auth/cr/conversation.rb +47 -71
- data/lib/mongo/auth/cr.rb +14 -35
- data/lib/mongo/auth/credential_cache.rb +51 -0
- data/lib/mongo/auth/gssapi/conversation.rb +108 -0
- data/lib/mongo/auth/gssapi.rb +38 -0
- data/lib/mongo/auth/ldap/conversation.rb +22 -53
- data/lib/mongo/auth/ldap.rb +11 -33
- data/lib/mongo/auth/roles.rb +1 -1
- data/lib/mongo/auth/sasl_conversation_base.rb +111 -0
- data/lib/mongo/auth/scram/conversation.rb +10 -411
- data/lib/mongo/auth/scram.rb +42 -37
- data/lib/mongo/auth/scram256/conversation.rb +63 -0
- data/lib/mongo/auth/scram256.rb +31 -0
- data/lib/mongo/auth/scram_conversation_base.rb +402 -0
- data/lib/mongo/auth/stringprep/profiles/sasl.rb +74 -0
- data/lib/mongo/auth/stringprep/tables.rb +3233 -0
- data/lib/mongo/auth/stringprep/unicode_normalize/normalize.rb +175 -0
- data/lib/mongo/auth/stringprep/unicode_normalize/tables.rb +1171 -0
- data/lib/mongo/auth/stringprep.rb +115 -0
- data/lib/mongo/auth/user/view.rb +53 -25
- data/lib/mongo/auth/user.rb +73 -10
- data/lib/mongo/auth/x509/conversation.rb +46 -52
- data/lib/mongo/auth/x509.rb +26 -31
- data/lib/mongo/auth.rb +93 -17
- data/lib/mongo/background_thread.rb +159 -0
- data/lib/mongo/bson.rb +1 -1
- data/lib/mongo/bulk_write/combineable.rb +22 -5
- data/lib/mongo/bulk_write/ordered_combiner.rb +1 -1
- data/lib/mongo/bulk_write/result.rb +2 -2
- data/lib/mongo/bulk_write/result_combiner.rb +18 -8
- data/lib/mongo/bulk_write/transformable.rb +20 -11
- data/lib/mongo/bulk_write/unordered_combiner.rb +1 -1
- data/lib/mongo/bulk_write/validatable.rb +10 -2
- data/lib/mongo/bulk_write.rb +134 -46
- data/lib/mongo/caching_cursor.rb +74 -0
- data/lib/mongo/client.rb +1050 -113
- data/lib/mongo/client_encryption.rb +103 -0
- data/lib/mongo/cluster/periodic_executor.rb +101 -0
- data/lib/mongo/cluster/reapers/cursor_reaper.rb +152 -0
- data/lib/mongo/cluster/reapers/socket_reaper.rb +62 -0
- data/lib/mongo/cluster/sdam_flow.rb +603 -0
- data/lib/mongo/cluster/topology/base.rb +218 -0
- data/lib/mongo/cluster/topology/no_replica_set_options.rb +34 -0
- data/lib/mongo/cluster/topology/replica_set_no_primary.rb +169 -0
- data/lib/mongo/cluster/topology/replica_set_with_primary.rb +27 -0
- data/lib/mongo/cluster/topology/sharded.rb +13 -116
- data/lib/mongo/cluster/topology/single.rb +19 -113
- data/lib/mongo/cluster/topology/unknown.rb +11 -152
- data/lib/mongo/cluster/topology.rb +65 -17
- data/lib/mongo/cluster.rb +798 -274
- data/lib/mongo/cluster_time.rb +139 -0
- data/lib/mongo/collection/view/aggregation.rb +47 -14
- data/lib/mongo/collection/view/builder/aggregation.rb +39 -8
- data/lib/mongo/collection/view/builder/find_command.rb +56 -23
- data/lib/mongo/collection/view/builder/flags.rb +2 -2
- data/lib/mongo/collection/view/builder/map_reduce.rb +17 -6
- data/lib/mongo/collection/view/builder/modifiers.rb +2 -2
- data/lib/mongo/collection/view/builder/op_query.rb +10 -2
- data/lib/mongo/collection/view/builder.rb +1 -1
- data/lib/mongo/collection/view/change_stream/retryable.rb +40 -0
- data/lib/mongo/collection/view/change_stream.rb +369 -0
- data/lib/mongo/collection/view/explainable.rb +29 -10
- data/lib/mongo/collection/view/immutable.rb +2 -2
- data/lib/mongo/collection/view/iterable.rb +107 -24
- data/lib/mongo/collection/view/map_reduce.rb +65 -36
- data/lib/mongo/collection/view/readable.rb +211 -52
- data/lib/mongo/collection/view/writable.rb +283 -60
- data/lib/mongo/collection/view.rb +52 -28
- data/lib/mongo/collection.rb +324 -60
- data/lib/mongo/crypt/auto_decryption_context.rb +40 -0
- data/lib/mongo/crypt/auto_encrypter.rb +179 -0
- data/lib/mongo/crypt/auto_encryption_context.rb +44 -0
- data/lib/mongo/crypt/binary.rb +155 -0
- data/lib/mongo/crypt/binding.rb +1229 -0
- data/lib/mongo/crypt/context.rb +135 -0
- data/lib/mongo/crypt/data_key_context.rb +162 -0
- data/lib/mongo/crypt/encryption_io.rb +306 -0
- data/lib/mongo/crypt/explicit_decryption_context.rb +40 -0
- data/lib/mongo/crypt/explicit_encrypter.rb +117 -0
- data/lib/mongo/crypt/explicit_encryption_context.rb +89 -0
- data/lib/mongo/crypt/handle.rb +315 -0
- data/lib/mongo/crypt/hooks.rb +90 -0
- data/lib/mongo/crypt/kms_context.rb +67 -0
- data/lib/mongo/crypt/status.rb +131 -0
- data/lib/mongo/crypt.rb +33 -0
- data/lib/mongo/cursor/builder/get_more_command.rb +9 -4
- data/lib/mongo/cursor/builder/kill_cursors_command.rb +24 -6
- data/lib/mongo/cursor/builder/op_get_more.rb +4 -4
- data/lib/mongo/cursor/builder/op_kill_cursors.rb +26 -7
- data/lib/mongo/cursor/builder.rb +1 -1
- data/lib/mongo/cursor.rb +226 -44
- data/lib/mongo/database/view.rb +104 -26
- data/lib/mongo/database.rb +214 -31
- data/lib/mongo/dbref.rb +10 -3
- data/lib/mongo/distinguishing_semaphore.rb +55 -0
- data/lib/mongo/error/auth_error.rb +29 -0
- data/lib/mongo/error/bulk_write_error.rb +20 -2
- data/lib/mongo/error/change_stream_resumable.rb +37 -0
- data/lib/mongo/error/closed_stream.rb +1 -1
- data/lib/mongo/error/connection_check_out_timeout.rb +48 -0
- data/lib/mongo/error/connection_perished.rb +23 -0
- data/lib/mongo/error/credential_check_error.rb +26 -0
- data/lib/mongo/error/crypt_error.rb +31 -0
- data/lib/mongo/error/extra_file_chunk.rb +1 -1
- data/lib/mongo/error/failed_string_prep_validation.rb +38 -0
- data/lib/mongo/error/file_not_found.rb +1 -1
- data/lib/mongo/error/handshake_error.rb +24 -0
- data/lib/mongo/error/insufficient_iteration_count.rb +38 -0
- data/lib/mongo/error/invalid_address.rb +24 -0
- data/lib/mongo/error/invalid_application_name.rb +1 -1
- data/lib/mongo/error/invalid_bulk_operation.rb +1 -1
- data/lib/mongo/error/invalid_bulk_operation_type.rb +1 -1
- data/lib/mongo/error/invalid_collection_name.rb +1 -1
- data/lib/mongo/error/invalid_cursor_operation.rb +27 -0
- data/lib/mongo/error/invalid_database_name.rb +1 -1
- data/lib/mongo/error/invalid_document.rb +1 -1
- data/lib/mongo/error/invalid_file.rb +1 -1
- data/lib/mongo/error/invalid_file_revision.rb +1 -1
- data/lib/mongo/error/invalid_min_pool_size.rb +35 -0
- data/lib/mongo/error/invalid_nonce.rb +2 -2
- data/lib/mongo/error/invalid_read_concern.rb +28 -0
- data/lib/mongo/error/invalid_read_option.rb +35 -0
- data/lib/mongo/error/invalid_replacement_document.rb +1 -1
- data/lib/mongo/error/invalid_server_auth_host.rb +22 -0
- data/lib/mongo/error/invalid_server_auth_response.rb +23 -0
- data/lib/mongo/error/invalid_server_preference.rb +7 -1
- data/lib/mongo/error/invalid_session.rb +37 -0
- data/lib/mongo/error/invalid_signature.rb +1 -1
- data/lib/mongo/error/invalid_transaction_operation.rb +82 -0
- data/lib/mongo/error/invalid_txt_record.rb +27 -0
- data/lib/mongo/error/invalid_update_document.rb +1 -1
- data/lib/mongo/error/invalid_uri.rb +8 -7
- data/lib/mongo/error/invalid_write_concern.rb +3 -3
- data/lib/mongo/error/kms_error.rb +22 -0
- data/lib/mongo/error/lint_error.rb +35 -0
- data/lib/mongo/error/max_bson_size.rb +15 -4
- data/lib/mongo/error/max_message_size.rb +1 -1
- data/lib/mongo/error/mismatched_domain.rb +27 -0
- data/lib/mongo/error/missing_file_chunk.rb +1 -1
- data/lib/mongo/error/missing_password.rb +29 -0
- data/lib/mongo/error/missing_resume_token.rb +39 -0
- data/lib/mongo/error/missing_scram_server_signature.rb +27 -0
- data/lib/mongo/error/mongocryptd_spawn_error.rb +22 -0
- data/lib/mongo/error/multi_index_drop.rb +1 -1
- data/lib/mongo/error/need_primary_server.rb +1 -1
- data/lib/mongo/error/no_server_available.rb +14 -5
- data/lib/mongo/error/no_srv_records.rb +26 -0
- data/lib/mongo/error/notable.rb +80 -0
- data/lib/mongo/error/operation_failure.rb +244 -13
- data/lib/mongo/error/parser.rb +156 -7
- data/lib/mongo/error/pool_closed_error.rb +50 -0
- data/lib/mongo/error/raise_original_error.rb +29 -0
- data/lib/mongo/error/sdam_error_detection.rb +72 -0
- data/lib/mongo/error/server_certificate_revoked.rb +22 -0
- data/lib/mongo/error/session_ended.rb +27 -0
- data/lib/mongo/error/sessions_not_supported.rb +35 -0
- data/lib/mongo/error/socket_error.rb +5 -2
- data/lib/mongo/error/socket_timeout_error.rb +5 -2
- data/lib/mongo/error/unchangeable_collection_option.rb +1 -1
- data/lib/mongo/error/unexpected_chunk_length.rb +1 -1
- data/lib/mongo/error/unexpected_response.rb +1 -1
- data/lib/mongo/error/unknown_payload_type.rb +41 -0
- data/lib/mongo/error/unsupported_array_filters.rb +56 -0
- data/lib/mongo/error/unsupported_collation.rb +7 -2
- data/lib/mongo/error/unsupported_features.rb +1 -19
- data/lib/mongo/error/unsupported_message_type.rb +23 -0
- data/lib/mongo/error/unsupported_option.rb +101 -0
- data/lib/mongo/error/write_retryable.rb +27 -0
- data/lib/mongo/error.rb +130 -1
- data/lib/mongo/event/base.rb +42 -0
- data/lib/mongo/event/listeners.rb +1 -1
- data/lib/mongo/event/publisher.rb +1 -1
- data/lib/mongo/event/subscriber.rb +1 -1
- data/lib/mongo/event.rb +10 -11
- data/lib/mongo/grid/file/chunk.rb +6 -6
- data/lib/mongo/grid/file/info.rb +35 -5
- data/lib/mongo/grid/file.rb +6 -1
- data/lib/mongo/grid/fs_bucket.rb +76 -34
- data/lib/mongo/grid/stream/read.rb +47 -24
- data/lib/mongo/grid/stream/write.rb +34 -12
- data/lib/mongo/grid/stream.rb +1 -1
- data/lib/mongo/grid.rb +1 -1
- data/lib/mongo/id.rb +64 -0
- data/lib/mongo/index/view.rb +98 -34
- data/lib/mongo/index.rb +2 -1
- data/lib/mongo/lint.rb +102 -0
- data/lib/mongo/loggable.rb +6 -2
- data/lib/mongo/logger.rb +4 -6
- data/lib/mongo/monitoring/cmap_log_subscriber.rb +53 -0
- data/lib/mongo/monitoring/command_log_subscriber.rb +22 -5
- data/lib/mongo/monitoring/event/cmap/base.rb +28 -0
- data/lib/mongo/monitoring/event/cmap/connection_check_out_failed.rb +85 -0
- data/lib/mongo/monitoring/event/cmap/connection_check_out_started.rb +56 -0
- data/lib/mongo/monitoring/event/cmap/connection_checked_in.rb +71 -0
- data/lib/mongo/monitoring/event/cmap/connection_checked_out.rb +72 -0
- data/lib/mongo/monitoring/event/cmap/connection_closed.rb +103 -0
- data/lib/mongo/monitoring/event/cmap/connection_created.rb +64 -0
- data/lib/mongo/monitoring/event/cmap/connection_ready.rb +64 -0
- data/lib/mongo/monitoring/event/cmap/pool_cleared.rb +57 -0
- data/lib/mongo/monitoring/event/cmap/pool_closed.rb +65 -0
- data/lib/mongo/monitoring/event/cmap/pool_created.rb +72 -0
- data/lib/mongo/monitoring/event/cmap.rb +25 -0
- data/lib/mongo/monitoring/event/command_failed.rb +30 -6
- data/lib/mongo/monitoring/event/command_started.rb +82 -6
- data/lib/mongo/monitoring/event/command_succeeded.rb +16 -3
- data/lib/mongo/monitoring/event/secure.rb +23 -3
- data/lib/mongo/monitoring/event/server_closed.rb +15 -2
- data/lib/mongo/monitoring/event/server_description_changed.rb +41 -3
- data/lib/mongo/monitoring/event/server_heartbeat_failed.rb +78 -0
- data/lib/mongo/monitoring/event/server_heartbeat_started.rb +62 -0
- data/lib/mongo/monitoring/event/server_heartbeat_succeeded.rb +70 -0
- data/lib/mongo/monitoring/event/server_opening.rb +15 -2
- data/lib/mongo/monitoring/event/topology_changed.rb +16 -2
- data/lib/mongo/monitoring/event/topology_closed.rb +15 -2
- data/lib/mongo/monitoring/event/topology_opening.rb +15 -2
- data/lib/mongo/monitoring/event.rb +6 -1
- data/lib/mongo/monitoring/publishable.rb +27 -45
- data/lib/mongo/monitoring/sdam_log_subscriber.rb +1 -1
- data/lib/mongo/monitoring/server_closed_log_subscriber.rb +1 -1
- data/lib/mongo/monitoring/server_description_changed_log_subscriber.rb +10 -2
- data/lib/mongo/monitoring/server_opening_log_subscriber.rb +1 -1
- data/lib/mongo/monitoring/topology_changed_log_subscriber.rb +5 -5
- data/lib/mongo/monitoring/topology_closed_log_subscriber.rb +30 -0
- data/lib/mongo/monitoring/topology_opening_log_subscriber.rb +2 -2
- data/lib/mongo/monitoring/unified_sdam_log_subscriber.rb +62 -0
- data/lib/mongo/monitoring.rb +198 -67
- data/lib/mongo/operation/aggregate/command.rb +44 -0
- data/lib/mongo/operation/aggregate/op_msg.rb +31 -0
- data/lib/mongo/operation/aggregate/result.rb +101 -0
- data/lib/mongo/operation/aggregate.rb +36 -0
- data/lib/mongo/operation/collections_info/command.rb +45 -0
- data/lib/mongo/operation/collections_info/result.rb +56 -0
- data/lib/mongo/operation/collections_info.rb +31 -0
- data/lib/mongo/operation/command/command.rb +38 -0
- data/lib/mongo/operation/command/op_msg.rb +28 -0
- data/lib/mongo/operation/command.rb +31 -0
- data/lib/mongo/operation/count/command.rb +38 -0
- data/lib/mongo/operation/count/op_msg.rb +29 -0
- data/lib/mongo/operation/count.rb +31 -0
- data/lib/mongo/operation/create/command.rb +38 -0
- data/lib/mongo/operation/create/op_msg.rb +29 -0
- data/lib/mongo/operation/create.rb +31 -0
- data/lib/mongo/operation/create_index/command.rb +42 -0
- data/lib/mongo/operation/create_index/op_msg.rb +38 -0
- data/lib/mongo/operation/create_index.rb +31 -0
- data/lib/mongo/operation/create_user/command.rb +43 -0
- data/lib/mongo/operation/create_user/op_msg.rb +35 -0
- data/lib/mongo/operation/create_user.rb +31 -0
- data/lib/mongo/operation/delete/bulk_result.rb +48 -0
- data/lib/mongo/operation/delete/command.rb +46 -0
- data/lib/mongo/operation/delete/legacy.rb +54 -0
- data/lib/mongo/operation/delete/op_msg.rb +45 -0
- data/lib/mongo/operation/delete/result.rb +45 -0
- data/lib/mongo/operation/delete.rb +38 -0
- data/lib/mongo/operation/distinct/command.rb +38 -0
- data/lib/mongo/operation/distinct/op_msg.rb +30 -0
- data/lib/mongo/operation/distinct.rb +31 -0
- data/lib/mongo/operation/drop/command.rb +38 -0
- data/lib/mongo/operation/drop/op_msg.rb +29 -0
- data/lib/mongo/operation/drop.rb +31 -0
- data/lib/mongo/operation/drop_database/command.rb +38 -0
- data/lib/mongo/operation/drop_database/op_msg.rb +29 -0
- data/lib/mongo/operation/drop_database.rb +31 -0
- data/lib/mongo/operation/drop_index/command.rb +42 -0
- data/lib/mongo/operation/drop_index/op_msg.rb +35 -0
- data/lib/mongo/operation/drop_index.rb +31 -0
- data/lib/mongo/operation/explain/command.rb +43 -0
- data/lib/mongo/operation/explain/legacy.rb +42 -0
- data/lib/mongo/operation/explain/op_msg.rb +37 -0
- data/lib/mongo/operation/explain/result.rb +53 -0
- data/lib/mongo/operation/explain.rb +33 -0
- data/lib/mongo/operation/find/command.rb +39 -0
- data/lib/mongo/operation/find/legacy/result.rb +43 -0
- data/lib/mongo/operation/find/legacy.rb +40 -0
- data/lib/mongo/operation/find/op_msg.rb +31 -0
- data/lib/mongo/operation/find/result.rb +73 -0
- data/lib/mongo/operation/find.rb +33 -0
- data/lib/mongo/operation/get_more/command.rb +39 -0
- data/lib/mongo/operation/get_more/legacy.rb +36 -0
- data/lib/mongo/operation/get_more/op_msg.rb +30 -0
- data/lib/mongo/operation/get_more/result.rb +72 -0
- data/lib/mongo/operation/get_more.rb +33 -0
- data/lib/mongo/operation/indexes/command.rb +39 -0
- data/lib/mongo/operation/indexes/legacy.rb +45 -0
- data/lib/mongo/operation/indexes/op_msg.rb +31 -0
- data/lib/mongo/operation/indexes/result.rb +102 -0
- data/lib/mongo/operation/indexes.rb +33 -0
- data/lib/mongo/operation/insert/bulk_result.rb +109 -0
- data/lib/mongo/operation/insert/command.rb +56 -0
- data/lib/mongo/operation/insert/legacy.rb +65 -0
- data/lib/mongo/operation/insert/op_msg.rb +51 -0
- data/lib/mongo/operation/insert/result.rb +72 -0
- data/lib/mongo/operation/insert.rb +41 -0
- data/lib/mongo/operation/kill_cursors/command.rb +37 -0
- data/lib/mongo/operation/kill_cursors/legacy.rb +37 -0
- data/lib/mongo/operation/kill_cursors/op_msg.rb +29 -0
- data/lib/mongo/operation/kill_cursors.rb +8 -16
- data/lib/mongo/operation/list_collections/command.rb +43 -0
- data/lib/mongo/operation/list_collections/op_msg.rb +36 -0
- data/lib/mongo/operation/list_collections/result.rb +107 -0
- data/lib/mongo/operation/list_collections.rb +32 -0
- data/lib/mongo/operation/map_reduce/command.rb +40 -0
- data/lib/mongo/operation/map_reduce/op_msg.rb +31 -0
- data/lib/mongo/operation/map_reduce/result.rb +139 -0
- data/lib/mongo/operation/map_reduce.rb +32 -0
- data/lib/mongo/operation/op_msg_base.rb +30 -0
- data/lib/mongo/operation/parallel_scan/command.rb +55 -0
- data/lib/mongo/operation/parallel_scan/op_msg.rb +43 -0
- data/lib/mongo/operation/parallel_scan/result.rb +65 -0
- data/lib/mongo/operation/parallel_scan.rb +32 -0
- data/lib/mongo/operation/remove_user/command.rb +43 -0
- data/lib/mongo/operation/remove_user/op_msg.rb +35 -0
- data/lib/mongo/operation/remove_user.rb +31 -0
- data/lib/mongo/operation/result.rb +190 -39
- data/lib/mongo/operation/shared/bypass_document_validation.rb +43 -0
- data/lib/mongo/operation/shared/causal_consistency_supported.rb +42 -0
- data/lib/mongo/operation/shared/collections_info_or_list_collections.rb +58 -0
- data/lib/mongo/operation/shared/executable.rb +106 -0
- data/lib/mongo/operation/shared/executable_no_validate.rb +29 -0
- data/lib/mongo/operation/shared/executable_transaction_label.rb +27 -0
- data/lib/mongo/operation/shared/idable.rb +65 -0
- data/lib/mongo/operation/shared/limited.rb +39 -0
- data/lib/mongo/operation/shared/object_id_generator.rb +37 -0
- data/lib/mongo/operation/shared/op_msg_or_command.rb +44 -0
- data/lib/mongo/operation/shared/op_msg_or_find_command.rb +47 -0
- data/lib/mongo/operation/shared/op_msg_or_list_indexes_command.rb +47 -0
- data/lib/mongo/operation/shared/polymorphic_lookup.rb +33 -0
- data/lib/mongo/operation/shared/polymorphic_result.rb +47 -0
- data/lib/mongo/operation/shared/read_preference_supported.rb +109 -0
- data/lib/mongo/operation/shared/response_handling.rb +169 -0
- data/lib/mongo/operation/shared/result/aggregatable.rb +71 -0
- data/lib/mongo/operation/shared/result/use_legacy_error_parser.rb +29 -0
- data/lib/mongo/operation/shared/sessions_supported.rb +239 -0
- data/lib/mongo/operation/shared/specifiable.rb +582 -0
- data/lib/mongo/operation/shared/write.rb +97 -0
- data/lib/mongo/operation/shared/write_concern_supported.rb +40 -0
- data/lib/mongo/operation/update/bulk_result.rb +126 -0
- data/lib/mongo/operation/update/command.rb +47 -0
- data/lib/mongo/operation/update/legacy/result.rb +109 -0
- data/lib/mongo/operation/update/legacy.rb +65 -0
- data/lib/mongo/operation/update/op_msg.rb +45 -0
- data/lib/mongo/operation/update/result.rb +110 -0
- data/lib/mongo/operation/update.rb +38 -0
- data/lib/mongo/operation/update_user/command.rb +42 -0
- data/lib/mongo/operation/update_user/op_msg.rb +35 -0
- data/lib/mongo/operation/update_user.rb +31 -0
- data/lib/mongo/operation/users_info/command.rb +43 -0
- data/lib/mongo/operation/users_info/op_msg.rb +36 -0
- data/lib/mongo/operation/users_info/result.rb +45 -0
- data/lib/mongo/operation/users_info.rb +32 -0
- data/lib/mongo/operation.rb +65 -22
- data/lib/mongo/options/mapper.rb +10 -3
- data/lib/mongo/options/redacted.rb +1 -1
- data/lib/mongo/options.rb +1 -1
- data/lib/mongo/protocol/bit_vector.rb +5 -4
- data/lib/mongo/protocol/compressed.rb +135 -0
- data/lib/mongo/protocol/delete.rb +9 -7
- data/lib/mongo/protocol/get_more.rb +17 -14
- data/lib/mongo/protocol/insert.rb +12 -8
- data/lib/mongo/protocol/kill_cursors.rb +15 -20
- data/lib/mongo/protocol/message.rb +166 -27
- data/lib/mongo/protocol/msg.rb +381 -0
- data/lib/mongo/protocol/query.rb +65 -10
- data/lib/mongo/protocol/registry.rb +76 -0
- data/lib/mongo/protocol/reply.rb +20 -15
- data/lib/mongo/protocol/serializers.rb +280 -12
- data/lib/mongo/protocol/update.rb +15 -9
- data/lib/mongo/protocol.rb +3 -0
- data/lib/mongo/query_cache.rb +242 -0
- data/lib/mongo/retryable.rb +411 -47
- data/lib/mongo/semaphore.rb +46 -0
- data/lib/mongo/server/app_metadata.rb +211 -0
- data/lib/mongo/server/connection.rb +223 -109
- data/lib/mongo/server/connection_base.rb +250 -0
- data/lib/mongo/server/connection_common.rb +135 -0
- data/lib/mongo/server/connection_pool/populator.rb +58 -0
- data/lib/mongo/server/connection_pool.rb +717 -58
- data/lib/mongo/server/context.rb +13 -13
- data/lib/mongo/server/description/features.rb +71 -14
- data/lib/mongo/server/description.rb +257 -70
- data/lib/mongo/server/monitor/app_metadata.rb +34 -0
- data/lib/mongo/server/monitor/connection.rb +177 -66
- data/lib/mongo/server/monitor.rb +232 -93
- data/lib/mongo/server/pending_connection.rb +255 -0
- data/lib/mongo/server/push_monitor/connection.rb +28 -0
- data/lib/mongo/server/push_monitor.rb +173 -0
- data/lib/mongo/server/round_trip_time_averager.rb +73 -0
- data/lib/mongo/server.rb +365 -54
- data/lib/mongo/server_selector/base.rb +622 -0
- data/lib/mongo/server_selector/nearest.rb +31 -20
- data/lib/mongo/server_selector/primary.rb +30 -14
- data/lib/mongo/server_selector/primary_preferred.rb +37 -24
- data/lib/mongo/server_selector/secondary.rb +31 -20
- data/lib/mongo/server_selector/secondary_preferred.rb +37 -22
- data/lib/mongo/server_selector.rb +14 -3
- data/lib/mongo/session/server_session.rb +119 -0
- data/lib/mongo/session/session_pool.rb +150 -0
- data/lib/mongo/session.rb +1067 -0
- data/lib/mongo/socket/ocsp_cache.rb +97 -0
- data/lib/mongo/socket/ocsp_verifier.rb +368 -0
- data/lib/mongo/socket/ssl.rb +278 -67
- data/lib/mongo/socket/tcp.rb +45 -32
- data/lib/mongo/socket/unix.rb +21 -34
- data/lib/mongo/socket.rb +273 -49
- data/lib/mongo/srv/monitor.rb +121 -0
- data/lib/mongo/srv/resolver.rb +134 -0
- data/lib/mongo/srv/result.rb +125 -0
- data/lib/mongo/srv.rb +17 -0
- data/lib/mongo/timeout.rb +51 -0
- data/lib/mongo/topology_version.rb +89 -0
- data/lib/mongo/uri/options_mapper.rb +582 -0
- data/lib/mongo/uri/srv_protocol.rb +238 -0
- data/lib/mongo/uri.rb +269 -320
- data/lib/mongo/utils.rb +73 -0
- data/lib/mongo/version.rb +2 -2
- data/lib/mongo/write_concern/acknowledged.rb +14 -4
- data/lib/mongo/write_concern/base.rb +67 -0
- data/lib/mongo/write_concern/unacknowledged.rb +14 -4
- data/lib/mongo/write_concern.rb +16 -35
- data/lib/mongo.rb +43 -5
- data/mongo.gemspec +14 -6
- data/spec/NOTES.aws-auth.md +296 -0
- data/spec/README.aws-auth.md +318 -0
- data/spec/README.md +692 -0
- data/spec/USERS.md +72 -0
- data/spec/atlas/atlas_connectivity_spec.rb +24 -0
- data/spec/atlas/operations_spec.rb +25 -0
- data/spec/integration/auth_spec.rb +266 -0
- data/spec/integration/awaited_ismaster_spec.rb +28 -0
- data/spec/integration/aws_auth_request_spec.rb +74 -0
- data/spec/integration/aws_credentials_retriever_spec.rb +103 -0
- data/spec/integration/bson_symbol_spec.rb +36 -0
- data/spec/integration/bulk_insert_spec.rb +80 -0
- data/spec/integration/bulk_write_spec.rb +67 -0
- data/spec/integration/change_stream_examples_spec.rb +205 -0
- data/spec/integration/change_stream_spec.rb +805 -0
- data/spec/integration/check_clean_slate_spec.rb +16 -0
- data/spec/integration/client_authentication_options_spec.rb +501 -0
- data/spec/integration/client_connectivity_spec.rb +38 -0
- data/spec/integration/client_construction_aws_auth_spec.rb +191 -0
- data/spec/integration/client_construction_spec.rb +236 -0
- data/spec/integration/client_side_encryption/auto_encryption_bulk_writes_spec.rb +357 -0
- data/spec/integration/client_side_encryption/auto_encryption_command_monitoring_spec.rb +303 -0
- data/spec/integration/client_side_encryption/auto_encryption_mongocryptd_spawn_spec.rb +72 -0
- data/spec/integration/client_side_encryption/auto_encryption_old_wire_version_spec.rb +79 -0
- data/spec/integration/client_side_encryption/auto_encryption_reconnect_spec.rb +221 -0
- data/spec/integration/client_side_encryption/auto_encryption_spec.rb +601 -0
- data/spec/integration/client_side_encryption/bson_size_limit_spec.rb +187 -0
- data/spec/integration/client_side_encryption/bypass_mongocryptd_spawn_spec.rb +78 -0
- data/spec/integration/client_side_encryption/client_close_spec.rb +63 -0
- data/spec/integration/client_side_encryption/corpus_spec.rb +233 -0
- data/spec/integration/client_side_encryption/custom_endpoint_spec.rb +132 -0
- data/spec/integration/client_side_encryption/data_key_spec.rb +165 -0
- data/spec/integration/client_side_encryption/explicit_encryption_spec.rb +114 -0
- data/spec/integration/client_side_encryption/external_key_vault_spec.rb +141 -0
- data/spec/integration/client_side_encryption/views_spec.rb +44 -0
- data/spec/integration/client_spec.rb +44 -0
- data/spec/integration/client_update_spec.rb +154 -0
- data/spec/integration/collection_indexes_prose_spec.rb +55 -0
- data/spec/integration/command_monitoring_spec.rb +146 -0
- data/spec/integration/command_spec.rb +176 -0
- data/spec/integration/connect_single_rs_name_spec.rb +72 -0
- data/spec/integration/connection_pool_populator_spec.rb +302 -0
- data/spec/integration/connection_spec.rb +331 -0
- data/spec/integration/crud_spec.rb +162 -0
- data/spec/integration/cursor_reaping_spec.rb +136 -0
- data/spec/integration/docs_examples_spec.rb +197 -0
- data/spec/integration/error_detection_spec.rb +39 -0
- data/spec/integration/fork_reconnect_spec.rb +198 -0
- data/spec/integration/get_more_spec.rb +39 -0
- data/spec/integration/grid_fs_bucket_spec.rb +48 -0
- data/spec/integration/heartbeat_events_spec.rb +99 -0
- data/spec/integration/mmapv1_spec.rb +28 -0
- data/spec/integration/mongos_pinning_spec.rb +34 -0
- data/spec/integration/ocsp_connectivity_spec.rb +26 -0
- data/spec/integration/ocsp_verifier_cache_spec.rb +188 -0
- data/spec/integration/ocsp_verifier_spec.rb +334 -0
- data/spec/integration/operation_failure_code_spec.rb +26 -0
- data/spec/integration/query_cache_spec.rb +1045 -0
- data/spec/integration/query_cache_transactions_spec.rb +190 -0
- data/spec/integration/read_concern_spec.rb +89 -0
- data/spec/integration/read_preference_spec.rb +541 -0
- data/spec/integration/reconnect_spec.rb +174 -0
- data/spec/integration/retryable_errors_spec.rb +283 -0
- data/spec/integration/retryable_writes/retryable_writes_36_and_older_spec.rb +761 -0
- data/spec/integration/retryable_writes/retryable_writes_40_and_newer_spec.rb +402 -0
- data/spec/integration/retryable_writes/shared/adds_diagnostics.rb +15 -0
- data/spec/integration/retryable_writes/shared/does_not_support_retries.rb +24 -0
- data/spec/integration/retryable_writes/shared/only_supports_legacy_retries.rb +25 -0
- data/spec/integration/retryable_writes/shared/performs_legacy_retries.rb +217 -0
- data/spec/integration/retryable_writes/shared/performs_modern_retries.rb +232 -0
- data/spec/integration/retryable_writes/shared/performs_no_retries.rb +110 -0
- data/spec/integration/retryable_writes/shared/supports_legacy_retries.rb +19 -0
- data/spec/integration/retryable_writes/shared/supports_modern_retries.rb +25 -0
- data/spec/integration/retryable_writes/shared/supports_retries.rb +16 -0
- data/spec/integration/retryable_writes_errors_spec.rb +31 -0
- data/spec/integration/sdam_error_handling_spec.rb +421 -0
- data/spec/integration/sdam_events_spec.rb +118 -0
- data/spec/integration/sdam_prose_spec.rb +64 -0
- data/spec/integration/server_description_spec.rb +45 -0
- data/spec/integration/server_monitor_spec.rb +52 -0
- data/spec/integration/server_selection_spec.rb +36 -0
- data/spec/integration/server_selector_spec.rb +85 -0
- data/spec/integration/server_spec.rb +64 -0
- data/spec/integration/shell_examples_spec.rb +981 -0
- data/spec/integration/size_limit_spec.rb +112 -0
- data/spec/integration/srv_monitoring_spec.rb +403 -0
- data/spec/integration/srv_spec.rb +56 -0
- data/spec/integration/ssl_uri_options_spec.rb +25 -0
- data/spec/integration/step_down_spec.rb +204 -0
- data/spec/integration/time_zone_querying_spec.rb +52 -0
- data/spec/integration/transactions_api_examples_spec.rb +59 -0
- data/spec/integration/transactions_examples_spec.rb +226 -0
- data/spec/integration/x509_auth_spec.rb +109 -0
- data/spec/integration/zlib_compression_spec.rb +25 -0
- data/spec/kerberos/kerberos_spec.rb +91 -0
- data/spec/lite_spec_helper.rb +158 -0
- data/spec/mongo/address/ipv4_spec.rb +5 -1
- data/spec/mongo/address/ipv6_spec.rb +33 -1
- data/spec/mongo/address/unix_spec.rb +1 -1
- data/spec/mongo/address/validator_spec.rb +51 -0
- data/spec/mongo/address_spec.rb +113 -7
- data/spec/mongo/auth/aws/request_region_spec.rb +42 -0
- data/spec/mongo/auth/aws/request_spec.rb +76 -0
- data/spec/mongo/auth/cr_spec.rb +30 -32
- data/spec/mongo/auth/gssapi/conversation_spec.rb +121 -0
- data/spec/mongo/auth/invalid_mechanism_spec.rb +11 -0
- data/spec/mongo/auth/ldap/conversation_spec.rb +2 -2
- data/spec/mongo/auth/ldap_spec.rb +11 -30
- data/spec/mongo/auth/scram/conversation_spec.rb +63 -58
- data/spec/mongo/auth/scram256/conversation_spec.rb +171 -0
- data/spec/mongo/auth/scram_negotiation_spec.rb +528 -0
- data/spec/mongo/auth/scram_spec.rb +92 -47
- data/spec/mongo/auth/stringprep/profiles/sasl_spec.rb +113 -0
- data/spec/mongo/auth/stringprep_spec.rb +188 -0
- data/spec/mongo/auth/user/view_spec.rb +401 -70
- data/spec/mongo/auth/user_spec.rb +162 -12
- data/spec/mongo/auth/x509/conversation_spec.rb +2 -2
- data/spec/mongo/auth/x509_spec.rb +40 -29
- data/spec/mongo/auth_spec.rb +4 -4
- data/spec/mongo/bulk_write/ordered_combiner_spec.rb +6 -6
- data/spec/mongo/bulk_write/result_spec.rb +124 -0
- data/spec/mongo/bulk_write/unordered_combiner_spec.rb +4 -4
- data/spec/mongo/bulk_write_spec.rb +803 -236
- data/spec/mongo/caching_cursor_spec.rb +70 -0
- data/spec/mongo/client_construction_spec.rb +2210 -0
- data/spec/mongo/client_encryption_spec.rb +411 -0
- data/spec/mongo/client_spec.rb +492 -431
- data/spec/mongo/cluster/cursor_reaper_spec.rb +40 -69
- data/spec/mongo/cluster/periodic_executor_spec.rb +16 -0
- data/spec/mongo/cluster/socket_reaper_spec.rb +43 -0
- data/spec/mongo/cluster/topology/replica_set_spec.rb +247 -226
- data/spec/mongo/cluster/topology/sharded_spec.rb +56 -55
- data/spec/mongo/cluster/topology/single_spec.rb +91 -31
- data/spec/mongo/cluster/topology/unknown_spec.rb +30 -115
- data/spec/mongo/cluster/topology_spec.rb +132 -19
- data/spec/mongo/cluster_spec.rb +447 -159
- data/spec/mongo/cluster_time_spec.rb +148 -0
- data/spec/mongo/collection/view/aggregation_spec.rb +143 -41
- data/spec/mongo/collection/view/builder/find_command_spec.rb +76 -10
- data/spec/mongo/collection/view/change_stream_resume_spec.rb +392 -0
- data/spec/mongo/collection/view/change_stream_spec.rb +531 -0
- data/spec/mongo/collection/view/explainable_spec.rb +88 -5
- data/spec/mongo/collection/view/immutable_spec.rb +1 -1
- data/spec/mongo/collection/view/iterable_spec.rb +38 -0
- data/spec/mongo/collection/view/map_reduce_spec.rb +253 -32
- data/spec/mongo/collection/view/readable_spec.rb +125 -60
- data/spec/mongo/collection/view/writable_spec.rb +273 -34
- data/spec/mongo/collection/view_spec.rb +10 -9
- data/spec/mongo/collection_spec.rb +2533 -232
- data/spec/mongo/crypt/auto_decryption_context_spec.rb +90 -0
- data/spec/mongo/crypt/auto_encrypter_spec.rb +187 -0
- data/spec/mongo/crypt/auto_encryption_context_spec.rb +107 -0
- data/spec/mongo/crypt/binary_spec.rb +110 -0
- data/spec/mongo/crypt/binding/binary_spec.rb +51 -0
- data/spec/mongo/crypt/binding/context_spec.rb +252 -0
- data/spec/mongo/crypt/binding/helpers_spec.rb +41 -0
- data/spec/mongo/crypt/binding/mongocrypt_spec.rb +139 -0
- data/spec/mongo/crypt/binding/status_spec.rb +94 -0
- data/spec/mongo/crypt/binding/version_spec.rb +17 -0
- data/spec/mongo/crypt/binding_unloaded_spec.rb +20 -0
- data/spec/mongo/crypt/data_key_context_spec.rb +213 -0
- data/spec/mongo/crypt/encryption_io_spec.rb +136 -0
- data/spec/mongo/crypt/explicit_decryption_context_spec.rb +72 -0
- data/spec/mongo/crypt/explicit_encryption_context_spec.rb +170 -0
- data/spec/mongo/crypt/handle_spec.rb +232 -0
- data/spec/mongo/crypt/helpers/mongo_crypt_spec_helper.rb +108 -0
- data/spec/mongo/crypt/status_spec.rb +147 -0
- data/spec/mongo/cursor/builder/get_more_command_spec.rb +37 -11
- data/spec/mongo/cursor/builder/op_get_more_spec.rb +11 -4
- data/spec/mongo/cursor/builder/op_kill_cursors_spec.rb +61 -0
- data/spec/mongo/cursor_spec.rb +317 -46
- data/spec/mongo/database_spec.rb +739 -65
- data/spec/mongo/distinguishing_semaphore_spec.rb +63 -0
- data/spec/mongo/error/bulk_write_error_spec.rb +49 -0
- data/spec/mongo/error/crypt_error_spec.rb +26 -0
- data/spec/mongo/error/max_bson_size_spec.rb +35 -0
- data/spec/mongo/error/no_server_available_spec.rb +32 -0
- data/spec/mongo/error/notable_spec.rb +59 -0
- data/spec/mongo/error/operation_failure_heavy_spec.rb +58 -0
- data/spec/mongo/error/operation_failure_spec.rb +490 -0
- data/spec/mongo/error/parser_spec.rb +392 -5
- data/spec/mongo/error/unsupported_option_spec.rb +54 -0
- data/spec/mongo/grid/file/info_spec.rb +3 -3
- data/spec/mongo/grid/fs_bucket_spec.rb +299 -191
- data/spec/mongo/grid/stream/read_spec.rb +13 -19
- data/spec/mongo/grid/stream/write_spec.rb +88 -28
- data/spec/mongo/id_spec.rb +35 -0
- data/spec/mongo/index/view_spec.rb +511 -140
- data/spec/mongo/lint_spec.rb +228 -0
- data/spec/mongo/logger_spec.rb +14 -12
- data/spec/mongo/monitoring/event/cmap/connection_check_out_failed_spec.rb +23 -0
- data/spec/mongo/monitoring/event/cmap/connection_check_out_started_spec.rb +19 -0
- data/spec/mongo/monitoring/event/cmap/connection_checked_in_spec.rb +30 -0
- data/spec/mongo/monitoring/event/cmap/connection_checked_out_spec.rb +30 -0
- data/spec/mongo/monitoring/event/cmap/connection_closed_spec.rb +27 -0
- data/spec/mongo/monitoring/event/cmap/connection_created_spec.rb +24 -0
- data/spec/mongo/monitoring/event/cmap/connection_ready_spec.rb +24 -0
- data/spec/mongo/monitoring/event/cmap/pool_cleared_spec.rb +19 -0
- data/spec/mongo/monitoring/event/cmap/pool_closed_spec.rb +26 -0
- data/spec/mongo/monitoring/event/cmap/pool_created_spec.rb +33 -0
- data/spec/mongo/monitoring/event/command_failed_spec.rb +30 -0
- data/spec/mongo/monitoring/event/command_started_spec.rb +27 -5
- data/spec/mongo/monitoring/event/command_succeeded_spec.rb +30 -8
- data/spec/mongo/monitoring/event/secure_spec.rb +43 -1
- data/spec/mongo/monitoring/event/server_closed_spec.rb +35 -0
- data/spec/mongo/monitoring/event/server_description_changed_spec.rb +35 -0
- data/spec/mongo/monitoring/event/server_heartbeat_failed_spec.rb +31 -0
- data/spec/mongo/monitoring/event/server_heartbeat_started_spec.rb +31 -0
- data/spec/mongo/monitoring/event/server_heartbeat_succeeded_spec.rb +31 -0
- data/spec/mongo/monitoring/event/server_opening_spec.rb +35 -0
- data/spec/mongo/monitoring/event/topology_changed_spec.rb +41 -0
- data/spec/mongo/monitoring/event/topology_closed_spec.rb +35 -0
- data/spec/mongo/monitoring/event/topology_opening_spec.rb +35 -0
- data/spec/mongo/monitoring_spec.rb +30 -5
- data/spec/mongo/operation/aggregate/result_spec.rb +85 -0
- data/spec/mongo/operation/aggregate_spec.rb +72 -0
- data/spec/mongo/operation/collections_info_spec.rb +42 -0
- data/spec/mongo/operation/command_spec.rb +80 -0
- data/spec/mongo/operation/create_index_spec.rb +56 -0
- data/spec/mongo/operation/create_user_spec.rb +47 -0
- data/spec/mongo/operation/delete/bulk_spec.rb +239 -0
- data/spec/mongo/operation/delete/command_spec.rb +112 -0
- data/spec/mongo/operation/delete/op_msg_spec.rb +254 -0
- data/spec/mongo/operation/delete_spec.rb +226 -0
- data/spec/mongo/operation/drop_index_spec.rb +54 -0
- data/spec/mongo/operation/find/legacy_spec.rb +125 -0
- data/spec/mongo/operation/get_more_spec.rb +58 -0
- data/spec/mongo/operation/indexes_spec.rb +34 -0
- data/spec/mongo/operation/insert/bulk_spec.rb +267 -0
- data/spec/mongo/operation/insert/command_spec.rb +115 -0
- data/spec/mongo/operation/insert/op_msg_spec.rb +285 -0
- data/spec/mongo/operation/insert_spec.rb +284 -0
- data/spec/mongo/operation/kill_cursors_spec.rb +4 -4
- data/spec/mongo/operation/limited_spec.rb +5 -3
- data/spec/mongo/operation/map_reduce_spec.rb +125 -0
- data/spec/mongo/operation/read_preference_legacy_spec.rb +363 -0
- data/spec/mongo/operation/read_preference_op_msg_spec.rb +304 -0
- data/spec/mongo/operation/remove_user_spec.rb +46 -0
- data/spec/mongo/operation/result_spec.rb +39 -4
- data/spec/mongo/operation/specifiable_spec.rb +2 -2
- data/spec/mongo/operation/update/bulk_spec.rb +233 -0
- data/spec/mongo/operation/update/command_spec.rb +119 -0
- data/spec/mongo/operation/update/op_msg_spec.rb +260 -0
- data/spec/mongo/operation/update_spec.rb +258 -0
- data/spec/mongo/operation/update_user_spec.rb +46 -0
- data/spec/mongo/protocol/compressed_spec.rb +66 -0
- data/spec/mongo/protocol/delete_spec.rb +24 -9
- data/spec/mongo/protocol/get_more_spec.rb +26 -11
- data/spec/mongo/protocol/insert_spec.rb +24 -9
- data/spec/mongo/protocol/kill_cursors_spec.rb +21 -6
- data/spec/mongo/protocol/msg_spec.rb +525 -0
- data/spec/mongo/protocol/query_spec.rb +56 -11
- data/spec/mongo/protocol/registry_spec.rb +31 -0
- data/spec/mongo/protocol/reply_spec.rb +15 -1
- data/spec/mongo/protocol/update_spec.rb +25 -10
- data/spec/mongo/query_cache_spec.rb +280 -0
- data/spec/mongo/retryable_spec.rb +464 -97
- data/spec/mongo/semaphore_spec.rb +51 -0
- data/spec/mongo/server/app_metadata_shared.rb +136 -0
- data/spec/mongo/server/app_metadata_spec.rb +145 -0
- data/spec/mongo/server/connection_auth_spec.rb +139 -0
- data/spec/mongo/server/connection_pool/populator_spec.rb +101 -0
- data/spec/mongo/server/connection_pool_spec.rb +894 -88
- data/spec/mongo/server/connection_spec.rb +786 -164
- data/spec/mongo/server/description/features_spec.rb +51 -37
- data/spec/mongo/server/description_query_methods_spec.rb +288 -0
- data/spec/mongo/server/description_spec.rb +186 -242
- data/spec/mongo/server/monitor/app_metadata_spec.rb +23 -0
- data/spec/mongo/server/monitor/connection_spec.rb +125 -0
- data/spec/mongo/server/monitor_spec.rb +165 -100
- data/spec/mongo/server/round_trip_time_averager_spec.rb +45 -0
- data/spec/mongo/server_selector/nearest_spec.rb +24 -23
- data/spec/mongo/server_selector/primary_preferred_spec.rb +27 -26
- data/spec/mongo/server_selector/primary_spec.rb +27 -9
- data/spec/mongo/server_selector/secondary_preferred_spec.rb +40 -23
- data/spec/mongo/server_selector/secondary_spec.rb +19 -18
- data/spec/mongo/server_selector_spec.rb +260 -4
- data/spec/mongo/server_spec.rb +294 -78
- data/spec/mongo/session/server_session_spec.rb +59 -0
- data/spec/mongo/session/session_pool_spec.rb +237 -0
- data/spec/mongo/session_spec.rb +345 -0
- data/spec/mongo/session_transaction_spec.rb +226 -0
- data/spec/mongo/socket/ssl_spec.rb +459 -168
- data/spec/mongo/socket/tcp_spec.rb +14 -0
- data/spec/mongo/socket/unix_spec.rb +9 -9
- data/spec/mongo/socket_spec.rb +116 -0
- data/spec/mongo/srv/monitor_spec.rb +230 -0
- data/spec/mongo/srv/result_spec.rb +54 -0
- data/spec/mongo/timeout_spec.rb +39 -0
- data/spec/mongo/uri/srv_protocol_spec.rb +1104 -0
- data/spec/mongo/uri_option_parsing_spec.rb +589 -0
- data/spec/mongo/uri_spec.rb +443 -93
- data/spec/mongo/utils_spec.rb +39 -0
- data/spec/mongo/write_concern/acknowledged_spec.rb +11 -0
- data/spec/mongo/write_concern/unacknowledged_spec.rb +11 -0
- data/spec/mongo/write_concern_spec.rb +69 -4
- data/spec/runners/auth.rb +119 -0
- data/spec/runners/change_streams/outcome.rb +42 -0
- data/spec/runners/change_streams/spec.rb +57 -0
- data/spec/runners/change_streams/test.rb +229 -0
- data/spec/runners/cmap/verifier.rb +45 -0
- data/spec/runners/cmap.rb +370 -0
- data/spec/runners/command_monitoring.rb +343 -0
- data/spec/runners/connection_string.rb +382 -0
- data/spec/runners/crud/context.rb +27 -0
- data/spec/runners/crud/operation.rb +466 -0
- data/spec/runners/crud/outcome.rb +53 -0
- data/spec/runners/crud/requirement.rb +69 -0
- data/spec/runners/crud/spec.rb +70 -0
- data/spec/runners/crud/test.rb +120 -0
- data/spec/runners/crud/test_base.rb +50 -0
- data/spec/runners/crud/verifier.rb +206 -0
- data/spec/runners/crud.rb +235 -0
- data/spec/runners/gridfs.rb +638 -0
- data/spec/runners/read_write_concern_document.rb +67 -0
- data/spec/runners/sdam/verifier.rb +109 -0
- data/spec/runners/sdam.rb +275 -0
- data/spec/runners/server_selection.rb +362 -0
- data/spec/runners/server_selection_rtt.rb +38 -0
- data/spec/runners/transactions/operation.rb +314 -0
- data/spec/runners/transactions/spec.rb +26 -0
- data/spec/runners/transactions/test.rb +322 -0
- data/spec/runners/transactions.rb +101 -0
- data/spec/shared/LICENSE +20 -0
- data/spec/shared/lib/mrss/child_process_helper.rb +80 -0
- data/spec/shared/lib/mrss/constraints.rb +303 -0
- data/spec/shared/lib/mrss/lite_constraints.rb +175 -0
- data/spec/shared/lib/mrss/spec_organizer.rb +149 -0
- data/spec/spec_helper.rb +17 -197
- data/spec/spec_tests/auth_spec.rb +41 -0
- data/spec/spec_tests/change_streams_spec.rb +90 -0
- data/spec/spec_tests/client_side_encryption_spec.rb +11 -0
- data/spec/spec_tests/cmap_spec.rb +106 -0
- data/spec/spec_tests/command_monitoring_spec.rb +66 -0
- data/spec/spec_tests/connection_string_spec.rb +7 -0
- data/spec/spec_tests/crud_spec.rb +19 -0
- data/spec/spec_tests/data/auth/connection-string.yml +366 -0
- data/spec/spec_tests/data/change_streams/change-streams-errors.yml +101 -0
- data/spec/spec_tests/data/change_streams/change-streams-resume-errorLabels.yml +1105 -0
- data/spec/spec_tests/data/change_streams/change-streams-resume-whitelist.yml +1173 -0
- data/spec/spec_tests/data/change_streams/change-streams.yml +536 -0
- data/spec/spec_tests/data/client_side_encryption/aggregate.yml +134 -0
- data/spec/spec_tests/data/client_side_encryption/badQueries.yml +526 -0
- data/spec/spec_tests/data/client_side_encryption/badSchema.yml +73 -0
- data/spec/spec_tests/data/client_side_encryption/basic.yml +116 -0
- data/spec/spec_tests/data/client_side_encryption/bulk.yml +88 -0
- data/spec/spec_tests/data/client_side_encryption/bypassAutoEncryption.yml +100 -0
- data/spec/spec_tests/data/client_side_encryption/bypassedCommand.yml +42 -0
- data/spec/spec_tests/data/client_side_encryption/count.yml +61 -0
- data/spec/spec_tests/data/client_side_encryption/countDocuments.yml +59 -0
- data/spec/spec_tests/data/client_side_encryption/delete.yml +105 -0
- data/spec/spec_tests/data/client_side_encryption/distinct.yml +73 -0
- data/spec/spec_tests/data/client_side_encryption/explain.yml +64 -0
- data/spec/spec_tests/data/client_side_encryption/find.yml +119 -0
- data/spec/spec_tests/data/client_side_encryption/findOneAndDelete.yml +57 -0
- data/spec/spec_tests/data/client_side_encryption/findOneAndReplace.yml +57 -0
- data/spec/spec_tests/data/client_side_encryption/findOneAndUpdate.yml +57 -0
- data/spec/spec_tests/data/client_side_encryption/getMore.yml +68 -0
- data/spec/spec_tests/data/client_side_encryption/insert.yml +102 -0
- data/spec/spec_tests/data/client_side_encryption/keyAltName.yml +71 -0
- data/spec/spec_tests/data/client_side_encryption/localKMS.yml +54 -0
- data/spec/spec_tests/data/client_side_encryption/localSchema.yml +72 -0
- data/spec/spec_tests/data/client_side_encryption/malformedCiphertext.yml +69 -0
- data/spec/spec_tests/data/client_side_encryption/maxWireVersion.yml +20 -0
- data/spec/spec_tests/data/client_side_encryption/missingKey.yml +49 -0
- data/spec/spec_tests/data/client_side_encryption/replaceOne.yml +64 -0
- data/spec/spec_tests/data/client_side_encryption/types.yml +527 -0
- data/spec/spec_tests/data/client_side_encryption/unsupportedCommand.yml +25 -0
- data/spec/spec_tests/data/client_side_encryption/updateMany.yml +77 -0
- data/spec/spec_tests/data/client_side_encryption/updateOne.yml +171 -0
- data/spec/spec_tests/data/cmap/connection-must-have-id.yml +27 -0
- data/spec/spec_tests/data/cmap/connection-must-order-ids.yml +27 -0
- data/spec/spec_tests/data/cmap/pool-checkin-destroy-closed.yml +27 -0
- data/spec/spec_tests/data/cmap/pool-checkin-destroy-stale.yml +27 -0
- data/spec/spec_tests/data/cmap/pool-checkin-make-available.yml +24 -0
- data/spec/spec_tests/data/cmap/pool-checkin.yml +19 -0
- data/spec/spec_tests/data/cmap/pool-checkout-connection.yml +19 -0
- data/spec/spec_tests/data/cmap/pool-checkout-error-closed.yml +36 -0
- data/spec/spec_tests/data/cmap/pool-checkout-multiple.yml +37 -0
- data/spec/spec_tests/data/cmap/pool-checkout-no-idle.yml +35 -0
- data/spec/spec_tests/data/cmap/pool-checkout-no-stale.yml +33 -0
- data/spec/spec_tests/data/cmap/pool-close-destroy-conns.yml +28 -0
- data/spec/spec_tests/data/cmap/pool-close.yml +11 -0
- data/spec/spec_tests/data/cmap/pool-create-max-size.yml +71 -0
- data/spec/spec_tests/data/cmap/pool-create-min-size.yml +34 -0
- data/spec/spec_tests/data/cmap/pool-create-with-options.yml +21 -0
- data/spec/spec_tests/data/cmap/pool-create.yml +12 -0
- data/spec/spec_tests/data/cmap/wait-queue-fairness.yml +124 -0
- data/spec/spec_tests/data/cmap/wait-queue-timeout.yml +46 -0
- data/spec/spec_tests/data/command_monitoring/bulkWrite.yml +49 -0
- data/spec/spec_tests/data/command_monitoring/command.yml +61 -0
- data/spec/spec_tests/data/command_monitoring/find.yml +266 -0
- data/spec/spec_tests/data/command_monitoring/insertMany.yml +75 -0
- data/spec/spec_tests/data/command_monitoring/unacknowledgedBulkWrite.yml +34 -0
- data/spec/spec_tests/data/command_monitoring/updateMany.yml +65 -0
- data/spec/spec_tests/data/command_monitoring/updateOne.yml +90 -0
- data/spec/spec_tests/data/connection_string/invalid-uris.yml +261 -0
- data/spec/spec_tests/data/connection_string/valid-auth.yml +257 -0
- data/spec/spec_tests/data/connection_string/valid-db-with-dotted-name.yml +77 -0
- data/spec/spec_tests/data/connection_string/valid-options.yml +17 -0
- data/spec/spec_tests/data/connection_string/valid-unix_socket-absolute.yml +197 -0
- data/spec/spec_tests/data/connection_string/valid-unix_socket-relative.yml +213 -0
- data/spec/spec_tests/data/connection_string/valid-warnings.yml +75 -0
- data/spec/spec_tests/data/crud/read/aggregate-out.yml +43 -0
- data/spec/spec_tests/data/crud/read/count-collation.yml +25 -0
- data/spec/spec_tests/data/crud/read/count-empty.yml +29 -0
- data/spec/spec_tests/data/crud/read/count.yml +74 -0
- data/spec/spec_tests/data/crud/write/bulkWrite-arrayFilters.yml +45 -0
- data/spec/spec_tests/data/crud/write/bulkWrite-collation.yml +101 -0
- data/spec/spec_tests/data/crud/write/bulkWrite.yml +401 -0
- data/spec/spec_tests/data/crud/write/findOneAndReplace-upsert.yml +91 -0
- data/spec/spec_tests/data/crud/write/findOneAndReplace-upsert_pre_2.6.yml +88 -0
- data/spec/spec_tests/data/crud/write/findOneAndReplace.yml +113 -0
- data/spec/spec_tests/data/crud/write/findOneAndUpdate-arrayFilters.yml +69 -0
- data/spec/spec_tests/data/crud/write/findOneAndUpdate.yml +163 -0
- data/spec/spec_tests/data/crud/write/insertMany.yml +77 -0
- data/spec/spec_tests/data/crud/write/replaceOne-collation.yml +24 -0
- data/spec/spec_tests/data/crud/write/replaceOne-pre_2.6.yml +98 -0
- data/spec/spec_tests/data/crud/write/replaceOne.yml +102 -0
- data/spec/spec_tests/data/crud/write/updateMany-arrayFilters.yml +66 -0
- data/spec/spec_tests/data/crud/write/updateMany-collation.yml +28 -0
- data/spec/spec_tests/data/crud/write/updateMany-pre_2.6.yml +86 -0
- data/spec/spec_tests/data/crud/write/updateMany.yml +87 -0
- data/spec/spec_tests/data/crud/write/updateOne-arrayFilters.yml +114 -0
- data/spec/spec_tests/data/crud/write/updateOne-collation.yml +25 -0
- data/spec/spec_tests/data/crud/write/updateOne-pre_2.6.yml +83 -0
- data/spec/spec_tests/data/crud/write/updateOne.yml +84 -0
- data/spec/spec_tests/data/crud_v2/aggregate-merge.yml +103 -0
- data/spec/spec_tests/data/crud_v2/aggregate-out-readConcern.yml +110 -0
- data/spec/spec_tests/data/crud_v2/bulkWrite-arrayFilters.yml +103 -0
- data/spec/spec_tests/data/crud_v2/bulkWrite-delete-hint-clientError.yml +63 -0
- data/spec/spec_tests/data/crud_v2/bulkWrite-delete-hint-serverError.yml +92 -0
- data/spec/spec_tests/data/crud_v2/bulkWrite-delete-hint.yml +103 -0
- data/spec/spec_tests/data/crud_v2/bulkWrite-update-hint-clientError.yml +90 -0
- data/spec/spec_tests/data/crud_v2/bulkWrite-update-hint-serverError.yml +147 -0
- data/spec/spec_tests/data/crud_v2/bulkWrite-update-hint.yml +164 -0
- data/spec/spec_tests/data/crud_v2/db-aggregate.yml +38 -0
- data/spec/spec_tests/data/crud_v2/deleteMany-hint-clientError.yml +43 -0
- data/spec/spec_tests/data/crud_v2/deleteMany-hint-serverError.yml +62 -0
- data/spec/spec_tests/data/crud_v2/deleteMany-hint.yml +58 -0
- data/spec/spec_tests/data/crud_v2/deleteOne-hint-clientError.yml +41 -0
- data/spec/spec_tests/data/crud_v2/deleteOne-hint-serverError.yml +60 -0
- data/spec/spec_tests/data/crud_v2/deleteOne-hint.yml +57 -0
- data/spec/spec_tests/data/crud_v2/find-allowdiskuse-clientError.yml +28 -0
- data/spec/spec_tests/data/crud_v2/find-allowdiskuse-serverError.yml +44 -0
- data/spec/spec_tests/data/crud_v2/find-allowdiskuse.yml +50 -0
- data/spec/spec_tests/data/crud_v2/findOneAndDelete-hint-clientError.yml +45 -0
- data/spec/spec_tests/data/crud_v2/findOneAndDelete-hint-serverError.yml +60 -0
- data/spec/spec_tests/data/crud_v2/findOneAndDelete-hint.yml +56 -0
- data/spec/spec_tests/data/crud_v2/findOneAndReplace-hint-clientError.yml +40 -0
- data/spec/spec_tests/data/crud_v2/findOneAndReplace-hint-serverError.yml +59 -0
- data/spec/spec_tests/data/crud_v2/findOneAndReplace-hint.yml +55 -0
- data/spec/spec_tests/data/crud_v2/findOneAndUpdate-hint-clientError.yml +40 -0
- data/spec/spec_tests/data/crud_v2/findOneAndUpdate-hint-serverError.yml +58 -0
- data/spec/spec_tests/data/crud_v2/findOneAndUpdate-hint.yml +55 -0
- data/spec/spec_tests/data/crud_v2/replaceOne-hint.yml +61 -0
- data/spec/spec_tests/data/crud_v2/unacknowledged-bulkWrite-delete-hint-clientError.yml +60 -0
- data/spec/spec_tests/data/crud_v2/unacknowledged-bulkWrite-update-hint-clientError.yml +88 -0
- data/spec/spec_tests/data/crud_v2/unacknowledged-deleteMany-hint-clientError.yml +40 -0
- data/spec/spec_tests/data/crud_v2/unacknowledged-deleteOne-hint-clientError.yml +38 -0
- data/spec/spec_tests/data/crud_v2/unacknowledged-findOneAndDelete-hint-clientError.yml +42 -0
- data/spec/spec_tests/data/crud_v2/unacknowledged-findOneAndReplace-hint-clientError.yml +40 -0
- data/spec/spec_tests/data/crud_v2/unacknowledged-findOneAndUpdate-hint-clientError.yml +40 -0
- data/spec/spec_tests/data/crud_v2/unacknowledged-replaceOne-hint-clientError.yml +40 -0
- data/spec/spec_tests/data/crud_v2/unacknowledged-updateMany-hint-clientError.yml +43 -0
- data/spec/spec_tests/data/crud_v2/unacknowledged-updateOne-hint-clientError.yml +40 -0
- data/spec/spec_tests/data/crud_v2/updateMany-hint-clientError.yml +45 -0
- data/spec/spec_tests/data/crud_v2/updateMany-hint-serverError.yml +66 -0
- data/spec/spec_tests/data/crud_v2/updateMany-hint.yml +65 -0
- data/spec/spec_tests/data/crud_v2/updateOne-hint-clientError.yml +43 -0
- data/spec/spec_tests/data/crud_v2/updateOne-hint-serverError.yml +62 -0
- data/spec/spec_tests/data/crud_v2/updateOne-hint.yml +61 -0
- data/spec/spec_tests/data/crud_v2/updateWithPipelines.yml +157 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/direct-connection-false.yml +10 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/direct-connection-true.yml +5 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/longer-parent-in-return.yml +11 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/misformatted-option.yml +5 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/no-results.yml +5 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/not-enough-parts.yml +5 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/one-result-default-port.yml +10 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/one-txt-record-multiple-strings.yml +10 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/one-txt-record.yml +11 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/parent-part-mismatch1.yml +5 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/parent-part-mismatch2.yml +5 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/parent-part-mismatch3.yml +5 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/parent-part-mismatch4.yml +5 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/parent-part-mismatch5.yml +5 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/returned-parent-too-short.yml +5 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/returned-parent-wrong.yml +5 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/two-results-default-port.yml +11 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/two-results-nonstandard-port.yml +11 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/two-txt-records.yml +5 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/txt-record-not-allowed-option.yml +5 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/txt-record-with-overridden-ssl-option.yml +11 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/txt-record-with-overridden-uri-option.yml +11 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/txt-record-with-unallowed-option.yml +5 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/uri-with-port.yml +5 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/uri-with-two-hosts.yml +5 -0
- data/spec/spec_tests/data/gridfs/delete.yml +123 -0
- data/spec/spec_tests/data/gridfs/download.yml +192 -0
- data/spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/NoKnownServers.yml +16 -0
- data/spec/spec_tests/data/max_staleness/Unknown/SmallMaxStaleness.yml +15 -0
- data/spec/spec_tests/data/read_write_concern/connection-string/read-concern.yml +32 -0
- data/spec/spec_tests/data/read_write_concern/connection-string/write-concern.yml +79 -0
- data/spec/spec_tests/data/read_write_concern/document/read-concern.yml +37 -0
- data/spec/spec_tests/data/read_write_concern/document/write-concern.yml +100 -0
- data/spec/spec_tests/data/read_write_concern/operation/default-write-concern-2.6.yml +215 -0
- data/spec/spec_tests/data/read_write_concern/operation/default-write-concern-3.2.yml +58 -0
- data/spec/spec_tests/data/read_write_concern/operation/default-write-concern-3.4.yml +95 -0
- data/spec/spec_tests/data/read_write_concern/operation/default-write-concern-4.2.yml +36 -0
- data/spec/spec_tests/data/retryable_reads/aggregate-merge.yml +39 -0
- data/spec/spec_tests/data/retryable_reads/aggregate-serverErrors.yml +157 -0
- data/spec/spec_tests/data/retryable_reads/aggregate.yml +87 -0
- data/spec/spec_tests/data/retryable_reads/changeStreams-client.watch-serverErrors.yml +149 -0
- data/spec/spec_tests/data/retryable_reads/changeStreams-client.watch.yml +61 -0
- data/spec/spec_tests/data/retryable_reads/changeStreams-db.coll.watch-serverErrors.yml +149 -0
- data/spec/spec_tests/data/retryable_reads/changeStreams-db.coll.watch.yml +65 -0
- data/spec/spec_tests/data/retryable_reads/changeStreams-db.watch-serverErrors.yml +153 -0
- data/spec/spec_tests/data/retryable_reads/changeStreams-db.watch.yml +61 -0
- data/spec/spec_tests/data/retryable_reads/count-serverErrors.yml +150 -0
- data/spec/spec_tests/data/retryable_reads/count.yml +64 -0
- data/spec/spec_tests/data/retryable_reads/countDocuments-serverErrors.yml +150 -0
- data/spec/spec_tests/data/retryable_reads/countDocuments.yml +64 -0
- data/spec/spec_tests/data/retryable_reads/distinct-serverErrors.yml +156 -0
- data/spec/spec_tests/data/retryable_reads/distinct.yml +71 -0
- data/spec/spec_tests/data/retryable_reads/estimatedDocumentCount-serverErrors.yml +148 -0
- data/spec/spec_tests/data/retryable_reads/estimatedDocumentCount.yml +62 -0
- data/spec/spec_tests/data/retryable_reads/find-serverErrors.yml +160 -0
- data/spec/spec_tests/data/retryable_reads/find.yml +86 -0
- data/spec/spec_tests/data/retryable_reads/findOne-serverErrors.yml +154 -0
- data/spec/spec_tests/data/retryable_reads/findOne.yml +68 -0
- data/spec/spec_tests/data/retryable_reads/gridfs-download-serverErrors.yml +173 -0
- data/spec/spec_tests/data/retryable_reads/gridfs-download.yml +79 -0
- data/spec/spec_tests/data/retryable_reads/gridfs-downloadByName-serverErrors.yml +174 -0
- data/spec/spec_tests/data/retryable_reads/gridfs-downloadByName.yml +79 -0
- data/spec/spec_tests/data/retryable_reads/listCollectionNames-serverErrors.yml +143 -0
- data/spec/spec_tests/data/retryable_reads/listCollectionNames.yml +59 -0
- data/spec/spec_tests/data/retryable_reads/listCollectionObjects-serverErrors.yml +144 -0
- data/spec/spec_tests/data/retryable_reads/listCollectionObjects.yml +59 -0
- data/spec/spec_tests/data/retryable_reads/listCollections-serverErrors.yml +143 -0
- data/spec/spec_tests/data/retryable_reads/listCollections.yml +59 -0
- data/spec/spec_tests/data/retryable_reads/listDatabaseNames-serverErrors.yml +143 -0
- data/spec/spec_tests/data/retryable_reads/listDatabaseNames.yml +59 -0
- data/spec/spec_tests/data/retryable_reads/listDatabaseObjects-serverErrors.yml +144 -0
- data/spec/spec_tests/data/retryable_reads/listDatabaseObjects.yml +59 -0
- data/spec/spec_tests/data/retryable_reads/listDatabases-serverErrors.yml +144 -0
- data/spec/spec_tests/data/retryable_reads/listDatabases.yml +59 -0
- data/spec/spec_tests/data/retryable_reads/listIndexNames-serverErrors.yml +144 -0
- data/spec/spec_tests/data/retryable_reads/listIndexNames.yml +60 -0
- data/spec/spec_tests/data/retryable_reads/listIndexes-serverErrors.yml +145 -0
- data/spec/spec_tests/data/retryable_reads/listIndexes.yml +60 -0
- data/spec/spec_tests/data/retryable_reads/mapReduce.yml +60 -0
- data/spec/spec_tests/data/retryable_writes/bulkWrite-errorLabels.yml +77 -0
- data/spec/spec_tests/data/retryable_writes/bulkWrite-serverErrors.yml +130 -0
- data/spec/spec_tests/data/retryable_writes/bulkWrite.yml +396 -0
- data/spec/spec_tests/data/retryable_writes/deleteMany.yml +22 -0
- data/spec/spec_tests/data/retryable_writes/deleteOne-errorLabels.yml +48 -0
- data/spec/spec_tests/data/retryable_writes/deleteOne-serverErrors.yml +73 -0
- data/spec/spec_tests/data/retryable_writes/deleteOne.yml +57 -0
- data/spec/spec_tests/data/retryable_writes/findOneAndDelete-errorLabels.yml +49 -0
- data/spec/spec_tests/data/retryable_writes/findOneAndDelete-serverErrors.yml +74 -0
- data/spec/spec_tests/data/retryable_writes/findOneAndDelete.yml +58 -0
- data/spec/spec_tests/data/retryable_writes/findOneAndReplace-errorLabels.yml +52 -0
- data/spec/spec_tests/data/retryable_writes/findOneAndReplace-serverErrors.yml +80 -0
- data/spec/spec_tests/data/retryable_writes/findOneAndReplace.yml +63 -0
- data/spec/spec_tests/data/retryable_writes/findOneAndUpdate-errorLabels.yml +52 -0
- data/spec/spec_tests/data/retryable_writes/findOneAndUpdate-serverErrors.yml +79 -0
- data/spec/spec_tests/data/retryable_writes/findOneAndUpdate.yml +62 -0
- data/spec/spec_tests/data/retryable_writes/insertMany-errorLabels.yml +54 -0
- data/spec/spec_tests/data/retryable_writes/insertMany-serverErrors.yml +84 -0
- data/spec/spec_tests/data/retryable_writes/insertMany.yml +74 -0
- data/spec/spec_tests/data/retryable_writes/insertOne-errorLabels.yml +44 -0
- data/spec/spec_tests/data/retryable_writes/insertOne-serverErrors.yml +526 -0
- data/spec/spec_tests/data/retryable_writes/insertOne.yml +61 -0
- data/spec/spec_tests/data/retryable_writes/replaceOne-errorLabels.yml +53 -0
- data/spec/spec_tests/data/retryable_writes/replaceOne-serverErrors.yml +82 -0
- data/spec/spec_tests/data/retryable_writes/replaceOne.yml +66 -0
- data/spec/spec_tests/data/retryable_writes/updateMany.yml +27 -0
- data/spec/spec_tests/data/retryable_writes/updateOne-errorLabels.yml +53 -0
- data/spec/spec_tests/data/retryable_writes/updateOne-serverErrors.yml +82 -0
- data/spec/spec_tests/data/retryable_writes/updateOne.yml +129 -0
- data/spec/spec_tests/data/sdam/errors/error_handling_handshake.yml +54 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-network-error.yml +46 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-network-timeout-error.yml +37 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-InterruptedAtShutdown.yml +60 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-InterruptedDueToReplStateChange.yml +60 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-NotMaster.yml +60 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-NotMasterNoSlaveOk.yml +60 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-NotMasterOrSecondary.yml +60 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-PrimarySteppedDown.yml +60 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-ShutdownInProgress.yml +60 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-InterruptedAtShutdown.yml +51 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-InterruptedDueToReplStateChange.yml +51 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-NotMaster.yml +51 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-NotMasterNoSlaveOk.yml +51 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-NotMasterOrSecondary.yml +51 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-PrimarySteppedDown.yml +51 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-ShutdownInProgress.yml +51 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-InterruptedAtShutdown.yml +60 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-InterruptedDueToReplStateChange.yml +60 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-NotMaster.yml +60 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-NotMasterNoSlaveOk.yml +60 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-NotMasterOrSecondary.yml +60 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-PrimarySteppedDown.yml +60 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-ShutdownInProgress.yml +60 -0
- data/spec/spec_tests/data/sdam/errors/post-42-InterruptedAtShutdown.yml +46 -0
- data/spec/spec_tests/data/sdam/errors/post-42-InterruptedDueToReplStateChange.yml +46 -0
- data/spec/spec_tests/data/sdam/errors/post-42-NotMaster.yml +46 -0
- data/spec/spec_tests/data/sdam/errors/post-42-NotMasterNoSlaveOk.yml +46 -0
- data/spec/spec_tests/data/sdam/errors/post-42-NotMasterOrSecondary.yml +46 -0
- data/spec/spec_tests/data/sdam/errors/post-42-PrimarySteppedDown.yml +46 -0
- data/spec/spec_tests/data/sdam/errors/post-42-ShutdownInProgress.yml +46 -0
- data/spec/spec_tests/data/sdam/errors/pre-42-InterruptedAtShutdown.yml +46 -0
- data/spec/spec_tests/data/sdam/errors/pre-42-InterruptedDueToReplStateChange.yml +46 -0
- data/spec/spec_tests/data/sdam/errors/pre-42-NotMaster.yml +46 -0
- data/spec/spec_tests/data/sdam/errors/pre-42-NotMasterNoSlaveOk.yml +46 -0
- data/spec/spec_tests/data/sdam/errors/pre-42-NotMasterOrSecondary.yml +46 -0
- data/spec/spec_tests/data/sdam/errors/pre-42-PrimarySteppedDown.yml +46 -0
- data/spec/spec_tests/data/sdam/errors/pre-42-ShutdownInProgress.yml +46 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-InterruptedAtShutdown.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-InterruptedDueToReplStateChange.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-NotMaster.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-NotMasterNoSlaveOk.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-NotMasterOrSecondary.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-PrimarySteppedDown.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-ShutdownInProgress.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-InterruptedAtShutdown.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-InterruptedDueToReplStateChange.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotMaster.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotMasterNoSlaveOk.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotMasterOrSecondary.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-PrimarySteppedDown.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-ShutdownInProgress.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-network.yml +80 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-timeout.yml +80 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-InterruptedAtShutdown.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-InterruptedDueToReplStateChange.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotMaster.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotMasterNoSlaveOk.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotMasterOrSecondary.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-PrimarySteppedDown.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-ShutdownInProgress.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-network.yml +80 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-timeout.yml +80 -0
- data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-InterruptedAtShutdown.yml +64 -0
- data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-InterruptedDueToReplStateChange.yml +64 -0
- data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotMaster.yml +64 -0
- data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotMasterNoSlaveOk.yml +64 -0
- data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotMasterOrSecondary.yml +64 -0
- data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-PrimarySteppedDown.yml +64 -0
- data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-ShutdownInProgress.yml +64 -0
- data/spec/spec_tests/data/sdam/rs/compatible.yml +43 -0
- data/spec/spec_tests/data/sdam/rs/compatible_unknown.yml +33 -0
- data/spec/spec_tests/data/sdam/rs/discover_arbiters.yml +43 -0
- data/spec/spec_tests/data/sdam/rs/discover_arbiters_replicaset.yml +43 -0
- data/spec/spec_tests/data/sdam/rs/discover_ghost.yml +35 -0
- data/spec/spec_tests/data/sdam/rs/discover_ghost_replicaset.yml +41 -0
- data/spec/spec_tests/data/sdam/rs/discover_hidden.yml +50 -0
- data/spec/spec_tests/data/sdam/rs/discover_hidden_replicaset.yml +50 -0
- data/spec/spec_tests/data/sdam/rs/discover_passives.yml +81 -0
- data/spec/spec_tests/data/sdam/rs/discover_passives_replicaset.yml +81 -0
- data/spec/spec_tests/data/sdam/rs/discover_primary.yml +42 -0
- data/spec/spec_tests/data/sdam/rs/discover_primary_replicaset.yml +42 -0
- data/spec/spec_tests/data/sdam/rs/discover_rsother.yml +49 -0
- data/spec/spec_tests/data/sdam/rs/discover_rsother_replicaset.yml +66 -0
- data/spec/spec_tests/data/sdam/rs/discover_secondary.yml +43 -0
- data/spec/spec_tests/data/sdam/rs/discover_secondary_replicaset.yml +43 -0
- data/spec/spec_tests/data/sdam/rs/discovery.yml +203 -0
- data/spec/spec_tests/data/sdam/rs/equal_electionids.yml +55 -0
- data/spec/spec_tests/data/sdam/rs/hosts_differ_from_seeds.yml +36 -0
- data/spec/spec_tests/data/sdam/rs/incompatible_arbiter.yml +34 -0
- data/spec/spec_tests/data/sdam/rs/incompatible_ghost.yml +32 -0
- data/spec/spec_tests/data/sdam/rs/incompatible_other.yml +34 -0
- data/spec/spec_tests/data/sdam/rs/ls_timeout.yml +243 -0
- data/spec/spec_tests/data/sdam/rs/member_reconfig.yml +72 -0
- data/spec/spec_tests/data/sdam/rs/member_standalone.yml +64 -0
- data/spec/spec_tests/data/sdam/rs/new_primary.yml +78 -0
- data/spec/spec_tests/data/sdam/rs/new_primary_new_electionid.yml +116 -0
- data/spec/spec_tests/data/sdam/rs/new_primary_new_setversion.yml +116 -0
- data/spec/spec_tests/data/sdam/rs/new_primary_wrong_set_name.yml +75 -0
- data/spec/spec_tests/data/sdam/rs/non_rs_member.yml +32 -0
- data/spec/spec_tests/data/sdam/rs/normalize_case.yml +51 -0
- data/spec/spec_tests/data/sdam/rs/normalize_case_me.yml +100 -0
- data/spec/spec_tests/data/sdam/rs/null_election_id.yml +171 -0
- data/spec/spec_tests/data/sdam/rs/primary_becomes_ghost.yml +63 -0
- data/spec/spec_tests/data/sdam/rs/primary_becomes_mongos.yml +56 -0
- data/spec/spec_tests/data/sdam/rs/primary_becomes_standalone.yml +54 -0
- data/spec/spec_tests/data/sdam/rs/primary_changes_set_name.yml +61 -0
- data/spec/spec_tests/data/sdam/rs/primary_disconnect.yml +58 -0
- data/spec/spec_tests/data/sdam/rs/primary_disconnect_electionid.yml +184 -0
- data/spec/spec_tests/data/sdam/rs/primary_disconnect_setversion.yml +184 -0
- data/spec/spec_tests/data/sdam/rs/primary_hint_from_secondary_with_mismatched_me.yml +62 -0
- data/spec/spec_tests/data/sdam/rs/primary_mismatched_me.yml +26 -0
- data/spec/spec_tests/data/sdam/rs/primary_mismatched_me_not_removed.yml +73 -0
- data/spec/spec_tests/data/sdam/rs/primary_reports_new_member.yml +171 -0
- data/spec/spec_tests/data/sdam/rs/primary_to_no_primary_mismatched_me.yml +79 -0
- data/spec/spec_tests/data/sdam/rs/primary_wrong_set_name.yml +29 -0
- data/spec/spec_tests/data/sdam/rs/repeated.yml +101 -0
- data/spec/spec_tests/data/sdam/rs/replicaset_rsnp.yml +20 -0
- data/spec/spec_tests/data/sdam/rs/response_from_removed.yml +67 -0
- data/spec/spec_tests/data/sdam/rs/ruby_primary_address_change.yml +31 -0
- data/spec/spec_tests/data/sdam/rs/ruby_secondary_wrong_set_name_with_primary_second.yml +73 -0
- data/spec/spec_tests/data/sdam/rs/sec_not_auth.yml +53 -0
- data/spec/spec_tests/data/sdam/rs/secondary_ignore_ok_0.yml +85 -0
- data/spec/spec_tests/data/sdam/rs/secondary_mismatched_me.yml +27 -0
- data/spec/spec_tests/data/sdam/rs/secondary_wrong_set_name.yml +30 -0
- data/spec/spec_tests/data/sdam/rs/secondary_wrong_set_name_with_primary.yml +73 -0
- data/spec/spec_tests/data/sdam/rs/setversion_without_electionid.yml +77 -0
- data/spec/spec_tests/data/sdam/rs/stepdown_change_set_name.yml +63 -0
- data/spec/spec_tests/data/sdam/rs/too_new.yml +43 -0
- data/spec/spec_tests/data/sdam/rs/too_old.yml +39 -0
- data/spec/spec_tests/data/sdam/rs/topology_version_equal.yml +66 -0
- data/spec/spec_tests/data/sdam/rs/topology_version_greater.yml +189 -0
- data/spec/spec_tests/data/sdam/rs/topology_version_less.yml +62 -0
- data/spec/spec_tests/data/sdam/rs/unexpected_mongos.yml +28 -0
- data/spec/spec_tests/data/sdam/rs/use_setversion_without_electionid.yml +114 -0
- data/spec/spec_tests/data/sdam/rs/wrong_set_name.yml +37 -0
- data/spec/spec_tests/data/sdam/sharded/compatible.yml +38 -0
- data/spec/spec_tests/data/sdam/sharded/discover_single_mongos.yml +23 -0
- data/spec/spec_tests/data/sdam/sharded/ls_timeout_mongos.yml +97 -0
- data/spec/spec_tests/data/sdam/sharded/mongos_disconnect.yml +110 -0
- data/spec/spec_tests/data/sdam/sharded/multiple_mongoses.yml +50 -0
- data/spec/spec_tests/data/sdam/sharded/non_mongos_removed.yml +45 -0
- data/spec/spec_tests/data/sdam/sharded/normalize_uri_case.yml +32 -0
- data/spec/spec_tests/data/sdam/sharded/ruby_primary_different_address.yml +21 -0
- data/spec/spec_tests/data/sdam/sharded/ruby_primary_mismatched_me.yml +22 -0
- data/spec/spec_tests/data/sdam/sharded/too_new.yml +36 -0
- data/spec/spec_tests/data/sdam/sharded/too_old.yml +36 -0
- data/spec/spec_tests/data/sdam/single/compatible.yml +26 -0
- data/spec/spec_tests/data/sdam/single/direct_connection_external_ip.yml +36 -0
- data/spec/spec_tests/data/sdam/single/direct_connection_mongos.yml +35 -0
- data/spec/spec_tests/data/sdam/single/direct_connection_replicaset.yml +22 -0
- data/spec/spec_tests/data/sdam/single/direct_connection_rsarbiter.yml +37 -0
- data/spec/spec_tests/data/sdam/single/direct_connection_rsprimary.yml +36 -0
- data/spec/spec_tests/data/sdam/single/direct_connection_rssecondary.yml +37 -0
- data/spec/spec_tests/data/sdam/single/direct_connection_slave.yml +34 -0
- data/spec/spec_tests/data/sdam/single/direct_connection_standalone.yml +34 -0
- data/spec/spec_tests/data/sdam/single/direct_connection_unavailable_seed.yml +28 -0
- data/spec/spec_tests/data/sdam/single/direct_connection_wrong_set_name.yml +38 -0
- data/spec/spec_tests/data/sdam/single/discover_standalone.yml +34 -0
- data/spec/spec_tests/data/sdam/single/discover_unavailable_seed.yml +28 -0
- data/spec/spec_tests/data/sdam/single/ls_timeout_standalone.yml +35 -0
- data/spec/spec_tests/data/sdam/single/not_ok_response.yml +42 -0
- data/spec/spec_tests/data/sdam/single/ruby_primary_different_address.yml +24 -0
- data/spec/spec_tests/data/sdam/single/ruby_primary_mismatched_me.yml +25 -0
- data/spec/spec_tests/data/sdam/single/standalone_removed.yml +34 -0
- data/spec/spec_tests/data/sdam/single/too_new.yml +26 -0
- data/spec/spec_tests/data/sdam/single/too_old.yml +24 -0
- data/spec/spec_tests/data/sdam/single/too_old_then_upgraded.yml +46 -0
- data/spec/spec_tests/data/sdam_integration/cancel-server-check.yml +96 -0
- data/spec/spec_tests/data/sdam_integration/connectTimeoutMS.yml +88 -0
- data/spec/spec_tests/data/sdam_integration/find-network-error.yml +83 -0
- data/spec/spec_tests/data/sdam_integration/find-shutdown-error.yml +116 -0
- data/spec/spec_tests/data/sdam_integration/insert-network-error.yml +86 -0
- data/spec/spec_tests/data/sdam_integration/insert-shutdown-error.yml +115 -0
- data/spec/spec_tests/data/sdam_integration/isMaster-command-error.yml +168 -0
- data/spec/spec_tests/data/sdam_integration/isMaster-network-error.yml +162 -0
- data/spec/spec_tests/data/sdam_integration/isMaster-timeout.yml +229 -0
- data/spec/spec_tests/data/sdam_integration/rediscover-quickly-after-step-down.yml +87 -0
- data/spec/spec_tests/data/sdam_monitoring/discovered_standalone.yml +70 -0
- data/spec/spec_tests/data/sdam_monitoring/replica_set_other_chain.yml +222 -0
- data/spec/spec_tests/data/sdam_monitoring/replica_set_other_change.yml +225 -0
- data/spec/spec_tests/data/sdam_monitoring/replica_set_primary_address_change.yml +251 -0
- data/spec/spec_tests/data/sdam_monitoring/replica_set_with_me_mismatch.yml +111 -0
- data/spec/spec_tests/data/sdam_monitoring/replica_set_with_primary_and_secondary.yml +198 -0
- data/spec/spec_tests/data/sdam_monitoring/replica_set_with_primary_removal.yml +175 -0
- data/spec/spec_tests/data/sdam_monitoring/replica_set_with_removal.yml +110 -0
- data/spec/spec_tests/data/sdam_monitoring/replica_set_with_second_seed_removal.yml +106 -0
- data/spec/spec_tests/data/sdam_monitoring/required_replica_set.yml +107 -0
- data/spec/spec_tests/data/sdam_monitoring/standalone.yml +70 -0
- data/spec/spec_tests/data/sdam_monitoring/standalone_repeated.yml +86 -0
- data/spec/spec_tests/data/sdam_monitoring/standalone_suppress_equal_description_changes.yml +73 -0
- data/spec/spec_tests/data/sdam_monitoring/standalone_to_rs_with_me_mismatch.yml +90 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Nearest.yml +25 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Nearest_multiple.yml +26 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Nearest_non_matching.yml +20 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/PossiblePrimary.yml +15 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/PossiblePrimaryNearest.yml +15 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Primary.yml +18 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/PrimaryPreferred.yml +25 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/PrimaryPreferred_non_matching.yml +20 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Secondary.yml +25 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/SecondaryPreferred.yml +25 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/SecondaryPreferred_non_matching.yml +20 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Secondary_non_matching.yml +20 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Nearest.yml +32 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Nearest_multiple.yml +33 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Nearest_non_matching.yml +25 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Primary.yml +26 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/PrimaryPreferred.yml +28 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/PrimaryPreferred_non_matching.yml +28 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Secondary.yml +30 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/SecondaryPreferred.yml +30 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/SecondaryPreferred_non_matching.yml +28 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Secondary_non_matching.yml +25 -0
- data/spec/spec_tests/data/server_selection/Sharded/read/Nearest.yml +21 -0
- data/spec/spec_tests/data/server_selection/Sharded/read/Primary.yml +19 -0
- data/spec/spec_tests/data/server_selection/Sharded/read/PrimaryPreferred.yml +21 -0
- data/spec/spec_tests/data/server_selection/Sharded/read/Secondary.yml +21 -0
- data/spec/spec_tests/data/server_selection/Sharded/read/SecondaryPreferred.yml +21 -0
- data/spec/spec_tests/data/server_selection/Single/read/SecondaryPreferred.yml +18 -0
- data/spec/spec_tests/data/server_selection/Unknown/read/SecondaryPreferred.yml +10 -0
- data/spec/spec_tests/data/transactions/abort.yml +413 -0
- data/spec/spec_tests/data/transactions/bulk.yml +267 -0
- data/spec/spec_tests/data/transactions/causal-consistency.yml +175 -0
- data/spec/spec_tests/data/transactions/commit.yml +603 -0
- data/spec/spec_tests/data/transactions/count.yml +67 -0
- data/spec/spec_tests/data/transactions/create-collection.yml +131 -0
- data/spec/spec_tests/data/transactions/create-index.yml +152 -0
- data/spec/spec_tests/data/transactions/delete.yml +192 -0
- data/spec/spec_tests/data/transactions/error-labels.yml +1027 -0
- data/spec/spec_tests/data/transactions/errors-client.yml +56 -0
- data/spec/spec_tests/data/transactions/errors.yml +133 -0
- data/spec/spec_tests/data/transactions/findOneAndDelete.yml +134 -0
- data/spec/spec_tests/data/transactions/findOneAndReplace.yml +148 -0
- data/spec/spec_tests/data/transactions/findOneAndUpdate.yml +236 -0
- data/spec/spec_tests/data/transactions/insert.yml +390 -0
- data/spec/spec_tests/data/transactions/isolation.yml +133 -0
- data/spec/spec_tests/data/transactions/mongos-pin-auto.yml +1671 -0
- data/spec/spec_tests/data/transactions/mongos-recovery-token.yml +348 -0
- data/spec/spec_tests/data/transactions/pin-mongos.yml +556 -0
- data/spec/spec_tests/data/transactions/read-concern.yml +623 -0
- data/spec/spec_tests/data/transactions/read-pref.yml +348 -0
- data/spec/spec_tests/data/transactions/reads.yml +261 -0
- data/spec/spec_tests/data/transactions/retryable-abort-errorLabels.yml +124 -0
- data/spec/spec_tests/data/transactions/retryable-abort.yml +1315 -0
- data/spec/spec_tests/data/transactions/retryable-commit-errorLabels.yml +132 -0
- data/spec/spec_tests/data/transactions/retryable-commit.yml +1460 -0
- data/spec/spec_tests/data/transactions/retryable-writes.yml +216 -0
- data/spec/spec_tests/data/transactions/run-command.yml +197 -0
- data/spec/spec_tests/data/transactions/transaction-options-repl.yml +117 -0
- data/spec/spec_tests/data/transactions/transaction-options.yml +781 -0
- data/spec/spec_tests/data/transactions/update.yml +246 -0
- data/spec/spec_tests/data/transactions/write-concern.yml +554 -0
- data/spec/spec_tests/data/transactions_api/callback-aborts.yml +170 -0
- data/spec/spec_tests/data/transactions_api/callback-commits.yml +204 -0
- data/spec/spec_tests/data/transactions_api/callback-retry.yml +215 -0
- data/spec/spec_tests/data/transactions_api/commit-retry.yml +324 -0
- data/spec/spec_tests/data/transactions_api/commit-transienttransactionerror-4.2.yml +139 -0
- data/spec/spec_tests/data/transactions_api/commit-transienttransactionerror.yml +175 -0
- data/spec/spec_tests/data/transactions_api/commit-writeconcernerror.yml +216 -0
- data/spec/spec_tests/data/transactions_api/commit.yml +193 -0
- data/spec/spec_tests/data/transactions_api/transaction-options.yml +274 -0
- data/spec/spec_tests/data/uri_options/auth-options.yml +49 -0
- data/spec/spec_tests/data/uri_options/compression-options.yml +51 -0
- data/spec/spec_tests/data/uri_options/concern-options.yml +55 -0
- data/spec/spec_tests/data/uri_options/connection-options.yml +149 -0
- data/spec/spec_tests/data/uri_options/connection-pool-options.yml +26 -0
- data/spec/spec_tests/data/uri_options/read-preference-options.yml +66 -0
- data/spec/spec_tests/data/uri_options/ruby-auth-options.yml +12 -0
- data/spec/spec_tests/data/uri_options/ruby-connection-options.yml +58 -0
- data/spec/spec_tests/data/uri_options/tls-options.yml +364 -0
- data/spec/spec_tests/dns_seedlist_discovery_spec.rb +76 -0
- data/spec/spec_tests/gridfs_spec.rb +52 -0
- data/spec/spec_tests/max_staleness_spec.rb +9 -0
- data/spec/spec_tests/read_write_concern_connection_string_spec.rb +10 -0
- data/spec/spec_tests/read_write_concern_document_spec.rb +74 -0
- data/spec/spec_tests/read_write_concern_operaton_spec.rb +10 -0
- data/spec/spec_tests/retryable_reads_spec.rb +47 -0
- data/spec/spec_tests/retryable_writes_spec.rb +19 -0
- data/spec/spec_tests/sdam_integration_spec.rb +13 -0
- data/spec/spec_tests/sdam_monitoring_spec.rb +93 -0
- data/spec/spec_tests/sdam_spec.rb +239 -0
- data/spec/spec_tests/server_selection_rtt_spec.rb +30 -0
- data/spec/spec_tests/server_selection_spec.rb +9 -0
- data/spec/spec_tests/transactions_api_spec.rb +10 -0
- data/spec/spec_tests/transactions_spec.rb +10 -0
- data/spec/spec_tests/uri_options_spec.rb +74 -0
- data/spec/stress/cleanup_spec.rb +58 -0
- data/spec/stress/connection_pool_stress_spec.rb +201 -0
- data/spec/stress/connection_pool_timing_spec.rb +181 -0
- data/spec/stress/fork_reconnect_stress_spec.rb +109 -0
- data/spec/support/authorization.rb +51 -153
- data/spec/support/aws_utils/base.rb +134 -0
- data/spec/support/aws_utils/inspector.rb +224 -0
- data/spec/support/aws_utils/orchestrator.rb +370 -0
- data/spec/support/aws_utils/provisioner.rb +360 -0
- data/spec/support/aws_utils.rb +62 -0
- data/spec/support/background_thread_registry.rb +67 -0
- data/spec/support/certificates/README.md +105 -0
- data/spec/support/certificates/atlas-ocsp-ca.crt +28 -0
- data/spec/support/certificates/atlas-ocsp.crt +41 -0
- data/spec/support/certificates/ca.crt +76 -0
- data/spec/support/certificates/client-encrypted.key +30 -0
- data/spec/support/certificates/client-int.crt +78 -0
- data/spec/support/certificates/client-second-level-bundle.pem +179 -0
- data/spec/support/certificates/client-second-level.crt +74 -0
- data/spec/support/certificates/client-second-level.key +27 -0
- data/spec/support/certificates/client-second-level.pem +101 -0
- data/spec/support/certificates/client-x509.crt +78 -0
- data/spec/support/certificates/client-x509.key +27 -0
- data/spec/support/certificates/client-x509.pem +105 -0
- data/spec/support/certificates/client.crt +74 -0
- data/spec/support/certificates/client.key +27 -0
- data/spec/support/certificates/client.pem +90 -90
- data/spec/support/certificates/crl.pem +10 -8
- data/spec/support/certificates/crl_client_revoked.pem +11 -10
- data/spec/support/certificates/multi-ca.crt +152 -0
- data/spec/support/certificates/python-ca.crt +76 -0
- data/spec/support/certificates/server-int.crt +78 -0
- data/spec/support/certificates/server-second-level-bundle.pem +179 -0
- data/spec/support/certificates/server-second-level.crt +74 -0
- data/spec/support/certificates/server-second-level.key +27 -0
- data/spec/support/certificates/server-second-level.pem +101 -0
- data/spec/support/certificates/server.pem +99 -32
- data/spec/support/client_registry.rb +247 -0
- data/spec/support/client_registry_macros.rb +23 -0
- data/spec/support/cluster_config.rb +207 -0
- data/spec/support/cluster_tools.rb +376 -0
- data/spec/support/common_shortcuts.rb +342 -0
- data/spec/support/constraints.rb +16 -0
- data/spec/support/crypt/corpus/corpus-key-aws.json +33 -0
- data/spec/support/crypt/corpus/corpus-key-local.json +31 -0
- data/spec/support/crypt/corpus/corpus-schema.json +2057 -0
- data/spec/support/crypt/corpus/corpus.json +3657 -0
- data/spec/support/crypt/corpus/corpus_encrypted.json +4152 -0
- data/spec/support/crypt/data_keys/key_document_aws.json +34 -0
- data/spec/support/crypt/data_keys/key_document_local.json +31 -0
- data/spec/support/crypt/external/external-key.json +31 -0
- data/spec/support/crypt/external/external-schema.json +19 -0
- data/spec/support/crypt/limits/limits-doc.json +102 -0
- data/spec/support/crypt/limits/limits-key.json +31 -0
- data/spec/support/crypt/limits/limits-schema.json +1405 -0
- data/spec/support/crypt/schema_maps/schema_map_aws.json +17 -0
- data/spec/support/crypt/schema_maps/schema_map_aws_key_alt_names.json +12 -0
- data/spec/support/crypt/schema_maps/schema_map_local.json +18 -0
- data/spec/support/crypt/schema_maps/schema_map_local_key_alt_names.json +12 -0
- data/spec/support/crypt.rb +154 -0
- data/spec/support/dns.rb +13 -0
- data/spec/support/event_subscriber.rb +212 -0
- data/spec/support/json_ext_formatter.rb +13 -0
- data/spec/support/keyword_struct.rb +26 -0
- data/spec/support/local_resource_registry.rb +34 -0
- data/spec/support/matchers.rb +35 -0
- data/spec/support/monitoring_ext.rb +16 -0
- data/spec/support/ocsp +1 -0
- data/spec/support/primary_socket.rb +21 -0
- data/spec/support/sdam_formatter_integration.rb +116 -0
- data/spec/support/session_registry.rb +52 -0
- data/spec/support/shared/protocol.rb +2 -0
- data/spec/support/shared/scram_conversation.rb +100 -0
- data/spec/support/shared/server_selector.rb +109 -63
- data/spec/support/shared/session.rb +907 -0
- data/spec/support/spec_config.rb +560 -0
- data/spec/support/spec_setup.rb +70 -0
- data/spec/support/utils.rb +534 -0
- data.tar.gz.sig +0 -0
- metadata +2229 -653
- metadata.gz.sig +0 -0
- data/lib/csasl/csasl.bundle +0 -0
- data/lib/mongo/cluster/app_metadata.rb +0 -146
- data/lib/mongo/cluster/cursor_reaper.rb +0 -174
- data/lib/mongo/cluster/topology/replica_set.rb +0 -317
- data/lib/mongo/event/description_changed.rb +0 -72
- data/lib/mongo/event/member_discovered.rb +0 -65
- data/lib/mongo/event/primary_elected.rb +0 -55
- data/lib/mongo/event/standalone_discovered.rb +0 -53
- data/lib/mongo/operation/commands/aggregate/result.rb +0 -89
- data/lib/mongo/operation/commands/aggregate.rb +0 -64
- data/lib/mongo/operation/commands/collections_info/result.rb +0 -41
- data/lib/mongo/operation/commands/collections_info.rb +0 -71
- data/lib/mongo/operation/commands/command.rb +0 -47
- data/lib/mongo/operation/commands/create.rb +0 -45
- data/lib/mongo/operation/commands/drop.rb +0 -45
- data/lib/mongo/operation/commands/drop_database.rb +0 -45
- data/lib/mongo/operation/commands/find/result.rb +0 -62
- data/lib/mongo/operation/commands/find.rb +0 -27
- data/lib/mongo/operation/commands/get_more/result.rb +0 -62
- data/lib/mongo/operation/commands/get_more.rb +0 -27
- data/lib/mongo/operation/commands/indexes.rb +0 -73
- data/lib/mongo/operation/commands/list_collections/result.rb +0 -94
- data/lib/mongo/operation/commands/list_collections.rb +0 -48
- data/lib/mongo/operation/commands/list_indexes/result.rb +0 -98
- data/lib/mongo/operation/commands/list_indexes.rb +0 -48
- data/lib/mongo/operation/commands/map_reduce/result.rb +0 -119
- data/lib/mongo/operation/commands/map_reduce.rb +0 -60
- data/lib/mongo/operation/commands/parallel_scan/result.rb +0 -64
- data/lib/mongo/operation/commands/parallel_scan.rb +0 -53
- data/lib/mongo/operation/commands/user_query.rb +0 -72
- data/lib/mongo/operation/commands/users_info/result.rb +0 -44
- data/lib/mongo/operation/commands/users_info.rb +0 -48
- data/lib/mongo/operation/commands.rb +0 -29
- data/lib/mongo/operation/executable.rb +0 -42
- data/lib/mongo/operation/limited.rb +0 -37
- data/lib/mongo/operation/object_id_generator.rb +0 -36
- data/lib/mongo/operation/read/get_more.rb +0 -52
- data/lib/mongo/operation/read/query/result.rb +0 -40
- data/lib/mongo/operation/read/query.rb +0 -55
- data/lib/mongo/operation/read.rb +0 -16
- data/lib/mongo/operation/read_preference.rb +0 -61
- data/lib/mongo/operation/specifiable.rb +0 -507
- data/lib/mongo/operation/takes_write_concern.rb +0 -35
- data/lib/mongo/operation/write/bulk/bulkable.rb +0 -83
- data/lib/mongo/operation/write/bulk/delete/result.rb +0 -71
- data/lib/mongo/operation/write/bulk/delete.rb +0 -71
- data/lib/mongo/operation/write/bulk/insert/result.rb +0 -129
- data/lib/mongo/operation/write/bulk/insert.rb +0 -96
- data/lib/mongo/operation/write/bulk/legacy_mergable.rb +0 -87
- data/lib/mongo/operation/write/bulk/mergable.rb +0 -71
- data/lib/mongo/operation/write/bulk/update/result.rb +0 -205
- data/lib/mongo/operation/write/bulk/update.rb +0 -81
- data/lib/mongo/operation/write/bulk.rb +0 -20
- data/lib/mongo/operation/write/command/create_index.rb +0 -55
- data/lib/mongo/operation/write/command/create_user.rb +0 -42
- data/lib/mongo/operation/write/command/delete.rb +0 -56
- data/lib/mongo/operation/write/command/drop_index.rb +0 -56
- data/lib/mongo/operation/write/command/insert.rb +0 -66
- data/lib/mongo/operation/write/command/remove_user.rb +0 -41
- data/lib/mongo/operation/write/command/update.rb +0 -63
- data/lib/mongo/operation/write/command/update_user.rb +0 -42
- data/lib/mongo/operation/write/command/writable.rb +0 -57
- data/lib/mongo/operation/write/command.rb +0 -23
- data/lib/mongo/operation/write/create_index.rb +0 -67
- data/lib/mongo/operation/write/create_user.rb +0 -50
- data/lib/mongo/operation/write/delete/result.rb +0 -40
- data/lib/mongo/operation/write/delete.rb +0 -75
- data/lib/mongo/operation/write/drop_index.rb +0 -63
- data/lib/mongo/operation/write/gle.rb +0 -49
- data/lib/mongo/operation/write/idable.rb +0 -63
- data/lib/mongo/operation/write/insert/result.rb +0 -62
- data/lib/mongo/operation/write/insert.rb +0 -71
- data/lib/mongo/operation/write/remove_user.rb +0 -48
- data/lib/mongo/operation/write/update/result.rb +0 -160
- data/lib/mongo/operation/write/update.rb +0 -85
- data/lib/mongo/operation/write/update_user.rb +0 -50
- data/lib/mongo/operation/write/write_command_enabled.rb +0 -62
- data/lib/mongo/operation/write.rb +0 -27
- data/lib/mongo/server/connectable.rb +0 -119
- data/lib/mongo/server/connection_pool/queue.rb +0 -197
- data/lib/mongo/server/description/inspector/description_changed.rb +0 -57
- data/lib/mongo/server/description/inspector/member_discovered.rb +0 -59
- data/lib/mongo/server/description/inspector/primary_elected.rb +0 -60
- data/lib/mongo/server/description/inspector/standalone_discovered.rb +0 -56
- data/lib/mongo/server/description/inspector.rb +0 -81
- data/lib/mongo/server_selector/selectable.rb +0 -281
- data/lib/mongo/write_concern/normalizable.rb +0 -52
- data/spec/mongo/cluster/app_metadata_spec.rb +0 -104
- data/spec/mongo/command_monitoring_spec.rb +0 -64
- data/spec/mongo/connection_string_spec.rb +0 -115
- data/spec/mongo/crud_spec.rb +0 -41
- data/spec/mongo/gridfs_spec.rb +0 -50
- data/spec/mongo/max_staleness_spec.rb +0 -126
- data/spec/mongo/operation/commands/aggregate/result_spec.rb +0 -80
- data/spec/mongo/operation/commands/aggregate_spec.rb +0 -72
- data/spec/mongo/operation/commands/collections_info_spec.rb +0 -40
- data/spec/mongo/operation/commands/command_spec.rb +0 -80
- data/spec/mongo/operation/commands/indexes_spec.rb +0 -31
- data/spec/mongo/operation/commands/map_reduce_spec.rb +0 -125
- data/spec/mongo/operation/read/get_more_spec.rb +0 -53
- data/spec/mongo/operation/read/query_spec.rb +0 -102
- data/spec/mongo/operation/read_preference_spec.rb +0 -245
- data/spec/mongo/operation/write/bulk/delete_spec.rb +0 -223
- data/spec/mongo/operation/write/bulk/insert_spec.rb +0 -250
- data/spec/mongo/operation/write/bulk/update_spec.rb +0 -220
- data/spec/mongo/operation/write/command/delete_spec.rb +0 -106
- data/spec/mongo/operation/write/command/insert_spec.rb +0 -105
- data/spec/mongo/operation/write/command/update_spec.rb +0 -110
- data/spec/mongo/operation/write/create_index_spec.rb +0 -63
- data/spec/mongo/operation/write/create_user_spec.rb +0 -44
- data/spec/mongo/operation/write/delete_spec.rb +0 -215
- data/spec/mongo/operation/write/drop_index_spec.rb +0 -51
- data/spec/mongo/operation/write/insert_spec.rb +0 -291
- data/spec/mongo/operation/write/remove_user_spec.rb +0 -46
- data/spec/mongo/operation/write/update_spec.rb +0 -256
- data/spec/mongo/operation/write/update_user_spec.rb +0 -46
- data/spec/mongo/sdam_monitoring_spec.rb +0 -60
- data/spec/mongo/sdam_spec.rb +0 -84
- data/spec/mongo/server/connection_pool/queue_spec.rb +0 -190
- data/spec/mongo/server/description/inspector/description_changed_spec.rb +0 -78
- data/spec/mongo/server/description/inspector/primary_elected_spec.rb +0 -94
- data/spec/mongo/server_selection_rtt_spec.rb +0 -85
- data/spec/mongo/server_selection_spec.rb +0 -93
- data/spec/support/certificates/ca.pem +0 -17
- data/spec/support/certificates/client_cert.pem +0 -21
- data/spec/support/certificates/client_key.pem +0 -28
- data/spec/support/certificates/client_key_encrypted.pem +0 -30
- data/spec/support/certificates/password_protected.pem +0 -51
- data/spec/support/command_monitoring/bulkWrite.yml +0 -73
- data/spec/support/command_monitoring/command.yml +0 -42
- data/spec/support/command_monitoring/find.yml +0 -268
- data/spec/support/command_monitoring/insertMany.yml +0 -81
- data/spec/support/command_monitoring/updateMany.yml +0 -67
- data/spec/support/command_monitoring/updateOne.yml +0 -95
- data/spec/support/command_monitoring.rb +0 -376
- data/spec/support/connection_string.rb +0 -228
- data/spec/support/connection_string_tests/invalid-uris.yml +0 -193
- data/spec/support/connection_string_tests/valid-auth.yml +0 -256
- data/spec/support/connection_string_tests/valid-options.yml +0 -30
- data/spec/support/connection_string_tests/valid-unix_socket-absolute.yml +0 -197
- data/spec/support/connection_string_tests/valid-unix_socket-relative.yml +0 -213
- data/spec/support/connection_string_tests/valid-warnings.yml +0 -55
- data/spec/support/crud/read.rb +0 -154
- data/spec/support/crud/write.rb +0 -224
- data/spec/support/crud.rb +0 -271
- data/spec/support/crud_tests/read/aggregate-out.yml +0 -28
- data/spec/support/crud_tests/read/count-collation.yml +0 -15
- data/spec/support/crud_tests/read/count.yml +0 -36
- data/spec/support/crud_tests/write/findOneAndReplace-upsert.yml +0 -47
- data/spec/support/crud_tests/write/findOneAndReplace.yml +0 -142
- data/spec/support/crud_tests/write/findOneAndUpdate.yml +0 -160
- data/spec/support/crud_tests/write/insertMany.yml +0 -23
- data/spec/support/crud_tests/write/replaceOne-collation.yml +0 -23
- data/spec/support/crud_tests/write/replaceOne.yml +0 -86
- data/spec/support/crud_tests/write/updateMany-collation.yml +0 -27
- data/spec/support/crud_tests/write/updateMany.yml +0 -82
- data/spec/support/crud_tests/write/updateOne-collation.yml +0 -24
- data/spec/support/crud_tests/write/updateOne.yml +0 -79
- data/spec/support/gridfs.rb +0 -637
- data/spec/support/gridfs_tests/delete.yml +0 -157
- data/spec/support/gridfs_tests/download.yml +0 -210
- data/spec/support/helpers.rb +0 -140
- data/spec/support/max_staleness/Unknown/SmallMaxStaleness.yml +0 -14
- data/spec/support/sdam/rs/discover_arbiters.yml +0 -41
- data/spec/support/sdam/rs/discover_passives.yml +0 -77
- data/spec/support/sdam/rs/discover_primary.yml +0 -40
- data/spec/support/sdam/rs/discover_secondary.yml +0 -41
- data/spec/support/sdam/rs/discovery.yml +0 -195
- data/spec/support/sdam/rs/equal_electionids.yml +0 -48
- data/spec/support/sdam/rs/ghost_discovered.yml +0 -39
- data/spec/support/sdam/rs/hosts_differ_from_seeds.yml +0 -34
- data/spec/support/sdam/rs/member_reconfig.yml +0 -68
- data/spec/support/sdam/rs/member_standalone.yml +0 -60
- data/spec/support/sdam/rs/new_primary.yml +0 -74
- data/spec/support/sdam/rs/new_primary_new_electionid.yml +0 -101
- data/spec/support/sdam/rs/new_primary_new_setversion.yml +0 -101
- data/spec/support/sdam/rs/new_primary_wrong_set_name.yml +0 -71
- data/spec/support/sdam/rs/non_rs_member.yml +0 -31
- data/spec/support/sdam/rs/normalize_case.yml +0 -49
- data/spec/support/sdam/rs/null_election_id.yml +0 -152
- data/spec/support/sdam/rs/primary_becomes_standalone.yml +0 -52
- data/spec/support/sdam/rs/primary_changes_set_name.yml +0 -57
- data/spec/support/sdam/rs/primary_disconnect.yml +0 -56
- data/spec/support/sdam/rs/primary_disconnect_electionid.yml +0 -159
- data/spec/support/sdam/rs/primary_disconnect_setversion.yml +0 -159
- data/spec/support/sdam/rs/primary_mismatched_me.yml +0 -37
- data/spec/support/sdam/rs/primary_reports_new_member.yml +0 -163
- data/spec/support/sdam/rs/primary_to_no_primary_mismatched_me.yml +0 -75
- data/spec/support/sdam/rs/primary_wrong_set_name.yml +0 -27
- data/spec/support/sdam/rs/response_from_removed.yml +0 -63
- data/spec/support/sdam/rs/rsother_discovered.yml +0 -62
- data/spec/support/sdam/rs/sec_not_auth.yml +0 -49
- data/spec/support/sdam/rs/secondary_mismatched_me.yml +0 -37
- data/spec/support/sdam/rs/secondary_wrong_set_name.yml +0 -28
- data/spec/support/sdam/rs/secondary_wrong_set_name_with_primary.yml +0 -69
- data/spec/support/sdam/rs/set_version_without_electionid.yml +0 -69
- data/spec/support/sdam/rs/setversion_without_electionid.yml +0 -69
- data/spec/support/sdam/rs/stepdown_change_set_name.yml +0 -59
- data/spec/support/sdam/rs/unexpected_mongos.yml +0 -26
- data/spec/support/sdam/rs/use_setversion_without_electionid.yml +0 -99
- data/spec/support/sdam/rs/wrong_set_name.yml +0 -35
- data/spec/support/sdam/sharded/mongos_disconnect.yml +0 -104
- data/spec/support/sdam/sharded/multiple_mongoses.yml +0 -46
- data/spec/support/sdam/sharded/non_mongos_removed.yml +0 -41
- data/spec/support/sdam/sharded/normalize_uri_case.yml +0 -32
- data/spec/support/sdam/sharded/single_mongos.yml +0 -33
- data/spec/support/sdam/single/direct_connection_external_ip.yml +0 -34
- data/spec/support/sdam/single/direct_connection_mongos.yml +0 -33
- data/spec/support/sdam/single/direct_connection_rsarbiter.yml +0 -35
- data/spec/support/sdam/single/direct_connection_rsprimary.yml +0 -34
- data/spec/support/sdam/single/direct_connection_rssecondary.yml +0 -35
- data/spec/support/sdam/single/direct_connection_slave.yml +0 -32
- data/spec/support/sdam/single/direct_connection_standalone.yml +0 -32
- data/spec/support/sdam/single/not_ok_response.yml +0 -38
- data/spec/support/sdam/single/standalone_removed.yml +0 -32
- data/spec/support/sdam/single/unavailable_seed.yml +0 -28
- data/spec/support/sdam_monitoring/replica_set_with_removal.yml +0 -106
- data/spec/support/sdam_monitoring/required_replica_set.yml +0 -84
- data/spec/support/sdam_monitoring/standalone.yml +0 -70
- data/spec/support/sdam_monitoring.rb +0 -144
- data/spec/support/server_discovery_and_monitoring.rb +0 -219
- data/spec/support/server_selection/selection/ReplicaSetNoPrimary/read/Nearest.yml +0 -26
- data/spec/support/server_selection/selection/ReplicaSetNoPrimary/read/Nearest_multiple.yml +0 -27
- data/spec/support/server_selection/selection/ReplicaSetNoPrimary/read/Nearest_non_matching.yml +0 -21
- data/spec/support/server_selection/selection/ReplicaSetNoPrimary/read/Primary.yml +0 -21
- data/spec/support/server_selection/selection/ReplicaSetNoPrimary/read/PrimaryPreferred.yml +0 -26
- data/spec/support/server_selection/selection/ReplicaSetNoPrimary/read/PrimaryPreferred_non_matching.yml +0 -21
- data/spec/support/server_selection/selection/ReplicaSetNoPrimary/read/Secondary.yml +0 -26
- data/spec/support/server_selection/selection/ReplicaSetNoPrimary/read/SecondaryPreferred.yml +0 -26
- data/spec/support/server_selection/selection/ReplicaSetNoPrimary/read/SecondaryPreferred_non_matching.yml +0 -21
- data/spec/support/server_selection/selection/ReplicaSetNoPrimary/read/Secondary_non_matching.yml +0 -21
- data/spec/support/server_selection/selection/ReplicaSetWithPrimary/read/Nearest.yml +0 -33
- data/spec/support/server_selection/selection/ReplicaSetWithPrimary/read/Nearest_multiple.yml +0 -34
- data/spec/support/server_selection/selection/ReplicaSetWithPrimary/read/Nearest_non_matching.yml +0 -26
- data/spec/support/server_selection/selection/ReplicaSetWithPrimary/read/Primary.yml +0 -29
- data/spec/support/server_selection/selection/ReplicaSetWithPrimary/read/PrimaryPreferred.yml +0 -29
- data/spec/support/server_selection/selection/ReplicaSetWithPrimary/read/PrimaryPreferred_non_matching.yml +0 -29
- data/spec/support/server_selection/selection/ReplicaSetWithPrimary/read/Secondary.yml +0 -31
- data/spec/support/server_selection/selection/ReplicaSetWithPrimary/read/SecondaryPreferred.yml +0 -31
- data/spec/support/server_selection/selection/ReplicaSetWithPrimary/read/SecondaryPreferred_non_matching.yml +0 -29
- data/spec/support/server_selection/selection/ReplicaSetWithPrimary/read/Secondary_non_matching.yml +0 -26
- data/spec/support/server_selection/selection/Sharded/read/SecondaryPreferred.yml +0 -26
- data/spec/support/server_selection/selection/Single/read/SecondaryPreferred.yml +0 -19
- data/spec/support/server_selection/selection/Unknown/read/SecondaryPreferred.yml +0 -11
- data/spec/support/server_selection.rb +0 -163
- data/spec/support/server_selection_rtt.rb +0 -41
- data/spec/support/travis.rb +0 -14
- /data/spec/{support → spec_tests/data}/command_monitoring/deleteMany.yml +0 -0
- /data/spec/{support → spec_tests/data}/command_monitoring/deleteOne.yml +0 -0
- /data/spec/{support → spec_tests/data}/command_monitoring/insertOne.yml +0 -0
- /data/spec/{support/connection_string_tests → spec_tests/data/connection_string}/valid-host_identifiers.yml +0 -0
- /data/spec/{support/crud_tests → spec_tests/data/crud}/read/aggregate-collation.yml +0 -0
- /data/spec/{support/crud_tests → spec_tests/data/crud}/read/aggregate.yml +0 -0
- /data/spec/{support/crud_tests → spec_tests/data/crud}/read/distinct-collation.yml +0 -0
- /data/spec/{support/crud_tests → spec_tests/data/crud}/read/distinct.yml +0 -0
- /data/spec/{support/crud_tests → spec_tests/data/crud}/read/find-collation.yml +0 -0
- /data/spec/{support/crud_tests → spec_tests/data/crud}/read/find.yml +0 -0
- /data/spec/{support/crud_tests → spec_tests/data/crud}/write/deleteMany-collation.yml +0 -0
- /data/spec/{support/crud_tests → spec_tests/data/crud}/write/deleteMany.yml +0 -0
- /data/spec/{support/crud_tests → spec_tests/data/crud}/write/deleteOne-collation.yml +0 -0
- /data/spec/{support/crud_tests → spec_tests/data/crud}/write/deleteOne.yml +0 -0
- /data/spec/{support/crud_tests → spec_tests/data/crud}/write/findOneAndDelete-collation.yml +0 -0
- /data/spec/{support/crud_tests → spec_tests/data/crud}/write/findOneAndDelete.yml +0 -0
- /data/spec/{support/crud_tests → spec_tests/data/crud}/write/findOneAndReplace-collation.yml +0 -0
- /data/spec/{support/crud_tests → spec_tests/data/crud}/write/findOneAndUpdate-collation.yml +0 -0
- /data/spec/{support/crud_tests → spec_tests/data/crud}/write/insertOne.yml +0 -0
- /data/spec/{support/crud_tests → spec_tests/data/crud}/write/replaceOne-upsert.yml +0 -0
- /data/spec/{support/gridfs_tests → spec_tests/data/gridfs}/download_by_name.yml +0 -0
- /data/spec/{support/gridfs_tests → spec_tests/data/gridfs}/upload.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/DefaultNoMaxStaleness.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/Incompatible.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/LastUpdateTime.yml +0 -0
- /data/spec/{support/max_staleness/ReplicaSetNoPrimary/NoKnownServers.yml → spec_tests/data/max_staleness/ReplicaSetNoPrimary/MaxStalenessTooSmall.yml} +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/Nearest.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/Nearest2.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/PrimaryPreferred.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/PrimaryPreferred_tags.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/Secondary.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/SecondaryPreferred.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/SecondaryPreferred_tags.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/ZeroMaxStaleness.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/DefaultNoMaxStaleness.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/Incompatible.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/LastUpdateTime.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/LongHeartbeat.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/LongHeartbeat2.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/MaxStalenessTooSmall.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/MaxStalenessWithModePrimary.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/Nearest.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/Nearest2.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/Nearest_tags.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/PrimaryPreferred.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/PrimaryPreferred_incompatible.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred_tags.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred_tags2.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/Secondary_tags.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/Secondary_tags2.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/ZeroMaxStaleness.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/Sharded/Incompatible.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/Sharded/SmallMaxStaleness.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/Single/Incompatible.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/Single/SmallMaxStaleness.yml +0 -0
- /data/spec/{support → spec_tests/data}/sdam_monitoring/replica_set_with_no_primary.yml +0 -0
- /data/spec/{support → spec_tests/data}/sdam_monitoring/replica_set_with_primary.yml +0 -0
- /data/spec/{support/server_selection/selection → spec_tests/data/server_selection}/ReplicaSetNoPrimary/read/Secondary_multi_tags.yml +0 -0
- /data/spec/{support/server_selection/selection → spec_tests/data/server_selection}/ReplicaSetNoPrimary/read/Secondary_multi_tags2.yml +0 -0
- /data/spec/{support/server_selection/selection → spec_tests/data/server_selection}/ReplicaSetWithPrimary/read/SecondaryPreferred_tags.yml +0 -0
- /data/spec/{support/server_selection/rtt → spec_tests/data/server_selection_rtt}/first_value.yml +0 -0
- /data/spec/{support/server_selection/rtt → spec_tests/data/server_selection_rtt}/first_value_zero.yml +0 -0
- /data/spec/{support/server_selection/rtt → spec_tests/data/server_selection_rtt}/value_test_1.yml +0 -0
- /data/spec/{support/server_selection/rtt → spec_tests/data/server_selection_rtt}/value_test_2.yml +0 -0
- /data/spec/{support/server_selection/rtt → spec_tests/data/server_selection_rtt}/value_test_3.yml +0 -0
- /data/spec/{support/server_selection/rtt → spec_tests/data/server_selection_rtt}/value_test_4.yml +0 -0
- /data/spec/{support/server_selection/rtt → spec_tests/data/server_selection_rtt}/value_test_5.yml +0 -0
@@ -0,0 +1,3657 @@
|
|
1
|
+
{
|
2
|
+
"_id": "client_side_encryption_corpus",
|
3
|
+
"altname_aws": "aws",
|
4
|
+
"altname_local": "local",
|
5
|
+
"aws_double_rand_auto_id": {
|
6
|
+
"kms": "aws",
|
7
|
+
"type": "double",
|
8
|
+
"algo": "rand",
|
9
|
+
"method": "auto",
|
10
|
+
"identifier": "id",
|
11
|
+
"allowed": true,
|
12
|
+
"value": {
|
13
|
+
"$numberDouble": "1.234"
|
14
|
+
}
|
15
|
+
},
|
16
|
+
"aws_double_rand_auto_altname": {
|
17
|
+
"kms": "aws",
|
18
|
+
"type": "double",
|
19
|
+
"algo": "rand",
|
20
|
+
"method": "auto",
|
21
|
+
"identifier": "altname",
|
22
|
+
"allowed": true,
|
23
|
+
"value": {
|
24
|
+
"$numberDouble": "1.234"
|
25
|
+
}
|
26
|
+
},
|
27
|
+
"aws_double_rand_explicit_id": {
|
28
|
+
"kms": "aws",
|
29
|
+
"type": "double",
|
30
|
+
"algo": "rand",
|
31
|
+
"method": "explicit",
|
32
|
+
"identifier": "id",
|
33
|
+
"allowed": true,
|
34
|
+
"value": {
|
35
|
+
"$numberDouble": "1.234"
|
36
|
+
}
|
37
|
+
},
|
38
|
+
"aws_double_rand_explicit_altname": {
|
39
|
+
"kms": "aws",
|
40
|
+
"type": "double",
|
41
|
+
"algo": "rand",
|
42
|
+
"method": "explicit",
|
43
|
+
"identifier": "altname",
|
44
|
+
"allowed": true,
|
45
|
+
"value": {
|
46
|
+
"$numberDouble": "1.234"
|
47
|
+
}
|
48
|
+
},
|
49
|
+
"aws_double_det_explicit_id": {
|
50
|
+
"kms": "aws",
|
51
|
+
"type": "double",
|
52
|
+
"algo": "det",
|
53
|
+
"method": "explicit",
|
54
|
+
"identifier": "id",
|
55
|
+
"allowed": false,
|
56
|
+
"value": {
|
57
|
+
"$numberDouble": "1.234"
|
58
|
+
}
|
59
|
+
},
|
60
|
+
"aws_double_det_explicit_altname": {
|
61
|
+
"kms": "aws",
|
62
|
+
"type": "double",
|
63
|
+
"algo": "det",
|
64
|
+
"method": "explicit",
|
65
|
+
"identifier": "altname",
|
66
|
+
"allowed": false,
|
67
|
+
"value": {
|
68
|
+
"$numberDouble": "1.234"
|
69
|
+
}
|
70
|
+
},
|
71
|
+
"aws_string_rand_auto_id": {
|
72
|
+
"kms": "aws",
|
73
|
+
"type": "string",
|
74
|
+
"algo": "rand",
|
75
|
+
"method": "auto",
|
76
|
+
"identifier": "id",
|
77
|
+
"allowed": true,
|
78
|
+
"value": "mongodb"
|
79
|
+
},
|
80
|
+
"aws_string_rand_auto_altname": {
|
81
|
+
"kms": "aws",
|
82
|
+
"type": "string",
|
83
|
+
"algo": "rand",
|
84
|
+
"method": "auto",
|
85
|
+
"identifier": "altname",
|
86
|
+
"allowed": true,
|
87
|
+
"value": "mongodb"
|
88
|
+
},
|
89
|
+
"aws_string_rand_explicit_id": {
|
90
|
+
"kms": "aws",
|
91
|
+
"type": "string",
|
92
|
+
"algo": "rand",
|
93
|
+
"method": "explicit",
|
94
|
+
"identifier": "id",
|
95
|
+
"allowed": true,
|
96
|
+
"value": "mongodb"
|
97
|
+
},
|
98
|
+
"aws_string_rand_explicit_altname": {
|
99
|
+
"kms": "aws",
|
100
|
+
"type": "string",
|
101
|
+
"algo": "rand",
|
102
|
+
"method": "explicit",
|
103
|
+
"identifier": "altname",
|
104
|
+
"allowed": true,
|
105
|
+
"value": "mongodb"
|
106
|
+
},
|
107
|
+
"aws_string_det_auto_id": {
|
108
|
+
"kms": "aws",
|
109
|
+
"type": "string",
|
110
|
+
"algo": "det",
|
111
|
+
"method": "auto",
|
112
|
+
"identifier": "id",
|
113
|
+
"allowed": true,
|
114
|
+
"value": "mongodb"
|
115
|
+
},
|
116
|
+
"aws_string_det_explicit_id": {
|
117
|
+
"kms": "aws",
|
118
|
+
"type": "string",
|
119
|
+
"algo": "det",
|
120
|
+
"method": "explicit",
|
121
|
+
"identifier": "id",
|
122
|
+
"allowed": true,
|
123
|
+
"value": "mongodb"
|
124
|
+
},
|
125
|
+
"aws_string_det_explicit_altname": {
|
126
|
+
"kms": "aws",
|
127
|
+
"type": "string",
|
128
|
+
"algo": "det",
|
129
|
+
"method": "explicit",
|
130
|
+
"identifier": "altname",
|
131
|
+
"allowed": true,
|
132
|
+
"value": "mongodb"
|
133
|
+
},
|
134
|
+
"aws_object_rand_auto_id": {
|
135
|
+
"kms": "aws",
|
136
|
+
"type": "object",
|
137
|
+
"algo": "rand",
|
138
|
+
"method": "auto",
|
139
|
+
"identifier": "id",
|
140
|
+
"allowed": true,
|
141
|
+
"value": {
|
142
|
+
"x": {
|
143
|
+
"$numberInt": "1"
|
144
|
+
}
|
145
|
+
}
|
146
|
+
},
|
147
|
+
"aws_object_rand_auto_altname": {
|
148
|
+
"kms": "aws",
|
149
|
+
"type": "object",
|
150
|
+
"algo": "rand",
|
151
|
+
"method": "auto",
|
152
|
+
"identifier": "altname",
|
153
|
+
"allowed": true,
|
154
|
+
"value": {
|
155
|
+
"x": {
|
156
|
+
"$numberInt": "1"
|
157
|
+
}
|
158
|
+
}
|
159
|
+
},
|
160
|
+
"aws_object_rand_explicit_id": {
|
161
|
+
"kms": "aws",
|
162
|
+
"type": "object",
|
163
|
+
"algo": "rand",
|
164
|
+
"method": "explicit",
|
165
|
+
"identifier": "id",
|
166
|
+
"allowed": true,
|
167
|
+
"value": {
|
168
|
+
"x": {
|
169
|
+
"$numberInt": "1"
|
170
|
+
}
|
171
|
+
}
|
172
|
+
},
|
173
|
+
"aws_object_rand_explicit_altname": {
|
174
|
+
"kms": "aws",
|
175
|
+
"type": "object",
|
176
|
+
"algo": "rand",
|
177
|
+
"method": "explicit",
|
178
|
+
"identifier": "altname",
|
179
|
+
"allowed": true,
|
180
|
+
"value": {
|
181
|
+
"x": {
|
182
|
+
"$numberInt": "1"
|
183
|
+
}
|
184
|
+
}
|
185
|
+
},
|
186
|
+
"aws_object_det_explicit_id": {
|
187
|
+
"kms": "aws",
|
188
|
+
"type": "object",
|
189
|
+
"algo": "det",
|
190
|
+
"method": "explicit",
|
191
|
+
"identifier": "id",
|
192
|
+
"allowed": false,
|
193
|
+
"value": {
|
194
|
+
"x": {
|
195
|
+
"$numberInt": "1"
|
196
|
+
}
|
197
|
+
}
|
198
|
+
},
|
199
|
+
"aws_object_det_explicit_altname": {
|
200
|
+
"kms": "aws",
|
201
|
+
"type": "object",
|
202
|
+
"algo": "det",
|
203
|
+
"method": "explicit",
|
204
|
+
"identifier": "altname",
|
205
|
+
"allowed": false,
|
206
|
+
"value": {
|
207
|
+
"x": {
|
208
|
+
"$numberInt": "1"
|
209
|
+
}
|
210
|
+
}
|
211
|
+
},
|
212
|
+
"aws_array_rand_auto_id": {
|
213
|
+
"kms": "aws",
|
214
|
+
"type": "array",
|
215
|
+
"algo": "rand",
|
216
|
+
"method": "auto",
|
217
|
+
"identifier": "id",
|
218
|
+
"allowed": true,
|
219
|
+
"value": [
|
220
|
+
{
|
221
|
+
"$numberInt": "1"
|
222
|
+
},
|
223
|
+
{
|
224
|
+
"$numberInt": "2"
|
225
|
+
},
|
226
|
+
{
|
227
|
+
"$numberInt": "3"
|
228
|
+
}
|
229
|
+
]
|
230
|
+
},
|
231
|
+
"aws_array_rand_auto_altname": {
|
232
|
+
"kms": "aws",
|
233
|
+
"type": "array",
|
234
|
+
"algo": "rand",
|
235
|
+
"method": "auto",
|
236
|
+
"identifier": "altname",
|
237
|
+
"allowed": true,
|
238
|
+
"value": [
|
239
|
+
{
|
240
|
+
"$numberInt": "1"
|
241
|
+
},
|
242
|
+
{
|
243
|
+
"$numberInt": "2"
|
244
|
+
},
|
245
|
+
{
|
246
|
+
"$numberInt": "3"
|
247
|
+
}
|
248
|
+
]
|
249
|
+
},
|
250
|
+
"aws_array_rand_explicit_id": {
|
251
|
+
"kms": "aws",
|
252
|
+
"type": "array",
|
253
|
+
"algo": "rand",
|
254
|
+
"method": "explicit",
|
255
|
+
"identifier": "id",
|
256
|
+
"allowed": true,
|
257
|
+
"value": [
|
258
|
+
{
|
259
|
+
"$numberInt": "1"
|
260
|
+
},
|
261
|
+
{
|
262
|
+
"$numberInt": "2"
|
263
|
+
},
|
264
|
+
{
|
265
|
+
"$numberInt": "3"
|
266
|
+
}
|
267
|
+
]
|
268
|
+
},
|
269
|
+
"aws_array_rand_explicit_altname": {
|
270
|
+
"kms": "aws",
|
271
|
+
"type": "array",
|
272
|
+
"algo": "rand",
|
273
|
+
"method": "explicit",
|
274
|
+
"identifier": "altname",
|
275
|
+
"allowed": true,
|
276
|
+
"value": [
|
277
|
+
{
|
278
|
+
"$numberInt": "1"
|
279
|
+
},
|
280
|
+
{
|
281
|
+
"$numberInt": "2"
|
282
|
+
},
|
283
|
+
{
|
284
|
+
"$numberInt": "3"
|
285
|
+
}
|
286
|
+
]
|
287
|
+
},
|
288
|
+
"aws_array_det_explicit_id": {
|
289
|
+
"kms": "aws",
|
290
|
+
"type": "array",
|
291
|
+
"algo": "det",
|
292
|
+
"method": "explicit",
|
293
|
+
"identifier": "id",
|
294
|
+
"allowed": false,
|
295
|
+
"value": [
|
296
|
+
{
|
297
|
+
"$numberInt": "1"
|
298
|
+
},
|
299
|
+
{
|
300
|
+
"$numberInt": "2"
|
301
|
+
},
|
302
|
+
{
|
303
|
+
"$numberInt": "3"
|
304
|
+
}
|
305
|
+
]
|
306
|
+
},
|
307
|
+
"aws_array_det_explicit_altname": {
|
308
|
+
"kms": "aws",
|
309
|
+
"type": "array",
|
310
|
+
"algo": "det",
|
311
|
+
"method": "explicit",
|
312
|
+
"identifier": "altname",
|
313
|
+
"allowed": false,
|
314
|
+
"value": [
|
315
|
+
{
|
316
|
+
"$numberInt": "1"
|
317
|
+
},
|
318
|
+
{
|
319
|
+
"$numberInt": "2"
|
320
|
+
},
|
321
|
+
{
|
322
|
+
"$numberInt": "3"
|
323
|
+
}
|
324
|
+
]
|
325
|
+
},
|
326
|
+
"aws_binData=00_rand_auto_id": {
|
327
|
+
"kms": "aws",
|
328
|
+
"type": "binData=00",
|
329
|
+
"algo": "rand",
|
330
|
+
"method": "auto",
|
331
|
+
"identifier": "id",
|
332
|
+
"allowed": true,
|
333
|
+
"value": {
|
334
|
+
"$binary": {
|
335
|
+
"base64": "AQIDBA==",
|
336
|
+
"subType": "00"
|
337
|
+
}
|
338
|
+
}
|
339
|
+
},
|
340
|
+
"aws_binData=00_rand_auto_altname": {
|
341
|
+
"kms": "aws",
|
342
|
+
"type": "binData=00",
|
343
|
+
"algo": "rand",
|
344
|
+
"method": "auto",
|
345
|
+
"identifier": "altname",
|
346
|
+
"allowed": true,
|
347
|
+
"value": {
|
348
|
+
"$binary": {
|
349
|
+
"base64": "AQIDBA==",
|
350
|
+
"subType": "00"
|
351
|
+
}
|
352
|
+
}
|
353
|
+
},
|
354
|
+
"aws_binData=00_rand_explicit_id": {
|
355
|
+
"kms": "aws",
|
356
|
+
"type": "binData=00",
|
357
|
+
"algo": "rand",
|
358
|
+
"method": "explicit",
|
359
|
+
"identifier": "id",
|
360
|
+
"allowed": true,
|
361
|
+
"value": {
|
362
|
+
"$binary": {
|
363
|
+
"base64": "AQIDBA==",
|
364
|
+
"subType": "00"
|
365
|
+
}
|
366
|
+
}
|
367
|
+
},
|
368
|
+
"aws_binData=00_rand_explicit_altname": {
|
369
|
+
"kms": "aws",
|
370
|
+
"type": "binData=00",
|
371
|
+
"algo": "rand",
|
372
|
+
"method": "explicit",
|
373
|
+
"identifier": "altname",
|
374
|
+
"allowed": true,
|
375
|
+
"value": {
|
376
|
+
"$binary": {
|
377
|
+
"base64": "AQIDBA==",
|
378
|
+
"subType": "00"
|
379
|
+
}
|
380
|
+
}
|
381
|
+
},
|
382
|
+
"aws_binData=00_det_auto_id": {
|
383
|
+
"kms": "aws",
|
384
|
+
"type": "binData=00",
|
385
|
+
"algo": "det",
|
386
|
+
"method": "auto",
|
387
|
+
"identifier": "id",
|
388
|
+
"allowed": true,
|
389
|
+
"value": {
|
390
|
+
"$binary": {
|
391
|
+
"base64": "AQIDBA==",
|
392
|
+
"subType": "00"
|
393
|
+
}
|
394
|
+
}
|
395
|
+
},
|
396
|
+
"aws_binData=00_det_explicit_id": {
|
397
|
+
"kms": "aws",
|
398
|
+
"type": "binData=00",
|
399
|
+
"algo": "det",
|
400
|
+
"method": "explicit",
|
401
|
+
"identifier": "id",
|
402
|
+
"allowed": true,
|
403
|
+
"value": {
|
404
|
+
"$binary": {
|
405
|
+
"base64": "AQIDBA==",
|
406
|
+
"subType": "00"
|
407
|
+
}
|
408
|
+
}
|
409
|
+
},
|
410
|
+
"aws_binData=00_det_explicit_altname": {
|
411
|
+
"kms": "aws",
|
412
|
+
"type": "binData=00",
|
413
|
+
"algo": "det",
|
414
|
+
"method": "explicit",
|
415
|
+
"identifier": "altname",
|
416
|
+
"allowed": true,
|
417
|
+
"value": {
|
418
|
+
"$binary": {
|
419
|
+
"base64": "AQIDBA==",
|
420
|
+
"subType": "00"
|
421
|
+
}
|
422
|
+
}
|
423
|
+
},
|
424
|
+
"aws_binData=04_rand_auto_id": {
|
425
|
+
"kms": "aws",
|
426
|
+
"type": "binData=04",
|
427
|
+
"algo": "rand",
|
428
|
+
"method": "auto",
|
429
|
+
"identifier": "id",
|
430
|
+
"allowed": true,
|
431
|
+
"value": {
|
432
|
+
"$binary": {
|
433
|
+
"base64": "AAECAwQFBgcICQoLDA0ODw==",
|
434
|
+
"subType": "04"
|
435
|
+
}
|
436
|
+
}
|
437
|
+
},
|
438
|
+
"aws_binData=04_rand_auto_altname": {
|
439
|
+
"kms": "aws",
|
440
|
+
"type": "binData=04",
|
441
|
+
"algo": "rand",
|
442
|
+
"method": "auto",
|
443
|
+
"identifier": "altname",
|
444
|
+
"allowed": true,
|
445
|
+
"value": {
|
446
|
+
"$binary": {
|
447
|
+
"base64": "AAECAwQFBgcICQoLDA0ODw==",
|
448
|
+
"subType": "04"
|
449
|
+
}
|
450
|
+
}
|
451
|
+
},
|
452
|
+
"aws_binData=04_rand_explicit_id": {
|
453
|
+
"kms": "aws",
|
454
|
+
"type": "binData=04",
|
455
|
+
"algo": "rand",
|
456
|
+
"method": "explicit",
|
457
|
+
"identifier": "id",
|
458
|
+
"allowed": true,
|
459
|
+
"value": {
|
460
|
+
"$binary": {
|
461
|
+
"base64": "AAECAwQFBgcICQoLDA0ODw==",
|
462
|
+
"subType": "04"
|
463
|
+
}
|
464
|
+
}
|
465
|
+
},
|
466
|
+
"aws_binData=04_rand_explicit_altname": {
|
467
|
+
"kms": "aws",
|
468
|
+
"type": "binData=04",
|
469
|
+
"algo": "rand",
|
470
|
+
"method": "explicit",
|
471
|
+
"identifier": "altname",
|
472
|
+
"allowed": true,
|
473
|
+
"value": {
|
474
|
+
"$binary": {
|
475
|
+
"base64": "AAECAwQFBgcICQoLDA0ODw==",
|
476
|
+
"subType": "04"
|
477
|
+
}
|
478
|
+
}
|
479
|
+
},
|
480
|
+
"aws_binData=04_det_auto_id": {
|
481
|
+
"kms": "aws",
|
482
|
+
"type": "binData=04",
|
483
|
+
"algo": "det",
|
484
|
+
"method": "auto",
|
485
|
+
"identifier": "id",
|
486
|
+
"allowed": true,
|
487
|
+
"value": {
|
488
|
+
"$binary": {
|
489
|
+
"base64": "AAECAwQFBgcICQoLDA0ODw==",
|
490
|
+
"subType": "04"
|
491
|
+
}
|
492
|
+
}
|
493
|
+
},
|
494
|
+
"aws_binData=04_det_explicit_id": {
|
495
|
+
"kms": "aws",
|
496
|
+
"type": "binData=04",
|
497
|
+
"algo": "det",
|
498
|
+
"method": "explicit",
|
499
|
+
"identifier": "id",
|
500
|
+
"allowed": true,
|
501
|
+
"value": {
|
502
|
+
"$binary": {
|
503
|
+
"base64": "AAECAwQFBgcICQoLDA0ODw==",
|
504
|
+
"subType": "04"
|
505
|
+
}
|
506
|
+
}
|
507
|
+
},
|
508
|
+
"aws_binData=04_det_explicit_altname": {
|
509
|
+
"kms": "aws",
|
510
|
+
"type": "binData=04",
|
511
|
+
"algo": "det",
|
512
|
+
"method": "explicit",
|
513
|
+
"identifier": "altname",
|
514
|
+
"allowed": true,
|
515
|
+
"value": {
|
516
|
+
"$binary": {
|
517
|
+
"base64": "AAECAwQFBgcICQoLDA0ODw==",
|
518
|
+
"subType": "04"
|
519
|
+
}
|
520
|
+
}
|
521
|
+
},
|
522
|
+
"aws_undefined_rand_explicit_id": {
|
523
|
+
"kms": "aws",
|
524
|
+
"type": "undefined",
|
525
|
+
"algo": "rand",
|
526
|
+
"method": "explicit",
|
527
|
+
"identifier": "id",
|
528
|
+
"allowed": false,
|
529
|
+
"value": {
|
530
|
+
"$undefined": true
|
531
|
+
}
|
532
|
+
},
|
533
|
+
"aws_undefined_rand_explicit_altname": {
|
534
|
+
"kms": "aws",
|
535
|
+
"type": "undefined",
|
536
|
+
"algo": "rand",
|
537
|
+
"method": "explicit",
|
538
|
+
"identifier": "altname",
|
539
|
+
"allowed": false,
|
540
|
+
"value": {
|
541
|
+
"$undefined": true
|
542
|
+
}
|
543
|
+
},
|
544
|
+
"aws_undefined_det_explicit_id": {
|
545
|
+
"kms": "aws",
|
546
|
+
"type": "undefined",
|
547
|
+
"algo": "det",
|
548
|
+
"method": "explicit",
|
549
|
+
"identifier": "id",
|
550
|
+
"allowed": false,
|
551
|
+
"value": {
|
552
|
+
"$undefined": true
|
553
|
+
}
|
554
|
+
},
|
555
|
+
"aws_undefined_det_explicit_altname": {
|
556
|
+
"kms": "aws",
|
557
|
+
"type": "undefined",
|
558
|
+
"algo": "det",
|
559
|
+
"method": "explicit",
|
560
|
+
"identifier": "altname",
|
561
|
+
"allowed": false,
|
562
|
+
"value": {
|
563
|
+
"$undefined": true
|
564
|
+
}
|
565
|
+
},
|
566
|
+
"aws_objectId_rand_auto_id": {
|
567
|
+
"kms": "aws",
|
568
|
+
"type": "objectId",
|
569
|
+
"algo": "rand",
|
570
|
+
"method": "auto",
|
571
|
+
"identifier": "id",
|
572
|
+
"allowed": true,
|
573
|
+
"value": {
|
574
|
+
"$oid": "01234567890abcdef0123456"
|
575
|
+
}
|
576
|
+
},
|
577
|
+
"aws_objectId_rand_auto_altname": {
|
578
|
+
"kms": "aws",
|
579
|
+
"type": "objectId",
|
580
|
+
"algo": "rand",
|
581
|
+
"method": "auto",
|
582
|
+
"identifier": "altname",
|
583
|
+
"allowed": true,
|
584
|
+
"value": {
|
585
|
+
"$oid": "01234567890abcdef0123456"
|
586
|
+
}
|
587
|
+
},
|
588
|
+
"aws_objectId_rand_explicit_id": {
|
589
|
+
"kms": "aws",
|
590
|
+
"type": "objectId",
|
591
|
+
"algo": "rand",
|
592
|
+
"method": "explicit",
|
593
|
+
"identifier": "id",
|
594
|
+
"allowed": true,
|
595
|
+
"value": {
|
596
|
+
"$oid": "01234567890abcdef0123456"
|
597
|
+
}
|
598
|
+
},
|
599
|
+
"aws_objectId_rand_explicit_altname": {
|
600
|
+
"kms": "aws",
|
601
|
+
"type": "objectId",
|
602
|
+
"algo": "rand",
|
603
|
+
"method": "explicit",
|
604
|
+
"identifier": "altname",
|
605
|
+
"allowed": true,
|
606
|
+
"value": {
|
607
|
+
"$oid": "01234567890abcdef0123456"
|
608
|
+
}
|
609
|
+
},
|
610
|
+
"aws_objectId_det_auto_id": {
|
611
|
+
"kms": "aws",
|
612
|
+
"type": "objectId",
|
613
|
+
"algo": "det",
|
614
|
+
"method": "auto",
|
615
|
+
"identifier": "id",
|
616
|
+
"allowed": true,
|
617
|
+
"value": {
|
618
|
+
"$oid": "01234567890abcdef0123456"
|
619
|
+
}
|
620
|
+
},
|
621
|
+
"aws_objectId_det_explicit_id": {
|
622
|
+
"kms": "aws",
|
623
|
+
"type": "objectId",
|
624
|
+
"algo": "det",
|
625
|
+
"method": "explicit",
|
626
|
+
"identifier": "id",
|
627
|
+
"allowed": true,
|
628
|
+
"value": {
|
629
|
+
"$oid": "01234567890abcdef0123456"
|
630
|
+
}
|
631
|
+
},
|
632
|
+
"aws_objectId_det_explicit_altname": {
|
633
|
+
"kms": "aws",
|
634
|
+
"type": "objectId",
|
635
|
+
"algo": "det",
|
636
|
+
"method": "explicit",
|
637
|
+
"identifier": "altname",
|
638
|
+
"allowed": true,
|
639
|
+
"value": {
|
640
|
+
"$oid": "01234567890abcdef0123456"
|
641
|
+
}
|
642
|
+
},
|
643
|
+
"aws_bool_rand_auto_id": {
|
644
|
+
"kms": "aws",
|
645
|
+
"type": "bool",
|
646
|
+
"algo": "rand",
|
647
|
+
"method": "auto",
|
648
|
+
"identifier": "id",
|
649
|
+
"allowed": true,
|
650
|
+
"value": true
|
651
|
+
},
|
652
|
+
"aws_bool_rand_auto_altname": {
|
653
|
+
"kms": "aws",
|
654
|
+
"type": "bool",
|
655
|
+
"algo": "rand",
|
656
|
+
"method": "auto",
|
657
|
+
"identifier": "altname",
|
658
|
+
"allowed": true,
|
659
|
+
"value": true
|
660
|
+
},
|
661
|
+
"aws_bool_rand_explicit_id": {
|
662
|
+
"kms": "aws",
|
663
|
+
"type": "bool",
|
664
|
+
"algo": "rand",
|
665
|
+
"method": "explicit",
|
666
|
+
"identifier": "id",
|
667
|
+
"allowed": true,
|
668
|
+
"value": true
|
669
|
+
},
|
670
|
+
"aws_bool_rand_explicit_altname": {
|
671
|
+
"kms": "aws",
|
672
|
+
"type": "bool",
|
673
|
+
"algo": "rand",
|
674
|
+
"method": "explicit",
|
675
|
+
"identifier": "altname",
|
676
|
+
"allowed": true,
|
677
|
+
"value": true
|
678
|
+
},
|
679
|
+
"aws_bool_det_explicit_id": {
|
680
|
+
"kms": "aws",
|
681
|
+
"type": "bool",
|
682
|
+
"algo": "det",
|
683
|
+
"method": "explicit",
|
684
|
+
"identifier": "id",
|
685
|
+
"allowed": false,
|
686
|
+
"value": true
|
687
|
+
},
|
688
|
+
"aws_bool_det_explicit_altname": {
|
689
|
+
"kms": "aws",
|
690
|
+
"type": "bool",
|
691
|
+
"algo": "det",
|
692
|
+
"method": "explicit",
|
693
|
+
"identifier": "altname",
|
694
|
+
"allowed": false,
|
695
|
+
"value": true
|
696
|
+
},
|
697
|
+
"aws_date_rand_auto_id": {
|
698
|
+
"kms": "aws",
|
699
|
+
"type": "date",
|
700
|
+
"algo": "rand",
|
701
|
+
"method": "auto",
|
702
|
+
"identifier": "id",
|
703
|
+
"allowed": true,
|
704
|
+
"value": {
|
705
|
+
"$date": {
|
706
|
+
"$numberLong": "12345"
|
707
|
+
}
|
708
|
+
}
|
709
|
+
},
|
710
|
+
"aws_date_rand_auto_altname": {
|
711
|
+
"kms": "aws",
|
712
|
+
"type": "date",
|
713
|
+
"algo": "rand",
|
714
|
+
"method": "auto",
|
715
|
+
"identifier": "altname",
|
716
|
+
"allowed": true,
|
717
|
+
"value": {
|
718
|
+
"$date": {
|
719
|
+
"$numberLong": "12345"
|
720
|
+
}
|
721
|
+
}
|
722
|
+
},
|
723
|
+
"aws_date_rand_explicit_id": {
|
724
|
+
"kms": "aws",
|
725
|
+
"type": "date",
|
726
|
+
"algo": "rand",
|
727
|
+
"method": "explicit",
|
728
|
+
"identifier": "id",
|
729
|
+
"allowed": true,
|
730
|
+
"value": {
|
731
|
+
"$date": {
|
732
|
+
"$numberLong": "12345"
|
733
|
+
}
|
734
|
+
}
|
735
|
+
},
|
736
|
+
"aws_date_rand_explicit_altname": {
|
737
|
+
"kms": "aws",
|
738
|
+
"type": "date",
|
739
|
+
"algo": "rand",
|
740
|
+
"method": "explicit",
|
741
|
+
"identifier": "altname",
|
742
|
+
"allowed": true,
|
743
|
+
"value": {
|
744
|
+
"$date": {
|
745
|
+
"$numberLong": "12345"
|
746
|
+
}
|
747
|
+
}
|
748
|
+
},
|
749
|
+
"aws_date_det_auto_id": {
|
750
|
+
"kms": "aws",
|
751
|
+
"type": "date",
|
752
|
+
"algo": "det",
|
753
|
+
"method": "auto",
|
754
|
+
"identifier": "id",
|
755
|
+
"allowed": true,
|
756
|
+
"value": {
|
757
|
+
"$date": {
|
758
|
+
"$numberLong": "12345"
|
759
|
+
}
|
760
|
+
}
|
761
|
+
},
|
762
|
+
"aws_date_det_explicit_id": {
|
763
|
+
"kms": "aws",
|
764
|
+
"type": "date",
|
765
|
+
"algo": "det",
|
766
|
+
"method": "explicit",
|
767
|
+
"identifier": "id",
|
768
|
+
"allowed": true,
|
769
|
+
"value": {
|
770
|
+
"$date": {
|
771
|
+
"$numberLong": "12345"
|
772
|
+
}
|
773
|
+
}
|
774
|
+
},
|
775
|
+
"aws_date_det_explicit_altname": {
|
776
|
+
"kms": "aws",
|
777
|
+
"type": "date",
|
778
|
+
"algo": "det",
|
779
|
+
"method": "explicit",
|
780
|
+
"identifier": "altname",
|
781
|
+
"allowed": true,
|
782
|
+
"value": {
|
783
|
+
"$date": {
|
784
|
+
"$numberLong": "12345"
|
785
|
+
}
|
786
|
+
}
|
787
|
+
},
|
788
|
+
"aws_null_rand_explicit_id": {
|
789
|
+
"kms": "aws",
|
790
|
+
"type": "null",
|
791
|
+
"algo": "rand",
|
792
|
+
"method": "explicit",
|
793
|
+
"identifier": "id",
|
794
|
+
"allowed": false,
|
795
|
+
"value": null
|
796
|
+
},
|
797
|
+
"aws_null_rand_explicit_altname": {
|
798
|
+
"kms": "aws",
|
799
|
+
"type": "null",
|
800
|
+
"algo": "rand",
|
801
|
+
"method": "explicit",
|
802
|
+
"identifier": "altname",
|
803
|
+
"allowed": false,
|
804
|
+
"value": null
|
805
|
+
},
|
806
|
+
"aws_null_det_explicit_id": {
|
807
|
+
"kms": "aws",
|
808
|
+
"type": "null",
|
809
|
+
"algo": "det",
|
810
|
+
"method": "explicit",
|
811
|
+
"identifier": "id",
|
812
|
+
"allowed": false,
|
813
|
+
"value": null
|
814
|
+
},
|
815
|
+
"aws_null_det_explicit_altname": {
|
816
|
+
"kms": "aws",
|
817
|
+
"type": "null",
|
818
|
+
"algo": "det",
|
819
|
+
"method": "explicit",
|
820
|
+
"identifier": "altname",
|
821
|
+
"allowed": false,
|
822
|
+
"value": null
|
823
|
+
},
|
824
|
+
"aws_regex_rand_auto_id": {
|
825
|
+
"kms": "aws",
|
826
|
+
"type": "regex",
|
827
|
+
"algo": "rand",
|
828
|
+
"method": "auto",
|
829
|
+
"identifier": "id",
|
830
|
+
"allowed": true,
|
831
|
+
"value": {
|
832
|
+
"$regularExpression": {
|
833
|
+
"pattern": ".*",
|
834
|
+
"options": ""
|
835
|
+
}
|
836
|
+
}
|
837
|
+
},
|
838
|
+
"aws_regex_rand_auto_altname": {
|
839
|
+
"kms": "aws",
|
840
|
+
"type": "regex",
|
841
|
+
"algo": "rand",
|
842
|
+
"method": "auto",
|
843
|
+
"identifier": "altname",
|
844
|
+
"allowed": true,
|
845
|
+
"value": {
|
846
|
+
"$regularExpression": {
|
847
|
+
"pattern": ".*",
|
848
|
+
"options": ""
|
849
|
+
}
|
850
|
+
}
|
851
|
+
},
|
852
|
+
"aws_regex_rand_explicit_id": {
|
853
|
+
"kms": "aws",
|
854
|
+
"type": "regex",
|
855
|
+
"algo": "rand",
|
856
|
+
"method": "explicit",
|
857
|
+
"identifier": "id",
|
858
|
+
"allowed": true,
|
859
|
+
"value": {
|
860
|
+
"$regularExpression": {
|
861
|
+
"pattern": ".*",
|
862
|
+
"options": ""
|
863
|
+
}
|
864
|
+
}
|
865
|
+
},
|
866
|
+
"aws_regex_rand_explicit_altname": {
|
867
|
+
"kms": "aws",
|
868
|
+
"type": "regex",
|
869
|
+
"algo": "rand",
|
870
|
+
"method": "explicit",
|
871
|
+
"identifier": "altname",
|
872
|
+
"allowed": true,
|
873
|
+
"value": {
|
874
|
+
"$regularExpression": {
|
875
|
+
"pattern": ".*",
|
876
|
+
"options": ""
|
877
|
+
}
|
878
|
+
}
|
879
|
+
},
|
880
|
+
"aws_regex_det_auto_id": {
|
881
|
+
"kms": "aws",
|
882
|
+
"type": "regex",
|
883
|
+
"algo": "det",
|
884
|
+
"method": "auto",
|
885
|
+
"identifier": "id",
|
886
|
+
"allowed": true,
|
887
|
+
"value": {
|
888
|
+
"$regularExpression": {
|
889
|
+
"pattern": ".*",
|
890
|
+
"options": ""
|
891
|
+
}
|
892
|
+
}
|
893
|
+
},
|
894
|
+
"aws_regex_det_explicit_id": {
|
895
|
+
"kms": "aws",
|
896
|
+
"type": "regex",
|
897
|
+
"algo": "det",
|
898
|
+
"method": "explicit",
|
899
|
+
"identifier": "id",
|
900
|
+
"allowed": true,
|
901
|
+
"value": {
|
902
|
+
"$regularExpression": {
|
903
|
+
"pattern": ".*",
|
904
|
+
"options": ""
|
905
|
+
}
|
906
|
+
}
|
907
|
+
},
|
908
|
+
"aws_regex_det_explicit_altname": {
|
909
|
+
"kms": "aws",
|
910
|
+
"type": "regex",
|
911
|
+
"algo": "det",
|
912
|
+
"method": "explicit",
|
913
|
+
"identifier": "altname",
|
914
|
+
"allowed": true,
|
915
|
+
"value": {
|
916
|
+
"$regularExpression": {
|
917
|
+
"pattern": ".*",
|
918
|
+
"options": ""
|
919
|
+
}
|
920
|
+
}
|
921
|
+
},
|
922
|
+
"aws_dbPointer_rand_auto_id": {
|
923
|
+
"kms": "aws",
|
924
|
+
"type": "dbPointer",
|
925
|
+
"algo": "rand",
|
926
|
+
"method": "auto",
|
927
|
+
"identifier": "id",
|
928
|
+
"allowed": true,
|
929
|
+
"value": {
|
930
|
+
"$dbPointer": {
|
931
|
+
"$ref": "db.example",
|
932
|
+
"$id": {
|
933
|
+
"$oid": "01234567890abcdef0123456"
|
934
|
+
}
|
935
|
+
}
|
936
|
+
}
|
937
|
+
},
|
938
|
+
"aws_dbPointer_rand_auto_altname": {
|
939
|
+
"kms": "aws",
|
940
|
+
"type": "dbPointer",
|
941
|
+
"algo": "rand",
|
942
|
+
"method": "auto",
|
943
|
+
"identifier": "altname",
|
944
|
+
"allowed": true,
|
945
|
+
"value": {
|
946
|
+
"$dbPointer": {
|
947
|
+
"$ref": "db.example",
|
948
|
+
"$id": {
|
949
|
+
"$oid": "01234567890abcdef0123456"
|
950
|
+
}
|
951
|
+
}
|
952
|
+
}
|
953
|
+
},
|
954
|
+
"aws_dbPointer_rand_explicit_id": {
|
955
|
+
"kms": "aws",
|
956
|
+
"type": "dbPointer",
|
957
|
+
"algo": "rand",
|
958
|
+
"method": "explicit",
|
959
|
+
"identifier": "id",
|
960
|
+
"allowed": true,
|
961
|
+
"value": {
|
962
|
+
"$dbPointer": {
|
963
|
+
"$ref": "db.example",
|
964
|
+
"$id": {
|
965
|
+
"$oid": "01234567890abcdef0123456"
|
966
|
+
}
|
967
|
+
}
|
968
|
+
}
|
969
|
+
},
|
970
|
+
"aws_dbPointer_rand_explicit_altname": {
|
971
|
+
"kms": "aws",
|
972
|
+
"type": "dbPointer",
|
973
|
+
"algo": "rand",
|
974
|
+
"method": "explicit",
|
975
|
+
"identifier": "altname",
|
976
|
+
"allowed": true,
|
977
|
+
"value": {
|
978
|
+
"$dbPointer": {
|
979
|
+
"$ref": "db.example",
|
980
|
+
"$id": {
|
981
|
+
"$oid": "01234567890abcdef0123456"
|
982
|
+
}
|
983
|
+
}
|
984
|
+
}
|
985
|
+
},
|
986
|
+
"aws_dbPointer_det_auto_id": {
|
987
|
+
"kms": "aws",
|
988
|
+
"type": "dbPointer",
|
989
|
+
"algo": "det",
|
990
|
+
"method": "auto",
|
991
|
+
"identifier": "id",
|
992
|
+
"allowed": true,
|
993
|
+
"value": {
|
994
|
+
"$dbPointer": {
|
995
|
+
"$ref": "db.example",
|
996
|
+
"$id": {
|
997
|
+
"$oid": "01234567890abcdef0123456"
|
998
|
+
}
|
999
|
+
}
|
1000
|
+
}
|
1001
|
+
},
|
1002
|
+
"aws_dbPointer_det_explicit_id": {
|
1003
|
+
"kms": "aws",
|
1004
|
+
"type": "dbPointer",
|
1005
|
+
"algo": "det",
|
1006
|
+
"method": "explicit",
|
1007
|
+
"identifier": "id",
|
1008
|
+
"allowed": true,
|
1009
|
+
"value": {
|
1010
|
+
"$dbPointer": {
|
1011
|
+
"$ref": "db.example",
|
1012
|
+
"$id": {
|
1013
|
+
"$oid": "01234567890abcdef0123456"
|
1014
|
+
}
|
1015
|
+
}
|
1016
|
+
}
|
1017
|
+
},
|
1018
|
+
"aws_dbPointer_det_explicit_altname": {
|
1019
|
+
"kms": "aws",
|
1020
|
+
"type": "dbPointer",
|
1021
|
+
"algo": "det",
|
1022
|
+
"method": "explicit",
|
1023
|
+
"identifier": "altname",
|
1024
|
+
"allowed": true,
|
1025
|
+
"value": {
|
1026
|
+
"$dbPointer": {
|
1027
|
+
"$ref": "db.example",
|
1028
|
+
"$id": {
|
1029
|
+
"$oid": "01234567890abcdef0123456"
|
1030
|
+
}
|
1031
|
+
}
|
1032
|
+
}
|
1033
|
+
},
|
1034
|
+
"aws_javascript_rand_auto_id": {
|
1035
|
+
"kms": "aws",
|
1036
|
+
"type": "javascript",
|
1037
|
+
"algo": "rand",
|
1038
|
+
"method": "auto",
|
1039
|
+
"identifier": "id",
|
1040
|
+
"allowed": true,
|
1041
|
+
"value": {
|
1042
|
+
"$code": "x=1"
|
1043
|
+
}
|
1044
|
+
},
|
1045
|
+
"aws_javascript_rand_auto_altname": {
|
1046
|
+
"kms": "aws",
|
1047
|
+
"type": "javascript",
|
1048
|
+
"algo": "rand",
|
1049
|
+
"method": "auto",
|
1050
|
+
"identifier": "altname",
|
1051
|
+
"allowed": true,
|
1052
|
+
"value": {
|
1053
|
+
"$code": "x=1"
|
1054
|
+
}
|
1055
|
+
},
|
1056
|
+
"aws_javascript_rand_explicit_id": {
|
1057
|
+
"kms": "aws",
|
1058
|
+
"type": "javascript",
|
1059
|
+
"algo": "rand",
|
1060
|
+
"method": "explicit",
|
1061
|
+
"identifier": "id",
|
1062
|
+
"allowed": true,
|
1063
|
+
"value": {
|
1064
|
+
"$code": "x=1"
|
1065
|
+
}
|
1066
|
+
},
|
1067
|
+
"aws_javascript_rand_explicit_altname": {
|
1068
|
+
"kms": "aws",
|
1069
|
+
"type": "javascript",
|
1070
|
+
"algo": "rand",
|
1071
|
+
"method": "explicit",
|
1072
|
+
"identifier": "altname",
|
1073
|
+
"allowed": true,
|
1074
|
+
"value": {
|
1075
|
+
"$code": "x=1"
|
1076
|
+
}
|
1077
|
+
},
|
1078
|
+
"aws_javascript_det_auto_id": {
|
1079
|
+
"kms": "aws",
|
1080
|
+
"type": "javascript",
|
1081
|
+
"algo": "det",
|
1082
|
+
"method": "auto",
|
1083
|
+
"identifier": "id",
|
1084
|
+
"allowed": true,
|
1085
|
+
"value": {
|
1086
|
+
"$code": "x=1"
|
1087
|
+
}
|
1088
|
+
},
|
1089
|
+
"aws_javascript_det_explicit_id": {
|
1090
|
+
"kms": "aws",
|
1091
|
+
"type": "javascript",
|
1092
|
+
"algo": "det",
|
1093
|
+
"method": "explicit",
|
1094
|
+
"identifier": "id",
|
1095
|
+
"allowed": true,
|
1096
|
+
"value": {
|
1097
|
+
"$code": "x=1"
|
1098
|
+
}
|
1099
|
+
},
|
1100
|
+
"aws_javascript_det_explicit_altname": {
|
1101
|
+
"kms": "aws",
|
1102
|
+
"type": "javascript",
|
1103
|
+
"algo": "det",
|
1104
|
+
"method": "explicit",
|
1105
|
+
"identifier": "altname",
|
1106
|
+
"allowed": true,
|
1107
|
+
"value": {
|
1108
|
+
"$code": "x=1"
|
1109
|
+
}
|
1110
|
+
},
|
1111
|
+
"aws_symbol_rand_auto_id": {
|
1112
|
+
"kms": "aws",
|
1113
|
+
"type": "symbol",
|
1114
|
+
"algo": "rand",
|
1115
|
+
"method": "auto",
|
1116
|
+
"identifier": "id",
|
1117
|
+
"allowed": true,
|
1118
|
+
"value": {
|
1119
|
+
"$symbol": "mongodb-symbol"
|
1120
|
+
}
|
1121
|
+
},
|
1122
|
+
"aws_symbol_rand_auto_altname": {
|
1123
|
+
"kms": "aws",
|
1124
|
+
"type": "symbol",
|
1125
|
+
"algo": "rand",
|
1126
|
+
"method": "auto",
|
1127
|
+
"identifier": "altname",
|
1128
|
+
"allowed": true,
|
1129
|
+
"value": {
|
1130
|
+
"$symbol": "mongodb-symbol"
|
1131
|
+
}
|
1132
|
+
},
|
1133
|
+
"aws_symbol_rand_explicit_id": {
|
1134
|
+
"kms": "aws",
|
1135
|
+
"type": "symbol",
|
1136
|
+
"algo": "rand",
|
1137
|
+
"method": "explicit",
|
1138
|
+
"identifier": "id",
|
1139
|
+
"allowed": true,
|
1140
|
+
"value": {
|
1141
|
+
"$symbol": "mongodb-symbol"
|
1142
|
+
}
|
1143
|
+
},
|
1144
|
+
"aws_symbol_rand_explicit_altname": {
|
1145
|
+
"kms": "aws",
|
1146
|
+
"type": "symbol",
|
1147
|
+
"algo": "rand",
|
1148
|
+
"method": "explicit",
|
1149
|
+
"identifier": "altname",
|
1150
|
+
"allowed": true,
|
1151
|
+
"value": {
|
1152
|
+
"$symbol": "mongodb-symbol"
|
1153
|
+
}
|
1154
|
+
},
|
1155
|
+
"aws_symbol_det_auto_id": {
|
1156
|
+
"kms": "aws",
|
1157
|
+
"type": "symbol",
|
1158
|
+
"algo": "det",
|
1159
|
+
"method": "auto",
|
1160
|
+
"identifier": "id",
|
1161
|
+
"allowed": true,
|
1162
|
+
"value": {
|
1163
|
+
"$symbol": "mongodb-symbol"
|
1164
|
+
}
|
1165
|
+
},
|
1166
|
+
"aws_symbol_det_explicit_id": {
|
1167
|
+
"kms": "aws",
|
1168
|
+
"type": "symbol",
|
1169
|
+
"algo": "det",
|
1170
|
+
"method": "explicit",
|
1171
|
+
"identifier": "id",
|
1172
|
+
"allowed": true,
|
1173
|
+
"value": {
|
1174
|
+
"$symbol": "mongodb-symbol"
|
1175
|
+
}
|
1176
|
+
},
|
1177
|
+
"aws_symbol_det_explicit_altname": {
|
1178
|
+
"kms": "aws",
|
1179
|
+
"type": "symbol",
|
1180
|
+
"algo": "det",
|
1181
|
+
"method": "explicit",
|
1182
|
+
"identifier": "altname",
|
1183
|
+
"allowed": true,
|
1184
|
+
"value": {
|
1185
|
+
"$symbol": "mongodb-symbol"
|
1186
|
+
}
|
1187
|
+
},
|
1188
|
+
"aws_javascriptWithScope_rand_auto_id": {
|
1189
|
+
"kms": "aws",
|
1190
|
+
"type": "javascriptWithScope",
|
1191
|
+
"algo": "rand",
|
1192
|
+
"method": "auto",
|
1193
|
+
"identifier": "id",
|
1194
|
+
"allowed": true,
|
1195
|
+
"value": {
|
1196
|
+
"$code": "x=1",
|
1197
|
+
"$scope": {
|
1198
|
+
|
1199
|
+
}
|
1200
|
+
}
|
1201
|
+
},
|
1202
|
+
"aws_javascriptWithScope_rand_auto_altname": {
|
1203
|
+
"kms": "aws",
|
1204
|
+
"type": "javascriptWithScope",
|
1205
|
+
"algo": "rand",
|
1206
|
+
"method": "auto",
|
1207
|
+
"identifier": "altname",
|
1208
|
+
"allowed": true,
|
1209
|
+
"value": {
|
1210
|
+
"$code": "x=1",
|
1211
|
+
"$scope": {
|
1212
|
+
|
1213
|
+
}
|
1214
|
+
}
|
1215
|
+
},
|
1216
|
+
"aws_javascriptWithScope_rand_explicit_id": {
|
1217
|
+
"kms": "aws",
|
1218
|
+
"type": "javascriptWithScope",
|
1219
|
+
"algo": "rand",
|
1220
|
+
"method": "explicit",
|
1221
|
+
"identifier": "id",
|
1222
|
+
"allowed": true,
|
1223
|
+
"value": {
|
1224
|
+
"$code": "x=1",
|
1225
|
+
"$scope": {
|
1226
|
+
|
1227
|
+
}
|
1228
|
+
}
|
1229
|
+
},
|
1230
|
+
"aws_javascriptWithScope_rand_explicit_altname": {
|
1231
|
+
"kms": "aws",
|
1232
|
+
"type": "javascriptWithScope",
|
1233
|
+
"algo": "rand",
|
1234
|
+
"method": "explicit",
|
1235
|
+
"identifier": "altname",
|
1236
|
+
"allowed": true,
|
1237
|
+
"value": {
|
1238
|
+
"$code": "x=1",
|
1239
|
+
"$scope": {
|
1240
|
+
|
1241
|
+
}
|
1242
|
+
}
|
1243
|
+
},
|
1244
|
+
"aws_javascriptWithScope_det_explicit_id": {
|
1245
|
+
"kms": "aws",
|
1246
|
+
"type": "javascriptWithScope",
|
1247
|
+
"algo": "det",
|
1248
|
+
"method": "explicit",
|
1249
|
+
"identifier": "id",
|
1250
|
+
"allowed": false,
|
1251
|
+
"value": {
|
1252
|
+
"$code": "x=1",
|
1253
|
+
"$scope": {
|
1254
|
+
|
1255
|
+
}
|
1256
|
+
}
|
1257
|
+
},
|
1258
|
+
"aws_javascriptWithScope_det_explicit_altname": {
|
1259
|
+
"kms": "aws",
|
1260
|
+
"type": "javascriptWithScope",
|
1261
|
+
"algo": "det",
|
1262
|
+
"method": "explicit",
|
1263
|
+
"identifier": "altname",
|
1264
|
+
"allowed": false,
|
1265
|
+
"value": {
|
1266
|
+
"$code": "x=1",
|
1267
|
+
"$scope": {
|
1268
|
+
|
1269
|
+
}
|
1270
|
+
}
|
1271
|
+
},
|
1272
|
+
"aws_int_rand_auto_id": {
|
1273
|
+
"kms": "aws",
|
1274
|
+
"type": "int",
|
1275
|
+
"algo": "rand",
|
1276
|
+
"method": "auto",
|
1277
|
+
"identifier": "id",
|
1278
|
+
"allowed": true,
|
1279
|
+
"value": {
|
1280
|
+
"$numberInt": "123"
|
1281
|
+
}
|
1282
|
+
},
|
1283
|
+
"aws_int_rand_auto_altname": {
|
1284
|
+
"kms": "aws",
|
1285
|
+
"type": "int",
|
1286
|
+
"algo": "rand",
|
1287
|
+
"method": "auto",
|
1288
|
+
"identifier": "altname",
|
1289
|
+
"allowed": true,
|
1290
|
+
"value": {
|
1291
|
+
"$numberInt": "123"
|
1292
|
+
}
|
1293
|
+
},
|
1294
|
+
"aws_int_rand_explicit_id": {
|
1295
|
+
"kms": "aws",
|
1296
|
+
"type": "int",
|
1297
|
+
"algo": "rand",
|
1298
|
+
"method": "explicit",
|
1299
|
+
"identifier": "id",
|
1300
|
+
"allowed": true,
|
1301
|
+
"value": {
|
1302
|
+
"$numberInt": "123"
|
1303
|
+
}
|
1304
|
+
},
|
1305
|
+
"aws_int_rand_explicit_altname": {
|
1306
|
+
"kms": "aws",
|
1307
|
+
"type": "int",
|
1308
|
+
"algo": "rand",
|
1309
|
+
"method": "explicit",
|
1310
|
+
"identifier": "altname",
|
1311
|
+
"allowed": true,
|
1312
|
+
"value": {
|
1313
|
+
"$numberInt": "123"
|
1314
|
+
}
|
1315
|
+
},
|
1316
|
+
"aws_int_det_auto_id": {
|
1317
|
+
"kms": "aws",
|
1318
|
+
"type": "int",
|
1319
|
+
"algo": "det",
|
1320
|
+
"method": "auto",
|
1321
|
+
"identifier": "id",
|
1322
|
+
"allowed": true,
|
1323
|
+
"value": {
|
1324
|
+
"$numberInt": "123"
|
1325
|
+
}
|
1326
|
+
},
|
1327
|
+
"aws_int_det_explicit_id": {
|
1328
|
+
"kms": "aws",
|
1329
|
+
"type": "int",
|
1330
|
+
"algo": "det",
|
1331
|
+
"method": "explicit",
|
1332
|
+
"identifier": "id",
|
1333
|
+
"allowed": true,
|
1334
|
+
"value": {
|
1335
|
+
"$numberInt": "123"
|
1336
|
+
}
|
1337
|
+
},
|
1338
|
+
"aws_int_det_explicit_altname": {
|
1339
|
+
"kms": "aws",
|
1340
|
+
"type": "int",
|
1341
|
+
"algo": "det",
|
1342
|
+
"method": "explicit",
|
1343
|
+
"identifier": "altname",
|
1344
|
+
"allowed": true,
|
1345
|
+
"value": {
|
1346
|
+
"$numberInt": "123"
|
1347
|
+
}
|
1348
|
+
},
|
1349
|
+
"aws_timestamp_rand_auto_id": {
|
1350
|
+
"kms": "aws",
|
1351
|
+
"type": "timestamp",
|
1352
|
+
"algo": "rand",
|
1353
|
+
"method": "auto",
|
1354
|
+
"identifier": "id",
|
1355
|
+
"allowed": true,
|
1356
|
+
"value": {
|
1357
|
+
"$timestamp": {
|
1358
|
+
"t": 0,
|
1359
|
+
"i": 12345
|
1360
|
+
}
|
1361
|
+
}
|
1362
|
+
},
|
1363
|
+
"aws_timestamp_rand_auto_altname": {
|
1364
|
+
"kms": "aws",
|
1365
|
+
"type": "timestamp",
|
1366
|
+
"algo": "rand",
|
1367
|
+
"method": "auto",
|
1368
|
+
"identifier": "altname",
|
1369
|
+
"allowed": true,
|
1370
|
+
"value": {
|
1371
|
+
"$timestamp": {
|
1372
|
+
"t": 0,
|
1373
|
+
"i": 12345
|
1374
|
+
}
|
1375
|
+
}
|
1376
|
+
},
|
1377
|
+
"aws_timestamp_rand_explicit_id": {
|
1378
|
+
"kms": "aws",
|
1379
|
+
"type": "timestamp",
|
1380
|
+
"algo": "rand",
|
1381
|
+
"method": "explicit",
|
1382
|
+
"identifier": "id",
|
1383
|
+
"allowed": true,
|
1384
|
+
"value": {
|
1385
|
+
"$timestamp": {
|
1386
|
+
"t": 0,
|
1387
|
+
"i": 12345
|
1388
|
+
}
|
1389
|
+
}
|
1390
|
+
},
|
1391
|
+
"aws_timestamp_rand_explicit_altname": {
|
1392
|
+
"kms": "aws",
|
1393
|
+
"type": "timestamp",
|
1394
|
+
"algo": "rand",
|
1395
|
+
"method": "explicit",
|
1396
|
+
"identifier": "altname",
|
1397
|
+
"allowed": true,
|
1398
|
+
"value": {
|
1399
|
+
"$timestamp": {
|
1400
|
+
"t": 0,
|
1401
|
+
"i": 12345
|
1402
|
+
}
|
1403
|
+
}
|
1404
|
+
},
|
1405
|
+
"aws_timestamp_det_auto_id": {
|
1406
|
+
"kms": "aws",
|
1407
|
+
"type": "timestamp",
|
1408
|
+
"algo": "det",
|
1409
|
+
"method": "auto",
|
1410
|
+
"identifier": "id",
|
1411
|
+
"allowed": true,
|
1412
|
+
"value": {
|
1413
|
+
"$timestamp": {
|
1414
|
+
"t": 0,
|
1415
|
+
"i": 12345
|
1416
|
+
}
|
1417
|
+
}
|
1418
|
+
},
|
1419
|
+
"aws_timestamp_det_explicit_id": {
|
1420
|
+
"kms": "aws",
|
1421
|
+
"type": "timestamp",
|
1422
|
+
"algo": "det",
|
1423
|
+
"method": "explicit",
|
1424
|
+
"identifier": "id",
|
1425
|
+
"allowed": true,
|
1426
|
+
"value": {
|
1427
|
+
"$timestamp": {
|
1428
|
+
"t": 0,
|
1429
|
+
"i": 12345
|
1430
|
+
}
|
1431
|
+
}
|
1432
|
+
},
|
1433
|
+
"aws_timestamp_det_explicit_altname": {
|
1434
|
+
"kms": "aws",
|
1435
|
+
"type": "timestamp",
|
1436
|
+
"algo": "det",
|
1437
|
+
"method": "explicit",
|
1438
|
+
"identifier": "altname",
|
1439
|
+
"allowed": true,
|
1440
|
+
"value": {
|
1441
|
+
"$timestamp": {
|
1442
|
+
"t": 0,
|
1443
|
+
"i": 12345
|
1444
|
+
}
|
1445
|
+
}
|
1446
|
+
},
|
1447
|
+
"aws_long_rand_auto_id": {
|
1448
|
+
"kms": "aws",
|
1449
|
+
"type": "long",
|
1450
|
+
"algo": "rand",
|
1451
|
+
"method": "auto",
|
1452
|
+
"identifier": "id",
|
1453
|
+
"allowed": true,
|
1454
|
+
"value": {
|
1455
|
+
"$numberLong": "456"
|
1456
|
+
}
|
1457
|
+
},
|
1458
|
+
"aws_long_rand_auto_altname": {
|
1459
|
+
"kms": "aws",
|
1460
|
+
"type": "long",
|
1461
|
+
"algo": "rand",
|
1462
|
+
"method": "auto",
|
1463
|
+
"identifier": "altname",
|
1464
|
+
"allowed": true,
|
1465
|
+
"value": {
|
1466
|
+
"$numberLong": "456"
|
1467
|
+
}
|
1468
|
+
},
|
1469
|
+
"aws_long_rand_explicit_id": {
|
1470
|
+
"kms": "aws",
|
1471
|
+
"type": "long",
|
1472
|
+
"algo": "rand",
|
1473
|
+
"method": "explicit",
|
1474
|
+
"identifier": "id",
|
1475
|
+
"allowed": true,
|
1476
|
+
"value": {
|
1477
|
+
"$numberLong": "456"
|
1478
|
+
}
|
1479
|
+
},
|
1480
|
+
"aws_long_rand_explicit_altname": {
|
1481
|
+
"kms": "aws",
|
1482
|
+
"type": "long",
|
1483
|
+
"algo": "rand",
|
1484
|
+
"method": "explicit",
|
1485
|
+
"identifier": "altname",
|
1486
|
+
"allowed": true,
|
1487
|
+
"value": {
|
1488
|
+
"$numberLong": "456"
|
1489
|
+
}
|
1490
|
+
},
|
1491
|
+
"aws_long_det_auto_id": {
|
1492
|
+
"kms": "aws",
|
1493
|
+
"type": "long",
|
1494
|
+
"algo": "det",
|
1495
|
+
"method": "auto",
|
1496
|
+
"identifier": "id",
|
1497
|
+
"allowed": true,
|
1498
|
+
"value": {
|
1499
|
+
"$numberLong": "456"
|
1500
|
+
}
|
1501
|
+
},
|
1502
|
+
"aws_long_det_explicit_id": {
|
1503
|
+
"kms": "aws",
|
1504
|
+
"type": "long",
|
1505
|
+
"algo": "det",
|
1506
|
+
"method": "explicit",
|
1507
|
+
"identifier": "id",
|
1508
|
+
"allowed": true,
|
1509
|
+
"value": {
|
1510
|
+
"$numberLong": "456"
|
1511
|
+
}
|
1512
|
+
},
|
1513
|
+
"aws_long_det_explicit_altname": {
|
1514
|
+
"kms": "aws",
|
1515
|
+
"type": "long",
|
1516
|
+
"algo": "det",
|
1517
|
+
"method": "explicit",
|
1518
|
+
"identifier": "altname",
|
1519
|
+
"allowed": true,
|
1520
|
+
"value": {
|
1521
|
+
"$numberLong": "456"
|
1522
|
+
}
|
1523
|
+
},
|
1524
|
+
"aws_decimal_rand_auto_id": {
|
1525
|
+
"kms": "aws",
|
1526
|
+
"type": "decimal",
|
1527
|
+
"algo": "rand",
|
1528
|
+
"method": "auto",
|
1529
|
+
"identifier": "id",
|
1530
|
+
"allowed": true,
|
1531
|
+
"value": {
|
1532
|
+
"$numberDecimal": "1.234"
|
1533
|
+
}
|
1534
|
+
},
|
1535
|
+
"aws_decimal_rand_auto_altname": {
|
1536
|
+
"kms": "aws",
|
1537
|
+
"type": "decimal",
|
1538
|
+
"algo": "rand",
|
1539
|
+
"method": "auto",
|
1540
|
+
"identifier": "altname",
|
1541
|
+
"allowed": true,
|
1542
|
+
"value": {
|
1543
|
+
"$numberDecimal": "1.234"
|
1544
|
+
}
|
1545
|
+
},
|
1546
|
+
"aws_decimal_rand_explicit_id": {
|
1547
|
+
"kms": "aws",
|
1548
|
+
"type": "decimal",
|
1549
|
+
"algo": "rand",
|
1550
|
+
"method": "explicit",
|
1551
|
+
"identifier": "id",
|
1552
|
+
"allowed": true,
|
1553
|
+
"value": {
|
1554
|
+
"$numberDecimal": "1.234"
|
1555
|
+
}
|
1556
|
+
},
|
1557
|
+
"aws_decimal_rand_explicit_altname": {
|
1558
|
+
"kms": "aws",
|
1559
|
+
"type": "decimal",
|
1560
|
+
"algo": "rand",
|
1561
|
+
"method": "explicit",
|
1562
|
+
"identifier": "altname",
|
1563
|
+
"allowed": true,
|
1564
|
+
"value": {
|
1565
|
+
"$numberDecimal": "1.234"
|
1566
|
+
}
|
1567
|
+
},
|
1568
|
+
"aws_decimal_det_explicit_id": {
|
1569
|
+
"kms": "aws",
|
1570
|
+
"type": "decimal",
|
1571
|
+
"algo": "det",
|
1572
|
+
"method": "explicit",
|
1573
|
+
"identifier": "id",
|
1574
|
+
"allowed": false,
|
1575
|
+
"value": {
|
1576
|
+
"$numberDecimal": "1.234"
|
1577
|
+
}
|
1578
|
+
},
|
1579
|
+
"aws_decimal_det_explicit_altname": {
|
1580
|
+
"kms": "aws",
|
1581
|
+
"type": "decimal",
|
1582
|
+
"algo": "det",
|
1583
|
+
"method": "explicit",
|
1584
|
+
"identifier": "altname",
|
1585
|
+
"allowed": false,
|
1586
|
+
"value": {
|
1587
|
+
"$numberDecimal": "1.234"
|
1588
|
+
}
|
1589
|
+
},
|
1590
|
+
"aws_minKey_rand_explicit_id": {
|
1591
|
+
"kms": "aws",
|
1592
|
+
"type": "minKey",
|
1593
|
+
"algo": "rand",
|
1594
|
+
"method": "explicit",
|
1595
|
+
"identifier": "id",
|
1596
|
+
"allowed": false,
|
1597
|
+
"value": {
|
1598
|
+
"$minKey": 1
|
1599
|
+
}
|
1600
|
+
},
|
1601
|
+
"aws_minKey_rand_explicit_altname": {
|
1602
|
+
"kms": "aws",
|
1603
|
+
"type": "minKey",
|
1604
|
+
"algo": "rand",
|
1605
|
+
"method": "explicit",
|
1606
|
+
"identifier": "altname",
|
1607
|
+
"allowed": false,
|
1608
|
+
"value": {
|
1609
|
+
"$minKey": 1
|
1610
|
+
}
|
1611
|
+
},
|
1612
|
+
"aws_minKey_det_explicit_id": {
|
1613
|
+
"kms": "aws",
|
1614
|
+
"type": "minKey",
|
1615
|
+
"algo": "det",
|
1616
|
+
"method": "explicit",
|
1617
|
+
"identifier": "id",
|
1618
|
+
"allowed": false,
|
1619
|
+
"value": {
|
1620
|
+
"$minKey": 1
|
1621
|
+
}
|
1622
|
+
},
|
1623
|
+
"aws_minKey_det_explicit_altname": {
|
1624
|
+
"kms": "aws",
|
1625
|
+
"type": "minKey",
|
1626
|
+
"algo": "det",
|
1627
|
+
"method": "explicit",
|
1628
|
+
"identifier": "altname",
|
1629
|
+
"allowed": false,
|
1630
|
+
"value": {
|
1631
|
+
"$minKey": 1
|
1632
|
+
}
|
1633
|
+
},
|
1634
|
+
"aws_maxKey_rand_explicit_id": {
|
1635
|
+
"kms": "aws",
|
1636
|
+
"type": "maxKey",
|
1637
|
+
"algo": "rand",
|
1638
|
+
"method": "explicit",
|
1639
|
+
"identifier": "id",
|
1640
|
+
"allowed": false,
|
1641
|
+
"value": {
|
1642
|
+
"$maxKey": 1
|
1643
|
+
}
|
1644
|
+
},
|
1645
|
+
"aws_maxKey_rand_explicit_altname": {
|
1646
|
+
"kms": "aws",
|
1647
|
+
"type": "maxKey",
|
1648
|
+
"algo": "rand",
|
1649
|
+
"method": "explicit",
|
1650
|
+
"identifier": "altname",
|
1651
|
+
"allowed": false,
|
1652
|
+
"value": {
|
1653
|
+
"$maxKey": 1
|
1654
|
+
}
|
1655
|
+
},
|
1656
|
+
"aws_maxKey_det_explicit_id": {
|
1657
|
+
"kms": "aws",
|
1658
|
+
"type": "maxKey",
|
1659
|
+
"algo": "det",
|
1660
|
+
"method": "explicit",
|
1661
|
+
"identifier": "id",
|
1662
|
+
"allowed": false,
|
1663
|
+
"value": {
|
1664
|
+
"$maxKey": 1
|
1665
|
+
}
|
1666
|
+
},
|
1667
|
+
"aws_maxKey_det_explicit_altname": {
|
1668
|
+
"kms": "aws",
|
1669
|
+
"type": "maxKey",
|
1670
|
+
"algo": "det",
|
1671
|
+
"method": "explicit",
|
1672
|
+
"identifier": "altname",
|
1673
|
+
"allowed": false,
|
1674
|
+
"value": {
|
1675
|
+
"$maxKey": 1
|
1676
|
+
}
|
1677
|
+
},
|
1678
|
+
"local_double_rand_auto_id": {
|
1679
|
+
"kms": "local",
|
1680
|
+
"type": "double",
|
1681
|
+
"algo": "rand",
|
1682
|
+
"method": "auto",
|
1683
|
+
"identifier": "id",
|
1684
|
+
"allowed": true,
|
1685
|
+
"value": {
|
1686
|
+
"$numberDouble": "1.234"
|
1687
|
+
}
|
1688
|
+
},
|
1689
|
+
"local_double_rand_auto_altname": {
|
1690
|
+
"kms": "local",
|
1691
|
+
"type": "double",
|
1692
|
+
"algo": "rand",
|
1693
|
+
"method": "auto",
|
1694
|
+
"identifier": "altname",
|
1695
|
+
"allowed": true,
|
1696
|
+
"value": {
|
1697
|
+
"$numberDouble": "1.234"
|
1698
|
+
}
|
1699
|
+
},
|
1700
|
+
"local_double_rand_explicit_id": {
|
1701
|
+
"kms": "local",
|
1702
|
+
"type": "double",
|
1703
|
+
"algo": "rand",
|
1704
|
+
"method": "explicit",
|
1705
|
+
"identifier": "id",
|
1706
|
+
"allowed": true,
|
1707
|
+
"value": {
|
1708
|
+
"$numberDouble": "1.234"
|
1709
|
+
}
|
1710
|
+
},
|
1711
|
+
"local_double_rand_explicit_altname": {
|
1712
|
+
"kms": "local",
|
1713
|
+
"type": "double",
|
1714
|
+
"algo": "rand",
|
1715
|
+
"method": "explicit",
|
1716
|
+
"identifier": "altname",
|
1717
|
+
"allowed": true,
|
1718
|
+
"value": {
|
1719
|
+
"$numberDouble": "1.234"
|
1720
|
+
}
|
1721
|
+
},
|
1722
|
+
"local_double_det_explicit_id": {
|
1723
|
+
"kms": "local",
|
1724
|
+
"type": "double",
|
1725
|
+
"algo": "det",
|
1726
|
+
"method": "explicit",
|
1727
|
+
"identifier": "id",
|
1728
|
+
"allowed": false,
|
1729
|
+
"value": {
|
1730
|
+
"$numberDouble": "1.234"
|
1731
|
+
}
|
1732
|
+
},
|
1733
|
+
"local_double_det_explicit_altname": {
|
1734
|
+
"kms": "local",
|
1735
|
+
"type": "double",
|
1736
|
+
"algo": "det",
|
1737
|
+
"method": "explicit",
|
1738
|
+
"identifier": "altname",
|
1739
|
+
"allowed": false,
|
1740
|
+
"value": {
|
1741
|
+
"$numberDouble": "1.234"
|
1742
|
+
}
|
1743
|
+
},
|
1744
|
+
"local_string_rand_auto_id": {
|
1745
|
+
"kms": "local",
|
1746
|
+
"type": "string",
|
1747
|
+
"algo": "rand",
|
1748
|
+
"method": "auto",
|
1749
|
+
"identifier": "id",
|
1750
|
+
"allowed": true,
|
1751
|
+
"value": "mongodb"
|
1752
|
+
},
|
1753
|
+
"local_string_rand_auto_altname": {
|
1754
|
+
"kms": "local",
|
1755
|
+
"type": "string",
|
1756
|
+
"algo": "rand",
|
1757
|
+
"method": "auto",
|
1758
|
+
"identifier": "altname",
|
1759
|
+
"allowed": true,
|
1760
|
+
"value": "mongodb"
|
1761
|
+
},
|
1762
|
+
"local_string_rand_explicit_id": {
|
1763
|
+
"kms": "local",
|
1764
|
+
"type": "string",
|
1765
|
+
"algo": "rand",
|
1766
|
+
"method": "explicit",
|
1767
|
+
"identifier": "id",
|
1768
|
+
"allowed": true,
|
1769
|
+
"value": "mongodb"
|
1770
|
+
},
|
1771
|
+
"local_string_rand_explicit_altname": {
|
1772
|
+
"kms": "local",
|
1773
|
+
"type": "string",
|
1774
|
+
"algo": "rand",
|
1775
|
+
"method": "explicit",
|
1776
|
+
"identifier": "altname",
|
1777
|
+
"allowed": true,
|
1778
|
+
"value": "mongodb"
|
1779
|
+
},
|
1780
|
+
"local_string_det_auto_id": {
|
1781
|
+
"kms": "local",
|
1782
|
+
"type": "string",
|
1783
|
+
"algo": "det",
|
1784
|
+
"method": "auto",
|
1785
|
+
"identifier": "id",
|
1786
|
+
"allowed": true,
|
1787
|
+
"value": "mongodb"
|
1788
|
+
},
|
1789
|
+
"local_string_det_explicit_id": {
|
1790
|
+
"kms": "local",
|
1791
|
+
"type": "string",
|
1792
|
+
"algo": "det",
|
1793
|
+
"method": "explicit",
|
1794
|
+
"identifier": "id",
|
1795
|
+
"allowed": true,
|
1796
|
+
"value": "mongodb"
|
1797
|
+
},
|
1798
|
+
"local_string_det_explicit_altname": {
|
1799
|
+
"kms": "local",
|
1800
|
+
"type": "string",
|
1801
|
+
"algo": "det",
|
1802
|
+
"method": "explicit",
|
1803
|
+
"identifier": "altname",
|
1804
|
+
"allowed": true,
|
1805
|
+
"value": "mongodb"
|
1806
|
+
},
|
1807
|
+
"local_object_rand_auto_id": {
|
1808
|
+
"kms": "local",
|
1809
|
+
"type": "object",
|
1810
|
+
"algo": "rand",
|
1811
|
+
"method": "auto",
|
1812
|
+
"identifier": "id",
|
1813
|
+
"allowed": true,
|
1814
|
+
"value": {
|
1815
|
+
"x": {
|
1816
|
+
"$numberInt": "1"
|
1817
|
+
}
|
1818
|
+
}
|
1819
|
+
},
|
1820
|
+
"local_object_rand_auto_altname": {
|
1821
|
+
"kms": "local",
|
1822
|
+
"type": "object",
|
1823
|
+
"algo": "rand",
|
1824
|
+
"method": "auto",
|
1825
|
+
"identifier": "altname",
|
1826
|
+
"allowed": true,
|
1827
|
+
"value": {
|
1828
|
+
"x": {
|
1829
|
+
"$numberInt": "1"
|
1830
|
+
}
|
1831
|
+
}
|
1832
|
+
},
|
1833
|
+
"local_object_rand_explicit_id": {
|
1834
|
+
"kms": "local",
|
1835
|
+
"type": "object",
|
1836
|
+
"algo": "rand",
|
1837
|
+
"method": "explicit",
|
1838
|
+
"identifier": "id",
|
1839
|
+
"allowed": true,
|
1840
|
+
"value": {
|
1841
|
+
"x": {
|
1842
|
+
"$numberInt": "1"
|
1843
|
+
}
|
1844
|
+
}
|
1845
|
+
},
|
1846
|
+
"local_object_rand_explicit_altname": {
|
1847
|
+
"kms": "local",
|
1848
|
+
"type": "object",
|
1849
|
+
"algo": "rand",
|
1850
|
+
"method": "explicit",
|
1851
|
+
"identifier": "altname",
|
1852
|
+
"allowed": true,
|
1853
|
+
"value": {
|
1854
|
+
"x": {
|
1855
|
+
"$numberInt": "1"
|
1856
|
+
}
|
1857
|
+
}
|
1858
|
+
},
|
1859
|
+
"local_object_det_explicit_id": {
|
1860
|
+
"kms": "local",
|
1861
|
+
"type": "object",
|
1862
|
+
"algo": "det",
|
1863
|
+
"method": "explicit",
|
1864
|
+
"identifier": "id",
|
1865
|
+
"allowed": false,
|
1866
|
+
"value": {
|
1867
|
+
"x": {
|
1868
|
+
"$numberInt": "1"
|
1869
|
+
}
|
1870
|
+
}
|
1871
|
+
},
|
1872
|
+
"local_object_det_explicit_altname": {
|
1873
|
+
"kms": "local",
|
1874
|
+
"type": "object",
|
1875
|
+
"algo": "det",
|
1876
|
+
"method": "explicit",
|
1877
|
+
"identifier": "altname",
|
1878
|
+
"allowed": false,
|
1879
|
+
"value": {
|
1880
|
+
"x": {
|
1881
|
+
"$numberInt": "1"
|
1882
|
+
}
|
1883
|
+
}
|
1884
|
+
},
|
1885
|
+
"local_array_rand_auto_id": {
|
1886
|
+
"kms": "local",
|
1887
|
+
"type": "array",
|
1888
|
+
"algo": "rand",
|
1889
|
+
"method": "auto",
|
1890
|
+
"identifier": "id",
|
1891
|
+
"allowed": true,
|
1892
|
+
"value": [
|
1893
|
+
{
|
1894
|
+
"$numberInt": "1"
|
1895
|
+
},
|
1896
|
+
{
|
1897
|
+
"$numberInt": "2"
|
1898
|
+
},
|
1899
|
+
{
|
1900
|
+
"$numberInt": "3"
|
1901
|
+
}
|
1902
|
+
]
|
1903
|
+
},
|
1904
|
+
"local_array_rand_auto_altname": {
|
1905
|
+
"kms": "local",
|
1906
|
+
"type": "array",
|
1907
|
+
"algo": "rand",
|
1908
|
+
"method": "auto",
|
1909
|
+
"identifier": "altname",
|
1910
|
+
"allowed": true,
|
1911
|
+
"value": [
|
1912
|
+
{
|
1913
|
+
"$numberInt": "1"
|
1914
|
+
},
|
1915
|
+
{
|
1916
|
+
"$numberInt": "2"
|
1917
|
+
},
|
1918
|
+
{
|
1919
|
+
"$numberInt": "3"
|
1920
|
+
}
|
1921
|
+
]
|
1922
|
+
},
|
1923
|
+
"local_array_rand_explicit_id": {
|
1924
|
+
"kms": "local",
|
1925
|
+
"type": "array",
|
1926
|
+
"algo": "rand",
|
1927
|
+
"method": "explicit",
|
1928
|
+
"identifier": "id",
|
1929
|
+
"allowed": true,
|
1930
|
+
"value": [
|
1931
|
+
{
|
1932
|
+
"$numberInt": "1"
|
1933
|
+
},
|
1934
|
+
{
|
1935
|
+
"$numberInt": "2"
|
1936
|
+
},
|
1937
|
+
{
|
1938
|
+
"$numberInt": "3"
|
1939
|
+
}
|
1940
|
+
]
|
1941
|
+
},
|
1942
|
+
"local_array_rand_explicit_altname": {
|
1943
|
+
"kms": "local",
|
1944
|
+
"type": "array",
|
1945
|
+
"algo": "rand",
|
1946
|
+
"method": "explicit",
|
1947
|
+
"identifier": "altname",
|
1948
|
+
"allowed": true,
|
1949
|
+
"value": [
|
1950
|
+
{
|
1951
|
+
"$numberInt": "1"
|
1952
|
+
},
|
1953
|
+
{
|
1954
|
+
"$numberInt": "2"
|
1955
|
+
},
|
1956
|
+
{
|
1957
|
+
"$numberInt": "3"
|
1958
|
+
}
|
1959
|
+
]
|
1960
|
+
},
|
1961
|
+
"local_array_det_explicit_id": {
|
1962
|
+
"kms": "local",
|
1963
|
+
"type": "array",
|
1964
|
+
"algo": "det",
|
1965
|
+
"method": "explicit",
|
1966
|
+
"identifier": "id",
|
1967
|
+
"allowed": false,
|
1968
|
+
"value": [
|
1969
|
+
{
|
1970
|
+
"$numberInt": "1"
|
1971
|
+
},
|
1972
|
+
{
|
1973
|
+
"$numberInt": "2"
|
1974
|
+
},
|
1975
|
+
{
|
1976
|
+
"$numberInt": "3"
|
1977
|
+
}
|
1978
|
+
]
|
1979
|
+
},
|
1980
|
+
"local_array_det_explicit_altname": {
|
1981
|
+
"kms": "local",
|
1982
|
+
"type": "array",
|
1983
|
+
"algo": "det",
|
1984
|
+
"method": "explicit",
|
1985
|
+
"identifier": "altname",
|
1986
|
+
"allowed": false,
|
1987
|
+
"value": [
|
1988
|
+
{
|
1989
|
+
"$numberInt": "1"
|
1990
|
+
},
|
1991
|
+
{
|
1992
|
+
"$numberInt": "2"
|
1993
|
+
},
|
1994
|
+
{
|
1995
|
+
"$numberInt": "3"
|
1996
|
+
}
|
1997
|
+
]
|
1998
|
+
},
|
1999
|
+
"local_binData=00_rand_auto_id": {
|
2000
|
+
"kms": "local",
|
2001
|
+
"type": "binData=00",
|
2002
|
+
"algo": "rand",
|
2003
|
+
"method": "auto",
|
2004
|
+
"identifier": "id",
|
2005
|
+
"allowed": true,
|
2006
|
+
"value": {
|
2007
|
+
"$binary": {
|
2008
|
+
"base64": "AQIDBA==",
|
2009
|
+
"subType": "00"
|
2010
|
+
}
|
2011
|
+
}
|
2012
|
+
},
|
2013
|
+
"local_binData=00_rand_auto_altname": {
|
2014
|
+
"kms": "local",
|
2015
|
+
"type": "binData=00",
|
2016
|
+
"algo": "rand",
|
2017
|
+
"method": "auto",
|
2018
|
+
"identifier": "altname",
|
2019
|
+
"allowed": true,
|
2020
|
+
"value": {
|
2021
|
+
"$binary": {
|
2022
|
+
"base64": "AQIDBA==",
|
2023
|
+
"subType": "00"
|
2024
|
+
}
|
2025
|
+
}
|
2026
|
+
},
|
2027
|
+
"local_binData=00_rand_explicit_id": {
|
2028
|
+
"kms": "local",
|
2029
|
+
"type": "binData=00",
|
2030
|
+
"algo": "rand",
|
2031
|
+
"method": "explicit",
|
2032
|
+
"identifier": "id",
|
2033
|
+
"allowed": true,
|
2034
|
+
"value": {
|
2035
|
+
"$binary": {
|
2036
|
+
"base64": "AQIDBA==",
|
2037
|
+
"subType": "00"
|
2038
|
+
}
|
2039
|
+
}
|
2040
|
+
},
|
2041
|
+
"local_binData=00_rand_explicit_altname": {
|
2042
|
+
"kms": "local",
|
2043
|
+
"type": "binData=00",
|
2044
|
+
"algo": "rand",
|
2045
|
+
"method": "explicit",
|
2046
|
+
"identifier": "altname",
|
2047
|
+
"allowed": true,
|
2048
|
+
"value": {
|
2049
|
+
"$binary": {
|
2050
|
+
"base64": "AQIDBA==",
|
2051
|
+
"subType": "00"
|
2052
|
+
}
|
2053
|
+
}
|
2054
|
+
},
|
2055
|
+
"local_binData=00_det_auto_id": {
|
2056
|
+
"kms": "local",
|
2057
|
+
"type": "binData=00",
|
2058
|
+
"algo": "det",
|
2059
|
+
"method": "auto",
|
2060
|
+
"identifier": "id",
|
2061
|
+
"allowed": true,
|
2062
|
+
"value": {
|
2063
|
+
"$binary": {
|
2064
|
+
"base64": "AQIDBA==",
|
2065
|
+
"subType": "00"
|
2066
|
+
}
|
2067
|
+
}
|
2068
|
+
},
|
2069
|
+
"local_binData=00_det_explicit_id": {
|
2070
|
+
"kms": "local",
|
2071
|
+
"type": "binData=00",
|
2072
|
+
"algo": "det",
|
2073
|
+
"method": "explicit",
|
2074
|
+
"identifier": "id",
|
2075
|
+
"allowed": true,
|
2076
|
+
"value": {
|
2077
|
+
"$binary": {
|
2078
|
+
"base64": "AQIDBA==",
|
2079
|
+
"subType": "00"
|
2080
|
+
}
|
2081
|
+
}
|
2082
|
+
},
|
2083
|
+
"local_binData=00_det_explicit_altname": {
|
2084
|
+
"kms": "local",
|
2085
|
+
"type": "binData=00",
|
2086
|
+
"algo": "det",
|
2087
|
+
"method": "explicit",
|
2088
|
+
"identifier": "altname",
|
2089
|
+
"allowed": true,
|
2090
|
+
"value": {
|
2091
|
+
"$binary": {
|
2092
|
+
"base64": "AQIDBA==",
|
2093
|
+
"subType": "00"
|
2094
|
+
}
|
2095
|
+
}
|
2096
|
+
},
|
2097
|
+
"local_binData=04_rand_auto_id": {
|
2098
|
+
"kms": "local",
|
2099
|
+
"type": "binData=04",
|
2100
|
+
"algo": "rand",
|
2101
|
+
"method": "auto",
|
2102
|
+
"identifier": "id",
|
2103
|
+
"allowed": true,
|
2104
|
+
"value": {
|
2105
|
+
"$binary": {
|
2106
|
+
"base64": "AAECAwQFBgcICQoLDA0ODw==",
|
2107
|
+
"subType": "04"
|
2108
|
+
}
|
2109
|
+
}
|
2110
|
+
},
|
2111
|
+
"local_binData=04_rand_auto_altname": {
|
2112
|
+
"kms": "local",
|
2113
|
+
"type": "binData=04",
|
2114
|
+
"algo": "rand",
|
2115
|
+
"method": "auto",
|
2116
|
+
"identifier": "altname",
|
2117
|
+
"allowed": true,
|
2118
|
+
"value": {
|
2119
|
+
"$binary": {
|
2120
|
+
"base64": "AAECAwQFBgcICQoLDA0ODw==",
|
2121
|
+
"subType": "04"
|
2122
|
+
}
|
2123
|
+
}
|
2124
|
+
},
|
2125
|
+
"local_binData=04_rand_explicit_id": {
|
2126
|
+
"kms": "local",
|
2127
|
+
"type": "binData=04",
|
2128
|
+
"algo": "rand",
|
2129
|
+
"method": "explicit",
|
2130
|
+
"identifier": "id",
|
2131
|
+
"allowed": true,
|
2132
|
+
"value": {
|
2133
|
+
"$binary": {
|
2134
|
+
"base64": "AAECAwQFBgcICQoLDA0ODw==",
|
2135
|
+
"subType": "04"
|
2136
|
+
}
|
2137
|
+
}
|
2138
|
+
},
|
2139
|
+
"local_binData=04_rand_explicit_altname": {
|
2140
|
+
"kms": "local",
|
2141
|
+
"type": "binData=04",
|
2142
|
+
"algo": "rand",
|
2143
|
+
"method": "explicit",
|
2144
|
+
"identifier": "altname",
|
2145
|
+
"allowed": true,
|
2146
|
+
"value": {
|
2147
|
+
"$binary": {
|
2148
|
+
"base64": "AAECAwQFBgcICQoLDA0ODw==",
|
2149
|
+
"subType": "04"
|
2150
|
+
}
|
2151
|
+
}
|
2152
|
+
},
|
2153
|
+
"local_binData=04_det_auto_id": {
|
2154
|
+
"kms": "local",
|
2155
|
+
"type": "binData=04",
|
2156
|
+
"algo": "det",
|
2157
|
+
"method": "auto",
|
2158
|
+
"identifier": "id",
|
2159
|
+
"allowed": true,
|
2160
|
+
"value": {
|
2161
|
+
"$binary": {
|
2162
|
+
"base64": "AAECAwQFBgcICQoLDA0ODw==",
|
2163
|
+
"subType": "04"
|
2164
|
+
}
|
2165
|
+
}
|
2166
|
+
},
|
2167
|
+
"local_binData=04_det_explicit_id": {
|
2168
|
+
"kms": "local",
|
2169
|
+
"type": "binData=04",
|
2170
|
+
"algo": "det",
|
2171
|
+
"method": "explicit",
|
2172
|
+
"identifier": "id",
|
2173
|
+
"allowed": true,
|
2174
|
+
"value": {
|
2175
|
+
"$binary": {
|
2176
|
+
"base64": "AAECAwQFBgcICQoLDA0ODw==",
|
2177
|
+
"subType": "04"
|
2178
|
+
}
|
2179
|
+
}
|
2180
|
+
},
|
2181
|
+
"local_binData=04_det_explicit_altname": {
|
2182
|
+
"kms": "local",
|
2183
|
+
"type": "binData=04",
|
2184
|
+
"algo": "det",
|
2185
|
+
"method": "explicit",
|
2186
|
+
"identifier": "altname",
|
2187
|
+
"allowed": true,
|
2188
|
+
"value": {
|
2189
|
+
"$binary": {
|
2190
|
+
"base64": "AAECAwQFBgcICQoLDA0ODw==",
|
2191
|
+
"subType": "04"
|
2192
|
+
}
|
2193
|
+
}
|
2194
|
+
},
|
2195
|
+
"local_undefined_rand_explicit_id": {
|
2196
|
+
"kms": "local",
|
2197
|
+
"type": "undefined",
|
2198
|
+
"algo": "rand",
|
2199
|
+
"method": "explicit",
|
2200
|
+
"identifier": "id",
|
2201
|
+
"allowed": false,
|
2202
|
+
"value": {
|
2203
|
+
"$undefined": true
|
2204
|
+
}
|
2205
|
+
},
|
2206
|
+
"local_undefined_rand_explicit_altname": {
|
2207
|
+
"kms": "local",
|
2208
|
+
"type": "undefined",
|
2209
|
+
"algo": "rand",
|
2210
|
+
"method": "explicit",
|
2211
|
+
"identifier": "altname",
|
2212
|
+
"allowed": false,
|
2213
|
+
"value": {
|
2214
|
+
"$undefined": true
|
2215
|
+
}
|
2216
|
+
},
|
2217
|
+
"local_undefined_det_explicit_id": {
|
2218
|
+
"kms": "local",
|
2219
|
+
"type": "undefined",
|
2220
|
+
"algo": "det",
|
2221
|
+
"method": "explicit",
|
2222
|
+
"identifier": "id",
|
2223
|
+
"allowed": false,
|
2224
|
+
"value": {
|
2225
|
+
"$undefined": true
|
2226
|
+
}
|
2227
|
+
},
|
2228
|
+
"local_undefined_det_explicit_altname": {
|
2229
|
+
"kms": "local",
|
2230
|
+
"type": "undefined",
|
2231
|
+
"algo": "det",
|
2232
|
+
"method": "explicit",
|
2233
|
+
"identifier": "altname",
|
2234
|
+
"allowed": false,
|
2235
|
+
"value": {
|
2236
|
+
"$undefined": true
|
2237
|
+
}
|
2238
|
+
},
|
2239
|
+
"local_objectId_rand_auto_id": {
|
2240
|
+
"kms": "local",
|
2241
|
+
"type": "objectId",
|
2242
|
+
"algo": "rand",
|
2243
|
+
"method": "auto",
|
2244
|
+
"identifier": "id",
|
2245
|
+
"allowed": true,
|
2246
|
+
"value": {
|
2247
|
+
"$oid": "01234567890abcdef0123456"
|
2248
|
+
}
|
2249
|
+
},
|
2250
|
+
"local_objectId_rand_auto_altname": {
|
2251
|
+
"kms": "local",
|
2252
|
+
"type": "objectId",
|
2253
|
+
"algo": "rand",
|
2254
|
+
"method": "auto",
|
2255
|
+
"identifier": "altname",
|
2256
|
+
"allowed": true,
|
2257
|
+
"value": {
|
2258
|
+
"$oid": "01234567890abcdef0123456"
|
2259
|
+
}
|
2260
|
+
},
|
2261
|
+
"local_objectId_rand_explicit_id": {
|
2262
|
+
"kms": "local",
|
2263
|
+
"type": "objectId",
|
2264
|
+
"algo": "rand",
|
2265
|
+
"method": "explicit",
|
2266
|
+
"identifier": "id",
|
2267
|
+
"allowed": true,
|
2268
|
+
"value": {
|
2269
|
+
"$oid": "01234567890abcdef0123456"
|
2270
|
+
}
|
2271
|
+
},
|
2272
|
+
"local_objectId_rand_explicit_altname": {
|
2273
|
+
"kms": "local",
|
2274
|
+
"type": "objectId",
|
2275
|
+
"algo": "rand",
|
2276
|
+
"method": "explicit",
|
2277
|
+
"identifier": "altname",
|
2278
|
+
"allowed": true,
|
2279
|
+
"value": {
|
2280
|
+
"$oid": "01234567890abcdef0123456"
|
2281
|
+
}
|
2282
|
+
},
|
2283
|
+
"local_objectId_det_auto_id": {
|
2284
|
+
"kms": "local",
|
2285
|
+
"type": "objectId",
|
2286
|
+
"algo": "det",
|
2287
|
+
"method": "auto",
|
2288
|
+
"identifier": "id",
|
2289
|
+
"allowed": true,
|
2290
|
+
"value": {
|
2291
|
+
"$oid": "01234567890abcdef0123456"
|
2292
|
+
}
|
2293
|
+
},
|
2294
|
+
"local_objectId_det_explicit_id": {
|
2295
|
+
"kms": "local",
|
2296
|
+
"type": "objectId",
|
2297
|
+
"algo": "det",
|
2298
|
+
"method": "explicit",
|
2299
|
+
"identifier": "id",
|
2300
|
+
"allowed": true,
|
2301
|
+
"value": {
|
2302
|
+
"$oid": "01234567890abcdef0123456"
|
2303
|
+
}
|
2304
|
+
},
|
2305
|
+
"local_objectId_det_explicit_altname": {
|
2306
|
+
"kms": "local",
|
2307
|
+
"type": "objectId",
|
2308
|
+
"algo": "det",
|
2309
|
+
"method": "explicit",
|
2310
|
+
"identifier": "altname",
|
2311
|
+
"allowed": true,
|
2312
|
+
"value": {
|
2313
|
+
"$oid": "01234567890abcdef0123456"
|
2314
|
+
}
|
2315
|
+
},
|
2316
|
+
"local_bool_rand_auto_id": {
|
2317
|
+
"kms": "local",
|
2318
|
+
"type": "bool",
|
2319
|
+
"algo": "rand",
|
2320
|
+
"method": "auto",
|
2321
|
+
"identifier": "id",
|
2322
|
+
"allowed": true,
|
2323
|
+
"value": true
|
2324
|
+
},
|
2325
|
+
"local_bool_rand_auto_altname": {
|
2326
|
+
"kms": "local",
|
2327
|
+
"type": "bool",
|
2328
|
+
"algo": "rand",
|
2329
|
+
"method": "auto",
|
2330
|
+
"identifier": "altname",
|
2331
|
+
"allowed": true,
|
2332
|
+
"value": true
|
2333
|
+
},
|
2334
|
+
"local_bool_rand_explicit_id": {
|
2335
|
+
"kms": "local",
|
2336
|
+
"type": "bool",
|
2337
|
+
"algo": "rand",
|
2338
|
+
"method": "explicit",
|
2339
|
+
"identifier": "id",
|
2340
|
+
"allowed": true,
|
2341
|
+
"value": true
|
2342
|
+
},
|
2343
|
+
"local_bool_rand_explicit_altname": {
|
2344
|
+
"kms": "local",
|
2345
|
+
"type": "bool",
|
2346
|
+
"algo": "rand",
|
2347
|
+
"method": "explicit",
|
2348
|
+
"identifier": "altname",
|
2349
|
+
"allowed": true,
|
2350
|
+
"value": true
|
2351
|
+
},
|
2352
|
+
"local_bool_det_explicit_id": {
|
2353
|
+
"kms": "local",
|
2354
|
+
"type": "bool",
|
2355
|
+
"algo": "det",
|
2356
|
+
"method": "explicit",
|
2357
|
+
"identifier": "id",
|
2358
|
+
"allowed": false,
|
2359
|
+
"value": true
|
2360
|
+
},
|
2361
|
+
"local_bool_det_explicit_altname": {
|
2362
|
+
"kms": "local",
|
2363
|
+
"type": "bool",
|
2364
|
+
"algo": "det",
|
2365
|
+
"method": "explicit",
|
2366
|
+
"identifier": "altname",
|
2367
|
+
"allowed": false,
|
2368
|
+
"value": true
|
2369
|
+
},
|
2370
|
+
"local_date_rand_auto_id": {
|
2371
|
+
"kms": "local",
|
2372
|
+
"type": "date",
|
2373
|
+
"algo": "rand",
|
2374
|
+
"method": "auto",
|
2375
|
+
"identifier": "id",
|
2376
|
+
"allowed": true,
|
2377
|
+
"value": {
|
2378
|
+
"$date": {
|
2379
|
+
"$numberLong": "12345"
|
2380
|
+
}
|
2381
|
+
}
|
2382
|
+
},
|
2383
|
+
"local_date_rand_auto_altname": {
|
2384
|
+
"kms": "local",
|
2385
|
+
"type": "date",
|
2386
|
+
"algo": "rand",
|
2387
|
+
"method": "auto",
|
2388
|
+
"identifier": "altname",
|
2389
|
+
"allowed": true,
|
2390
|
+
"value": {
|
2391
|
+
"$date": {
|
2392
|
+
"$numberLong": "12345"
|
2393
|
+
}
|
2394
|
+
}
|
2395
|
+
},
|
2396
|
+
"local_date_rand_explicit_id": {
|
2397
|
+
"kms": "local",
|
2398
|
+
"type": "date",
|
2399
|
+
"algo": "rand",
|
2400
|
+
"method": "explicit",
|
2401
|
+
"identifier": "id",
|
2402
|
+
"allowed": true,
|
2403
|
+
"value": {
|
2404
|
+
"$date": {
|
2405
|
+
"$numberLong": "12345"
|
2406
|
+
}
|
2407
|
+
}
|
2408
|
+
},
|
2409
|
+
"local_date_rand_explicit_altname": {
|
2410
|
+
"kms": "local",
|
2411
|
+
"type": "date",
|
2412
|
+
"algo": "rand",
|
2413
|
+
"method": "explicit",
|
2414
|
+
"identifier": "altname",
|
2415
|
+
"allowed": true,
|
2416
|
+
"value": {
|
2417
|
+
"$date": {
|
2418
|
+
"$numberLong": "12345"
|
2419
|
+
}
|
2420
|
+
}
|
2421
|
+
},
|
2422
|
+
"local_date_det_auto_id": {
|
2423
|
+
"kms": "local",
|
2424
|
+
"type": "date",
|
2425
|
+
"algo": "det",
|
2426
|
+
"method": "auto",
|
2427
|
+
"identifier": "id",
|
2428
|
+
"allowed": true,
|
2429
|
+
"value": {
|
2430
|
+
"$date": {
|
2431
|
+
"$numberLong": "12345"
|
2432
|
+
}
|
2433
|
+
}
|
2434
|
+
},
|
2435
|
+
"local_date_det_explicit_id": {
|
2436
|
+
"kms": "local",
|
2437
|
+
"type": "date",
|
2438
|
+
"algo": "det",
|
2439
|
+
"method": "explicit",
|
2440
|
+
"identifier": "id",
|
2441
|
+
"allowed": true,
|
2442
|
+
"value": {
|
2443
|
+
"$date": {
|
2444
|
+
"$numberLong": "12345"
|
2445
|
+
}
|
2446
|
+
}
|
2447
|
+
},
|
2448
|
+
"local_date_det_explicit_altname": {
|
2449
|
+
"kms": "local",
|
2450
|
+
"type": "date",
|
2451
|
+
"algo": "det",
|
2452
|
+
"method": "explicit",
|
2453
|
+
"identifier": "altname",
|
2454
|
+
"allowed": true,
|
2455
|
+
"value": {
|
2456
|
+
"$date": {
|
2457
|
+
"$numberLong": "12345"
|
2458
|
+
}
|
2459
|
+
}
|
2460
|
+
},
|
2461
|
+
"local_null_rand_explicit_id": {
|
2462
|
+
"kms": "local",
|
2463
|
+
"type": "null",
|
2464
|
+
"algo": "rand",
|
2465
|
+
"method": "explicit",
|
2466
|
+
"identifier": "id",
|
2467
|
+
"allowed": false,
|
2468
|
+
"value": null
|
2469
|
+
},
|
2470
|
+
"local_null_rand_explicit_altname": {
|
2471
|
+
"kms": "local",
|
2472
|
+
"type": "null",
|
2473
|
+
"algo": "rand",
|
2474
|
+
"method": "explicit",
|
2475
|
+
"identifier": "altname",
|
2476
|
+
"allowed": false,
|
2477
|
+
"value": null
|
2478
|
+
},
|
2479
|
+
"local_null_det_explicit_id": {
|
2480
|
+
"kms": "local",
|
2481
|
+
"type": "null",
|
2482
|
+
"algo": "det",
|
2483
|
+
"method": "explicit",
|
2484
|
+
"identifier": "id",
|
2485
|
+
"allowed": false,
|
2486
|
+
"value": null
|
2487
|
+
},
|
2488
|
+
"local_null_det_explicit_altname": {
|
2489
|
+
"kms": "local",
|
2490
|
+
"type": "null",
|
2491
|
+
"algo": "det",
|
2492
|
+
"method": "explicit",
|
2493
|
+
"identifier": "altname",
|
2494
|
+
"allowed": false,
|
2495
|
+
"value": null
|
2496
|
+
},
|
2497
|
+
"local_regex_rand_auto_id": {
|
2498
|
+
"kms": "local",
|
2499
|
+
"type": "regex",
|
2500
|
+
"algo": "rand",
|
2501
|
+
"method": "auto",
|
2502
|
+
"identifier": "id",
|
2503
|
+
"allowed": true,
|
2504
|
+
"value": {
|
2505
|
+
"$regularExpression": {
|
2506
|
+
"pattern": ".*",
|
2507
|
+
"options": ""
|
2508
|
+
}
|
2509
|
+
}
|
2510
|
+
},
|
2511
|
+
"local_regex_rand_auto_altname": {
|
2512
|
+
"kms": "local",
|
2513
|
+
"type": "regex",
|
2514
|
+
"algo": "rand",
|
2515
|
+
"method": "auto",
|
2516
|
+
"identifier": "altname",
|
2517
|
+
"allowed": true,
|
2518
|
+
"value": {
|
2519
|
+
"$regularExpression": {
|
2520
|
+
"pattern": ".*",
|
2521
|
+
"options": ""
|
2522
|
+
}
|
2523
|
+
}
|
2524
|
+
},
|
2525
|
+
"local_regex_rand_explicit_id": {
|
2526
|
+
"kms": "local",
|
2527
|
+
"type": "regex",
|
2528
|
+
"algo": "rand",
|
2529
|
+
"method": "explicit",
|
2530
|
+
"identifier": "id",
|
2531
|
+
"allowed": true,
|
2532
|
+
"value": {
|
2533
|
+
"$regularExpression": {
|
2534
|
+
"pattern": ".*",
|
2535
|
+
"options": ""
|
2536
|
+
}
|
2537
|
+
}
|
2538
|
+
},
|
2539
|
+
"local_regex_rand_explicit_altname": {
|
2540
|
+
"kms": "local",
|
2541
|
+
"type": "regex",
|
2542
|
+
"algo": "rand",
|
2543
|
+
"method": "explicit",
|
2544
|
+
"identifier": "altname",
|
2545
|
+
"allowed": true,
|
2546
|
+
"value": {
|
2547
|
+
"$regularExpression": {
|
2548
|
+
"pattern": ".*",
|
2549
|
+
"options": ""
|
2550
|
+
}
|
2551
|
+
}
|
2552
|
+
},
|
2553
|
+
"local_regex_det_auto_id": {
|
2554
|
+
"kms": "local",
|
2555
|
+
"type": "regex",
|
2556
|
+
"algo": "det",
|
2557
|
+
"method": "auto",
|
2558
|
+
"identifier": "id",
|
2559
|
+
"allowed": true,
|
2560
|
+
"value": {
|
2561
|
+
"$regularExpression": {
|
2562
|
+
"pattern": ".*",
|
2563
|
+
"options": ""
|
2564
|
+
}
|
2565
|
+
}
|
2566
|
+
},
|
2567
|
+
"local_regex_det_explicit_id": {
|
2568
|
+
"kms": "local",
|
2569
|
+
"type": "regex",
|
2570
|
+
"algo": "det",
|
2571
|
+
"method": "explicit",
|
2572
|
+
"identifier": "id",
|
2573
|
+
"allowed": true,
|
2574
|
+
"value": {
|
2575
|
+
"$regularExpression": {
|
2576
|
+
"pattern": ".*",
|
2577
|
+
"options": ""
|
2578
|
+
}
|
2579
|
+
}
|
2580
|
+
},
|
2581
|
+
"local_regex_det_explicit_altname": {
|
2582
|
+
"kms": "local",
|
2583
|
+
"type": "regex",
|
2584
|
+
"algo": "det",
|
2585
|
+
"method": "explicit",
|
2586
|
+
"identifier": "altname",
|
2587
|
+
"allowed": true,
|
2588
|
+
"value": {
|
2589
|
+
"$regularExpression": {
|
2590
|
+
"pattern": ".*",
|
2591
|
+
"options": ""
|
2592
|
+
}
|
2593
|
+
}
|
2594
|
+
},
|
2595
|
+
"local_dbPointer_rand_auto_id": {
|
2596
|
+
"kms": "local",
|
2597
|
+
"type": "dbPointer",
|
2598
|
+
"algo": "rand",
|
2599
|
+
"method": "auto",
|
2600
|
+
"identifier": "id",
|
2601
|
+
"allowed": true,
|
2602
|
+
"value": {
|
2603
|
+
"$dbPointer": {
|
2604
|
+
"$ref": "db.example",
|
2605
|
+
"$id": {
|
2606
|
+
"$oid": "01234567890abcdef0123456"
|
2607
|
+
}
|
2608
|
+
}
|
2609
|
+
}
|
2610
|
+
},
|
2611
|
+
"local_dbPointer_rand_auto_altname": {
|
2612
|
+
"kms": "local",
|
2613
|
+
"type": "dbPointer",
|
2614
|
+
"algo": "rand",
|
2615
|
+
"method": "auto",
|
2616
|
+
"identifier": "altname",
|
2617
|
+
"allowed": true,
|
2618
|
+
"value": {
|
2619
|
+
"$dbPointer": {
|
2620
|
+
"$ref": "db.example",
|
2621
|
+
"$id": {
|
2622
|
+
"$oid": "01234567890abcdef0123456"
|
2623
|
+
}
|
2624
|
+
}
|
2625
|
+
}
|
2626
|
+
},
|
2627
|
+
"local_dbPointer_rand_explicit_id": {
|
2628
|
+
"kms": "local",
|
2629
|
+
"type": "dbPointer",
|
2630
|
+
"algo": "rand",
|
2631
|
+
"method": "explicit",
|
2632
|
+
"identifier": "id",
|
2633
|
+
"allowed": true,
|
2634
|
+
"value": {
|
2635
|
+
"$dbPointer": {
|
2636
|
+
"$ref": "db.example",
|
2637
|
+
"$id": {
|
2638
|
+
"$oid": "01234567890abcdef0123456"
|
2639
|
+
}
|
2640
|
+
}
|
2641
|
+
}
|
2642
|
+
},
|
2643
|
+
"local_dbPointer_rand_explicit_altname": {
|
2644
|
+
"kms": "local",
|
2645
|
+
"type": "dbPointer",
|
2646
|
+
"algo": "rand",
|
2647
|
+
"method": "explicit",
|
2648
|
+
"identifier": "altname",
|
2649
|
+
"allowed": true,
|
2650
|
+
"value": {
|
2651
|
+
"$dbPointer": {
|
2652
|
+
"$ref": "db.example",
|
2653
|
+
"$id": {
|
2654
|
+
"$oid": "01234567890abcdef0123456"
|
2655
|
+
}
|
2656
|
+
}
|
2657
|
+
}
|
2658
|
+
},
|
2659
|
+
"local_dbPointer_det_auto_id": {
|
2660
|
+
"kms": "local",
|
2661
|
+
"type": "dbPointer",
|
2662
|
+
"algo": "det",
|
2663
|
+
"method": "auto",
|
2664
|
+
"identifier": "id",
|
2665
|
+
"allowed": true,
|
2666
|
+
"value": {
|
2667
|
+
"$dbPointer": {
|
2668
|
+
"$ref": "db.example",
|
2669
|
+
"$id": {
|
2670
|
+
"$oid": "01234567890abcdef0123456"
|
2671
|
+
}
|
2672
|
+
}
|
2673
|
+
}
|
2674
|
+
},
|
2675
|
+
"local_dbPointer_det_explicit_id": {
|
2676
|
+
"kms": "local",
|
2677
|
+
"type": "dbPointer",
|
2678
|
+
"algo": "det",
|
2679
|
+
"method": "explicit",
|
2680
|
+
"identifier": "id",
|
2681
|
+
"allowed": true,
|
2682
|
+
"value": {
|
2683
|
+
"$dbPointer": {
|
2684
|
+
"$ref": "db.example",
|
2685
|
+
"$id": {
|
2686
|
+
"$oid": "01234567890abcdef0123456"
|
2687
|
+
}
|
2688
|
+
}
|
2689
|
+
}
|
2690
|
+
},
|
2691
|
+
"local_dbPointer_det_explicit_altname": {
|
2692
|
+
"kms": "local",
|
2693
|
+
"type": "dbPointer",
|
2694
|
+
"algo": "det",
|
2695
|
+
"method": "explicit",
|
2696
|
+
"identifier": "altname",
|
2697
|
+
"allowed": true,
|
2698
|
+
"value": {
|
2699
|
+
"$dbPointer": {
|
2700
|
+
"$ref": "db.example",
|
2701
|
+
"$id": {
|
2702
|
+
"$oid": "01234567890abcdef0123456"
|
2703
|
+
}
|
2704
|
+
}
|
2705
|
+
}
|
2706
|
+
},
|
2707
|
+
"local_javascript_rand_auto_id": {
|
2708
|
+
"kms": "local",
|
2709
|
+
"type": "javascript",
|
2710
|
+
"algo": "rand",
|
2711
|
+
"method": "auto",
|
2712
|
+
"identifier": "id",
|
2713
|
+
"allowed": true,
|
2714
|
+
"value": {
|
2715
|
+
"$code": "x=1"
|
2716
|
+
}
|
2717
|
+
},
|
2718
|
+
"local_javascript_rand_auto_altname": {
|
2719
|
+
"kms": "local",
|
2720
|
+
"type": "javascript",
|
2721
|
+
"algo": "rand",
|
2722
|
+
"method": "auto",
|
2723
|
+
"identifier": "altname",
|
2724
|
+
"allowed": true,
|
2725
|
+
"value": {
|
2726
|
+
"$code": "x=1"
|
2727
|
+
}
|
2728
|
+
},
|
2729
|
+
"local_javascript_rand_explicit_id": {
|
2730
|
+
"kms": "local",
|
2731
|
+
"type": "javascript",
|
2732
|
+
"algo": "rand",
|
2733
|
+
"method": "explicit",
|
2734
|
+
"identifier": "id",
|
2735
|
+
"allowed": true,
|
2736
|
+
"value": {
|
2737
|
+
"$code": "x=1"
|
2738
|
+
}
|
2739
|
+
},
|
2740
|
+
"local_javascript_rand_explicit_altname": {
|
2741
|
+
"kms": "local",
|
2742
|
+
"type": "javascript",
|
2743
|
+
"algo": "rand",
|
2744
|
+
"method": "explicit",
|
2745
|
+
"identifier": "altname",
|
2746
|
+
"allowed": true,
|
2747
|
+
"value": {
|
2748
|
+
"$code": "x=1"
|
2749
|
+
}
|
2750
|
+
},
|
2751
|
+
"local_javascript_det_auto_id": {
|
2752
|
+
"kms": "local",
|
2753
|
+
"type": "javascript",
|
2754
|
+
"algo": "det",
|
2755
|
+
"method": "auto",
|
2756
|
+
"identifier": "id",
|
2757
|
+
"allowed": true,
|
2758
|
+
"value": {
|
2759
|
+
"$code": "x=1"
|
2760
|
+
}
|
2761
|
+
},
|
2762
|
+
"local_javascript_det_explicit_id": {
|
2763
|
+
"kms": "local",
|
2764
|
+
"type": "javascript",
|
2765
|
+
"algo": "det",
|
2766
|
+
"method": "explicit",
|
2767
|
+
"identifier": "id",
|
2768
|
+
"allowed": true,
|
2769
|
+
"value": {
|
2770
|
+
"$code": "x=1"
|
2771
|
+
}
|
2772
|
+
},
|
2773
|
+
"local_javascript_det_explicit_altname": {
|
2774
|
+
"kms": "local",
|
2775
|
+
"type": "javascript",
|
2776
|
+
"algo": "det",
|
2777
|
+
"method": "explicit",
|
2778
|
+
"identifier": "altname",
|
2779
|
+
"allowed": true,
|
2780
|
+
"value": {
|
2781
|
+
"$code": "x=1"
|
2782
|
+
}
|
2783
|
+
},
|
2784
|
+
"local_symbol_rand_auto_id": {
|
2785
|
+
"kms": "local",
|
2786
|
+
"type": "symbol",
|
2787
|
+
"algo": "rand",
|
2788
|
+
"method": "auto",
|
2789
|
+
"identifier": "id",
|
2790
|
+
"allowed": true,
|
2791
|
+
"value": {
|
2792
|
+
"$symbol": "mongodb-symbol"
|
2793
|
+
}
|
2794
|
+
},
|
2795
|
+
"local_symbol_rand_auto_altname": {
|
2796
|
+
"kms": "local",
|
2797
|
+
"type": "symbol",
|
2798
|
+
"algo": "rand",
|
2799
|
+
"method": "auto",
|
2800
|
+
"identifier": "altname",
|
2801
|
+
"allowed": true,
|
2802
|
+
"value": {
|
2803
|
+
"$symbol": "mongodb-symbol"
|
2804
|
+
}
|
2805
|
+
},
|
2806
|
+
"local_symbol_rand_explicit_id": {
|
2807
|
+
"kms": "local",
|
2808
|
+
"type": "symbol",
|
2809
|
+
"algo": "rand",
|
2810
|
+
"method": "explicit",
|
2811
|
+
"identifier": "id",
|
2812
|
+
"allowed": true,
|
2813
|
+
"value": {
|
2814
|
+
"$symbol": "mongodb-symbol"
|
2815
|
+
}
|
2816
|
+
},
|
2817
|
+
"local_symbol_rand_explicit_altname": {
|
2818
|
+
"kms": "local",
|
2819
|
+
"type": "symbol",
|
2820
|
+
"algo": "rand",
|
2821
|
+
"method": "explicit",
|
2822
|
+
"identifier": "altname",
|
2823
|
+
"allowed": true,
|
2824
|
+
"value": {
|
2825
|
+
"$symbol": "mongodb-symbol"
|
2826
|
+
}
|
2827
|
+
},
|
2828
|
+
"local_symbol_det_auto_id": {
|
2829
|
+
"kms": "local",
|
2830
|
+
"type": "symbol",
|
2831
|
+
"algo": "det",
|
2832
|
+
"method": "auto",
|
2833
|
+
"identifier": "id",
|
2834
|
+
"allowed": true,
|
2835
|
+
"value": {
|
2836
|
+
"$symbol": "mongodb-symbol"
|
2837
|
+
}
|
2838
|
+
},
|
2839
|
+
"local_symbol_det_explicit_id": {
|
2840
|
+
"kms": "local",
|
2841
|
+
"type": "symbol",
|
2842
|
+
"algo": "det",
|
2843
|
+
"method": "explicit",
|
2844
|
+
"identifier": "id",
|
2845
|
+
"allowed": true,
|
2846
|
+
"value": {
|
2847
|
+
"$symbol": "mongodb-symbol"
|
2848
|
+
}
|
2849
|
+
},
|
2850
|
+
"local_symbol_det_explicit_altname": {
|
2851
|
+
"kms": "local",
|
2852
|
+
"type": "symbol",
|
2853
|
+
"algo": "det",
|
2854
|
+
"method": "explicit",
|
2855
|
+
"identifier": "altname",
|
2856
|
+
"allowed": true,
|
2857
|
+
"value": {
|
2858
|
+
"$symbol": "mongodb-symbol"
|
2859
|
+
}
|
2860
|
+
},
|
2861
|
+
"local_javascriptWithScope_rand_auto_id": {
|
2862
|
+
"kms": "local",
|
2863
|
+
"type": "javascriptWithScope",
|
2864
|
+
"algo": "rand",
|
2865
|
+
"method": "auto",
|
2866
|
+
"identifier": "id",
|
2867
|
+
"allowed": true,
|
2868
|
+
"value": {
|
2869
|
+
"$code": "x=1",
|
2870
|
+
"$scope": {
|
2871
|
+
|
2872
|
+
}
|
2873
|
+
}
|
2874
|
+
},
|
2875
|
+
"local_javascriptWithScope_rand_auto_altname": {
|
2876
|
+
"kms": "local",
|
2877
|
+
"type": "javascriptWithScope",
|
2878
|
+
"algo": "rand",
|
2879
|
+
"method": "auto",
|
2880
|
+
"identifier": "altname",
|
2881
|
+
"allowed": true,
|
2882
|
+
"value": {
|
2883
|
+
"$code": "x=1",
|
2884
|
+
"$scope": {
|
2885
|
+
|
2886
|
+
}
|
2887
|
+
}
|
2888
|
+
},
|
2889
|
+
"local_javascriptWithScope_rand_explicit_id": {
|
2890
|
+
"kms": "local",
|
2891
|
+
"type": "javascriptWithScope",
|
2892
|
+
"algo": "rand",
|
2893
|
+
"method": "explicit",
|
2894
|
+
"identifier": "id",
|
2895
|
+
"allowed": true,
|
2896
|
+
"value": {
|
2897
|
+
"$code": "x=1",
|
2898
|
+
"$scope": {
|
2899
|
+
|
2900
|
+
}
|
2901
|
+
}
|
2902
|
+
},
|
2903
|
+
"local_javascriptWithScope_rand_explicit_altname": {
|
2904
|
+
"kms": "local",
|
2905
|
+
"type": "javascriptWithScope",
|
2906
|
+
"algo": "rand",
|
2907
|
+
"method": "explicit",
|
2908
|
+
"identifier": "altname",
|
2909
|
+
"allowed": true,
|
2910
|
+
"value": {
|
2911
|
+
"$code": "x=1",
|
2912
|
+
"$scope": {
|
2913
|
+
|
2914
|
+
}
|
2915
|
+
}
|
2916
|
+
},
|
2917
|
+
"local_javascriptWithScope_det_explicit_id": {
|
2918
|
+
"kms": "local",
|
2919
|
+
"type": "javascriptWithScope",
|
2920
|
+
"algo": "det",
|
2921
|
+
"method": "explicit",
|
2922
|
+
"identifier": "id",
|
2923
|
+
"allowed": false,
|
2924
|
+
"value": {
|
2925
|
+
"$code": "x=1",
|
2926
|
+
"$scope": {
|
2927
|
+
|
2928
|
+
}
|
2929
|
+
}
|
2930
|
+
},
|
2931
|
+
"local_javascriptWithScope_det_explicit_altname": {
|
2932
|
+
"kms": "local",
|
2933
|
+
"type": "javascriptWithScope",
|
2934
|
+
"algo": "det",
|
2935
|
+
"method": "explicit",
|
2936
|
+
"identifier": "altname",
|
2937
|
+
"allowed": false,
|
2938
|
+
"value": {
|
2939
|
+
"$code": "x=1",
|
2940
|
+
"$scope": {
|
2941
|
+
|
2942
|
+
}
|
2943
|
+
}
|
2944
|
+
},
|
2945
|
+
"local_int_rand_auto_id": {
|
2946
|
+
"kms": "local",
|
2947
|
+
"type": "int",
|
2948
|
+
"algo": "rand",
|
2949
|
+
"method": "auto",
|
2950
|
+
"identifier": "id",
|
2951
|
+
"allowed": true,
|
2952
|
+
"value": {
|
2953
|
+
"$numberInt": "123"
|
2954
|
+
}
|
2955
|
+
},
|
2956
|
+
"local_int_rand_auto_altname": {
|
2957
|
+
"kms": "local",
|
2958
|
+
"type": "int",
|
2959
|
+
"algo": "rand",
|
2960
|
+
"method": "auto",
|
2961
|
+
"identifier": "altname",
|
2962
|
+
"allowed": true,
|
2963
|
+
"value": {
|
2964
|
+
"$numberInt": "123"
|
2965
|
+
}
|
2966
|
+
},
|
2967
|
+
"local_int_rand_explicit_id": {
|
2968
|
+
"kms": "local",
|
2969
|
+
"type": "int",
|
2970
|
+
"algo": "rand",
|
2971
|
+
"method": "explicit",
|
2972
|
+
"identifier": "id",
|
2973
|
+
"allowed": true,
|
2974
|
+
"value": {
|
2975
|
+
"$numberInt": "123"
|
2976
|
+
}
|
2977
|
+
},
|
2978
|
+
"local_int_rand_explicit_altname": {
|
2979
|
+
"kms": "local",
|
2980
|
+
"type": "int",
|
2981
|
+
"algo": "rand",
|
2982
|
+
"method": "explicit",
|
2983
|
+
"identifier": "altname",
|
2984
|
+
"allowed": true,
|
2985
|
+
"value": {
|
2986
|
+
"$numberInt": "123"
|
2987
|
+
}
|
2988
|
+
},
|
2989
|
+
"local_int_det_auto_id": {
|
2990
|
+
"kms": "local",
|
2991
|
+
"type": "int",
|
2992
|
+
"algo": "det",
|
2993
|
+
"method": "auto",
|
2994
|
+
"identifier": "id",
|
2995
|
+
"allowed": true,
|
2996
|
+
"value": {
|
2997
|
+
"$numberInt": "123"
|
2998
|
+
}
|
2999
|
+
},
|
3000
|
+
"local_int_det_explicit_id": {
|
3001
|
+
"kms": "local",
|
3002
|
+
"type": "int",
|
3003
|
+
"algo": "det",
|
3004
|
+
"method": "explicit",
|
3005
|
+
"identifier": "id",
|
3006
|
+
"allowed": true,
|
3007
|
+
"value": {
|
3008
|
+
"$numberInt": "123"
|
3009
|
+
}
|
3010
|
+
},
|
3011
|
+
"local_int_det_explicit_altname": {
|
3012
|
+
"kms": "local",
|
3013
|
+
"type": "int",
|
3014
|
+
"algo": "det",
|
3015
|
+
"method": "explicit",
|
3016
|
+
"identifier": "altname",
|
3017
|
+
"allowed": true,
|
3018
|
+
"value": {
|
3019
|
+
"$numberInt": "123"
|
3020
|
+
}
|
3021
|
+
},
|
3022
|
+
"local_timestamp_rand_auto_id": {
|
3023
|
+
"kms": "local",
|
3024
|
+
"type": "timestamp",
|
3025
|
+
"algo": "rand",
|
3026
|
+
"method": "auto",
|
3027
|
+
"identifier": "id",
|
3028
|
+
"allowed": true,
|
3029
|
+
"value": {
|
3030
|
+
"$timestamp": {
|
3031
|
+
"t": 0,
|
3032
|
+
"i": 12345
|
3033
|
+
}
|
3034
|
+
}
|
3035
|
+
},
|
3036
|
+
"local_timestamp_rand_auto_altname": {
|
3037
|
+
"kms": "local",
|
3038
|
+
"type": "timestamp",
|
3039
|
+
"algo": "rand",
|
3040
|
+
"method": "auto",
|
3041
|
+
"identifier": "altname",
|
3042
|
+
"allowed": true,
|
3043
|
+
"value": {
|
3044
|
+
"$timestamp": {
|
3045
|
+
"t": 0,
|
3046
|
+
"i": 12345
|
3047
|
+
}
|
3048
|
+
}
|
3049
|
+
},
|
3050
|
+
"local_timestamp_rand_explicit_id": {
|
3051
|
+
"kms": "local",
|
3052
|
+
"type": "timestamp",
|
3053
|
+
"algo": "rand",
|
3054
|
+
"method": "explicit",
|
3055
|
+
"identifier": "id",
|
3056
|
+
"allowed": true,
|
3057
|
+
"value": {
|
3058
|
+
"$timestamp": {
|
3059
|
+
"t": 0,
|
3060
|
+
"i": 12345
|
3061
|
+
}
|
3062
|
+
}
|
3063
|
+
},
|
3064
|
+
"local_timestamp_rand_explicit_altname": {
|
3065
|
+
"kms": "local",
|
3066
|
+
"type": "timestamp",
|
3067
|
+
"algo": "rand",
|
3068
|
+
"method": "explicit",
|
3069
|
+
"identifier": "altname",
|
3070
|
+
"allowed": true,
|
3071
|
+
"value": {
|
3072
|
+
"$timestamp": {
|
3073
|
+
"t": 0,
|
3074
|
+
"i": 12345
|
3075
|
+
}
|
3076
|
+
}
|
3077
|
+
},
|
3078
|
+
"local_timestamp_det_auto_id": {
|
3079
|
+
"kms": "local",
|
3080
|
+
"type": "timestamp",
|
3081
|
+
"algo": "det",
|
3082
|
+
"method": "auto",
|
3083
|
+
"identifier": "id",
|
3084
|
+
"allowed": true,
|
3085
|
+
"value": {
|
3086
|
+
"$timestamp": {
|
3087
|
+
"t": 0,
|
3088
|
+
"i": 12345
|
3089
|
+
}
|
3090
|
+
}
|
3091
|
+
},
|
3092
|
+
"local_timestamp_det_explicit_id": {
|
3093
|
+
"kms": "local",
|
3094
|
+
"type": "timestamp",
|
3095
|
+
"algo": "det",
|
3096
|
+
"method": "explicit",
|
3097
|
+
"identifier": "id",
|
3098
|
+
"allowed": true,
|
3099
|
+
"value": {
|
3100
|
+
"$timestamp": {
|
3101
|
+
"t": 0,
|
3102
|
+
"i": 12345
|
3103
|
+
}
|
3104
|
+
}
|
3105
|
+
},
|
3106
|
+
"local_timestamp_det_explicit_altname": {
|
3107
|
+
"kms": "local",
|
3108
|
+
"type": "timestamp",
|
3109
|
+
"algo": "det",
|
3110
|
+
"method": "explicit",
|
3111
|
+
"identifier": "altname",
|
3112
|
+
"allowed": true,
|
3113
|
+
"value": {
|
3114
|
+
"$timestamp": {
|
3115
|
+
"t": 0,
|
3116
|
+
"i": 12345
|
3117
|
+
}
|
3118
|
+
}
|
3119
|
+
},
|
3120
|
+
"local_long_rand_auto_id": {
|
3121
|
+
"kms": "local",
|
3122
|
+
"type": "long",
|
3123
|
+
"algo": "rand",
|
3124
|
+
"method": "auto",
|
3125
|
+
"identifier": "id",
|
3126
|
+
"allowed": true,
|
3127
|
+
"value": {
|
3128
|
+
"$numberLong": "456"
|
3129
|
+
}
|
3130
|
+
},
|
3131
|
+
"local_long_rand_auto_altname": {
|
3132
|
+
"kms": "local",
|
3133
|
+
"type": "long",
|
3134
|
+
"algo": "rand",
|
3135
|
+
"method": "auto",
|
3136
|
+
"identifier": "altname",
|
3137
|
+
"allowed": true,
|
3138
|
+
"value": {
|
3139
|
+
"$numberLong": "456"
|
3140
|
+
}
|
3141
|
+
},
|
3142
|
+
"local_long_rand_explicit_id": {
|
3143
|
+
"kms": "local",
|
3144
|
+
"type": "long",
|
3145
|
+
"algo": "rand",
|
3146
|
+
"method": "explicit",
|
3147
|
+
"identifier": "id",
|
3148
|
+
"allowed": true,
|
3149
|
+
"value": {
|
3150
|
+
"$numberLong": "456"
|
3151
|
+
}
|
3152
|
+
},
|
3153
|
+
"local_long_rand_explicit_altname": {
|
3154
|
+
"kms": "local",
|
3155
|
+
"type": "long",
|
3156
|
+
"algo": "rand",
|
3157
|
+
"method": "explicit",
|
3158
|
+
"identifier": "altname",
|
3159
|
+
"allowed": true,
|
3160
|
+
"value": {
|
3161
|
+
"$numberLong": "456"
|
3162
|
+
}
|
3163
|
+
},
|
3164
|
+
"local_long_det_auto_id": {
|
3165
|
+
"kms": "local",
|
3166
|
+
"type": "long",
|
3167
|
+
"algo": "det",
|
3168
|
+
"method": "auto",
|
3169
|
+
"identifier": "id",
|
3170
|
+
"allowed": true,
|
3171
|
+
"value": {
|
3172
|
+
"$numberLong": "456"
|
3173
|
+
}
|
3174
|
+
},
|
3175
|
+
"local_long_det_explicit_id": {
|
3176
|
+
"kms": "local",
|
3177
|
+
"type": "long",
|
3178
|
+
"algo": "det",
|
3179
|
+
"method": "explicit",
|
3180
|
+
"identifier": "id",
|
3181
|
+
"allowed": true,
|
3182
|
+
"value": {
|
3183
|
+
"$numberLong": "456"
|
3184
|
+
}
|
3185
|
+
},
|
3186
|
+
"local_long_det_explicit_altname": {
|
3187
|
+
"kms": "local",
|
3188
|
+
"type": "long",
|
3189
|
+
"algo": "det",
|
3190
|
+
"method": "explicit",
|
3191
|
+
"identifier": "altname",
|
3192
|
+
"allowed": true,
|
3193
|
+
"value": {
|
3194
|
+
"$numberLong": "456"
|
3195
|
+
}
|
3196
|
+
},
|
3197
|
+
"local_decimal_rand_auto_id": {
|
3198
|
+
"kms": "local",
|
3199
|
+
"type": "decimal",
|
3200
|
+
"algo": "rand",
|
3201
|
+
"method": "auto",
|
3202
|
+
"identifier": "id",
|
3203
|
+
"allowed": true,
|
3204
|
+
"value": {
|
3205
|
+
"$numberDecimal": "1.234"
|
3206
|
+
}
|
3207
|
+
},
|
3208
|
+
"local_decimal_rand_auto_altname": {
|
3209
|
+
"kms": "local",
|
3210
|
+
"type": "decimal",
|
3211
|
+
"algo": "rand",
|
3212
|
+
"method": "auto",
|
3213
|
+
"identifier": "altname",
|
3214
|
+
"allowed": true,
|
3215
|
+
"value": {
|
3216
|
+
"$numberDecimal": "1.234"
|
3217
|
+
}
|
3218
|
+
},
|
3219
|
+
"local_decimal_rand_explicit_id": {
|
3220
|
+
"kms": "local",
|
3221
|
+
"type": "decimal",
|
3222
|
+
"algo": "rand",
|
3223
|
+
"method": "explicit",
|
3224
|
+
"identifier": "id",
|
3225
|
+
"allowed": true,
|
3226
|
+
"value": {
|
3227
|
+
"$numberDecimal": "1.234"
|
3228
|
+
}
|
3229
|
+
},
|
3230
|
+
"local_decimal_rand_explicit_altname": {
|
3231
|
+
"kms": "local",
|
3232
|
+
"type": "decimal",
|
3233
|
+
"algo": "rand",
|
3234
|
+
"method": "explicit",
|
3235
|
+
"identifier": "altname",
|
3236
|
+
"allowed": true,
|
3237
|
+
"value": {
|
3238
|
+
"$numberDecimal": "1.234"
|
3239
|
+
}
|
3240
|
+
},
|
3241
|
+
"local_decimal_det_explicit_id": {
|
3242
|
+
"kms": "local",
|
3243
|
+
"type": "decimal",
|
3244
|
+
"algo": "det",
|
3245
|
+
"method": "explicit",
|
3246
|
+
"identifier": "id",
|
3247
|
+
"allowed": false,
|
3248
|
+
"value": {
|
3249
|
+
"$numberDecimal": "1.234"
|
3250
|
+
}
|
3251
|
+
},
|
3252
|
+
"local_decimal_det_explicit_altname": {
|
3253
|
+
"kms": "local",
|
3254
|
+
"type": "decimal",
|
3255
|
+
"algo": "det",
|
3256
|
+
"method": "explicit",
|
3257
|
+
"identifier": "altname",
|
3258
|
+
"allowed": false,
|
3259
|
+
"value": {
|
3260
|
+
"$numberDecimal": "1.234"
|
3261
|
+
}
|
3262
|
+
},
|
3263
|
+
"local_minKey_rand_explicit_id": {
|
3264
|
+
"kms": "local",
|
3265
|
+
"type": "minKey",
|
3266
|
+
"algo": "rand",
|
3267
|
+
"method": "explicit",
|
3268
|
+
"identifier": "id",
|
3269
|
+
"allowed": false,
|
3270
|
+
"value": {
|
3271
|
+
"$minKey": 1
|
3272
|
+
}
|
3273
|
+
},
|
3274
|
+
"local_minKey_rand_explicit_altname": {
|
3275
|
+
"kms": "local",
|
3276
|
+
"type": "minKey",
|
3277
|
+
"algo": "rand",
|
3278
|
+
"method": "explicit",
|
3279
|
+
"identifier": "altname",
|
3280
|
+
"allowed": false,
|
3281
|
+
"value": {
|
3282
|
+
"$minKey": 1
|
3283
|
+
}
|
3284
|
+
},
|
3285
|
+
"local_minKey_det_explicit_id": {
|
3286
|
+
"kms": "local",
|
3287
|
+
"type": "minKey",
|
3288
|
+
"algo": "det",
|
3289
|
+
"method": "explicit",
|
3290
|
+
"identifier": "id",
|
3291
|
+
"allowed": false,
|
3292
|
+
"value": {
|
3293
|
+
"$minKey": 1
|
3294
|
+
}
|
3295
|
+
},
|
3296
|
+
"local_minKey_det_explicit_altname": {
|
3297
|
+
"kms": "local",
|
3298
|
+
"type": "minKey",
|
3299
|
+
"algo": "det",
|
3300
|
+
"method": "explicit",
|
3301
|
+
"identifier": "altname",
|
3302
|
+
"allowed": false,
|
3303
|
+
"value": {
|
3304
|
+
"$minKey": 1
|
3305
|
+
}
|
3306
|
+
},
|
3307
|
+
"local_maxKey_rand_explicit_id": {
|
3308
|
+
"kms": "local",
|
3309
|
+
"type": "maxKey",
|
3310
|
+
"algo": "rand",
|
3311
|
+
"method": "explicit",
|
3312
|
+
"identifier": "id",
|
3313
|
+
"allowed": false,
|
3314
|
+
"value": {
|
3315
|
+
"$maxKey": 1
|
3316
|
+
}
|
3317
|
+
},
|
3318
|
+
"local_maxKey_rand_explicit_altname": {
|
3319
|
+
"kms": "local",
|
3320
|
+
"type": "maxKey",
|
3321
|
+
"algo": "rand",
|
3322
|
+
"method": "explicit",
|
3323
|
+
"identifier": "altname",
|
3324
|
+
"allowed": false,
|
3325
|
+
"value": {
|
3326
|
+
"$maxKey": 1
|
3327
|
+
}
|
3328
|
+
},
|
3329
|
+
"local_maxKey_det_explicit_id": {
|
3330
|
+
"kms": "local",
|
3331
|
+
"type": "maxKey",
|
3332
|
+
"algo": "det",
|
3333
|
+
"method": "explicit",
|
3334
|
+
"identifier": "id",
|
3335
|
+
"allowed": false,
|
3336
|
+
"value": {
|
3337
|
+
"$maxKey": 1
|
3338
|
+
}
|
3339
|
+
},
|
3340
|
+
"local_maxKey_det_explicit_altname": {
|
3341
|
+
"kms": "local",
|
3342
|
+
"type": "maxKey",
|
3343
|
+
"algo": "det",
|
3344
|
+
"method": "explicit",
|
3345
|
+
"identifier": "altname",
|
3346
|
+
"allowed": false,
|
3347
|
+
"value": {
|
3348
|
+
"$maxKey": 1
|
3349
|
+
}
|
3350
|
+
},
|
3351
|
+
"payload=0,algo=rand": {
|
3352
|
+
"kms": "local",
|
3353
|
+
"type": "string",
|
3354
|
+
"algo": "rand",
|
3355
|
+
"method": "explicit",
|
3356
|
+
"identifier": "id",
|
3357
|
+
"allowed": true,
|
3358
|
+
"value": ""
|
3359
|
+
},
|
3360
|
+
"payload=1,algo=rand": {
|
3361
|
+
"kms": "local",
|
3362
|
+
"type": "string",
|
3363
|
+
"algo": "rand",
|
3364
|
+
"method": "explicit",
|
3365
|
+
"identifier": "id",
|
3366
|
+
"allowed": true,
|
3367
|
+
"value": "a"
|
3368
|
+
},
|
3369
|
+
"payload=2,algo=rand": {
|
3370
|
+
"kms": "local",
|
3371
|
+
"type": "string",
|
3372
|
+
"algo": "rand",
|
3373
|
+
"method": "explicit",
|
3374
|
+
"identifier": "id",
|
3375
|
+
"allowed": true,
|
3376
|
+
"value": "aa"
|
3377
|
+
},
|
3378
|
+
"payload=3,algo=rand": {
|
3379
|
+
"kms": "local",
|
3380
|
+
"type": "string",
|
3381
|
+
"algo": "rand",
|
3382
|
+
"method": "explicit",
|
3383
|
+
"identifier": "id",
|
3384
|
+
"allowed": true,
|
3385
|
+
"value": "aaa"
|
3386
|
+
},
|
3387
|
+
"payload=4,algo=rand": {
|
3388
|
+
"kms": "local",
|
3389
|
+
"type": "string",
|
3390
|
+
"algo": "rand",
|
3391
|
+
"method": "explicit",
|
3392
|
+
"identifier": "id",
|
3393
|
+
"allowed": true,
|
3394
|
+
"value": "aaaa"
|
3395
|
+
},
|
3396
|
+
"payload=5,algo=rand": {
|
3397
|
+
"kms": "local",
|
3398
|
+
"type": "string",
|
3399
|
+
"algo": "rand",
|
3400
|
+
"method": "explicit",
|
3401
|
+
"identifier": "id",
|
3402
|
+
"allowed": true,
|
3403
|
+
"value": "aaaaa"
|
3404
|
+
},
|
3405
|
+
"payload=6,algo=rand": {
|
3406
|
+
"kms": "local",
|
3407
|
+
"type": "string",
|
3408
|
+
"algo": "rand",
|
3409
|
+
"method": "explicit",
|
3410
|
+
"identifier": "id",
|
3411
|
+
"allowed": true,
|
3412
|
+
"value": "aaaaaa"
|
3413
|
+
},
|
3414
|
+
"payload=7,algo=rand": {
|
3415
|
+
"kms": "local",
|
3416
|
+
"type": "string",
|
3417
|
+
"algo": "rand",
|
3418
|
+
"method": "explicit",
|
3419
|
+
"identifier": "id",
|
3420
|
+
"allowed": true,
|
3421
|
+
"value": "aaaaaaa"
|
3422
|
+
},
|
3423
|
+
"payload=8,algo=rand": {
|
3424
|
+
"kms": "local",
|
3425
|
+
"type": "string",
|
3426
|
+
"algo": "rand",
|
3427
|
+
"method": "explicit",
|
3428
|
+
"identifier": "id",
|
3429
|
+
"allowed": true,
|
3430
|
+
"value": "aaaaaaaa"
|
3431
|
+
},
|
3432
|
+
"payload=9,algo=rand": {
|
3433
|
+
"kms": "local",
|
3434
|
+
"type": "string",
|
3435
|
+
"algo": "rand",
|
3436
|
+
"method": "explicit",
|
3437
|
+
"identifier": "id",
|
3438
|
+
"allowed": true,
|
3439
|
+
"value": "aaaaaaaaa"
|
3440
|
+
},
|
3441
|
+
"payload=10,algo=rand": {
|
3442
|
+
"kms": "local",
|
3443
|
+
"type": "string",
|
3444
|
+
"algo": "rand",
|
3445
|
+
"method": "explicit",
|
3446
|
+
"identifier": "id",
|
3447
|
+
"allowed": true,
|
3448
|
+
"value": "aaaaaaaaaa"
|
3449
|
+
},
|
3450
|
+
"payload=11,algo=rand": {
|
3451
|
+
"kms": "local",
|
3452
|
+
"type": "string",
|
3453
|
+
"algo": "rand",
|
3454
|
+
"method": "explicit",
|
3455
|
+
"identifier": "id",
|
3456
|
+
"allowed": true,
|
3457
|
+
"value": "aaaaaaaaaaa"
|
3458
|
+
},
|
3459
|
+
"payload=12,algo=rand": {
|
3460
|
+
"kms": "local",
|
3461
|
+
"type": "string",
|
3462
|
+
"algo": "rand",
|
3463
|
+
"method": "explicit",
|
3464
|
+
"identifier": "id",
|
3465
|
+
"allowed": true,
|
3466
|
+
"value": "aaaaaaaaaaaa"
|
3467
|
+
},
|
3468
|
+
"payload=13,algo=rand": {
|
3469
|
+
"kms": "local",
|
3470
|
+
"type": "string",
|
3471
|
+
"algo": "rand",
|
3472
|
+
"method": "explicit",
|
3473
|
+
"identifier": "id",
|
3474
|
+
"allowed": true,
|
3475
|
+
"value": "aaaaaaaaaaaaa"
|
3476
|
+
},
|
3477
|
+
"payload=14,algo=rand": {
|
3478
|
+
"kms": "local",
|
3479
|
+
"type": "string",
|
3480
|
+
"algo": "rand",
|
3481
|
+
"method": "explicit",
|
3482
|
+
"identifier": "id",
|
3483
|
+
"allowed": true,
|
3484
|
+
"value": "aaaaaaaaaaaaaa"
|
3485
|
+
},
|
3486
|
+
"payload=15,algo=rand": {
|
3487
|
+
"kms": "local",
|
3488
|
+
"type": "string",
|
3489
|
+
"algo": "rand",
|
3490
|
+
"method": "explicit",
|
3491
|
+
"identifier": "id",
|
3492
|
+
"allowed": true,
|
3493
|
+
"value": "aaaaaaaaaaaaaaa"
|
3494
|
+
},
|
3495
|
+
"payload=16,algo=rand": {
|
3496
|
+
"kms": "local",
|
3497
|
+
"type": "string",
|
3498
|
+
"algo": "rand",
|
3499
|
+
"method": "explicit",
|
3500
|
+
"identifier": "id",
|
3501
|
+
"allowed": true,
|
3502
|
+
"value": "aaaaaaaaaaaaaaaa"
|
3503
|
+
},
|
3504
|
+
"payload=0,algo=det": {
|
3505
|
+
"kms": "local",
|
3506
|
+
"type": "string",
|
3507
|
+
"algo": "det",
|
3508
|
+
"method": "explicit",
|
3509
|
+
"identifier": "id",
|
3510
|
+
"allowed": true,
|
3511
|
+
"value": ""
|
3512
|
+
},
|
3513
|
+
"payload=1,algo=det": {
|
3514
|
+
"kms": "local",
|
3515
|
+
"type": "string",
|
3516
|
+
"algo": "det",
|
3517
|
+
"method": "explicit",
|
3518
|
+
"identifier": "id",
|
3519
|
+
"allowed": true,
|
3520
|
+
"value": "a"
|
3521
|
+
},
|
3522
|
+
"payload=2,algo=det": {
|
3523
|
+
"kms": "local",
|
3524
|
+
"type": "string",
|
3525
|
+
"algo": "det",
|
3526
|
+
"method": "explicit",
|
3527
|
+
"identifier": "id",
|
3528
|
+
"allowed": true,
|
3529
|
+
"value": "aa"
|
3530
|
+
},
|
3531
|
+
"payload=3,algo=det": {
|
3532
|
+
"kms": "local",
|
3533
|
+
"type": "string",
|
3534
|
+
"algo": "det",
|
3535
|
+
"method": "explicit",
|
3536
|
+
"identifier": "id",
|
3537
|
+
"allowed": true,
|
3538
|
+
"value": "aaa"
|
3539
|
+
},
|
3540
|
+
"payload=4,algo=det": {
|
3541
|
+
"kms": "local",
|
3542
|
+
"type": "string",
|
3543
|
+
"algo": "det",
|
3544
|
+
"method": "explicit",
|
3545
|
+
"identifier": "id",
|
3546
|
+
"allowed": true,
|
3547
|
+
"value": "aaaa"
|
3548
|
+
},
|
3549
|
+
"payload=5,algo=det": {
|
3550
|
+
"kms": "local",
|
3551
|
+
"type": "string",
|
3552
|
+
"algo": "det",
|
3553
|
+
"method": "explicit",
|
3554
|
+
"identifier": "id",
|
3555
|
+
"allowed": true,
|
3556
|
+
"value": "aaaaa"
|
3557
|
+
},
|
3558
|
+
"payload=6,algo=det": {
|
3559
|
+
"kms": "local",
|
3560
|
+
"type": "string",
|
3561
|
+
"algo": "det",
|
3562
|
+
"method": "explicit",
|
3563
|
+
"identifier": "id",
|
3564
|
+
"allowed": true,
|
3565
|
+
"value": "aaaaaa"
|
3566
|
+
},
|
3567
|
+
"payload=7,algo=det": {
|
3568
|
+
"kms": "local",
|
3569
|
+
"type": "string",
|
3570
|
+
"algo": "det",
|
3571
|
+
"method": "explicit",
|
3572
|
+
"identifier": "id",
|
3573
|
+
"allowed": true,
|
3574
|
+
"value": "aaaaaaa"
|
3575
|
+
},
|
3576
|
+
"payload=8,algo=det": {
|
3577
|
+
"kms": "local",
|
3578
|
+
"type": "string",
|
3579
|
+
"algo": "det",
|
3580
|
+
"method": "explicit",
|
3581
|
+
"identifier": "id",
|
3582
|
+
"allowed": true,
|
3583
|
+
"value": "aaaaaaaa"
|
3584
|
+
},
|
3585
|
+
"payload=9,algo=det": {
|
3586
|
+
"kms": "local",
|
3587
|
+
"type": "string",
|
3588
|
+
"algo": "det",
|
3589
|
+
"method": "explicit",
|
3590
|
+
"identifier": "id",
|
3591
|
+
"allowed": true,
|
3592
|
+
"value": "aaaaaaaaa"
|
3593
|
+
},
|
3594
|
+
"payload=10,algo=det": {
|
3595
|
+
"kms": "local",
|
3596
|
+
"type": "string",
|
3597
|
+
"algo": "det",
|
3598
|
+
"method": "explicit",
|
3599
|
+
"identifier": "id",
|
3600
|
+
"allowed": true,
|
3601
|
+
"value": "aaaaaaaaaa"
|
3602
|
+
},
|
3603
|
+
"payload=11,algo=det": {
|
3604
|
+
"kms": "local",
|
3605
|
+
"type": "string",
|
3606
|
+
"algo": "det",
|
3607
|
+
"method": "explicit",
|
3608
|
+
"identifier": "id",
|
3609
|
+
"allowed": true,
|
3610
|
+
"value": "aaaaaaaaaaa"
|
3611
|
+
},
|
3612
|
+
"payload=12,algo=det": {
|
3613
|
+
"kms": "local",
|
3614
|
+
"type": "string",
|
3615
|
+
"algo": "det",
|
3616
|
+
"method": "explicit",
|
3617
|
+
"identifier": "id",
|
3618
|
+
"allowed": true,
|
3619
|
+
"value": "aaaaaaaaaaaa"
|
3620
|
+
},
|
3621
|
+
"payload=13,algo=det": {
|
3622
|
+
"kms": "local",
|
3623
|
+
"type": "string",
|
3624
|
+
"algo": "det",
|
3625
|
+
"method": "explicit",
|
3626
|
+
"identifier": "id",
|
3627
|
+
"allowed": true,
|
3628
|
+
"value": "aaaaaaaaaaaaa"
|
3629
|
+
},
|
3630
|
+
"payload=14,algo=det": {
|
3631
|
+
"kms": "local",
|
3632
|
+
"type": "string",
|
3633
|
+
"algo": "det",
|
3634
|
+
"method": "explicit",
|
3635
|
+
"identifier": "id",
|
3636
|
+
"allowed": true,
|
3637
|
+
"value": "aaaaaaaaaaaaaa"
|
3638
|
+
},
|
3639
|
+
"payload=15,algo=det": {
|
3640
|
+
"kms": "local",
|
3641
|
+
"type": "string",
|
3642
|
+
"algo": "det",
|
3643
|
+
"method": "explicit",
|
3644
|
+
"identifier": "id",
|
3645
|
+
"allowed": true,
|
3646
|
+
"value": "aaaaaaaaaaaaaaa"
|
3647
|
+
},
|
3648
|
+
"payload=16,algo=det": {
|
3649
|
+
"kms": "local",
|
3650
|
+
"type": "string",
|
3651
|
+
"algo": "det",
|
3652
|
+
"method": "explicit",
|
3653
|
+
"identifier": "id",
|
3654
|
+
"allowed": true,
|
3655
|
+
"value": "aaaaaaaaaaaaaaaa"
|
3656
|
+
}
|
3657
|
+
}
|