Interface IGsubProcessor
Converts a string field by applying a regular expression and a replacement. If the field is not a string, the processor will throw an exception.
Inherited Members
Namespace: OpenSearch.Client
Assembly: OpenSearch.Client.dll
Syntax
public interface IGsubProcessor : IProcessor
Properties
| Edit this page View SourceField
The field to apply the replacement to
Declaration
[DataMember(Name = "field")]
Field Field { get; set; }
Property Value
Type | Description |
---|---|
Field |
IgnoreMissing
If true
and Field does not exist or is null,
the processor quietly exits without modifying the document. Default is false
Declaration
[DataMember(Name = "ignore_missing")]
bool? IgnoreMissing { get; set; }
Property Value
Type | Description |
---|---|
bool? |
Pattern
The pattern to be replaced
Declaration
[DataMember(Name = "pattern")]
string Pattern { get; set; }
Property Value
Type | Description |
---|---|
string |
Replacement
The string to replace the matching patterns with
Declaration
[DataMember(Name = "replacement")]
string Replacement { get; set; }
Property Value
Type | Description |
---|---|
string |
TargetField
The field to assign the converted value to, by default field is updated in-place
Declaration
[DataMember(Name = "target_field")]
Field TargetField { get; set; }
Property Value
Type | Description |
---|---|
Field |