File tree Expand file tree Collapse file tree 6 files changed +13
-13
lines changed
openmetadata-ui/src/main/resources/ui/src/generated Expand file tree Collapse file tree 6 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -229,7 +229,7 @@ export interface RecognizerException {
229229 *
230230 * Pattern-based recognizer using regular expressions
231231 *
232- * Deny list recognizer that matches against a list of specific values
232+ * Exact terms recognizer that matches against a list of specific values
233233 *
234234 * Context-aware recognizer using surrounding text
235235 *
@@ -260,7 +260,7 @@ export interface RecognizerConfig {
260260 /**
261261 * List of values to match against
262262 */
263- denyList ?: string [ ] ;
263+ exactTerms ?: string [ ] ;
264264 /**
265265 * Words that indicate the presence of the entity
266266 */
Original file line number Diff line number Diff line change @@ -201,7 +201,7 @@ export interface RecognizerException {
201201 *
202202 * Pattern-based recognizer using regular expressions
203203 *
204- * Deny list recognizer that matches against a list of specific values
204+ * Exact terms recognizer that matches against a list of specific values
205205 *
206206 * Context-aware recognizer using surrounding text
207207 *
@@ -232,7 +232,7 @@ export interface RecognizerConfig {
232232 /**
233233 * List of values to match against
234234 */
235- denyList ?: string [ ] ;
235+ exactTerms ?: string [ ] ;
236236 /**
237237 * Words that indicate the presence of the entity
238238 */
Original file line number Diff line number Diff line change @@ -309,7 +309,7 @@ export interface RecognizerException {
309309 *
310310 * Pattern-based recognizer using regular expressions
311311 *
312- * Deny list recognizer that matches against a list of specific values
312+ * Exact terms recognizer that matches against a list of specific values
313313 *
314314 * Context-aware recognizer using surrounding text
315315 *
@@ -340,7 +340,7 @@ export interface RecognizerConfig {
340340 /**
341341 * List of values to match against
342342 */
343- denyList ?: string [ ] ;
343+ exactTerms ?: string [ ] ;
344344 /**
345345 * Words that indicate the presence of the entity
346346 */
Original file line number Diff line number Diff line change @@ -379,7 +379,7 @@ export interface RecognizerException {
379379 *
380380 * Pattern-based recognizer using regular expressions
381381 *
382- * Deny list recognizer that matches against a list of specific values
382+ * Exact terms recognizer that matches against a list of specific values
383383 *
384384 * Context-aware recognizer using surrounding text
385385 *
@@ -410,7 +410,7 @@ export interface RecognizerConfig {
410410 /**
411411 * List of values to match against
412412 */
413- denyList ?: string [ ] ;
413+ exactTerms ?: string [ ] ;
414414 /**
415415 * Words that indicate the presence of the entity
416416 */
Original file line number Diff line number Diff line change 1111 * limitations under the License.
1212 */
1313/**
14- * Deny list recognizer that matches against a list of specific values
14+ * Exact terms recognizer that matches against a list of specific values
1515 */
16- export interface DenyListRecognizer {
16+ export interface ExactTermsRecognizer {
1717 /**
1818 * List of values to match against
1919 */
20- denyList : string [ ] ;
20+ exactTerms : string [ ] ;
2121 regexFlags : RegexFlags ;
2222 /**
2323 * The entity type this recognizer detects
Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ export interface EntityReference {
146146 *
147147 * Pattern-based recognizer using regular expressions
148148 *
149- * Deny list recognizer that matches against a list of specific values
149+ * Exact terms recognizer that matches against a list of specific values
150150 *
151151 * Context-aware recognizer using surrounding text
152152 *
@@ -177,7 +177,7 @@ export interface RecognizerConfig {
177177 /**
178178 * List of values to match against
179179 */
180- denyList ?: string [ ] ;
180+ exactTerms ?: string [ ] ;
181181 /**
182182 * Words that indicate the presence of the entity
183183 */
You can’t perform that action at this time.
0 commit comments