import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to retrieve the current order of your log pipelines. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as datadog from "@pulumi/datadog"; * * const test = datadog.getLogsPipelinesOrder({}); * ``` */ export declare function getLogsPipelinesOrder(opts?: pulumi.InvokeOptions): Promise; /** * A collection of values returned by getLogsPipelinesOrder. */ export interface GetLogsPipelinesOrderResult { /** * The ID of this resource. */ readonly id: 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. */ readonly pipelineIds: string[]; } /** * Use this data source to retrieve the current order of your log pipelines. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as datadog from "@pulumi/datadog"; * * const test = datadog.getLogsPipelinesOrder({}); * ``` */ export declare function getLogsPipelinesOrderOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output;