import * as pulumi from "@pulumi/pulumi"; /** * Provides a Datadog Logs Pipeline API resource to manage the integrations. Integration pipelines are the pipelines that are automatically installed for your organization when sending the logs with specific sources. You don't need to maintain or update these types of pipelines. Keeping them as resources, however, allows you to manage the order of your pipelines by referencing them in your `datadog.LogsPipelineOrder` resource. If you don't need the `pipelineOrder` feature, this resource declaration can be omitted. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as datadog from "@pulumi/datadog"; * * const python = new datadog.LogsIntegrationPipeline("python", {isEnabled: true}); * ``` * * ## Import * * The `pulumi import` command can be used, for example: * * To find the pipeline ID, click the "view" button in the UI to open the pipeline details. * The pipeline ID is the last part of the URL. * * ```sh * $ pulumi import datadog:index/logsIntegrationPipeline:LogsIntegrationPipeline name> * ``` */ export declare class LogsIntegrationPipeline extends pulumi.CustomResource { /** * Get an existing LogsIntegrationPipeline resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: LogsIntegrationPipelineState, opts?: pulumi.CustomResourceOptions): LogsIntegrationPipeline; /** * Returns true if the given object is an instance of LogsIntegrationPipeline. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is LogsIntegrationPipeline; /** * Boolean value to enable your pipeline. */ readonly isEnabled: pulumi.Output; /** * Create a LogsIntegrationPipeline resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args?: LogsIntegrationPipelineArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering LogsIntegrationPipeline resources. */ export interface LogsIntegrationPipelineState { /** * Boolean value to enable your pipeline. */ isEnabled?: pulumi.Input; } /** * The set of arguments for constructing a LogsIntegrationPipeline resource. */ export interface LogsIntegrationPipelineArgs { /** * Boolean value to enable your pipeline. */ isEnabled?: pulumi.Input; }