From 078f7ff9f7134a9c3011106e7b742a9fd8f04d56 Mon Sep 17 00:00:00 2001 From: Joe Gallo Date: Wed, 2 Apr 2025 12:30:07 -0400 Subject: [PATCH] Minor docs fixes (#126143) --- docs/reference/enrich-processor/index.md | 4 ++-- .../ingest-node-set-security-user-processor.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/reference/enrich-processor/index.md b/docs/reference/enrich-processor/index.md index eb6ad0c09e6a..cf5a21ea27e0 100644 --- a/docs/reference/enrich-processor/index.md +++ b/docs/reference/enrich-processor/index.md @@ -88,7 +88,7 @@ Refer to [Enrich your data](docs-content://manage-data/ingest/transform-enrich/d : Extracts the registered domain (also known as the effective top-level domain or eTLD), sub-domain, and top-level domain from a fully qualified domain name (FQDN). [`set_security_user` processor](/reference/enrich-processor/ingest-node-set-security-user-processor.md) -: Sets user-related details (such as `username`, `roles`, `email`, `full_name`,`metadata`, `api_key`, `realm` and `authentication_type`) from the current authenticated user to the current document by pre-processing the ingest. +: Sets user-related details (such as `username`, `roles`, `email`, `full_name`,`metadata`, `api_key`, `realm` and `authentication_type`) from the current authenticated user. [`uri_parts` processor](/reference/enrich-processor/uri-parts-processor.md) : Parses a Uniform Resource Identifier (URI) string and extracts its components as an object. @@ -138,7 +138,7 @@ Refer to [Enrich your data](docs-content://manage-data/ingest/transform-enrich/d [`date` processor](/reference/enrich-processor/date-processor.md) : Extracts and converts date fields. -[`dot_expand`](/reference/enrich-processor/dot-expand-processor.md) processor +[`dot_expand` processor](/reference/enrich-processor/dot-expand-processor.md) : Expands a field with dots into an object field. [`html_strip` processor](/reference/enrich-processor/htmlstrip-processor.md) diff --git a/docs/reference/enrich-processor/ingest-node-set-security-user-processor.md b/docs/reference/enrich-processor/ingest-node-set-security-user-processor.md index 9153cb77056b..9ff08cba7763 100644 --- a/docs/reference/enrich-processor/ingest-node-set-security-user-processor.md +++ b/docs/reference/enrich-processor/ingest-node-set-security-user-processor.md @@ -7,7 +7,7 @@ mapped_pages: # Set security user processor [ingest-node-set-security-user-processor] -Sets user-related details (such as `username`, `roles`, `email`, `full_name`, `metadata`, `api_key`, `realm` and `authentication_type`) from the current authenticated user to the current document by pre-processing the ingest. The `api_key` property exists only if the user authenticates with an API key. It is an object containing the `id`, `name` and `metadata` (if it exists and is non-empty) fields of the API key. The `realm` property is also an object with two fields, `name` and `type`. When using API key authentication, the `realm` property refers to the realm from which the API key is created. The `authentication_type` property is a string that can take value from `REALM`, `API_KEY`, `TOKEN` and `ANONYMOUS`. +Sets user-related details (such as `username`, `roles`, `email`, `full_name`, `metadata`, `api_key`, `realm` and `authentication_type`) from the current authenticated user. The `api_key` property exists only if the user authenticates with an API key. It is an object containing the `id`, `name` and `metadata` (if it exists and is non-empty) fields of the API key. The `realm` property is also an object with two fields, `name` and `type`. When using API key authentication, the `realm` property refers to the realm from which the API key is created. The `authentication_type` property is a string that can take value from `REALM`, `API_KEY`, `TOKEN` and `ANONYMOUS`. ::::{important} Requires an authenticated user for the index request.