import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; /** * Creates a new lineage event. */ export declare class LineageEvent extends pulumi.CustomResource { /** * Get an existing LineageEvent 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 opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): LineageEvent; /** * Returns true if the given object is an instance of LineageEvent. 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 LineageEvent; /** * Optional. The end of the transformation which resulted in this lineage event. For streaming scenarios, it should be the end of the period from which the lineage is being reported. */ readonly endTime: pulumi.Output; /** * Optional. List of source-target pairs. Can't contain more than 100 tuples. */ readonly links: pulumi.Output; readonly location: pulumi.Output; /** * Immutable. The resource name of the lineage event. Format: `projects/{project}/locations/{location}/processes/{process}/runs/{run}/lineageEvents/{lineage_event}`. Can be specified or auto-assigned. {lineage_event} must be not longer than 200 characters and only contain characters in a set: `a-zA-Z0-9_-:.` */ readonly name: pulumi.Output; readonly processId: pulumi.Output; readonly project: pulumi.Output; /** * A unique identifier for this request. Restricted to 36 ASCII characters. A random UUID is recommended. This request is idempotent only if a `request_id` is provided. */ readonly requestId: pulumi.Output; readonly runId: pulumi.Output; /** * The beginning of the transformation which resulted in this lineage event. For streaming scenarios, it should be the beginning of the period from which the lineage is being reported. */ readonly startTime: pulumi.Output; /** * Create a LineageEvent 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: LineageEventArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a LineageEvent resource. */ export interface LineageEventArgs { /** * Optional. The end of the transformation which resulted in this lineage event. For streaming scenarios, it should be the end of the period from which the lineage is being reported. */ endTime?: pulumi.Input; /** * Optional. List of source-target pairs. Can't contain more than 100 tuples. */ links?: pulumi.Input[]>; location?: pulumi.Input; /** * Immutable. The resource name of the lineage event. Format: `projects/{project}/locations/{location}/processes/{process}/runs/{run}/lineageEvents/{lineage_event}`. Can be specified or auto-assigned. {lineage_event} must be not longer than 200 characters and only contain characters in a set: `a-zA-Z0-9_-:.` */ name?: pulumi.Input; processId: pulumi.Input; project?: pulumi.Input; /** * A unique identifier for this request. Restricted to 36 ASCII characters. A random UUID is recommended. This request is idempotent only if a `request_id` is provided. */ requestId?: pulumi.Input; runId: pulumi.Input; /** * The beginning of the transformation which resulted in this lineage event. For streaming scenarios, it should be the beginning of the period from which the lineage is being reported. */ startTime: pulumi.Input; }