1. Packages
  2. Datadog
  3. API Docs
  4. LogsIndexOrder
Datadog v4.27.0 published on Thursday, Mar 14, 2024 by Pulumi

datadog.LogsIndexOrder

Explore with Pulumi AI

datadog logo
Datadog v4.27.0 published on Thursday, Mar 14, 2024 by Pulumi

    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("sampleIndexOrder", {
        name: "sample_index_order",
        indexes: [datadog_logs_index.sample_index.id],
    });
    
    import pulumi
    import pulumi_datadog as datadog
    
    sample_index_order = datadog.LogsIndexOrder("sampleIndexOrder",
        name="sample_index_order",
        indexes=[datadog_logs_index["sample_index"]["id"]])
    
    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, "sampleIndexOrder", &datadog.LogsIndexOrderArgs{
    			Name: pulumi.String("sample_index_order"),
    			Indexes: pulumi.StringArray{
    				datadog_logs_index.Sample_index.Id,
    			},
    		})
    		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 sampleIndexOrder = new Datadog.LogsIndexOrder("sampleIndexOrder", new()
        {
            Name = "sample_index_order",
            Indexes = new[]
            {
                datadog_logs_index.Sample_index.Id,
            },
        });
    
    });
    
    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(datadog_logs_index.sample_index().id())
                .build());
    
        }
    }
    
    resources:
      sampleIndexOrder:
        type: datadog:LogsIndexOrder
        properties:
          name: sample_index_order
          indexes:
            - ${datadog_logs_index.sample_index.id}
    

    Create LogsIndexOrder Resource

    new LogsIndexOrder(name: string, args: LogsIndexOrderArgs, opts?: CustomResourceOptions);
    @overload
    def LogsIndexOrder(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       indexes: Optional[Sequence[str]] = None,
                       name: Optional[str] = None)
    @overload
    def LogsIndexOrder(resource_name: str,
                       args: LogsIndexOrderArgs,
                       opts: Optional[ResourceOptions] = 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.
    
    
    name string
    The unique name of the resource.
    args LogsIndexOrderArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args 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 string
    The unique name of the resource.
    args LogsIndexOrderArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args LogsIndexOrderArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args LogsIndexOrderArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    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

    The LogsIndexOrder resource accepts the following input properties:

    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.

    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)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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>
    

    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.27.0 published on Thursday, Mar 14, 2024 by Pulumi