19 #include <bsoncxx/document/view.hpp>
20 #include <bsoncxx/stdx/optional.hpp>
21 #include <bsoncxx/string/view_or_value.hpp>
22 #include <mongocxx/stdx.hpp>
24 #include <mongocxx/config/prelude.hpp>
27 MONGOCXX_INLINE_NAMESPACE_BEGIN
49 MONGOCXX_PRIVATE
virtual int type()
const = 0;
72 const stdx::optional<bsoncxx::string::view_or_value>& config_string()
const;
76 MONGOCXX_PRIVATE
int type()
const override;
77 stdx::optional<bsoncxx::string::view_or_value> _config_string;
91 void background(
bool background);
98 const stdx::optional<bool>& background()
const;
109 void unique(
bool unique);
116 const stdx::optional<bool>& unique()
const;
131 const stdx::optional<bsoncxx::string::view_or_value>& name()
const;
142 void sparse(
bool sparse);
149 const stdx::optional<bool>& sparse()
const;
158 void storage_options(std::unique_ptr<base_storage_options> storage_options);
163 void storage_options(std::unique_ptr<wiredtiger_storage_options> storage_options);
174 void expire_after_seconds(std::int32_t expire_after_seconds);
181 const stdx::optional<std::int32_t>& expire_after_seconds()
const;
189 void version(std::int32_t v);
196 const stdx::optional<std::int32_t>& version()
const;
212 const stdx::optional<bsoncxx::document::view>& weights()
const;
228 const stdx::optional<bsoncxx::string::view_or_value>& default_language()
const;
244 const stdx::optional<bsoncxx::string::view_or_value>& language_override()
const;
259 const stdx::optional<bsoncxx::document::view>& partial_filter_expression()
const;
267 void twod_sphere_version(std::uint8_t twod_sphere_version);
274 const stdx::optional<std::uint8_t>& twod_sphere_version()
const;
282 void twod_bits_precision(std::uint8_t twod_bits_precision);
289 const stdx::optional<std::uint8_t>& twod_bits_precision()
const;
297 void twod_location_min(
double twod_location_min);
304 const stdx::optional<double>& twod_location_min()
const;
312 void twod_location_max(
double twod_location_max);
319 const stdx::optional<double>& twod_location_max()
const;
331 void haystack_bucket_size(
double haystack_bucket_size);
338 const stdx::optional<double>& haystack_bucket_size()
const;
343 stdx::optional<bool> _background;
344 stdx::optional<bool> _unique;
345 stdx::optional<bsoncxx::string::view_or_value> _name;
346 stdx::optional<bool> _sparse;
347 std::unique_ptr<base_storage_options> _storage_options;
348 stdx::optional<std::int32_t> _expire_after_seconds;
349 stdx::optional<std::int32_t> _version;
350 stdx::optional<bsoncxx::document::view> _weights;
351 stdx::optional<bsoncxx::string::view_or_value> _default_language;
352 stdx::optional<bsoncxx::string::view_or_value> _language_override;
353 stdx::optional<bsoncxx::document::view> _partial_filter_expression;
354 stdx::optional<std::uint8_t> _twod_sphere_version;
355 stdx::optional<std::uint8_t> _twod_bits_precision;
356 stdx::optional<double> _twod_location_min;
357 stdx::optional<double> _twod_location_max;
358 stdx::optional<double> _haystack_bucket_size;
363 const std::unique_ptr<base_storage_options>& storage_options()
const;
367 MONGOCXX_INLINE_NAMESPACE_END
370 #include <mongocxx/config/postlude.hpp>
Definition: bulk_write.hpp:22
A read-only, non-owning view of a BSON document.
Definition: view.hpp:33
Base class representing the optional storage engine options for indexes.
Definition: index.hpp:43
Class representing a view-or-value variant type for strings.
Definition: view_or_value.hpp:36
Class representing the optional arguments to a MongoDB create index operation.
Definition: index.hpp:38
Class representing the optional WiredTiger storage engine options for indexes.
Definition: index.hpp:55
Class representing server side document groupings within a MongoDB database.
Definition: collection.hpp:74