1. Packages
  2. Datadog Provider
  3. API Docs
  4. getLogsPipelinesOrder
Datadog v4.47.0 published on Thursday, Mar 20, 2025 by Pulumi

datadog.getLogsPipelinesOrder

Explore with Pulumi AI

datadog logo
Datadog v4.47.0 published on Thursday, Mar 20, 2025 by Pulumi

    Use this data source to retrieve the current order of your log pipelines.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as datadog from "@pulumi/datadog";
    
    const test = datadog.getLogsPipelinesOrder({});
    
    import pulumi
    import pulumi_datadog as datadog
    
    test = datadog.get_logs_pipelines_order()
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-datadog/sdk/v4/go/datadog"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := datadog.GetLogsPipelinesOrder(ctx, map[string]interface{}{}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Datadog = Pulumi.Datadog;
    
    return await Deployment.RunAsync(() => 
    {
        var test = Datadog.GetLogsPipelinesOrder.Invoke();
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.datadog.DatadogFunctions;
    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 test = DatadogFunctions.getLogsPipelinesOrder();
    
        }
    }
    
    variables:
      test:
        fn::invoke:
          function: datadog:getLogsPipelinesOrder
          arguments: {}
    

    Using getLogsPipelinesOrder

    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 getLogsPipelinesOrder(opts?: InvokeOptions): Promise<GetLogsPipelinesOrderResult>
    function getLogsPipelinesOrderOutput(opts?: InvokeOptions): Output<GetLogsPipelinesOrderResult>
    def get_logs_pipelines_order(opts: Optional[InvokeOptions] = None) -> GetLogsPipelinesOrderResult
    def get_logs_pipelines_order_output(opts: Optional[InvokeOptions] = None) -> Output[GetLogsPipelinesOrderResult]
    func GetLogsPipelinesOrder(ctx *Context, opts ...InvokeOption) (*GetLogsPipelinesOrderResult, error)
    func GetLogsPipelinesOrderOutput(ctx *Context, opts ...InvokeOption) GetLogsPipelinesOrderResultOutput

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

    public static class GetLogsPipelinesOrder 
    {
        public static Task<GetLogsPipelinesOrderResult> InvokeAsync(InvokeOptions? opts = null)
        public static Output<GetLogsPipelinesOrderResult> Invoke(InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetLogsPipelinesOrderResult> getLogsPipelinesOrder(InvokeOptions options)
    public static Output<GetLogsPipelinesOrderResult> getLogsPipelinesOrder(InvokeOptions options)
    
    fn::invoke:
      function: datadog:index/getLogsPipelinesOrder:getLogsPipelinesOrder
      arguments:
        # arguments dictionary

    getLogsPipelinesOrder Result

    The following output properties are available:

    Id string
    The ID of this resource.
    PipelineIds List<string>
    Array of strings identifying by their id(s) the pipeline(s) of your organization. For each pipeline, following the order of the array, logs are tested against the query filter and processed if matching.
    Id string
    The ID of this resource.
    PipelineIds []string
    Array of strings identifying by their id(s) the pipeline(s) of your organization. For each pipeline, following the order of the array, logs are tested against the query filter and processed if matching.
    id String
    The ID of this resource.
    pipelineIds List<String>
    Array of strings identifying by their id(s) the pipeline(s) of your organization. For each pipeline, following the order of the array, logs are tested against the query filter and processed if matching.
    id string
    The ID of this resource.
    pipelineIds string[]
    Array of strings identifying by their id(s) the pipeline(s) of your organization. For each pipeline, following the order of the array, logs are tested against the query filter and processed if matching.
    id str
    The ID of this resource.
    pipeline_ids Sequence[str]
    Array of strings identifying by their id(s) the pipeline(s) of your organization. For each pipeline, following the order of the array, logs are tested against the query filter and processed if matching.
    id String
    The ID of this resource.
    pipelineIds List<String>
    Array of strings identifying by their id(s) the pipeline(s) of your organization. For each pipeline, following the order of the array, logs are tested against the query filter and processed if matching.

    Package Details

    Repository
    Datadog pulumi/pulumi-datadog
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the datadog Terraform Provider.
    datadog logo
    Datadog v4.47.0 published on Thursday, Mar 20, 2025 by Pulumi