MongoDB C++ Driver mongocxx-3.10.1
Loading...
Searching...
No Matches
Public Types | Public Member Functions | List of all members
mongocxx::v_noabi::validation_criteria Class Reference

Class representing criteria for document validation, to be applied to a collection. More...

#include <validation_criteria.hpp>

Public Types

enum class  validation_level
 A class to represent the different validation level options. More...
 
enum class  validation_action
 A class to represent the different validation action options. More...
 

Public Member Functions

validation_criteriarule (bsoncxx::v_noabi::document::view_or_value rule)
 Sets a validation rule for this validation object.
 
const stdx::optional< bsoncxx::v_noabi::document::view_or_value > & rule () const
 Gets the validation rule for this validation object.
 
validation_criterialevel (validation_level level)
 Sets a validation level.
 
const stdx::optional< validation_level > & level () const
 Gets the validation level.
 
validation_criteriaaction (validation_action action)
 Sets a validation action to run when documents failing validation are inserted or modified.
 
const stdx::optional< validation_action > & action () const
 Gets the validation action to run when documents failing validation are inserted or modified.
 
bsoncxx::v_noabi::document::value to_document () const
 Returns a bson document representing this set of validation criteria.
 
 operator bsoncxx::v_noabi::document::value () const
 

Detailed Description

Class representing criteria for document validation, to be applied to a collection.

See also
https://www.mongodb.com/docs/manual/core/document-validation/

Member Enumeration Documentation

◆ validation_action

A class to represent the different validation action options.

  • k_error: Reject any insertion or update that violates the validation criteria.
  • k_warn: Log any violations of the validation criteria, but allow the insertion or update to proceed.

◆ validation_level

A class to represent the different validation level options.

  • k_off: Disable validation entirely.
  • k_moderate: Apply validation rules to inserts, and apply validation rules to updates only if the document to be updated already fulfills the validation criteria.
  • k_strict: Apply validation rules to all inserts and updates.

Member Function Documentation

◆ action() [1/2]

const stdx::optional< validation_action > & mongocxx::v_noabi::validation_criteria::action ( ) const

Gets the validation action to run when documents failing validation are inserted or modified.

Returns
The enumerated validation action.

◆ action() [2/2]

validation_criteria & mongocxx::v_noabi::validation_criteria::action ( validation_action  action)

Sets a validation action to run when documents failing validation are inserted or modified.

Parameters
actionAn enumerated validation action.
Returns
A reference to the object on which this member function is being called. This facilitates method chaining.

◆ level() [1/2]

const stdx::optional< validation_level > & mongocxx::v_noabi::validation_criteria::level ( ) const

Gets the validation level.

Returns
The enumerated validation level.

◆ level() [2/2]

validation_criteria & mongocxx::v_noabi::validation_criteria::level ( validation_level  level)

Sets a validation level.

Parameters
levelAn enumerated validation level.
Returns
A reference to the object on which this member function is being called. This facilitates method chaining.

◆ operator bsoncxx::v_noabi::document::value()

mongocxx::v_noabi::validation_criteria::operator bsoncxx::v_noabi::document::value ( ) const
Deprecated:
This method is deprecated. To determine which options are set on this object, use the provided accessors instead.

◆ rule() [1/2]

const stdx::optional< bsoncxx::v_noabi::document::view_or_value > & mongocxx::v_noabi::validation_criteria::rule ( ) const

Gets the validation rule for this validation object.

Returns
Document representing a validation rule.

◆ rule() [2/2]

validation_criteria & mongocxx::v_noabi::validation_criteria::rule ( bsoncxx::v_noabi::document::view_or_value  rule)

Sets a validation rule for this validation object.

Parameters
ruleDocument representing a validation rule.
Returns
A reference to the object on which this member function is being called. This facilitates method chaining.

◆ to_document()

bsoncxx::v_noabi::document::value mongocxx::v_noabi::validation_criteria::to_document ( ) const

Returns a bson document representing this set of validation criteria.

Deprecated:
This method is deprecated. To determine which options are set on this object, use the provided accessors instead.
Returns
Validation criteria, as a document.

The documentation for this class was generated from the following file: