Search Results for

    Show / Hide Table of Contents

    Interface IScriptProcessor

    Allows inline and stored scripts to be executed within ingest pipelines.

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

    Properties

    | Edit this page View Source

    Id

    The stored script id to refer to

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

    Lang

    The scripting language. Defaults to painless

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

    Params

    Parameters for the script

    Declaration
    [DataMember(Name = "params")]
    Dictionary<string, object> Params { get; set; }
    Property Value
    Type Description
    Dictionary<string, object>
    | Edit this page View Source

    Source

    An inline script to be executed

    Declaration
    [DataMember(Name = "source")]
    string Source { get; set; }
    Property Value
    Type Description
    string

    Extension Methods

    SuffixExtensions.Suffix(object, string)
    • Edit this page
    • View Source
    In this article
    • Properties
      • Id
      • Lang
      • Params
      • Source
    • Extension Methods
    Back to top Generated by DocFX