@@ -100,17 +100,11 @@ class MONGOCXX_API encrypt {
100
100
// /
101
101
// / Use indexed encryption.
102
102
// /
103
- // / @warning Queryable Encryption is in Public Technical Preview. Queryable Encryption
104
- // / should not be used in production and is subject to backwards breaking changes.
105
- // /
106
103
k_indexed,
107
104
108
105
// /
109
106
// / Use unindexed encryption.
110
107
// /
111
- // / @warning Queryable Encryption is in Public Technical Preview. Queryable Encryption
112
- // / should not be used in production and is subject to backwards breaking changes.
113
- // /
114
108
k_unindexed,
115
109
116
110
// /
@@ -126,9 +120,6 @@ class MONGOCXX_API encrypt {
126
120
// / queryType only applies when algorithm is "indexed" or "rangePreview".
127
121
// / It is an error to set queryType when algorithm is not "indexed" or "rangePreview".
128
122
// /
129
- // / @warning Queryable Encryption is in Public Technical Preview. Queryable Encryption should
130
- // / not be used in production and is subject to backwards breaking changes.
131
- // /
132
123
enum class encryption_query_type : std::uint8_t {
133
124
// / @brief Use query type "equality".
134
125
k_equality,
@@ -155,9 +146,6 @@ class MONGOCXX_API encrypt {
155
146
// / @see
156
147
// / https://docs.mongodb.com/manual/core/security-client-side-encryption/#encryption-algorithms
157
148
// /
158
- // / @warning Queryable Encryption is in Public Technical Preview. Queryable Encryption should
159
- // / not be used in production and is subject to backwards breaking changes.
160
- // /
161
149
encrypt& algorithm (encryption_algorithm algorithm);
162
150
163
151
// /
@@ -168,9 +156,6 @@ class MONGOCXX_API encrypt {
168
156
// / @return
169
157
// / An optional algorithm.
170
158
// /
171
- // / @warning Queryable Encryption is in Public Technical Preview. Queryable Encryption should
172
- // / not be used in production and is subject to backwards breaking changes.
173
- // /
174
159
const stdx::optional<encryption_algorithm>& algorithm () const ;
175
160
176
161
// /
@@ -181,9 +166,6 @@ class MONGOCXX_API encrypt {
181
166
// / @param contention_factor
182
167
// / An integer specifiying the desired contention factor.
183
168
// /
184
- // / @warning Queryable Encryption is in Public Technical Preview. Queryable Encryption should
185
- // / not be used in production and is subject to backwards breaking changes.
186
- // /
187
169
encrypt& contention_factor (int64_t contention_factor);
188
170
189
171
// /
@@ -192,9 +174,6 @@ class MONGOCXX_API encrypt {
192
174
// / @return
193
175
// / An optional contention factor.
194
176
// /
195
- // / @warning Queryable Encryption is in Public Technical Preview. Queryable Encryption should
196
- // / not be used in production and is subject to backwards breaking changes.
197
- // /
198
177
const stdx::optional<int64_t >& contention_factor () const ;
199
178
200
179
// /
@@ -205,9 +184,6 @@ class MONGOCXX_API encrypt {
205
184
// / query_type only applies when algorithm is "Indexed" or "RangePreview".
206
185
// / It is an error to set query_type when algorithm is not "Indexed" or "RangePreview".
207
186
// /
208
- // / @warning Queryable Encryption is in Public Technical Preview. Queryable Encryption should
209
- // / not be used in production and is subject to backwards breaking changes.
210
- // /
211
187
encrypt& query_type (encryption_query_type query_type);
212
188
213
189
// /
@@ -216,9 +192,6 @@ class MONGOCXX_API encrypt {
216
192
// / @return
217
193
// / A query type.
218
194
// /
219
- // / @warning Queryable Encryption is in Public Technical Preview. Queryable Encryption should
220
- // / not be used in production and is subject to backwards breaking changes.
221
- // /
222
195
const stdx::optional<encryption_query_type>& query_type () const ;
223
196
224
197
// /
0 commit comments