1. Packages
  2. Elasticstack Provider
  3. API Docs
  4. getElasticsearchIngestProcessorLowercase
elasticstack 0.11.15 published on Wednesday, Apr 23, 2025 by elastic

elasticstack.getElasticsearchIngestProcessorLowercase

Explore with Pulumi AI

elasticstack logo
elasticstack 0.11.15 published on Wednesday, Apr 23, 2025 by elastic

    Converts a string to its lowercase equivalent. If the field is an array of strings, all members of the array will be converted.

    See: https://www.elastic.co/guide/en/elasticsearch/reference/current/lowercase-processor.html

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as elasticstack from "@pulumi/elasticstack";
    
    const lowercase = elasticstack.getElasticsearchIngestProcessorLowercase({
        field: "foo",
    });
    const myIngestPipeline = new elasticstack.ElasticsearchIngestPipeline("myIngestPipeline", {processors: [lowercase.then(lowercase => lowercase.json)]});
    
    import pulumi
    import pulumi_elasticstack as elasticstack
    
    lowercase = elasticstack.get_elasticsearch_ingest_processor_lowercase(field="foo")
    my_ingest_pipeline = elasticstack.ElasticsearchIngestPipeline("myIngestPipeline", processors=[lowercase.json])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/elasticstack/elasticstack"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		lowercase, err := elasticstack.GetElasticsearchIngestProcessorLowercase(ctx, &elasticstack.GetElasticsearchIngestProcessorLowercaseArgs{
    			Field: "foo",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		_, err = elasticstack.NewElasticsearchIngestPipeline(ctx, "myIngestPipeline", &elasticstack.ElasticsearchIngestPipelineArgs{
    			Processors: pulumi.StringArray{
    				pulumi.String(lowercase.Json),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Elasticstack = Pulumi.Elasticstack;
    
    return await Deployment.RunAsync(() => 
    {
        var lowercase = Elasticstack.GetElasticsearchIngestProcessorLowercase.Invoke(new()
        {
            Field = "foo",
        });
    
        var myIngestPipeline = new Elasticstack.ElasticsearchIngestPipeline("myIngestPipeline", new()
        {
            Processors = new[]
            {
                lowercase.Apply(getElasticsearchIngestProcessorLowercaseResult => getElasticsearchIngestProcessorLowercaseResult.Json),
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.elasticstack.ElasticstackFunctions;
    import com.pulumi.elasticstack.inputs.GetElasticsearchIngestProcessorLowercaseArgs;
    import com.pulumi.elasticstack.ElasticsearchIngestPipeline;
    import com.pulumi.elasticstack.ElasticsearchIngestPipelineArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var lowercase = ElasticstackFunctions.getElasticsearchIngestProcessorLowercase(GetElasticsearchIngestProcessorLowercaseArgs.builder()
                .field("foo")
                .build());
    
            var myIngestPipeline = new ElasticsearchIngestPipeline("myIngestPipeline", ElasticsearchIngestPipelineArgs.builder()
                .processors(lowercase.applyValue(getElasticsearchIngestProcessorLowercaseResult -> getElasticsearchIngestProcessorLowercaseResult.json()))
                .build());
    
        }
    }
    
    resources:
      myIngestPipeline:
        type: elasticstack:ElasticsearchIngestPipeline
        properties:
          processors:
            - ${lowercase.json}
    variables:
      lowercase:
        fn::invoke:
          function: elasticstack:getElasticsearchIngestProcessorLowercase
          arguments:
            field: foo
    

    Using getElasticsearchIngestProcessorLowercase

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getElasticsearchIngestProcessorLowercase(args: GetElasticsearchIngestProcessorLowercaseArgs, opts?: InvokeOptions): Promise<GetElasticsearchIngestProcessorLowercaseResult>
    function getElasticsearchIngestProcessorLowercaseOutput(args: GetElasticsearchIngestProcessorLowercaseOutputArgs, opts?: InvokeOptions): Output<GetElasticsearchIngestProcessorLowercaseResult>
    def get_elasticsearch_ingest_processor_lowercase(description: Optional[str] = None,
                                                     field: Optional[str] = None,
                                                     if_: Optional[str] = None,
                                                     ignore_failure: Optional[bool] = None,
                                                     ignore_missing: Optional[bool] = None,
                                                     on_failures: Optional[Sequence[str]] = None,
                                                     tag: Optional[str] = None,
                                                     target_field: Optional[str] = None,
                                                     opts: Optional[InvokeOptions] = None) -> GetElasticsearchIngestProcessorLowercaseResult
    def get_elasticsearch_ingest_processor_lowercase_output(description: Optional[pulumi.Input[str]] = None,
                                                     field: Optional[pulumi.Input[str]] = None,
                                                     if_: Optional[pulumi.Input[str]] = None,
                                                     ignore_failure: Optional[pulumi.Input[bool]] = None,
                                                     ignore_missing: Optional[pulumi.Input[bool]] = None,
                                                     on_failures: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                                     tag: Optional[pulumi.Input[str]] = None,
                                                     target_field: Optional[pulumi.Input[str]] = None,
                                                     opts: Optional[InvokeOptions] = None) -> Output[GetElasticsearchIngestProcessorLowercaseResult]
    func GetElasticsearchIngestProcessorLowercase(ctx *Context, args *GetElasticsearchIngestProcessorLowercaseArgs, opts ...InvokeOption) (*GetElasticsearchIngestProcessorLowercaseResult, error)
    func GetElasticsearchIngestProcessorLowercaseOutput(ctx *Context, args *GetElasticsearchIngestProcessorLowercaseOutputArgs, opts ...InvokeOption) GetElasticsearchIngestProcessorLowercaseResultOutput

    > Note: This function is named GetElasticsearchIngestProcessorLowercase in the Go SDK.

    public static class GetElasticsearchIngestProcessorLowercase 
    {
        public static Task<GetElasticsearchIngestProcessorLowercaseResult> InvokeAsync(GetElasticsearchIngestProcessorLowercaseArgs args, InvokeOptions? opts = null)
        public static Output<GetElasticsearchIngestProcessorLowercaseResult> Invoke(GetElasticsearchIngestProcessorLowercaseInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetElasticsearchIngestProcessorLowercaseResult> getElasticsearchIngestProcessorLowercase(GetElasticsearchIngestProcessorLowercaseArgs args, InvokeOptions options)
    public static Output<GetElasticsearchIngestProcessorLowercaseResult> getElasticsearchIngestProcessorLowercase(GetElasticsearchIngestProcessorLowercaseArgs args, InvokeOptions options)
    
    fn::invoke:
      function: elasticstack:index/getElasticsearchIngestProcessorLowercase:getElasticsearchIngestProcessorLowercase
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Field string
    The field to make lowercase.
    Description string
    Description of the processor.
    If string
    Conditionally execute the processor
    IgnoreFailure bool
    Ignore failures for the processor.
    IgnoreMissing bool
    If true and field does not exist or is null, the processor quietly exits without modifying the document.
    OnFailures List<string>
    Handle failures for the processor.
    Tag string
    Identifier for the processor.
    TargetField string
    The field to assign the converted value to, by default field is updated in-place.
    Field string
    The field to make lowercase.
    Description string
    Description of the processor.
    If string
    Conditionally execute the processor
    IgnoreFailure bool
    Ignore failures for the processor.
    IgnoreMissing bool
    If true and field does not exist or is null, the processor quietly exits without modifying the document.
    OnFailures []string
    Handle failures for the processor.
    Tag string
    Identifier for the processor.
    TargetField string
    The field to assign the converted value to, by default field is updated in-place.
    field String
    The field to make lowercase.
    description String
    Description of the processor.
    if_ String
    Conditionally execute the processor
    ignoreFailure Boolean
    Ignore failures for the processor.
    ignoreMissing Boolean
    If true and field does not exist or is null, the processor quietly exits without modifying the document.
    onFailures List<String>
    Handle failures for the processor.
    tag String
    Identifier for the processor.
    targetField String
    The field to assign the converted value to, by default field is updated in-place.
    field string
    The field to make lowercase.
    description string
    Description of the processor.
    if string
    Conditionally execute the processor
    ignoreFailure boolean
    Ignore failures for the processor.
    ignoreMissing boolean
    If true and field does not exist or is null, the processor quietly exits without modifying the document.
    onFailures string[]
    Handle failures for the processor.
    tag string
    Identifier for the processor.
    targetField string
    The field to assign the converted value to, by default field is updated in-place.
    field str
    The field to make lowercase.
    description str
    Description of the processor.
    if_ str
    Conditionally execute the processor
    ignore_failure bool
    Ignore failures for the processor.
    ignore_missing bool
    If true and field does not exist or is null, the processor quietly exits without modifying the document.
    on_failures Sequence[str]
    Handle failures for the processor.
    tag str
    Identifier for the processor.
    target_field str
    The field to assign the converted value to, by default field is updated in-place.
    field String
    The field to make lowercase.
    description String
    Description of the processor.
    if String
    Conditionally execute the processor
    ignoreFailure Boolean
    Ignore failures for the processor.
    ignoreMissing Boolean
    If true and field does not exist or is null, the processor quietly exits without modifying the document.
    onFailures List<String>
    Handle failures for the processor.
    tag String
    Identifier for the processor.
    targetField String
    The field to assign the converted value to, by default field is updated in-place.

    getElasticsearchIngestProcessorLowercase Result

    The following output properties are available:

    Field string
    The field to make lowercase.
    Id string
    Internal identifier of the resource.
    Json string
    JSON representation of this data source.
    Description string
    Description of the processor.
    If string
    Conditionally execute the processor
    IgnoreFailure bool
    Ignore failures for the processor.
    IgnoreMissing bool
    If true and field does not exist or is null, the processor quietly exits without modifying the document.
    OnFailures List<string>
    Handle failures for the processor.
    Tag string
    Identifier for the processor.
    TargetField string
    The field to assign the converted value to, by default field is updated in-place.
    Field string
    The field to make lowercase.
    Id string
    Internal identifier of the resource.
    Json string
    JSON representation of this data source.
    Description string
    Description of the processor.
    If string
    Conditionally execute the processor
    IgnoreFailure bool
    Ignore failures for the processor.
    IgnoreMissing bool
    If true and field does not exist or is null, the processor quietly exits without modifying the document.
    OnFailures []string
    Handle failures for the processor.
    Tag string
    Identifier for the processor.
    TargetField string
    The field to assign the converted value to, by default field is updated in-place.
    field String
    The field to make lowercase.
    id String
    Internal identifier of the resource.
    json String
    JSON representation of this data source.
    description String
    Description of the processor.
    if_ String
    Conditionally execute the processor
    ignoreFailure Boolean
    Ignore failures for the processor.
    ignoreMissing Boolean
    If true and field does not exist or is null, the processor quietly exits without modifying the document.
    onFailures List<String>
    Handle failures for the processor.
    tag String
    Identifier for the processor.
    targetField String
    The field to assign the converted value to, by default field is updated in-place.
    field string
    The field to make lowercase.
    id string
    Internal identifier of the resource.
    json string
    JSON representation of this data source.
    description string
    Description of the processor.
    if string
    Conditionally execute the processor
    ignoreFailure boolean
    Ignore failures for the processor.
    ignoreMissing boolean
    If true and field does not exist or is null, the processor quietly exits without modifying the document.
    onFailures string[]
    Handle failures for the processor.
    tag string
    Identifier for the processor.
    targetField string
    The field to assign the converted value to, by default field is updated in-place.
    field str
    The field to make lowercase.
    id str
    Internal identifier of the resource.
    json str
    JSON representation of this data source.
    description str
    Description of the processor.
    if_ str
    Conditionally execute the processor
    ignore_failure bool
    Ignore failures for the processor.
    ignore_missing bool
    If true and field does not exist or is null, the processor quietly exits without modifying the document.
    on_failures Sequence[str]
    Handle failures for the processor.
    tag str
    Identifier for the processor.
    target_field str
    The field to assign the converted value to, by default field is updated in-place.
    field String
    The field to make lowercase.
    id String
    Internal identifier of the resource.
    json String
    JSON representation of this data source.
    description String
    Description of the processor.
    if String
    Conditionally execute the processor
    ignoreFailure Boolean
    Ignore failures for the processor.
    ignoreMissing Boolean
    If true and field does not exist or is null, the processor quietly exits without modifying the document.
    onFailures List<String>
    Handle failures for the processor.
    tag String
    Identifier for the processor.
    targetField String
    The field to assign the converted value to, by default field is updated in-place.

    Package Details

    Repository
    elasticstack elastic/terraform-provider-elasticstack
    License
    Notes
    This Pulumi package is based on the elasticstack Terraform Provider.
    elasticstack logo
    elasticstack 0.11.15 published on Wednesday, Apr 23, 2025 by elastic