tencentcloud.WedataLineageAttachment
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
Wedata
Lineage Attachment Relations - List of lineage relationships to be registered.
- Wedata
Lineage stringAttachment Id - ID of the resource.
- Relations
Wedata
Lineage Attachment Relations Args - List of lineage relationships to be registered.
- Wedata
Lineage stringAttachment Id - ID of the resource.
- relations
Wedata
Lineage Attachment Relations - List of lineage relationships to be registered.
- wedata
Lineage StringAttachment Id - ID of the resource.
- relations
Wedata
Lineage Attachment Relations - List of lineage relationships to be registered.
- wedata
Lineage stringAttachment Id - ID of the resource.
- relations
Wedata
Lineage Attachment Relations Args - List of lineage relationships to be registered.
- wedata_
lineage_ strattachment_ id - ID of the resource.
- relations Property Map
- List of lineage relationships to be registered.
- wedata
Lineage StringAttachment Id - 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) -> WedataLineageAttachmentfunc 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.
- Relations
Wedata
Lineage Attachment Relations - List of lineage relationships to be registered.
- Wedata
Lineage stringAttachment Id - ID of the resource.
- Relations
Wedata
Lineage Attachment Relations Args - List of lineage relationships to be registered.
- Wedata
Lineage stringAttachment Id - ID of the resource.
- relations
Wedata
Lineage Attachment Relations - List of lineage relationships to be registered.
- wedata
Lineage StringAttachment Id - ID of the resource.
- relations
Wedata
Lineage Attachment Relations - List of lineage relationships to be registered.
- wedata
Lineage stringAttachment Id - ID of the resource.
- relations
Wedata
Lineage Attachment Relations Args - List of lineage relationships to be registered.
- wedata_
lineage_ strattachment_ id - ID of the resource.
- relations Property Map
- List of lineage relationships to be registered.
- wedata
Lineage StringAttachment Id - ID of the resource.
Supporting Types
WedataLineageAttachmentRelations, WedataLineageAttachmentRelationsArgs
- Processes
Wedata
Lineage Attachment Relations Processes - Lineage processing process.
- Source
Wedata
Lineage Attachment Relations Source - Source.
- Target
Wedata
Lineage Attachment Relations Target - Target.
- Processes
Wedata
Lineage Attachment Relations Processes - Lineage processing process.
- Source
Wedata
Lineage Attachment Relations Source - Source.
- Target
Wedata
Lineage Attachment Relations Target - Target.
- processes
Wedata
Lineage Attachment Relations Processes - Lineage processing process.
- source
Wedata
Lineage Attachment Relations Source - Source.
- target
Wedata
Lineage Attachment Relations Target - Target.
- processes
Wedata
Lineage Attachment Relations Processes - Lineage processing process.
- source
Wedata
Lineage Attachment Relations Source - Source.
- target
Wedata
Lineage Attachment Relations Target - Target.
- processes
Wedata
Lineage Attachment Relations Processes - Lineage processing process.
- source
Wedata
Lineage Attachment Relations Source - Source.
- target
Wedata
Lineage Attachment Relations Target - Target.
- processes Property Map
- Lineage processing process.
- source Property Map
- Source.
- target Property Map
- Target.
WedataLineageAttachmentRelationsProcesses, WedataLineageAttachmentRelationsProcessesArgs
- Platform string
- WEDATA, THIRD.
- Process
Id string - Original unique ID.
- Process
Type 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.
- Lineage
Node stringId - Lineage task unique node ID.
- Process
Properties List<WedataLineage Attachment Relations Processes Process Property> - Additional extension parameters.
- Process
Sub stringType - Task subtype. SQL_TASK, //Integrated real-time task lineage INTEGRATED_STREAM, //Integrated offline task lineage INTEGRATED_OFFLINE.
- Platform string
- WEDATA, THIRD.
- Process
Id string - Original unique ID.
- Process
Type 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.
- Lineage
Node stringId - Lineage task unique node ID.
- Process
Properties []WedataLineage Attachment Relations Processes Process Property - Additional extension parameters.
- Process
Sub stringType - Task subtype. SQL_TASK, //Integrated real-time task lineage INTEGRATED_STREAM, //Integrated offline task lineage INTEGRATED_OFFLINE.
- platform String
- WEDATA, THIRD.
- process
Id String - Original unique ID.
- process
Type 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.
- lineage
Node StringId - Lineage task unique node ID.
- process
Properties List<WedataLineage Attachment Relations Processes Process Property> - Additional extension parameters.
- process
Sub StringType - Task subtype. SQL_TASK, //Integrated real-time task lineage INTEGRATED_STREAM, //Integrated offline task lineage INTEGRATED_OFFLINE.
- platform string
- WEDATA, THIRD.
- process
Id string - Original unique ID.
- process
Type 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.
- lineage
Node stringId - Lineage task unique node ID.
- process
Properties WedataLineage Attachment Relations Processes Process Property[] - Additional extension parameters.
- process
Sub stringType - 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_ strid - Lineage task unique node ID.
- process_
properties Sequence[WedataLineage Attachment Relations Processes Process Property] - Additional extension parameters.
- process_
sub_ strtype - Task subtype. SQL_TASK, //Integrated real-time task lineage INTEGRATED_STREAM, //Integrated offline task lineage INTEGRATED_OFFLINE.
- platform String
- WEDATA, THIRD.
- process
Id String - Original unique ID.
- process
Type 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.
- lineage
Node StringId - Lineage task unique node ID.
- process
Properties List<Property Map> - Additional extension parameters.
- process
Sub StringType - Task subtype. SQL_TASK, //Integrated real-time task lineage INTEGRATED_STREAM, //Integrated offline task lineage INTEGRATED_OFFLINE.
WedataLineageAttachmentRelationsProcessesProcessProperty, WedataLineageAttachmentRelationsProcessesProcessPropertyArgs
WedataLineageAttachmentRelationsSource, WedataLineageAttachmentRelationsSourceArgs
- Platform string
- Source: WEDATA|THIRD. Default is wedata.
- Resource
Type string - Entity type. TABLE|METRIC|MODEL|SERVICE|COLUMN.
- Resource
Unique stringId - Entity original unique ID.\n Note: When lineage is for table columns, the unique ID should be passed as TableResourceUniqueId::FieldName.
- Create
Time string - Creation time.
- Description string
- Description: table type | metric description | model description | field description.
- Lineage
Node stringId - Lineage node unique identifier.
- Resource
Name string - Business name: database.table | metric name | model name | field name.
- Resource
Properties List<WedataLineage Attachment Relations Source Resource Property> - Resource additional extension parameters.
- Update
Time string - Update time.
- Platform string
- Source: WEDATA|THIRD. Default is wedata.
- Resource
Type string - Entity type. TABLE|METRIC|MODEL|SERVICE|COLUMN.
- Resource
Unique stringId - Entity original unique ID.\n Note: When lineage is for table columns, the unique ID should be passed as TableResourceUniqueId::FieldName.
- Create
Time string - Creation time.
- Description string
- Description: table type | metric description | model description | field description.
- Lineage
Node stringId - Lineage node unique identifier.
- Resource
Name string - Business name: database.table | metric name | model name | field name.
- Resource
Properties []WedataLineage Attachment Relations Source Resource Property - Resource additional extension parameters.
- Update
Time string - Update time.
- platform String
- Source: WEDATA|THIRD. Default is wedata.
- resource
Type String - Entity type. TABLE|METRIC|MODEL|SERVICE|COLUMN.
- resource
Unique StringId - Entity original unique ID.\n Note: When lineage is for table columns, the unique ID should be passed as TableResourceUniqueId::FieldName.
- create
Time String - Creation time.
- description String
- Description: table type | metric description | model description | field description.
- lineage
Node StringId - Lineage node unique identifier.
- resource
Name String - Business name: database.table | metric name | model name | field name.
- resource
Properties List<WedataLineage Attachment Relations Source Resource Property> - Resource additional extension parameters.
- update
Time String - Update time.
- platform string
- Source: WEDATA|THIRD. Default is wedata.
- resource
Type string - Entity type. TABLE|METRIC|MODEL|SERVICE|COLUMN.
- resource
Unique stringId - Entity original unique ID.\n Note: When lineage is for table columns, the unique ID should be passed as TableResourceUniqueId::FieldName.
- create
Time string - Creation time.
- description string
- Description: table type | metric description | model description | field description.
- lineage
Node stringId - Lineage node unique identifier.
- resource
Name string - Business name: database.table | metric name | model name | field name.
- resource
Properties WedataLineage Attachment Relations Source Resource Property[] - Resource additional extension parameters.
- update
Time string - Update time.
- platform str
- Source: WEDATA|THIRD. Default is wedata.
- resource_
type str - Entity type. TABLE|METRIC|MODEL|SERVICE|COLUMN.
- resource_
unique_ strid - 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_ strid - Lineage node unique identifier.
- resource_
name str - Business name: database.table | metric name | model name | field name.
- resource_
properties Sequence[WedataLineage Attachment Relations Source Resource Property] - Resource additional extension parameters.
- update_
time str - Update time.
- platform String
- Source: WEDATA|THIRD. Default is wedata.
- resource
Type String - Entity type. TABLE|METRIC|MODEL|SERVICE|COLUMN.
- resource
Unique StringId - Entity original unique ID.\n Note: When lineage is for table columns, the unique ID should be passed as TableResourceUniqueId::FieldName.
- create
Time String - Creation time.
- description String
- Description: table type | metric description | model description | field description.
- lineage
Node StringId - Lineage node unique identifier.
- resource
Name String - Business name: database.table | metric name | model name | field name.
- resource
Properties List<Property Map> - Resource additional extension parameters.
- update
Time String - Update time.
WedataLineageAttachmentRelationsSourceResourceProperty, WedataLineageAttachmentRelationsSourceResourcePropertyArgs
WedataLineageAttachmentRelationsTarget, WedataLineageAttachmentRelationsTargetArgs
- Platform string
- Source: WEDATA|THIRD. Default is wedata.
- Resource
Type string - Entity type. TABLE|METRIC|MODEL|SERVICE|COLUMN.
- Resource
Unique stringId - Entity original unique ID.\n Note: When lineage is for table columns, the unique ID should be passed as TableResourceUniqueId::FieldName.
- Create
Time string - Creation time.
- Description string
- Description: table type | metric description | model description | field description.
- Lineage
Node stringId - Lineage node unique identifier.
- Resource
Name string - Business name: database.table | metric name | model name | field name.
- Resource
Properties List<WedataLineage Attachment Relations Target Resource Property> - Resource additional extension parameters.
- Update
Time string - Update time.
- Platform string
- Source: WEDATA|THIRD. Default is wedata.
- Resource
Type string - Entity type. TABLE|METRIC|MODEL|SERVICE|COLUMN.
- Resource
Unique stringId - Entity original unique ID.\n Note: When lineage is for table columns, the unique ID should be passed as TableResourceUniqueId::FieldName.
- Create
Time string - Creation time.
- Description string
- Description: table type | metric description | model description | field description.
- Lineage
Node stringId - Lineage node unique identifier.
- Resource
Name string - Business name: database.table | metric name | model name | field name.
- Resource
Properties []WedataLineage Attachment Relations Target Resource Property - Resource additional extension parameters.
- Update
Time string - Update time.
- platform String
- Source: WEDATA|THIRD. Default is wedata.
- resource
Type String - Entity type. TABLE|METRIC|MODEL|SERVICE|COLUMN.
- resource
Unique StringId - Entity original unique ID.\n Note: When lineage is for table columns, the unique ID should be passed as TableResourceUniqueId::FieldName.
- create
Time String - Creation time.
- description String
- Description: table type | metric description | model description | field description.
- lineage
Node StringId - Lineage node unique identifier.
- resource
Name String - Business name: database.table | metric name | model name | field name.
- resource
Properties List<WedataLineage Attachment Relations Target Resource Property> - Resource additional extension parameters.
- update
Time String - Update time.
- platform string
- Source: WEDATA|THIRD. Default is wedata.
- resource
Type string - Entity type. TABLE|METRIC|MODEL|SERVICE|COLUMN.
- resource
Unique stringId - Entity original unique ID.\n Note: When lineage is for table columns, the unique ID should be passed as TableResourceUniqueId::FieldName.
- create
Time string - Creation time.
- description string
- Description: table type | metric description | model description | field description.
- lineage
Node stringId - Lineage node unique identifier.
- resource
Name string - Business name: database.table | metric name | model name | field name.
- resource
Properties WedataLineage Attachment Relations Target Resource Property[] - Resource additional extension parameters.
- update
Time string - Update time.
- platform str
- Source: WEDATA|THIRD. Default is wedata.
- resource_
type str - Entity type. TABLE|METRIC|MODEL|SERVICE|COLUMN.
- resource_
unique_ strid - 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_ strid - Lineage node unique identifier.
- resource_
name str - Business name: database.table | metric name | model name | field name.
- resource_
properties Sequence[WedataLineage Attachment Relations Target Resource Property] - Resource additional extension parameters.
- update_
time str - Update time.
- platform String
- Source: WEDATA|THIRD. Default is wedata.
- resource
Type String - Entity type. TABLE|METRIC|MODEL|SERVICE|COLUMN.
- resource
Unique StringId - Entity original unique ID.\n Note: When lineage is for table columns, the unique ID should be passed as TableResourceUniqueId::FieldName.
- create
Time String - Creation time.
- description String
- Description: table type | metric description | model description | field description.
- lineage
Node StringId - Lineage node unique identifier.
- resource
Name String - Business name: database.table | metric name | model name | field name.
- resource
Properties List<Property Map> - Resource additional extension parameters.
- update
Time String - Update time.
WedataLineageAttachmentRelationsTargetResourceProperty, WedataLineageAttachmentRelationsTargetResourcePropertyArgs
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloudTerraform Provider.
