Search Results for

    Show / Hide Table of Contents

    Interface IConvertProcessor

    Converts a field in the currently ingested document to a different type, such as converting a string to an integer. If the field value is an array, all members will be converted.

    Inherited Members
    IProcessor.Name
    IProcessor.Description
    IProcessor.OnFailure
    IProcessor.If
    IProcessor.Tag
    IProcessor.IgnoreFailure
    Namespace: OpenSearch.Client
    Assembly: OpenSearch.Client.dll
    Syntax
    public interface IConvertProcessor : IProcessor

    Properties

    | Edit this page View Source

    Field

    The field whose value is to be converted

    Declaration
    [DataMember(Name = "field")]
    Field Field { get; set; }
    Property Value
    Type Description
    Field
    | Edit this page View Source

    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?
    | Edit this page View Source

    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
    | Edit this page View Source

    Type

    The type to convert the existing value to

    Declaration
    [DataMember(Name = "type")]
    ConvertProcessorType? Type { get; set; }
    Property Value
    Type Description
    ConvertProcessorType?

    Extension Methods

    SuffixExtensions.Suffix(object, string)
    • Edit this page
    • View Source
    In this article
    • Properties
      • Field
      • IgnoreMissing
      • TargetField
      • Type
    • Extension Methods
    Back to top Generated by DocFX