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

datadog.LogsIndexOrder

Explore with Pulumi AI

Provides a Datadog Logs Index API resource. This can be used to manage the order of Datadog logs indexes.

Example Usage

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

const sampleIndexOrder = new datadog.LogsIndexOrder("sample_index_order", {
    name: "sample_index_order",
    indexes: [sampleIndex.id],
});
Copy
import pulumi
import pulumi_datadog as datadog

sample_index_order = datadog.LogsIndexOrder("sample_index_order",
    name="sample_index_order",
    indexes=[sample_index["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.NewLogsIndexOrder(ctx, "sample_index_order", &datadog.LogsIndexOrderArgs{
			Name: pulumi.String("sample_index_order"),
			Indexes: pulumi.StringArray{
				sampleIndex.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 sampleIndexOrder = new Datadog.LogsIndexOrder("sample_index_order", new()
    {
        Name = "sample_index_order",
        Indexes = new[]
        {
            sampleIndex.Id,
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.datadog.LogsIndexOrder;
import com.pulumi.datadog.LogsIndexOrderArgs;
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 sampleIndexOrder = new LogsIndexOrder("sampleIndexOrder", LogsIndexOrderArgs.builder()
            .name("sample_index_order")
            .indexes(sampleIndex.id())
            .build());

    }
}
Copy
resources:
  sampleIndexOrder:
    type: datadog:LogsIndexOrder
    name: sample_index_order
    properties:
      name: sample_index_order
      indexes:
        - ${sampleIndex.id}
Copy

Create LogsIndexOrder Resource

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

Constructor syntax

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

@overload
def LogsIndexOrder(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   indexes: Optional[Sequence[str]] = None,
                   name: Optional[str] = None)
func NewLogsIndexOrder(ctx *Context, name string, args LogsIndexOrderArgs, opts ...ResourceOption) (*LogsIndexOrder, error)
public LogsIndexOrder(string name, LogsIndexOrderArgs args, CustomResourceOptions? opts = null)
public LogsIndexOrder(String name, LogsIndexOrderArgs args)
public LogsIndexOrder(String name, LogsIndexOrderArgs args, CustomResourceOptions options)
type: datadog:LogsIndexOrder
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. LogsIndexOrderArgs
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. LogsIndexOrderArgs
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. LogsIndexOrderArgs
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. LogsIndexOrderArgs
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. LogsIndexOrderArgs
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 logsIndexOrderResource = new Datadog.LogsIndexOrder("logsIndexOrderResource", new()
{
    Indexes = new[]
    {
        "string",
    },
    Name = "string",
});
Copy
example, err := datadog.NewLogsIndexOrder(ctx, "logsIndexOrderResource", &datadog.LogsIndexOrderArgs{
	Indexes: pulumi.StringArray{
		pulumi.String("string"),
	},
	Name: pulumi.String("string"),
})
Copy
var logsIndexOrderResource = new LogsIndexOrder("logsIndexOrderResource", LogsIndexOrderArgs.builder()
    .indexes("string")
    .name("string")
    .build());
Copy
logs_index_order_resource = datadog.LogsIndexOrder("logsIndexOrderResource",
    indexes=["string"],
    name="string")
Copy
const logsIndexOrderResource = new datadog.LogsIndexOrder("logsIndexOrderResource", {
    indexes: ["string"],
    name: "string",
});
Copy
type: datadog:LogsIndexOrder
properties:
    indexes:
        - string
    name: string
Copy

LogsIndexOrder 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 LogsIndexOrder resource accepts the following input properties:

Indexes This property is required. List<string>
The index resource list. Logs are tested against the query filter of each index one by one following the order of the list.
Name string
The unique name of the index order resource.
Indexes This property is required. []string
The index resource list. Logs are tested against the query filter of each index one by one following the order of the list.
Name string
The unique name of the index order resource.
indexes This property is required. List<String>
The index resource list. Logs are tested against the query filter of each index one by one following the order of the list.
name String
The unique name of the index order resource.
indexes This property is required. string[]
The index resource list. Logs are tested against the query filter of each index one by one following the order of the list.
name string
The unique name of the index order resource.
indexes This property is required. Sequence[str]
The index resource list. Logs are tested against the query filter of each index one by one following the order of the list.
name str
The unique name of the index order resource.
indexes This property is required. List<String>
The index resource list. Logs are tested against the query filter of each index one by one following the order of the list.
name String
The unique name of the index order resource.

Outputs

All input properties are implicitly available as output properties. Additionally, the LogsIndexOrder 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 LogsIndexOrder Resource

Get an existing LogsIndexOrder 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?: LogsIndexOrderState, opts?: CustomResourceOptions): LogsIndexOrder
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        indexes: Optional[Sequence[str]] = None,
        name: Optional[str] = None) -> LogsIndexOrder
func GetLogsIndexOrder(ctx *Context, name string, id IDInput, state *LogsIndexOrderState, opts ...ResourceOption) (*LogsIndexOrder, error)
public static LogsIndexOrder Get(string name, Input<string> id, LogsIndexOrderState? state, CustomResourceOptions? opts = null)
public static LogsIndexOrder get(String name, Output<String> id, LogsIndexOrderState state, CustomResourceOptions options)
resources:  _:    type: datadog:LogsIndexOrder    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:
Indexes List<string>
The index resource list. Logs are tested against the query filter of each index one by one following the order of the list.
Name string
The unique name of the index order resource.
Indexes []string
The index resource list. Logs are tested against the query filter of each index one by one following the order of the list.
Name string
The unique name of the index order resource.
indexes List<String>
The index resource list. Logs are tested against the query filter of each index one by one following the order of the list.
name String
The unique name of the index order resource.
indexes string[]
The index resource list. Logs are tested against the query filter of each index one by one following the order of the list.
name string
The unique name of the index order resource.
indexes Sequence[str]
The index resource list. Logs are tested against the query filter of each index one by one following the order of the list.
name str
The unique name of the index order resource.
indexes List<String>
The index resource list. Logs are tested against the query filter of each index one by one following the order of the list.
name String
The unique name of the index order resource.

Import

The Datadog Terraform Provider does not support the creation and deletion of index orders. There must be at most one datadog_logs_index_order resource

<name> can be whatever you specify in your code. Datadog does not store the name on the server.

$ pulumi import datadog:index/logsIndexOrder:LogsIndexOrder 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.