1. Packages
  2. Tencentcloud Provider
  3. API Docs
  4. WedataLineageAttachment
tencentcloud 1.82.35 published on Friday, Nov 7, 2025 by tencentcloudstack

tencentcloud.WedataLineageAttachment

Start a Neo task
Explain and create a tencentcloud.WedataLineageAttachment resource
tencentcloud logo
tencentcloud 1.82.35 published on Friday, Nov 7, 2025 by tencentcloudstack

    Provides a resource to create a WeData lineage attachment

    NOTE: Do not use the same relation parameters for lineage binding, as this will cause overwriting.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const example = new tencentcloud.WedataLineageAttachment("example", {relations: {
        source: {
            resourceUniqueId: "2s5veseIo2AXGOHJkKjBvQ",
            resourceType: "TABLE",
            platform: "WEDATA",
            resourceName: "db_demo.1",
            description: "DLC",
        },
        target: {
            resourceUniqueId: "fM8OgzE-AM2h4aaJmdXoPg",
            resourceType: "TABLE",
            platform: "WEDATA",
            resourceName: "db_demo.2",
            description: "DLC",
        },
        processes: {
            processId: "20241107221758402",
            processType: "SCHEDULE_TASK",
            platform: "WEDATA",
            processSubType: "SQL_TASK",
        },
    }});
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    example = tencentcloud.WedataLineageAttachment("example", relations={
        "source": {
            "resource_unique_id": "2s5veseIo2AXGOHJkKjBvQ",
            "resource_type": "TABLE",
            "platform": "WEDATA",
            "resource_name": "db_demo.1",
            "description": "DLC",
        },
        "target": {
            "resource_unique_id": "fM8OgzE-AM2h4aaJmdXoPg",
            "resource_type": "TABLE",
            "platform": "WEDATA",
            "resource_name": "db_demo.2",
            "description": "DLC",
        },
        "processes": {
            "process_id": "20241107221758402",
            "process_type": "SCHEDULE_TASK",
            "platform": "WEDATA",
            "process_sub_type": "SQL_TASK",
        },
    })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := tencentcloud.NewWedataLineageAttachment(ctx, "example", &tencentcloud.WedataLineageAttachmentArgs{
    			Relations: &tencentcloud.WedataLineageAttachmentRelationsArgs{
    				Source: &tencentcloud.WedataLineageAttachmentRelationsSourceArgs{
    					ResourceUniqueId: pulumi.String("2s5veseIo2AXGOHJkKjBvQ"),
    					ResourceType:     pulumi.String("TABLE"),
    					Platform:         pulumi.String("WEDATA"),
    					ResourceName:     pulumi.String("db_demo.1"),
    					Description:      pulumi.String("DLC"),
    				},
    				Target: &tencentcloud.WedataLineageAttachmentRelationsTargetArgs{
    					ResourceUniqueId: pulumi.String("fM8OgzE-AM2h4aaJmdXoPg"),
    					ResourceType:     pulumi.String("TABLE"),
    					Platform:         pulumi.String("WEDATA"),
    					ResourceName:     pulumi.String("db_demo.2"),
    					Description:      pulumi.String("DLC"),
    				},
    				Processes: &tencentcloud.WedataLineageAttachmentRelationsProcessesArgs{
    					ProcessId:      pulumi.String("20241107221758402"),
    					ProcessType:    pulumi.String("SCHEDULE_TASK"),
    					Platform:       pulumi.String("WEDATA"),
    					ProcessSubType: pulumi.String("SQL_TASK"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Tencentcloud = Pulumi.Tencentcloud;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Tencentcloud.WedataLineageAttachment("example", new()
        {
            Relations = new Tencentcloud.Inputs.WedataLineageAttachmentRelationsArgs
            {
                Source = new Tencentcloud.Inputs.WedataLineageAttachmentRelationsSourceArgs
                {
                    ResourceUniqueId = "2s5veseIo2AXGOHJkKjBvQ",
                    ResourceType = "TABLE",
                    Platform = "WEDATA",
                    ResourceName = "db_demo.1",
                    Description = "DLC",
                },
                Target = new Tencentcloud.Inputs.WedataLineageAttachmentRelationsTargetArgs
                {
                    ResourceUniqueId = "fM8OgzE-AM2h4aaJmdXoPg",
                    ResourceType = "TABLE",
                    Platform = "WEDATA",
                    ResourceName = "db_demo.2",
                    Description = "DLC",
                },
                Processes = new Tencentcloud.Inputs.WedataLineageAttachmentRelationsProcessesArgs
                {
                    ProcessId = "20241107221758402",
                    ProcessType = "SCHEDULE_TASK",
                    Platform = "WEDATA",
                    ProcessSubType = "SQL_TASK",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.WedataLineageAttachment;
    import com.pulumi.tencentcloud.WedataLineageAttachmentArgs;
    import com.pulumi.tencentcloud.inputs.WedataLineageAttachmentRelationsArgs;
    import com.pulumi.tencentcloud.inputs.WedataLineageAttachmentRelationsSourceArgs;
    import com.pulumi.tencentcloud.inputs.WedataLineageAttachmentRelationsTargetArgs;
    import com.pulumi.tencentcloud.inputs.WedataLineageAttachmentRelationsProcessesArgs;
    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 example = new WedataLineageAttachment("example", WedataLineageAttachmentArgs.builder()
                .relations(WedataLineageAttachmentRelationsArgs.builder()
                    .source(WedataLineageAttachmentRelationsSourceArgs.builder()
                        .resourceUniqueId("2s5veseIo2AXGOHJkKjBvQ")
                        .resourceType("TABLE")
                        .platform("WEDATA")
                        .resourceName("db_demo.1")
                        .description("DLC")
                        .build())
                    .target(WedataLineageAttachmentRelationsTargetArgs.builder()
                        .resourceUniqueId("fM8OgzE-AM2h4aaJmdXoPg")
                        .resourceType("TABLE")
                        .platform("WEDATA")
                        .resourceName("db_demo.2")
                        .description("DLC")
                        .build())
                    .processes(WedataLineageAttachmentRelationsProcessesArgs.builder()
                        .processId("20241107221758402")
                        .processType("SCHEDULE_TASK")
                        .platform("WEDATA")
                        .processSubType("SQL_TASK")
                        .build())
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: tencentcloud:WedataLineageAttachment
        properties:
          relations:
            source:
              resourceUniqueId: 2s5veseIo2AXGOHJkKjBvQ
              resourceType: TABLE
              platform: WEDATA
              resourceName: db_demo.1
              description: DLC
            target:
              resourceUniqueId: fM8OgzE-AM2h4aaJmdXoPg
              resourceType: TABLE
              platform: WEDATA
              resourceName: db_demo.2
              description: DLC
            processes:
              processId: '20241107221758402'
              processType: SCHEDULE_TASK
              platform: WEDATA
              processSubType: SQL_TASK
    

    Create WedataLineageAttachment Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new WedataLineageAttachment(name: string, args: WedataLineageAttachmentArgs, opts?: CustomResourceOptions);
    @overload
    def WedataLineageAttachment(resource_name: str,
                                args: WedataLineageAttachmentArgs,
                                opts: Optional[ResourceOptions] = None)
    
    @overload
    def WedataLineageAttachment(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                relations: Optional[WedataLineageAttachmentRelationsArgs] = None,
                                wedata_lineage_attachment_id: Optional[str] = None)
    func NewWedataLineageAttachment(ctx *Context, name string, args WedataLineageAttachmentArgs, opts ...ResourceOption) (*WedataLineageAttachment, error)
    public WedataLineageAttachment(string name, WedataLineageAttachmentArgs args, CustomResourceOptions? opts = null)
    public WedataLineageAttachment(String name, WedataLineageAttachmentArgs args)
    public WedataLineageAttachment(String name, WedataLineageAttachmentArgs args, CustomResourceOptions options)
    
    type: tencentcloud:WedataLineageAttachment
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args WedataLineageAttachmentArgs
    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 WedataLineageAttachmentArgs
    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 WedataLineageAttachmentArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args WedataLineageAttachmentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args WedataLineageAttachmentArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    WedataLineageAttachment Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The WedataLineageAttachment resource accepts the following input properties:

    Relations WedataLineageAttachmentRelations
    List of lineage relationships to be registered.
    WedataLineageAttachmentId string
    ID of the resource.
    Relations WedataLineageAttachmentRelationsArgs
    List of lineage relationships to be registered.
    WedataLineageAttachmentId string
    ID of the resource.
    relations WedataLineageAttachmentRelations
    List of lineage relationships to be registered.
    wedataLineageAttachmentId String
    ID of the resource.
    relations WedataLineageAttachmentRelations
    List of lineage relationships to be registered.
    wedataLineageAttachmentId string
    ID of the resource.
    relations WedataLineageAttachmentRelationsArgs
    List of lineage relationships to be registered.
    wedata_lineage_attachment_id str
    ID of the resource.
    relations Property Map
    List of lineage relationships to be registered.
    wedataLineageAttachmentId String
    ID of the resource.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the WedataLineageAttachment 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 WedataLineageAttachment Resource

    Get an existing WedataLineageAttachment 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?: WedataLineageAttachmentState, opts?: CustomResourceOptions): WedataLineageAttachment
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            relations: Optional[WedataLineageAttachmentRelationsArgs] = None,
            wedata_lineage_attachment_id: Optional[str] = None) -> WedataLineageAttachment
    func GetWedataLineageAttachment(ctx *Context, name string, id IDInput, state *WedataLineageAttachmentState, opts ...ResourceOption) (*WedataLineageAttachment, error)
    public static WedataLineageAttachment Get(string name, Input<string> id, WedataLineageAttachmentState? state, CustomResourceOptions? opts = null)
    public static WedataLineageAttachment get(String name, Output<String> id, WedataLineageAttachmentState state, CustomResourceOptions options)
    resources:  _:    type: tencentcloud:WedataLineageAttachment    get:      id: ${id}
    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:
    Relations WedataLineageAttachmentRelations
    List of lineage relationships to be registered.
    WedataLineageAttachmentId string
    ID of the resource.
    Relations WedataLineageAttachmentRelationsArgs
    List of lineage relationships to be registered.
    WedataLineageAttachmentId string
    ID of the resource.
    relations WedataLineageAttachmentRelations
    List of lineage relationships to be registered.
    wedataLineageAttachmentId String
    ID of the resource.
    relations WedataLineageAttachmentRelations
    List of lineage relationships to be registered.
    wedataLineageAttachmentId string
    ID of the resource.
    relations WedataLineageAttachmentRelationsArgs
    List of lineage relationships to be registered.
    wedata_lineage_attachment_id str
    ID of the resource.
    relations Property Map
    List of lineage relationships to be registered.
    wedataLineageAttachmentId String
    ID of the resource.

    Supporting Types

    WedataLineageAttachmentRelations, WedataLineageAttachmentRelationsArgs

    processes Property Map
    Lineage processing process.
    source Property Map
    Source.
    target Property Map
    Target.

    WedataLineageAttachmentRelationsProcesses, WedataLineageAttachmentRelationsProcessesArgs

    Platform string
    WEDATA, THIRD.
    ProcessId string
    Original unique ID.
    ProcessType string
    Task type. //Scheduled task SCHEDULE_TASK, //Integration task INTEGRATION_TASK, //Third-party reporting THIRD_REPORT, //Data modeling TABLE_MODEL, //Model creates metric MODEL_METRIC, //Atomic metric creates derived metric METRIC_METRIC, //Data service DATA_SERVICE.
    LineageNodeId string
    Lineage task unique node ID.
    ProcessProperties List<WedataLineageAttachmentRelationsProcessesProcessProperty>
    Additional extension parameters.
    ProcessSubType string
    Task subtype. SQL_TASK, //Integrated real-time task lineage INTEGRATED_STREAM, //Integrated offline task lineage INTEGRATED_OFFLINE.
    Platform string
    WEDATA, THIRD.
    ProcessId string
    Original unique ID.
    ProcessType string
    Task type. //Scheduled task SCHEDULE_TASK, //Integration task INTEGRATION_TASK, //Third-party reporting THIRD_REPORT, //Data modeling TABLE_MODEL, //Model creates metric MODEL_METRIC, //Atomic metric creates derived metric METRIC_METRIC, //Data service DATA_SERVICE.
    LineageNodeId string
    Lineage task unique node ID.
    ProcessProperties []WedataLineageAttachmentRelationsProcessesProcessProperty
    Additional extension parameters.
    ProcessSubType string
    Task subtype. SQL_TASK, //Integrated real-time task lineage INTEGRATED_STREAM, //Integrated offline task lineage INTEGRATED_OFFLINE.
    platform String
    WEDATA, THIRD.
    processId String
    Original unique ID.
    processType String
    Task type. //Scheduled task SCHEDULE_TASK, //Integration task INTEGRATION_TASK, //Third-party reporting THIRD_REPORT, //Data modeling TABLE_MODEL, //Model creates metric MODEL_METRIC, //Atomic metric creates derived metric METRIC_METRIC, //Data service DATA_SERVICE.
    lineageNodeId String
    Lineage task unique node ID.
    processProperties List<WedataLineageAttachmentRelationsProcessesProcessProperty>
    Additional extension parameters.
    processSubType String
    Task subtype. SQL_TASK, //Integrated real-time task lineage INTEGRATED_STREAM, //Integrated offline task lineage INTEGRATED_OFFLINE.
    platform string
    WEDATA, THIRD.
    processId string
    Original unique ID.
    processType string
    Task type. //Scheduled task SCHEDULE_TASK, //Integration task INTEGRATION_TASK, //Third-party reporting THIRD_REPORT, //Data modeling TABLE_MODEL, //Model creates metric MODEL_METRIC, //Atomic metric creates derived metric METRIC_METRIC, //Data service DATA_SERVICE.
    lineageNodeId string
    Lineage task unique node ID.
    processProperties WedataLineageAttachmentRelationsProcessesProcessProperty[]
    Additional extension parameters.
    processSubType string
    Task subtype. SQL_TASK, //Integrated real-time task lineage INTEGRATED_STREAM, //Integrated offline task lineage INTEGRATED_OFFLINE.
    platform str
    WEDATA, THIRD.
    process_id str
    Original unique ID.
    process_type str
    Task type. //Scheduled task SCHEDULE_TASK, //Integration task INTEGRATION_TASK, //Third-party reporting THIRD_REPORT, //Data modeling TABLE_MODEL, //Model creates metric MODEL_METRIC, //Atomic metric creates derived metric METRIC_METRIC, //Data service DATA_SERVICE.
    lineage_node_id str
    Lineage task unique node ID.
    process_properties Sequence[WedataLineageAttachmentRelationsProcessesProcessProperty]
    Additional extension parameters.
    process_sub_type str
    Task subtype. SQL_TASK, //Integrated real-time task lineage INTEGRATED_STREAM, //Integrated offline task lineage INTEGRATED_OFFLINE.
    platform String
    WEDATA, THIRD.
    processId String
    Original unique ID.
    processType String
    Task type. //Scheduled task SCHEDULE_TASK, //Integration task INTEGRATION_TASK, //Third-party reporting THIRD_REPORT, //Data modeling TABLE_MODEL, //Model creates metric MODEL_METRIC, //Atomic metric creates derived metric METRIC_METRIC, //Data service DATA_SERVICE.
    lineageNodeId String
    Lineage task unique node ID.
    processProperties List<Property Map>
    Additional extension parameters.
    processSubType String
    Task subtype. SQL_TASK, //Integrated real-time task lineage INTEGRATED_STREAM, //Integrated offline task lineage INTEGRATED_OFFLINE.

    WedataLineageAttachmentRelationsProcessesProcessProperty, WedataLineageAttachmentRelationsProcessesProcessPropertyArgs

    Name string
    Property name.
    Value string
    Property value.
    Name string
    Property name.
    Value string
    Property value.
    name String
    Property name.
    value String
    Property value.
    name string
    Property name.
    value string
    Property value.
    name str
    Property name.
    value str
    Property value.
    name String
    Property name.
    value String
    Property value.

    WedataLineageAttachmentRelationsSource, WedataLineageAttachmentRelationsSourceArgs

    Platform string
    Source: WEDATA|THIRD. Default is wedata.
    ResourceType string
    Entity type. TABLE|METRIC|MODEL|SERVICE|COLUMN.
    ResourceUniqueId string
    Entity original unique ID.\n Note: When lineage is for table columns, the unique ID should be passed as TableResourceUniqueId::FieldName.
    CreateTime string
    Creation time.
    Description string
    Description: table type | metric description | model description | field description.
    LineageNodeId string
    Lineage node unique identifier.
    ResourceName string
    Business name: database.table | metric name | model name | field name.
    ResourceProperties List<WedataLineageAttachmentRelationsSourceResourceProperty>
    Resource additional extension parameters.
    UpdateTime string
    Update time.
    Platform string
    Source: WEDATA|THIRD. Default is wedata.
    ResourceType string
    Entity type. TABLE|METRIC|MODEL|SERVICE|COLUMN.
    ResourceUniqueId string
    Entity original unique ID.\n Note: When lineage is for table columns, the unique ID should be passed as TableResourceUniqueId::FieldName.
    CreateTime string
    Creation time.
    Description string
    Description: table type | metric description | model description | field description.
    LineageNodeId string
    Lineage node unique identifier.
    ResourceName string
    Business name: database.table | metric name | model name | field name.
    ResourceProperties []WedataLineageAttachmentRelationsSourceResourceProperty
    Resource additional extension parameters.
    UpdateTime string
    Update time.
    platform String
    Source: WEDATA|THIRD. Default is wedata.
    resourceType String
    Entity type. TABLE|METRIC|MODEL|SERVICE|COLUMN.
    resourceUniqueId String
    Entity original unique ID.\n Note: When lineage is for table columns, the unique ID should be passed as TableResourceUniqueId::FieldName.
    createTime String
    Creation time.
    description String
    Description: table type | metric description | model description | field description.
    lineageNodeId String
    Lineage node unique identifier.
    resourceName String
    Business name: database.table | metric name | model name | field name.
    resourceProperties List<WedataLineageAttachmentRelationsSourceResourceProperty>
    Resource additional extension parameters.
    updateTime String
    Update time.
    platform string
    Source: WEDATA|THIRD. Default is wedata.
    resourceType string
    Entity type. TABLE|METRIC|MODEL|SERVICE|COLUMN.
    resourceUniqueId string
    Entity original unique ID.\n Note: When lineage is for table columns, the unique ID should be passed as TableResourceUniqueId::FieldName.
    createTime string
    Creation time.
    description string
    Description: table type | metric description | model description | field description.
    lineageNodeId string
    Lineage node unique identifier.
    resourceName string
    Business name: database.table | metric name | model name | field name.
    resourceProperties WedataLineageAttachmentRelationsSourceResourceProperty[]
    Resource additional extension parameters.
    updateTime string
    Update time.
    platform str
    Source: WEDATA|THIRD. Default is wedata.
    resource_type str
    Entity type. TABLE|METRIC|MODEL|SERVICE|COLUMN.
    resource_unique_id str
    Entity original unique ID.\n Note: When lineage is for table columns, the unique ID should be passed as TableResourceUniqueId::FieldName.
    create_time str
    Creation time.
    description str
    Description: table type | metric description | model description | field description.
    lineage_node_id str
    Lineage node unique identifier.
    resource_name str
    Business name: database.table | metric name | model name | field name.
    resource_properties Sequence[WedataLineageAttachmentRelationsSourceResourceProperty]
    Resource additional extension parameters.
    update_time str
    Update time.
    platform String
    Source: WEDATA|THIRD. Default is wedata.
    resourceType String
    Entity type. TABLE|METRIC|MODEL|SERVICE|COLUMN.
    resourceUniqueId String
    Entity original unique ID.\n Note: When lineage is for table columns, the unique ID should be passed as TableResourceUniqueId::FieldName.
    createTime String
    Creation time.
    description String
    Description: table type | metric description | model description | field description.
    lineageNodeId String
    Lineage node unique identifier.
    resourceName String
    Business name: database.table | metric name | model name | field name.
    resourceProperties List<Property Map>
    Resource additional extension parameters.
    updateTime String
    Update time.

    WedataLineageAttachmentRelationsSourceResourceProperty, WedataLineageAttachmentRelationsSourceResourcePropertyArgs

    Name string
    Property name.
    Value string
    Property value.
    Name string
    Property name.
    Value string
    Property value.
    name String
    Property name.
    value String
    Property value.
    name string
    Property name.
    value string
    Property value.
    name str
    Property name.
    value str
    Property value.
    name String
    Property name.
    value String
    Property value.

    WedataLineageAttachmentRelationsTarget, WedataLineageAttachmentRelationsTargetArgs

    Platform string
    Source: WEDATA|THIRD. Default is wedata.
    ResourceType string
    Entity type. TABLE|METRIC|MODEL|SERVICE|COLUMN.
    ResourceUniqueId string
    Entity original unique ID.\n Note: When lineage is for table columns, the unique ID should be passed as TableResourceUniqueId::FieldName.
    CreateTime string
    Creation time.
    Description string
    Description: table type | metric description | model description | field description.
    LineageNodeId string
    Lineage node unique identifier.
    ResourceName string
    Business name: database.table | metric name | model name | field name.
    ResourceProperties List<WedataLineageAttachmentRelationsTargetResourceProperty>
    Resource additional extension parameters.
    UpdateTime string
    Update time.
    Platform string
    Source: WEDATA|THIRD. Default is wedata.
    ResourceType string
    Entity type. TABLE|METRIC|MODEL|SERVICE|COLUMN.
    ResourceUniqueId string
    Entity original unique ID.\n Note: When lineage is for table columns, the unique ID should be passed as TableResourceUniqueId::FieldName.
    CreateTime string
    Creation time.
    Description string
    Description: table type | metric description | model description | field description.
    LineageNodeId string
    Lineage node unique identifier.
    ResourceName string
    Business name: database.table | metric name | model name | field name.
    ResourceProperties []WedataLineageAttachmentRelationsTargetResourceProperty
    Resource additional extension parameters.
    UpdateTime string
    Update time.
    platform String
    Source: WEDATA|THIRD. Default is wedata.
    resourceType String
    Entity type. TABLE|METRIC|MODEL|SERVICE|COLUMN.
    resourceUniqueId String
    Entity original unique ID.\n Note: When lineage is for table columns, the unique ID should be passed as TableResourceUniqueId::FieldName.
    createTime String
    Creation time.
    description String
    Description: table type | metric description | model description | field description.
    lineageNodeId String
    Lineage node unique identifier.
    resourceName String
    Business name: database.table | metric name | model name | field name.
    resourceProperties List<WedataLineageAttachmentRelationsTargetResourceProperty>
    Resource additional extension parameters.
    updateTime String
    Update time.
    platform string
    Source: WEDATA|THIRD. Default is wedata.
    resourceType string
    Entity type. TABLE|METRIC|MODEL|SERVICE|COLUMN.
    resourceUniqueId string
    Entity original unique ID.\n Note: When lineage is for table columns, the unique ID should be passed as TableResourceUniqueId::FieldName.
    createTime string
    Creation time.
    description string
    Description: table type | metric description | model description | field description.
    lineageNodeId string
    Lineage node unique identifier.
    resourceName string
    Business name: database.table | metric name | model name | field name.
    resourceProperties WedataLineageAttachmentRelationsTargetResourceProperty[]
    Resource additional extension parameters.
    updateTime string
    Update time.
    platform str
    Source: WEDATA|THIRD. Default is wedata.
    resource_type str
    Entity type. TABLE|METRIC|MODEL|SERVICE|COLUMN.
    resource_unique_id str
    Entity original unique ID.\n Note: When lineage is for table columns, the unique ID should be passed as TableResourceUniqueId::FieldName.
    create_time str
    Creation time.
    description str
    Description: table type | metric description | model description | field description.
    lineage_node_id str
    Lineage node unique identifier.
    resource_name str
    Business name: database.table | metric name | model name | field name.
    resource_properties Sequence[WedataLineageAttachmentRelationsTargetResourceProperty]
    Resource additional extension parameters.
    update_time str
    Update time.
    platform String
    Source: WEDATA|THIRD. Default is wedata.
    resourceType String
    Entity type. TABLE|METRIC|MODEL|SERVICE|COLUMN.
    resourceUniqueId String
    Entity original unique ID.\n Note: When lineage is for table columns, the unique ID should be passed as TableResourceUniqueId::FieldName.
    createTime String
    Creation time.
    description String
    Description: table type | metric description | model description | field description.
    lineageNodeId String
    Lineage node unique identifier.
    resourceName String
    Business name: database.table | metric name | model name | field name.
    resourceProperties List<Property Map>
    Resource additional extension parameters.
    updateTime String
    Update time.

    WedataLineageAttachmentRelationsTargetResourceProperty, WedataLineageAttachmentRelationsTargetResourcePropertyArgs

    Name string
    Property name.
    Value string
    Property value.
    Name string
    Property name.
    Value string
    Property value.
    name String
    Property name.
    value String
    Property value.
    name string
    Property name.
    value string
    Property value.
    name str
    Property name.
    value str
    Property value.
    name String
    Property name.
    value String
    Property value.

    Package Details

    Repository
    tencentcloud tencentcloudstack/terraform-provider-tencentcloud
    License
    Notes
    This Pulumi package is based on the tencentcloud Terraform Provider.
    tencentcloud logo
    tencentcloud 1.82.35 published on Friday, Nov 7, 2025 by tencentcloudstack
      Meet Neo: Your AI Platform Teammate