import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * The data processing task cleanses, transforms, and distributes log data in the log service, processing data from the source log topic and outputting it to the target log topic * * ## Import * * ```sh * $ pulumi import volcenginecc:tls/etl:Etl example "task_id" * ``` */ export declare class Etl extends pulumi.CustomResource { /** * Get an existing Etl 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?: EtlState, opts?: pulumi.CustomResourceOptions): Etl; /** * Returns true if the given object is an instance of Etl. 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 Etl; /** * Creation time of the data processing task */ readonly createTime: pulumi.Output; /** * Brief description of the data processing task. Does not support <>, ', \, or \. Length: 0–64 characters */ readonly description: pulumi.Output; /** * Syntax type of the processing rule. Fixed as NORMAL */ readonly dslType: pulumi.Output; /** * Whether the data processing task is enabled. true: Enabled. false: Disabled */ readonly enable: pulumi.Output; /** * Task scheduling status. WAITING: Preparing. RUNNING: Running. STOPPING: Stopping. STOPPED: Stopped. RESTARTING: Restarting */ readonly etlStatus: pulumi.Output; /** * The processing start time of the data processing task, in seconds as a Unix timestamp */ readonly fromTime: pulumi.Output; /** * The most recent activation time of the data processing task */ readonly lastEnableTime: pulumi.Output; /** * Modification time of the data processing task */ readonly modifyTime: pulumi.Output; /** * Data processing task name */ readonly name: pulumi.Output; /** * Log project ID to which the data processing task belongs */ readonly projectId: pulumi.Output; /** * Log project name to which the data processing task belongs */ readonly projectName: pulumi.Output; /** * Processing rule script used by the data processing task */ readonly script: pulumi.Output; /** * Source log topic ID of the data processing task */ readonly sourceTopicId: pulumi.Output; /** * Source log topic name of the data processing task */ readonly sourceTopicName: pulumi.Output; readonly targetResources: pulumi.Output; /** * Data processing task ID */ readonly taskId: pulumi.Output; /** * Type of the data processing task. Fixed as Resident */ readonly taskType: pulumi.Output; /** * The processing end time of the data processing task, in seconds as a Unix timestamp */ readonly toTime: pulumi.Output; /** * Create a Etl 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: EtlArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Etl resources. */ export interface EtlState { /** * Creation time of the data processing task */ createTime?: pulumi.Input; /** * Brief description of the data processing task. Does not support <>, ', \, or \. Length: 0–64 characters */ description?: pulumi.Input; /** * Syntax type of the processing rule. Fixed as NORMAL */ dslType?: pulumi.Input; /** * Whether the data processing task is enabled. true: Enabled. false: Disabled */ enable?: pulumi.Input; /** * Task scheduling status. WAITING: Preparing. RUNNING: Running. STOPPING: Stopping. STOPPED: Stopped. RESTARTING: Restarting */ etlStatus?: pulumi.Input; /** * The processing start time of the data processing task, in seconds as a Unix timestamp */ fromTime?: pulumi.Input; /** * The most recent activation time of the data processing task */ lastEnableTime?: pulumi.Input; /** * Modification time of the data processing task */ modifyTime?: pulumi.Input; /** * Data processing task name */ name?: pulumi.Input; /** * Log project ID to which the data processing task belongs */ projectId?: pulumi.Input; /** * Log project name to which the data processing task belongs */ projectName?: pulumi.Input; /** * Processing rule script used by the data processing task */ script?: pulumi.Input; /** * Source log topic ID of the data processing task */ sourceTopicId?: pulumi.Input; /** * Source log topic name of the data processing task */ sourceTopicName?: pulumi.Input; targetResources?: pulumi.Input[]>; /** * Data processing task ID */ taskId?: pulumi.Input; /** * Type of the data processing task. Fixed as Resident */ taskType?: pulumi.Input; /** * The processing end time of the data processing task, in seconds as a Unix timestamp */ toTime?: pulumi.Input; } /** * The set of arguments for constructing a Etl resource. */ export interface EtlArgs { /** * Brief description of the data processing task. Does not support <>, ', \, or \. Length: 0–64 characters */ description?: pulumi.Input; /** * Syntax type of the processing rule. Fixed as NORMAL */ dslType: pulumi.Input; /** * Whether the data processing task is enabled. true: Enabled. false: Disabled */ enable: pulumi.Input; /** * The processing start time of the data processing task, in seconds as a Unix timestamp */ fromTime?: pulumi.Input; /** * Data processing task name */ name: pulumi.Input; /** * Processing rule script used by the data processing task */ script: pulumi.Input; /** * Source log topic ID of the data processing task */ sourceTopicId: pulumi.Input; targetResources: pulumi.Input[]>; /** * Type of the data processing task. Fixed as Resident */ taskType: pulumi.Input; /** * The processing end time of the data processing task, in seconds as a Unix timestamp */ toTime?: pulumi.Input; }