You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GODRIVER-2748 Add "Public Technical Preview" note to CreateEncryptedCollection (#1175)
* add Public Technical Preview notes
This is copied from other Queryable Encryption API.
* note that CreateEncryptedCollection is specific to Queryable Encryption
* add Beta note to Queryable Encryption API
* use Beta note for Range algorithm API
// CreateEncryptedCollection creates a new collection with the help of automatic generation of new encryption data keys for null keyIds.
76
+
// CreateEncryptedCollection creates a new collection for Queryable Encryption with the help of automatic generation of new encryption data keys for null keyIds.
77
77
// It returns the created collection and the encrypted fields document used to create it.
78
+
// Beta: Queryable Encryption is in Public Technical Preview. Queryable Encryption should not be used in production and is subject to backwards breaking changes.
Copy file name to clipboardExpand all lines: mongo/options/autoencryptionoptions.go
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -151,15 +151,15 @@ func (a *AutoEncryptionOptions) SetTLSConfig(tlsOpts map[string]*tls.Config) *Au
151
151
152
152
// SetEncryptedFieldsMap specifies a map from namespace to local EncryptedFieldsMap document.
153
153
// EncryptedFieldsMap is used for Queryable Encryption.
154
-
// Queryable Encryption is in Public Technical Preview. Queryable Encryption should not be used in production and is subject to backwards breaking changes.
154
+
// Beta: Queryable Encryption is in Public Technical Preview. Queryable Encryption should not be used in production and is subject to backwards breaking changes.
// SetBypassQueryAnalysis specifies whether or not query analysis should be used for automatic encryption.
161
161
// Use this option when using explicit encryption with Queryable Encryption.
162
-
// Queryable Encryption is in Public Technical Preview. Queryable Encryption should not be used in production and is subject to backwards breaking changes.
162
+
// Beta: Queryable Encryption is in Public Technical Preview. Queryable Encryption should not be used in production and is subject to backwards breaking changes.
Copy file name to clipboardExpand all lines: mongo/options/encryptoptions.go
+10-10Lines changed: 10 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -13,13 +13,13 @@ import (
13
13
14
14
// These constants specify valid values for QueryType
15
15
// QueryType is used for Queryable Encryption.
16
-
// Queryable Encryption is in Public Technical Preview. Queryable Encryption should not be used in production and is subject to backwards breaking changes.
16
+
// Beta: Queryable Encryption is in Public Technical Preview. Queryable Encryption should not be used in production and is subject to backwards breaking changes.
17
17
const (
18
18
QueryTypeEqualitystring="equality"
19
19
)
20
20
21
21
// RangeOptions specifies index options for a Queryable Encryption field supporting "rangePreview" queries.
22
-
// NOTE(kevinAlbs): The Range algorithm is experimental only. It is not intended for public use. It is subject to breaking changes.
22
+
// Beta: The Range algorithm is experimental only. It is not intended for public use. It is subject to breaking changes.
// Indexed and Unindexed are used for Queryable Encryption.
64
-
// Queryable Encryption is in Public Technical Preview. Queryable Encryption should not be used in production and is subject to backwards breaking changes.
64
+
// Beta: Queryable Encryption is in Public Technical Preview. Queryable Encryption should not be used in production and is subject to backwards breaking changes.
// Queryable Encryption is in Public Technical Preview. Queryable Encryption should not be used in production and is subject to backwards breaking changes.
74
+
// Beta: Queryable Encryption is in Public Technical Preview. Queryable Encryption should not be used in production and is subject to backwards breaking changes.
// SetContentionFactor specifies the contention factor. It is only valid to set if algorithm is "Indexed".
81
81
// ContentionFactor is used for Queryable Encryption.
82
-
// Queryable Encryption is in Public Technical Preview. Queryable Encryption should not be used in production and is subject to backwards breaking changes.
82
+
// Beta: Queryable Encryption is in Public Technical Preview. Queryable Encryption should not be used in production and is subject to backwards breaking changes.
0 commit comments