1. Packages
  2. Datadog Provider
  3. API Docs
  4. LogsPipelineOrder
Datadog v4.49.0 published on Thursday, Apr 17, 2025 by Pulumi

datadog.LogsPipelineOrder

Explore with Pulumi AI

Provides a Datadog Logs Pipeline API resource, which is used to manage Datadog log pipelines order.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as datadog from "@pulumi/datadog";

const samplePipelineOrder = new datadog.LogsPipelineOrder("sample_pipeline_order", {
    name: "sample_pipeline_order",
    pipelines: [
        samplePipeline.id,
        python.id,
    ],
});
Copy
import pulumi
import pulumi_datadog as datadog

sample_pipeline_order = datadog.LogsPipelineOrder("sample_pipeline_order",
    name="sample_pipeline_order",
    pipelines=[
        sample_pipeline["id"],
        python["id"],
    ])
Copy
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.NewLogsPipelineOrder(ctx, "sample_pipeline_order", &datadog.LogsPipelineOrderArgs{
			Name: pulumi.String("sample_pipeline_order"),
			Pipelines: pulumi.StringArray{
				samplePipeline.Id,
				python.Id,
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Datadog = Pulumi.Datadog;

return await Deployment.RunAsync(() => 
{
    var samplePipelineOrder = new Datadog.LogsPipelineOrder("sample_pipeline_order", new()
    {
        Name = "sample_pipeline_order",
        Pipelines = new[]
        {
            samplePipeline.Id,
            python.Id,
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.datadog.LogsPipelineOrder;
import com.pulumi.datadog.LogsPipelineOrderArgs;
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) {
        var samplePipelineOrder = new LogsPipelineOrder("samplePipelineOrder", LogsPipelineOrderArgs.builder()
            .name("sample_pipeline_order")
            .pipelines(            
                samplePipeline.id(),
                python.id())
            .build());

    }
}
Copy
resources:
  samplePipelineOrder:
    type: datadog:LogsPipelineOrder
    name: sample_pipeline_order
    properties:
      name: sample_pipeline_order
      pipelines:
        - ${samplePipeline.id}
        - ${python.id}
Copy

Create LogsPipelineOrder Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new LogsPipelineOrder(name: string, args: LogsPipelineOrderArgs, opts?: CustomResourceOptions);
@overload
def LogsPipelineOrder(resource_name: str,
                      args: LogsPipelineOrderArgs,
                      opts: Optional[ResourceOptions] = None)

@overload
def LogsPipelineOrder(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      name: Optional[str] = None,
                      pipelines: Optional[Sequence[str]] = None)
func NewLogsPipelineOrder(ctx *Context, name string, args LogsPipelineOrderArgs, opts ...ResourceOption) (*LogsPipelineOrder, error)
public LogsPipelineOrder(string name, LogsPipelineOrderArgs args, CustomResourceOptions? opts = null)
public LogsPipelineOrder(String name, LogsPipelineOrderArgs args)
public LogsPipelineOrder(String name, LogsPipelineOrderArgs args, CustomResourceOptions options)
type: datadog:LogsPipelineOrder
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. LogsPipelineOrderArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. LogsPipelineOrderArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. LogsPipelineOrderArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. LogsPipelineOrderArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. LogsPipelineOrderArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var logsPipelineOrderResource = new Datadog.LogsPipelineOrder("logsPipelineOrderResource", new()
{
    Name = "string",
    Pipelines = new[]
    {
        "string",
    },
});
Copy
example, err := datadog.NewLogsPipelineOrder(ctx, "logsPipelineOrderResource", &datadog.LogsPipelineOrderArgs{
	Name: pulumi.String("string"),
	Pipelines: pulumi.StringArray{
		pulumi.String("string"),
	},
})
Copy
var logsPipelineOrderResource = new LogsPipelineOrder("logsPipelineOrderResource", LogsPipelineOrderArgs.builder()
    .name("string")
    .pipelines("string")
    .build());
Copy
logs_pipeline_order_resource = datadog.LogsPipelineOrder("logsPipelineOrderResource",
    name="string",
    pipelines=["string"])
Copy
const logsPipelineOrderResource = new datadog.LogsPipelineOrder("logsPipelineOrderResource", {
    name: "string",
    pipelines: ["string"],
});
Copy
type: datadog:LogsPipelineOrder
properties:
    name: string
    pipelines:
        - string
Copy

LogsPipelineOrder Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The LogsPipelineOrder resource accepts the following input properties:

Name This property is required. string
The name attribute in the resource datadog.LogsPipelineOrder needs to be unique. It's recommended to use the same value as the resource name. No related field is available in Logs Pipeline API.
Pipelines This property is required. List<string>
The pipeline IDs list. The order of pipeline IDs in this attribute defines the overall pipeline order for logs.
Name This property is required. string
The name attribute in the resource datadog.LogsPipelineOrder needs to be unique. It's recommended to use the same value as the resource name. No related field is available in Logs Pipeline API.
Pipelines This property is required. []string
The pipeline IDs list. The order of pipeline IDs in this attribute defines the overall pipeline order for logs.
name This property is required. String
The name attribute in the resource datadog.LogsPipelineOrder needs to be unique. It's recommended to use the same value as the resource name. No related field is available in Logs Pipeline API.
pipelines This property is required. List<String>
The pipeline IDs list. The order of pipeline IDs in this attribute defines the overall pipeline order for logs.
name This property is required. string
The name attribute in the resource datadog.LogsPipelineOrder needs to be unique. It's recommended to use the same value as the resource name. No related field is available in Logs Pipeline API.
pipelines This property is required. string[]
The pipeline IDs list. The order of pipeline IDs in this attribute defines the overall pipeline order for logs.
name This property is required. str
The name attribute in the resource datadog.LogsPipelineOrder needs to be unique. It's recommended to use the same value as the resource name. No related field is available in Logs Pipeline API.
pipelines This property is required. Sequence[str]
The pipeline IDs list. The order of pipeline IDs in this attribute defines the overall pipeline order for logs.
name This property is required. String
The name attribute in the resource datadog.LogsPipelineOrder needs to be unique. It's recommended to use the same value as the resource name. No related field is available in Logs Pipeline API.
pipelines This property is required. List<String>
The pipeline IDs list. The order of pipeline IDs in this attribute defines the overall pipeline order for logs.

Outputs

All input properties are implicitly available as output properties. Additionally, the LogsPipelineOrder resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing LogsPipelineOrder Resource

Get an existing LogsPipelineOrder resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: LogsPipelineOrderState, opts?: CustomResourceOptions): LogsPipelineOrder
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        name: Optional[str] = None,
        pipelines: Optional[Sequence[str]] = None) -> LogsPipelineOrder
func GetLogsPipelineOrder(ctx *Context, name string, id IDInput, state *LogsPipelineOrderState, opts ...ResourceOption) (*LogsPipelineOrder, error)
public static LogsPipelineOrder Get(string name, Input<string> id, LogsPipelineOrderState? state, CustomResourceOptions? opts = null)
public static LogsPipelineOrder get(String name, Output<String> id, LogsPipelineOrderState state, CustomResourceOptions options)
resources:  _:    type: datadog:LogsPipelineOrder    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Name string
The name attribute in the resource datadog.LogsPipelineOrder needs to be unique. It's recommended to use the same value as the resource name. No related field is available in Logs Pipeline API.
Pipelines List<string>
The pipeline IDs list. The order of pipeline IDs in this attribute defines the overall pipeline order for logs.
Name string
The name attribute in the resource datadog.LogsPipelineOrder needs to be unique. It's recommended to use the same value as the resource name. No related field is available in Logs Pipeline API.
Pipelines []string
The pipeline IDs list. The order of pipeline IDs in this attribute defines the overall pipeline order for logs.
name String
The name attribute in the resource datadog.LogsPipelineOrder needs to be unique. It's recommended to use the same value as the resource name. No related field is available in Logs Pipeline API.
pipelines List<String>
The pipeline IDs list. The order of pipeline IDs in this attribute defines the overall pipeline order for logs.
name string
The name attribute in the resource datadog.LogsPipelineOrder needs to be unique. It's recommended to use the same value as the resource name. No related field is available in Logs Pipeline API.
pipelines string[]
The pipeline IDs list. The order of pipeline IDs in this attribute defines the overall pipeline order for logs.
name str
The name attribute in the resource datadog.LogsPipelineOrder needs to be unique. It's recommended to use the same value as the resource name. No related field is available in Logs Pipeline API.
pipelines Sequence[str]
The pipeline IDs list. The order of pipeline IDs in this attribute defines the overall pipeline order for logs.
name String
The name attribute in the resource datadog.LogsPipelineOrder needs to be unique. It's recommended to use the same value as the resource name. No related field is available in Logs Pipeline API.
pipelines List<String>
The pipeline IDs list. The order of pipeline IDs in this attribute defines the overall pipeline order for logs.

Import

There must be at most one datadog_logs_pipeline_order resource. Pipeline order creation is not supported from logs config API. You can import the datadog_logs_pipeline_order or create a pipeline order (which is actually doing the update operation).

$ pulumi import datadog:index/logsPipelineOrder:LogsPipelineOrder name> <name>
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Datadog pulumi/pulumi-datadog
License
Apache-2.0
Notes
This Pulumi package is based on the datadog Terraform Provider.