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

tencentcloud.DlcDatasourceHouseAttachment

Get Started
tencentcloud logo
tencentcloud 1.82.35 published on Friday, Nov 7, 2025 by tencentcloudstack

    Provides a resource to create a DLC datasource house attachment

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const example = new tencentcloud.DlcDatasourceHouseAttachment("example", {
        datasourceConnectionName: "tf-example",
        datasourceConnectionType: "Mysql",
        datasourceConnectionConfig: {
            mysql: {
                location: {
                    vpcId: "vpc-khkyabcd",
                    vpcCidrBlock: "192.168.0.0/16",
                    subnetId: "subnet-o7n9eg12",
                    subnetCidrBlock: "192.168.0.0/24",
                },
            },
        },
        dataEngineNames: ["engine_demo"],
        networkConnectionType: 4,
        networkConnectionDesc: "remark.",
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    example = tencentcloud.DlcDatasourceHouseAttachment("example",
        datasource_connection_name="tf-example",
        datasource_connection_type="Mysql",
        datasource_connection_config={
            "mysql": {
                "location": {
                    "vpc_id": "vpc-khkyabcd",
                    "vpc_cidr_block": "192.168.0.0/16",
                    "subnet_id": "subnet-o7n9eg12",
                    "subnet_cidr_block": "192.168.0.0/24",
                },
            },
        },
        data_engine_names=["engine_demo"],
        network_connection_type=4,
        network_connection_desc="remark.")
    
    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.NewDlcDatasourceHouseAttachment(ctx, "example", &tencentcloud.DlcDatasourceHouseAttachmentArgs{
    			DatasourceConnectionName: pulumi.String("tf-example"),
    			DatasourceConnectionType: pulumi.String("Mysql"),
    			DatasourceConnectionConfig: &tencentcloud.DlcDatasourceHouseAttachmentDatasourceConnectionConfigArgs{
    				Mysql: &tencentcloud.DlcDatasourceHouseAttachmentDatasourceConnectionConfigMysqlArgs{
    					Location: &tencentcloud.DlcDatasourceHouseAttachmentDatasourceConnectionConfigMysqlLocationArgs{
    						VpcId:           pulumi.String("vpc-khkyabcd"),
    						VpcCidrBlock:    pulumi.String("192.168.0.0/16"),
    						SubnetId:        pulumi.String("subnet-o7n9eg12"),
    						SubnetCidrBlock: pulumi.String("192.168.0.0/24"),
    					},
    				},
    			},
    			DataEngineNames: pulumi.StringArray{
    				pulumi.String("engine_demo"),
    			},
    			NetworkConnectionType: pulumi.Float64(4),
    			NetworkConnectionDesc: pulumi.String("remark."),
    		})
    		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.DlcDatasourceHouseAttachment("example", new()
        {
            DatasourceConnectionName = "tf-example",
            DatasourceConnectionType = "Mysql",
            DatasourceConnectionConfig = new Tencentcloud.Inputs.DlcDatasourceHouseAttachmentDatasourceConnectionConfigArgs
            {
                Mysql = new Tencentcloud.Inputs.DlcDatasourceHouseAttachmentDatasourceConnectionConfigMysqlArgs
                {
                    Location = new Tencentcloud.Inputs.DlcDatasourceHouseAttachmentDatasourceConnectionConfigMysqlLocationArgs
                    {
                        VpcId = "vpc-khkyabcd",
                        VpcCidrBlock = "192.168.0.0/16",
                        SubnetId = "subnet-o7n9eg12",
                        SubnetCidrBlock = "192.168.0.0/24",
                    },
                },
            },
            DataEngineNames = new[]
            {
                "engine_demo",
            },
            NetworkConnectionType = 4,
            NetworkConnectionDesc = "remark.",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.DlcDatasourceHouseAttachment;
    import com.pulumi.tencentcloud.DlcDatasourceHouseAttachmentArgs;
    import com.pulumi.tencentcloud.inputs.DlcDatasourceHouseAttachmentDatasourceConnectionConfigArgs;
    import com.pulumi.tencentcloud.inputs.DlcDatasourceHouseAttachmentDatasourceConnectionConfigMysqlArgs;
    import com.pulumi.tencentcloud.inputs.DlcDatasourceHouseAttachmentDatasourceConnectionConfigMysqlLocationArgs;
    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 DlcDatasourceHouseAttachment("example", DlcDatasourceHouseAttachmentArgs.builder()
                .datasourceConnectionName("tf-example")
                .datasourceConnectionType("Mysql")
                .datasourceConnectionConfig(DlcDatasourceHouseAttachmentDatasourceConnectionConfigArgs.builder()
                    .mysql(DlcDatasourceHouseAttachmentDatasourceConnectionConfigMysqlArgs.builder()
                        .location(DlcDatasourceHouseAttachmentDatasourceConnectionConfigMysqlLocationArgs.builder()
                            .vpcId("vpc-khkyabcd")
                            .vpcCidrBlock("192.168.0.0/16")
                            .subnetId("subnet-o7n9eg12")
                            .subnetCidrBlock("192.168.0.0/24")
                            .build())
                        .build())
                    .build())
                .dataEngineNames("engine_demo")
                .networkConnectionType(4.0)
                .networkConnectionDesc("remark.")
                .build());
    
        }
    }
    
    resources:
      example:
        type: tencentcloud:DlcDatasourceHouseAttachment
        properties:
          datasourceConnectionName: tf-example
          datasourceConnectionType: Mysql
          datasourceConnectionConfig:
            mysql:
              location:
                vpcId: vpc-khkyabcd
                vpcCidrBlock: 192.168.0.0/16
                subnetId: subnet-o7n9eg12
                subnetCidrBlock: 192.168.0.0/24
          dataEngineNames:
            - engine_demo
          networkConnectionType: 4
          networkConnectionDesc: remark.
    

    Create DlcDatasourceHouseAttachment Resource

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

    Constructor syntax

    new DlcDatasourceHouseAttachment(name: string, args: DlcDatasourceHouseAttachmentArgs, opts?: CustomResourceOptions);
    @overload
    def DlcDatasourceHouseAttachment(resource_name: str,
                                     args: DlcDatasourceHouseAttachmentArgs,
                                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def DlcDatasourceHouseAttachment(resource_name: str,
                                     opts: Optional[ResourceOptions] = None,
                                     data_engine_names: Optional[Sequence[str]] = None,
                                     datasource_connection_config: Optional[DlcDatasourceHouseAttachmentDatasourceConnectionConfigArgs] = None,
                                     datasource_connection_name: Optional[str] = None,
                                     datasource_connection_type: Optional[str] = None,
                                     network_connection_type: Optional[float] = None,
                                     dlc_datasource_house_attachment_id: Optional[str] = None,
                                     network_connection_desc: Optional[str] = None)
    func NewDlcDatasourceHouseAttachment(ctx *Context, name string, args DlcDatasourceHouseAttachmentArgs, opts ...ResourceOption) (*DlcDatasourceHouseAttachment, error)
    public DlcDatasourceHouseAttachment(string name, DlcDatasourceHouseAttachmentArgs args, CustomResourceOptions? opts = null)
    public DlcDatasourceHouseAttachment(String name, DlcDatasourceHouseAttachmentArgs args)
    public DlcDatasourceHouseAttachment(String name, DlcDatasourceHouseAttachmentArgs args, CustomResourceOptions options)
    
    type: tencentcloud:DlcDatasourceHouseAttachment
    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 DlcDatasourceHouseAttachmentArgs
    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 DlcDatasourceHouseAttachmentArgs
    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 DlcDatasourceHouseAttachmentArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DlcDatasourceHouseAttachmentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DlcDatasourceHouseAttachmentArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    DlcDatasourceHouseAttachment 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 DlcDatasourceHouseAttachment resource accepts the following input properties:

    DataEngineNames List<string>
    Engine name, only one engine can be bound.
    DatasourceConnectionConfig DlcDatasourceHouseAttachmentDatasourceConnectionConfig
    Data source network configuration.
    DatasourceConnectionName string
    Network configuration name.
    DatasourceConnectionType string
    Data source type. Allow value: Mysql, HiveCos, HiveHdfs, HiveCHdfs, Kafka, OtherDatasourceConnection, PostgreSql, SqlServer, ClickHouse, Elasticsearch, TDSQLPostgreSql, TCHouseD, TccHive.
    NetworkConnectionType double
    Network type, 2-cross-source type, 4-enhanced type.
    DlcDatasourceHouseAttachmentId string
    ID of the resource.
    NetworkConnectionDesc string
    Network configuration description.
    DataEngineNames []string
    Engine name, only one engine can be bound.
    DatasourceConnectionConfig DlcDatasourceHouseAttachmentDatasourceConnectionConfigArgs
    Data source network configuration.
    DatasourceConnectionName string
    Network configuration name.
    DatasourceConnectionType string
    Data source type. Allow value: Mysql, HiveCos, HiveHdfs, HiveCHdfs, Kafka, OtherDatasourceConnection, PostgreSql, SqlServer, ClickHouse, Elasticsearch, TDSQLPostgreSql, TCHouseD, TccHive.
    NetworkConnectionType float64
    Network type, 2-cross-source type, 4-enhanced type.
    DlcDatasourceHouseAttachmentId string
    ID of the resource.
    NetworkConnectionDesc string
    Network configuration description.
    dataEngineNames List<String>
    Engine name, only one engine can be bound.
    datasourceConnectionConfig DlcDatasourceHouseAttachmentDatasourceConnectionConfig
    Data source network configuration.
    datasourceConnectionName String
    Network configuration name.
    datasourceConnectionType String
    Data source type. Allow value: Mysql, HiveCos, HiveHdfs, HiveCHdfs, Kafka, OtherDatasourceConnection, PostgreSql, SqlServer, ClickHouse, Elasticsearch, TDSQLPostgreSql, TCHouseD, TccHive.
    networkConnectionType Double
    Network type, 2-cross-source type, 4-enhanced type.
    dlcDatasourceHouseAttachmentId String
    ID of the resource.
    networkConnectionDesc String
    Network configuration description.
    dataEngineNames string[]
    Engine name, only one engine can be bound.
    datasourceConnectionConfig DlcDatasourceHouseAttachmentDatasourceConnectionConfig
    Data source network configuration.
    datasourceConnectionName string
    Network configuration name.
    datasourceConnectionType string
    Data source type. Allow value: Mysql, HiveCos, HiveHdfs, HiveCHdfs, Kafka, OtherDatasourceConnection, PostgreSql, SqlServer, ClickHouse, Elasticsearch, TDSQLPostgreSql, TCHouseD, TccHive.
    networkConnectionType number
    Network type, 2-cross-source type, 4-enhanced type.
    dlcDatasourceHouseAttachmentId string
    ID of the resource.
    networkConnectionDesc string
    Network configuration description.
    data_engine_names Sequence[str]
    Engine name, only one engine can be bound.
    datasource_connection_config DlcDatasourceHouseAttachmentDatasourceConnectionConfigArgs
    Data source network configuration.
    datasource_connection_name str
    Network configuration name.
    datasource_connection_type str
    Data source type. Allow value: Mysql, HiveCos, HiveHdfs, HiveCHdfs, Kafka, OtherDatasourceConnection, PostgreSql, SqlServer, ClickHouse, Elasticsearch, TDSQLPostgreSql, TCHouseD, TccHive.
    network_connection_type float
    Network type, 2-cross-source type, 4-enhanced type.
    dlc_datasource_house_attachment_id str
    ID of the resource.
    network_connection_desc str
    Network configuration description.
    dataEngineNames List<String>
    Engine name, only one engine can be bound.
    datasourceConnectionConfig Property Map
    Data source network configuration.
    datasourceConnectionName String
    Network configuration name.
    datasourceConnectionType String
    Data source type. Allow value: Mysql, HiveCos, HiveHdfs, HiveCHdfs, Kafka, OtherDatasourceConnection, PostgreSql, SqlServer, ClickHouse, Elasticsearch, TDSQLPostgreSql, TCHouseD, TccHive.
    networkConnectionType Number
    Network type, 2-cross-source type, 4-enhanced type.
    dlcDatasourceHouseAttachmentId String
    ID of the resource.
    networkConnectionDesc String
    Network configuration description.

    Outputs

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

    Get an existing DlcDatasourceHouseAttachment 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?: DlcDatasourceHouseAttachmentState, opts?: CustomResourceOptions): DlcDatasourceHouseAttachment
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            data_engine_names: Optional[Sequence[str]] = None,
            datasource_connection_config: Optional[DlcDatasourceHouseAttachmentDatasourceConnectionConfigArgs] = None,
            datasource_connection_name: Optional[str] = None,
            datasource_connection_type: Optional[str] = None,
            dlc_datasource_house_attachment_id: Optional[str] = None,
            network_connection_desc: Optional[str] = None,
            network_connection_type: Optional[float] = None) -> DlcDatasourceHouseAttachment
    func GetDlcDatasourceHouseAttachment(ctx *Context, name string, id IDInput, state *DlcDatasourceHouseAttachmentState, opts ...ResourceOption) (*DlcDatasourceHouseAttachment, error)
    public static DlcDatasourceHouseAttachment Get(string name, Input<string> id, DlcDatasourceHouseAttachmentState? state, CustomResourceOptions? opts = null)
    public static DlcDatasourceHouseAttachment get(String name, Output<String> id, DlcDatasourceHouseAttachmentState state, CustomResourceOptions options)
    resources:  _:    type: tencentcloud:DlcDatasourceHouseAttachment    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:
    DataEngineNames List<string>
    Engine name, only one engine can be bound.
    DatasourceConnectionConfig DlcDatasourceHouseAttachmentDatasourceConnectionConfig
    Data source network configuration.
    DatasourceConnectionName string
    Network configuration name.
    DatasourceConnectionType string
    Data source type. Allow value: Mysql, HiveCos, HiveHdfs, HiveCHdfs, Kafka, OtherDatasourceConnection, PostgreSql, SqlServer, ClickHouse, Elasticsearch, TDSQLPostgreSql, TCHouseD, TccHive.
    DlcDatasourceHouseAttachmentId string
    ID of the resource.
    NetworkConnectionDesc string
    Network configuration description.
    NetworkConnectionType double
    Network type, 2-cross-source type, 4-enhanced type.
    DataEngineNames []string
    Engine name, only one engine can be bound.
    DatasourceConnectionConfig DlcDatasourceHouseAttachmentDatasourceConnectionConfigArgs
    Data source network configuration.
    DatasourceConnectionName string
    Network configuration name.
    DatasourceConnectionType string
    Data source type. Allow value: Mysql, HiveCos, HiveHdfs, HiveCHdfs, Kafka, OtherDatasourceConnection, PostgreSql, SqlServer, ClickHouse, Elasticsearch, TDSQLPostgreSql, TCHouseD, TccHive.
    DlcDatasourceHouseAttachmentId string
    ID of the resource.
    NetworkConnectionDesc string
    Network configuration description.
    NetworkConnectionType float64
    Network type, 2-cross-source type, 4-enhanced type.
    dataEngineNames List<String>
    Engine name, only one engine can be bound.
    datasourceConnectionConfig DlcDatasourceHouseAttachmentDatasourceConnectionConfig
    Data source network configuration.
    datasourceConnectionName String
    Network configuration name.
    datasourceConnectionType String
    Data source type. Allow value: Mysql, HiveCos, HiveHdfs, HiveCHdfs, Kafka, OtherDatasourceConnection, PostgreSql, SqlServer, ClickHouse, Elasticsearch, TDSQLPostgreSql, TCHouseD, TccHive.
    dlcDatasourceHouseAttachmentId String
    ID of the resource.
    networkConnectionDesc String
    Network configuration description.
    networkConnectionType Double
    Network type, 2-cross-source type, 4-enhanced type.
    dataEngineNames string[]
    Engine name, only one engine can be bound.
    datasourceConnectionConfig DlcDatasourceHouseAttachmentDatasourceConnectionConfig
    Data source network configuration.
    datasourceConnectionName string
    Network configuration name.
    datasourceConnectionType string
    Data source type. Allow value: Mysql, HiveCos, HiveHdfs, HiveCHdfs, Kafka, OtherDatasourceConnection, PostgreSql, SqlServer, ClickHouse, Elasticsearch, TDSQLPostgreSql, TCHouseD, TccHive.
    dlcDatasourceHouseAttachmentId string
    ID of the resource.
    networkConnectionDesc string
    Network configuration description.
    networkConnectionType number
    Network type, 2-cross-source type, 4-enhanced type.
    data_engine_names Sequence[str]
    Engine name, only one engine can be bound.
    datasource_connection_config DlcDatasourceHouseAttachmentDatasourceConnectionConfigArgs
    Data source network configuration.
    datasource_connection_name str
    Network configuration name.
    datasource_connection_type str
    Data source type. Allow value: Mysql, HiveCos, HiveHdfs, HiveCHdfs, Kafka, OtherDatasourceConnection, PostgreSql, SqlServer, ClickHouse, Elasticsearch, TDSQLPostgreSql, TCHouseD, TccHive.
    dlc_datasource_house_attachment_id str
    ID of the resource.
    network_connection_desc str
    Network configuration description.
    network_connection_type float
    Network type, 2-cross-source type, 4-enhanced type.
    dataEngineNames List<String>
    Engine name, only one engine can be bound.
    datasourceConnectionConfig Property Map
    Data source network configuration.
    datasourceConnectionName String
    Network configuration name.
    datasourceConnectionType String
    Data source type. Allow value: Mysql, HiveCos, HiveHdfs, HiveCHdfs, Kafka, OtherDatasourceConnection, PostgreSql, SqlServer, ClickHouse, Elasticsearch, TDSQLPostgreSql, TCHouseD, TccHive.
    dlcDatasourceHouseAttachmentId String
    ID of the resource.
    networkConnectionDesc String
    Network configuration description.
    networkConnectionType Number
    Network type, 2-cross-source type, 4-enhanced type.

    Supporting Types

    DlcDatasourceHouseAttachmentDatasourceConnectionConfig, DlcDatasourceHouseAttachmentDatasourceConnectionConfigArgs

    ClickHouse DlcDatasourceHouseAttachmentDatasourceConnectionConfigClickHouse
    Properties of ClickHouse data source connection.
    Elasticsearch DlcDatasourceHouseAttachmentDatasourceConnectionConfigElasticsearch
    Properties of Elasticsearch data source connection.
    Hive DlcDatasourceHouseAttachmentDatasourceConnectionConfigHive
    Properties of Hive data source connection.
    Kafka DlcDatasourceHouseAttachmentDatasourceConnectionConfigKafka
    Properties of Kafka data source connection.
    Mysql DlcDatasourceHouseAttachmentDatasourceConnectionConfigMysql
    Metadata database information for Hive.
    OtherDatasourceConnection DlcDatasourceHouseAttachmentDatasourceConnectionConfigOtherDatasourceConnection
    Properties of other data source connection.
    PostgreSql DlcDatasourceHouseAttachmentDatasourceConnectionConfigPostgreSql
    Properties of PostgreSQL data source connection.
    SqlServer DlcDatasourceHouseAttachmentDatasourceConnectionConfigSqlServer
    Properties of SQLServer data source connection.
    TcHouseD DlcDatasourceHouseAttachmentDatasourceConnectionConfigTcHouseD
    Properties of Doris data source connection.
    TccHive DlcDatasourceHouseAttachmentDatasourceConnectionConfigTccHive
    TccHive data catalog connection information.
    TdsqlPostgreSql DlcDatasourceHouseAttachmentDatasourceConnectionConfigTdsqlPostgreSql
    Properties of TDSQL-PostgreSQL data source connection.
    ClickHouse DlcDatasourceHouseAttachmentDatasourceConnectionConfigClickHouse
    Properties of ClickHouse data source connection.
    Elasticsearch DlcDatasourceHouseAttachmentDatasourceConnectionConfigElasticsearch
    Properties of Elasticsearch data source connection.
    Hive DlcDatasourceHouseAttachmentDatasourceConnectionConfigHive
    Properties of Hive data source connection.
    Kafka DlcDatasourceHouseAttachmentDatasourceConnectionConfigKafka
    Properties of Kafka data source connection.
    Mysql DlcDatasourceHouseAttachmentDatasourceConnectionConfigMysql
    Metadata database information for Hive.
    OtherDatasourceConnection DlcDatasourceHouseAttachmentDatasourceConnectionConfigOtherDatasourceConnection
    Properties of other data source connection.
    PostgreSql DlcDatasourceHouseAttachmentDatasourceConnectionConfigPostgreSql
    Properties of PostgreSQL data source connection.
    SqlServer DlcDatasourceHouseAttachmentDatasourceConnectionConfigSqlServer
    Properties of SQLServer data source connection.
    TcHouseD DlcDatasourceHouseAttachmentDatasourceConnectionConfigTcHouseD
    Properties of Doris data source connection.
    TccHive DlcDatasourceHouseAttachmentDatasourceConnectionConfigTccHive
    TccHive data catalog connection information.
    TdsqlPostgreSql DlcDatasourceHouseAttachmentDatasourceConnectionConfigTdsqlPostgreSql
    Properties of TDSQL-PostgreSQL data source connection.
    clickHouse DlcDatasourceHouseAttachmentDatasourceConnectionConfigClickHouse
    Properties of ClickHouse data source connection.
    elasticsearch DlcDatasourceHouseAttachmentDatasourceConnectionConfigElasticsearch
    Properties of Elasticsearch data source connection.
    hive DlcDatasourceHouseAttachmentDatasourceConnectionConfigHive
    Properties of Hive data source connection.
    kafka DlcDatasourceHouseAttachmentDatasourceConnectionConfigKafka
    Properties of Kafka data source connection.
    mysql DlcDatasourceHouseAttachmentDatasourceConnectionConfigMysql
    Metadata database information for Hive.
    otherDatasourceConnection DlcDatasourceHouseAttachmentDatasourceConnectionConfigOtherDatasourceConnection
    Properties of other data source connection.
    postgreSql DlcDatasourceHouseAttachmentDatasourceConnectionConfigPostgreSql
    Properties of PostgreSQL data source connection.
    sqlServer DlcDatasourceHouseAttachmentDatasourceConnectionConfigSqlServer
    Properties of SQLServer data source connection.
    tcHouseD DlcDatasourceHouseAttachmentDatasourceConnectionConfigTcHouseD
    Properties of Doris data source connection.
    tccHive DlcDatasourceHouseAttachmentDatasourceConnectionConfigTccHive
    TccHive data catalog connection information.
    tdsqlPostgreSql DlcDatasourceHouseAttachmentDatasourceConnectionConfigTdsqlPostgreSql
    Properties of TDSQL-PostgreSQL data source connection.
    clickHouse DlcDatasourceHouseAttachmentDatasourceConnectionConfigClickHouse
    Properties of ClickHouse data source connection.
    elasticsearch DlcDatasourceHouseAttachmentDatasourceConnectionConfigElasticsearch
    Properties of Elasticsearch data source connection.
    hive DlcDatasourceHouseAttachmentDatasourceConnectionConfigHive
    Properties of Hive data source connection.
    kafka DlcDatasourceHouseAttachmentDatasourceConnectionConfigKafka
    Properties of Kafka data source connection.
    mysql DlcDatasourceHouseAttachmentDatasourceConnectionConfigMysql
    Metadata database information for Hive.
    otherDatasourceConnection DlcDatasourceHouseAttachmentDatasourceConnectionConfigOtherDatasourceConnection
    Properties of other data source connection.
    postgreSql DlcDatasourceHouseAttachmentDatasourceConnectionConfigPostgreSql
    Properties of PostgreSQL data source connection.
    sqlServer DlcDatasourceHouseAttachmentDatasourceConnectionConfigSqlServer
    Properties of SQLServer data source connection.
    tcHouseD DlcDatasourceHouseAttachmentDatasourceConnectionConfigTcHouseD
    Properties of Doris data source connection.
    tccHive DlcDatasourceHouseAttachmentDatasourceConnectionConfigTccHive
    TccHive data catalog connection information.
    tdsqlPostgreSql DlcDatasourceHouseAttachmentDatasourceConnectionConfigTdsqlPostgreSql
    Properties of TDSQL-PostgreSQL data source connection.
    click_house DlcDatasourceHouseAttachmentDatasourceConnectionConfigClickHouse
    Properties of ClickHouse data source connection.
    elasticsearch DlcDatasourceHouseAttachmentDatasourceConnectionConfigElasticsearch
    Properties of Elasticsearch data source connection.
    hive DlcDatasourceHouseAttachmentDatasourceConnectionConfigHive
    Properties of Hive data source connection.
    kafka DlcDatasourceHouseAttachmentDatasourceConnectionConfigKafka
    Properties of Kafka data source connection.
    mysql DlcDatasourceHouseAttachmentDatasourceConnectionConfigMysql
    Metadata database information for Hive.
    other_datasource_connection DlcDatasourceHouseAttachmentDatasourceConnectionConfigOtherDatasourceConnection
    Properties of other data source connection.
    postgre_sql DlcDatasourceHouseAttachmentDatasourceConnectionConfigPostgreSql
    Properties of PostgreSQL data source connection.
    sql_server DlcDatasourceHouseAttachmentDatasourceConnectionConfigSqlServer
    Properties of SQLServer data source connection.
    tc_house_d DlcDatasourceHouseAttachmentDatasourceConnectionConfigTcHouseD
    Properties of Doris data source connection.
    tcc_hive DlcDatasourceHouseAttachmentDatasourceConnectionConfigTccHive
    TccHive data catalog connection information.
    tdsql_postgre_sql DlcDatasourceHouseAttachmentDatasourceConnectionConfigTdsqlPostgreSql
    Properties of TDSQL-PostgreSQL data source connection.
    clickHouse Property Map
    Properties of ClickHouse data source connection.
    elasticsearch Property Map
    Properties of Elasticsearch data source connection.
    hive Property Map
    Properties of Hive data source connection.
    kafka Property Map
    Properties of Kafka data source connection.
    mysql Property Map
    Metadata database information for Hive.
    otherDatasourceConnection Property Map
    Properties of other data source connection.
    postgreSql Property Map
    Properties of PostgreSQL data source connection.
    sqlServer Property Map
    Properties of SQLServer data source connection.
    tcHouseD Property Map
    Properties of Doris data source connection.
    tccHive Property Map
    TccHive data catalog connection information.
    tdsqlPostgreSql Property Map
    Properties of TDSQL-PostgreSQL data source connection.

    DlcDatasourceHouseAttachmentDatasourceConnectionConfigClickHouse, DlcDatasourceHouseAttachmentDatasourceConnectionConfigClickHouseArgs

    DbName string
    Default database name.
    InstanceId string
    Unique ID of the data source instance.
    InstanceName string
    Name of the data source.
    Location DlcDatasourceHouseAttachmentDatasourceConnectionConfigClickHouseLocation
    VPC and subnet information for the data source.
    DbName string
    Default database name.
    InstanceId string
    Unique ID of the data source instance.
    InstanceName string
    Name of the data source.
    Location DlcDatasourceHouseAttachmentDatasourceConnectionConfigClickHouseLocation
    VPC and subnet information for the data source.
    dbName String
    Default database name.
    instanceId String
    Unique ID of the data source instance.
    instanceName String
    Name of the data source.
    location DlcDatasourceHouseAttachmentDatasourceConnectionConfigClickHouseLocation
    VPC and subnet information for the data source.
    dbName string
    Default database name.
    instanceId string
    Unique ID of the data source instance.
    instanceName string
    Name of the data source.
    location DlcDatasourceHouseAttachmentDatasourceConnectionConfigClickHouseLocation
    VPC and subnet information for the data source.
    db_name str
    Default database name.
    instance_id str
    Unique ID of the data source instance.
    instance_name str
    Name of the data source.
    location DlcDatasourceHouseAttachmentDatasourceConnectionConfigClickHouseLocation
    VPC and subnet information for the data source.
    dbName String
    Default database name.
    instanceId String
    Unique ID of the data source instance.
    instanceName String
    Name of the data source.
    location Property Map
    VPC and subnet information for the data source.

    DlcDatasourceHouseAttachmentDatasourceConnectionConfigClickHouseLocation, DlcDatasourceHouseAttachmentDatasourceConnectionConfigClickHouseLocationArgs

    SubnetCidrBlock string
    Subnet IPv4 CIDR.
    SubnetId string
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    VpcCidrBlock string
    VPC IPv4 CIDR.
    VpcId string
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    SubnetCidrBlock string
    Subnet IPv4 CIDR.
    SubnetId string
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    VpcCidrBlock string
    VPC IPv4 CIDR.
    VpcId string
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnetCidrBlock String
    Subnet IPv4 CIDR.
    subnetId String
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpcCidrBlock String
    VPC IPv4 CIDR.
    vpcId String
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnetCidrBlock string
    Subnet IPv4 CIDR.
    subnetId string
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpcCidrBlock string
    VPC IPv4 CIDR.
    vpcId string
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnet_cidr_block str
    Subnet IPv4 CIDR.
    subnet_id str
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpc_cidr_block str
    VPC IPv4 CIDR.
    vpc_id str
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnetCidrBlock String
    Subnet IPv4 CIDR.
    subnetId String
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpcCidrBlock String
    VPC IPv4 CIDR.
    vpcId String
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.

    DlcDatasourceHouseAttachmentDatasourceConnectionConfigElasticsearch, DlcDatasourceHouseAttachmentDatasourceConnectionConfigElasticsearchArgs

    DbName string
    Default database name.
    InstanceId string
    Data source ID.
    InstanceName string
    Data source name.
    Location DlcDatasourceHouseAttachmentDatasourceConnectionConfigElasticsearchLocation
    VPC and subnet information for the data source.
    ServiceInfos List<DlcDatasourceHouseAttachmentDatasourceConnectionConfigElasticsearchServiceInfo>
    IP and port information for accessing Elasticsearch.
    DbName string
    Default database name.
    InstanceId string
    Data source ID.
    InstanceName string
    Data source name.
    Location DlcDatasourceHouseAttachmentDatasourceConnectionConfigElasticsearchLocation
    VPC and subnet information for the data source.
    ServiceInfos []DlcDatasourceHouseAttachmentDatasourceConnectionConfigElasticsearchServiceInfo
    IP and port information for accessing Elasticsearch.
    dbName String
    Default database name.
    instanceId String
    Data source ID.
    instanceName String
    Data source name.
    location DlcDatasourceHouseAttachmentDatasourceConnectionConfigElasticsearchLocation
    VPC and subnet information for the data source.
    serviceInfos List<DlcDatasourceHouseAttachmentDatasourceConnectionConfigElasticsearchServiceInfo>
    IP and port information for accessing Elasticsearch.
    dbName string
    Default database name.
    instanceId string
    Data source ID.
    instanceName string
    Data source name.
    location DlcDatasourceHouseAttachmentDatasourceConnectionConfigElasticsearchLocation
    VPC and subnet information for the data source.
    serviceInfos DlcDatasourceHouseAttachmentDatasourceConnectionConfigElasticsearchServiceInfo[]
    IP and port information for accessing Elasticsearch.
    db_name str
    Default database name.
    instance_id str
    Data source ID.
    instance_name str
    Data source name.
    location DlcDatasourceHouseAttachmentDatasourceConnectionConfigElasticsearchLocation
    VPC and subnet information for the data source.
    service_infos Sequence[DlcDatasourceHouseAttachmentDatasourceConnectionConfigElasticsearchServiceInfo]
    IP and port information for accessing Elasticsearch.
    dbName String
    Default database name.
    instanceId String
    Data source ID.
    instanceName String
    Data source name.
    location Property Map
    VPC and subnet information for the data source.
    serviceInfos List<Property Map>
    IP and port information for accessing Elasticsearch.

    DlcDatasourceHouseAttachmentDatasourceConnectionConfigElasticsearchLocation, DlcDatasourceHouseAttachmentDatasourceConnectionConfigElasticsearchLocationArgs

    SubnetCidrBlock string
    Subnet IPv4 CIDR.
    SubnetId string
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    VpcCidrBlock string
    VPC IPv4 CIDR.
    VpcId string
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    SubnetCidrBlock string
    Subnet IPv4 CIDR.
    SubnetId string
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    VpcCidrBlock string
    VPC IPv4 CIDR.
    VpcId string
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnetCidrBlock String
    Subnet IPv4 CIDR.
    subnetId String
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpcCidrBlock String
    VPC IPv4 CIDR.
    vpcId String
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnetCidrBlock string
    Subnet IPv4 CIDR.
    subnetId string
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpcCidrBlock string
    VPC IPv4 CIDR.
    vpcId string
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnet_cidr_block str
    Subnet IPv4 CIDR.
    subnet_id str
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpc_cidr_block str
    VPC IPv4 CIDR.
    vpc_id str
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnetCidrBlock String
    Subnet IPv4 CIDR.
    subnetId String
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpcCidrBlock String
    VPC IPv4 CIDR.
    vpcId String
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.

    DlcDatasourceHouseAttachmentDatasourceConnectionConfigElasticsearchServiceInfo, DlcDatasourceHouseAttachmentDatasourceConnectionConfigElasticsearchServiceInfoArgs

    Ip string
    IP information.
    Port double
    Port information.
    Ip string
    IP information.
    Port float64
    Port information.
    ip String
    IP information.
    port Double
    Port information.
    ip string
    IP information.
    port number
    Port information.
    ip str
    IP information.
    port float
    Port information.
    ip String
    IP information.
    port Number
    Port information.

    DlcDatasourceHouseAttachmentDatasourceConnectionConfigHive, DlcDatasourceHouseAttachmentDatasourceConnectionConfigHiveArgs

    Location DlcDatasourceHouseAttachmentDatasourceConnectionConfigHiveLocation
    Network information for MySQL data source.
    MetaStoreUrl string
    Address of Hive metastore.
    Type string
    Hive data source type, representing data storage location, COS or HDFS.
    BucketUrl string
    If the type is COS, COS bucket connection needs to be filled in.
    HdfsProperties string
    JSON string. If the type is HDFS, this field needs to be filled in.
    HighAvailability bool
    If the type is HDFS, high availability needs to be selected.
    HiveVersion string
    Version number of Hive component in EMR cluster.
    InstanceId string
    Database instance ID, consistent with the database side.
    InstanceName string
    Database instance name, consistent with the database side.
    KerberosEnable bool
    Whether to enable Kerberos.
    KerberosInfo DlcDatasourceHouseAttachmentDatasourceConnectionConfigHiveKerberosInfo
    Kerberos details.
    Mysql DlcDatasourceHouseAttachmentDatasourceConnectionConfigHiveMysql
    Metadata database information for Hive.
    Location DlcDatasourceHouseAttachmentDatasourceConnectionConfigHiveLocation
    Network information for MySQL data source.
    MetaStoreUrl string
    Address of Hive metastore.
    Type string
    Hive data source type, representing data storage location, COS or HDFS.
    BucketUrl string
    If the type is COS, COS bucket connection needs to be filled in.
    HdfsProperties string
    JSON string. If the type is HDFS, this field needs to be filled in.
    HighAvailability bool
    If the type is HDFS, high availability needs to be selected.
    HiveVersion string
    Version number of Hive component in EMR cluster.
    InstanceId string
    Database instance ID, consistent with the database side.
    InstanceName string
    Database instance name, consistent with the database side.
    KerberosEnable bool
    Whether to enable Kerberos.
    KerberosInfo DlcDatasourceHouseAttachmentDatasourceConnectionConfigHiveKerberosInfo
    Kerberos details.
    Mysql DlcDatasourceHouseAttachmentDatasourceConnectionConfigHiveMysql
    Metadata database information for Hive.
    location DlcDatasourceHouseAttachmentDatasourceConnectionConfigHiveLocation
    Network information for MySQL data source.
    metaStoreUrl String
    Address of Hive metastore.
    type String
    Hive data source type, representing data storage location, COS or HDFS.
    bucketUrl String
    If the type is COS, COS bucket connection needs to be filled in.
    hdfsProperties String
    JSON string. If the type is HDFS, this field needs to be filled in.
    highAvailability Boolean
    If the type is HDFS, high availability needs to be selected.
    hiveVersion String
    Version number of Hive component in EMR cluster.
    instanceId String
    Database instance ID, consistent with the database side.
    instanceName String
    Database instance name, consistent with the database side.
    kerberosEnable Boolean
    Whether to enable Kerberos.
    kerberosInfo DlcDatasourceHouseAttachmentDatasourceConnectionConfigHiveKerberosInfo
    Kerberos details.
    mysql DlcDatasourceHouseAttachmentDatasourceConnectionConfigHiveMysql
    Metadata database information for Hive.
    location DlcDatasourceHouseAttachmentDatasourceConnectionConfigHiveLocation
    Network information for MySQL data source.
    metaStoreUrl string
    Address of Hive metastore.
    type string
    Hive data source type, representing data storage location, COS or HDFS.
    bucketUrl string
    If the type is COS, COS bucket connection needs to be filled in.
    hdfsProperties string
    JSON string. If the type is HDFS, this field needs to be filled in.
    highAvailability boolean
    If the type is HDFS, high availability needs to be selected.
    hiveVersion string
    Version number of Hive component in EMR cluster.
    instanceId string
    Database instance ID, consistent with the database side.
    instanceName string
    Database instance name, consistent with the database side.
    kerberosEnable boolean
    Whether to enable Kerberos.
    kerberosInfo DlcDatasourceHouseAttachmentDatasourceConnectionConfigHiveKerberosInfo
    Kerberos details.
    mysql DlcDatasourceHouseAttachmentDatasourceConnectionConfigHiveMysql
    Metadata database information for Hive.
    location DlcDatasourceHouseAttachmentDatasourceConnectionConfigHiveLocation
    Network information for MySQL data source.
    meta_store_url str
    Address of Hive metastore.
    type str
    Hive data source type, representing data storage location, COS or HDFS.
    bucket_url str
    If the type is COS, COS bucket connection needs to be filled in.
    hdfs_properties str
    JSON string. If the type is HDFS, this field needs to be filled in.
    high_availability bool
    If the type is HDFS, high availability needs to be selected.
    hive_version str
    Version number of Hive component in EMR cluster.
    instance_id str
    Database instance ID, consistent with the database side.
    instance_name str
    Database instance name, consistent with the database side.
    kerberos_enable bool
    Whether to enable Kerberos.
    kerberos_info DlcDatasourceHouseAttachmentDatasourceConnectionConfigHiveKerberosInfo
    Kerberos details.
    mysql DlcDatasourceHouseAttachmentDatasourceConnectionConfigHiveMysql
    Metadata database information for Hive.
    location Property Map
    Network information for MySQL data source.
    metaStoreUrl String
    Address of Hive metastore.
    type String
    Hive data source type, representing data storage location, COS or HDFS.
    bucketUrl String
    If the type is COS, COS bucket connection needs to be filled in.
    hdfsProperties String
    JSON string. If the type is HDFS, this field needs to be filled in.
    highAvailability Boolean
    If the type is HDFS, high availability needs to be selected.
    hiveVersion String
    Version number of Hive component in EMR cluster.
    instanceId String
    Database instance ID, consistent with the database side.
    instanceName String
    Database instance name, consistent with the database side.
    kerberosEnable Boolean
    Whether to enable Kerberos.
    kerberosInfo Property Map
    Kerberos details.
    mysql Property Map
    Metadata database information for Hive.

    DlcDatasourceHouseAttachmentDatasourceConnectionConfigHiveKerberosInfo, DlcDatasourceHouseAttachmentDatasourceConnectionConfigHiveKerberosInfoArgs

    KeyTab string
    KeyTab file value.
    Krb5Conf string
    Krb5Conf file value.
    ServicePrincipal string
    Service principal.
    KeyTab string
    KeyTab file value.
    Krb5Conf string
    Krb5Conf file value.
    ServicePrincipal string
    Service principal.
    keyTab String
    KeyTab file value.
    krb5Conf String
    Krb5Conf file value.
    servicePrincipal String
    Service principal.
    keyTab string
    KeyTab file value.
    krb5Conf string
    Krb5Conf file value.
    servicePrincipal string
    Service principal.
    key_tab str
    KeyTab file value.
    krb5_conf str
    Krb5Conf file value.
    service_principal str
    Service principal.
    keyTab String
    KeyTab file value.
    krb5Conf String
    Krb5Conf file value.
    servicePrincipal String
    Service principal.

    DlcDatasourceHouseAttachmentDatasourceConnectionConfigHiveLocation, DlcDatasourceHouseAttachmentDatasourceConnectionConfigHiveLocationArgs

    SubnetCidrBlock string
    Subnet IPv4 CIDR.
    SubnetId string
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    VpcCidrBlock string
    VPC IPv4 CIDR.
    VpcId string
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    SubnetCidrBlock string
    Subnet IPv4 CIDR.
    SubnetId string
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    VpcCidrBlock string
    VPC IPv4 CIDR.
    VpcId string
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnetCidrBlock String
    Subnet IPv4 CIDR.
    subnetId String
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpcCidrBlock String
    VPC IPv4 CIDR.
    vpcId String
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnetCidrBlock string
    Subnet IPv4 CIDR.
    subnetId string
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpcCidrBlock string
    VPC IPv4 CIDR.
    vpcId string
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnet_cidr_block str
    Subnet IPv4 CIDR.
    subnet_id str
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpc_cidr_block str
    VPC IPv4 CIDR.
    vpc_id str
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnetCidrBlock String
    Subnet IPv4 CIDR.
    subnetId String
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpcCidrBlock String
    VPC IPv4 CIDR.
    vpcId String
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.

    DlcDatasourceHouseAttachmentDatasourceConnectionConfigHiveMysql, DlcDatasourceHouseAttachmentDatasourceConnectionConfigHiveMysqlArgs

    Location DlcDatasourceHouseAttachmentDatasourceConnectionConfigHiveMysqlLocation
    Network information for MySQL data source.
    DbName string
    Database name.
    InstanceId string
    Database instance ID, consistent with the database side.
    InstanceName string
    Database instance name, consistent with the database side.
    Location DlcDatasourceHouseAttachmentDatasourceConnectionConfigHiveMysqlLocation
    Network information for MySQL data source.
    DbName string
    Database name.
    InstanceId string
    Database instance ID, consistent with the database side.
    InstanceName string
    Database instance name, consistent with the database side.
    location DlcDatasourceHouseAttachmentDatasourceConnectionConfigHiveMysqlLocation
    Network information for MySQL data source.
    dbName String
    Database name.
    instanceId String
    Database instance ID, consistent with the database side.
    instanceName String
    Database instance name, consistent with the database side.
    location DlcDatasourceHouseAttachmentDatasourceConnectionConfigHiveMysqlLocation
    Network information for MySQL data source.
    dbName string
    Database name.
    instanceId string
    Database instance ID, consistent with the database side.
    instanceName string
    Database instance name, consistent with the database side.
    location DlcDatasourceHouseAttachmentDatasourceConnectionConfigHiveMysqlLocation
    Network information for MySQL data source.
    db_name str
    Database name.
    instance_id str
    Database instance ID, consistent with the database side.
    instance_name str
    Database instance name, consistent with the database side.
    location Property Map
    Network information for MySQL data source.
    dbName String
    Database name.
    instanceId String
    Database instance ID, consistent with the database side.
    instanceName String
    Database instance name, consistent with the database side.

    DlcDatasourceHouseAttachmentDatasourceConnectionConfigHiveMysqlLocation, DlcDatasourceHouseAttachmentDatasourceConnectionConfigHiveMysqlLocationArgs

    SubnetCidrBlock string
    Subnet IPv4 CIDR.
    SubnetId string
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    VpcCidrBlock string
    VPC IPv4 CIDR.
    VpcId string
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    SubnetCidrBlock string
    Subnet IPv4 CIDR.
    SubnetId string
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    VpcCidrBlock string
    VPC IPv4 CIDR.
    VpcId string
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnetCidrBlock String
    Subnet IPv4 CIDR.
    subnetId String
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpcCidrBlock String
    VPC IPv4 CIDR.
    vpcId String
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnetCidrBlock string
    Subnet IPv4 CIDR.
    subnetId string
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpcCidrBlock string
    VPC IPv4 CIDR.
    vpcId string
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnet_cidr_block str
    Subnet IPv4 CIDR.
    subnet_id str
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpc_cidr_block str
    VPC IPv4 CIDR.
    vpc_id str
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnetCidrBlock String
    Subnet IPv4 CIDR.
    subnetId String
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpcCidrBlock String
    VPC IPv4 CIDR.
    vpcId String
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.

    DlcDatasourceHouseAttachmentDatasourceConnectionConfigKafka, DlcDatasourceHouseAttachmentDatasourceConnectionConfigKafkaArgs

    InstanceId string
    Kafka instance ID.
    Location DlcDatasourceHouseAttachmentDatasourceConnectionConfigKafkaLocation
    Network information for Kafka data source.
    InstanceId string
    Kafka instance ID.
    Location DlcDatasourceHouseAttachmentDatasourceConnectionConfigKafkaLocation
    Network information for Kafka data source.
    instanceId String
    Kafka instance ID.
    location DlcDatasourceHouseAttachmentDatasourceConnectionConfigKafkaLocation
    Network information for Kafka data source.
    instanceId string
    Kafka instance ID.
    location DlcDatasourceHouseAttachmentDatasourceConnectionConfigKafkaLocation
    Network information for Kafka data source.
    instance_id str
    Kafka instance ID.
    location DlcDatasourceHouseAttachmentDatasourceConnectionConfigKafkaLocation
    Network information for Kafka data source.
    instanceId String
    Kafka instance ID.
    location Property Map
    Network information for Kafka data source.

    DlcDatasourceHouseAttachmentDatasourceConnectionConfigKafkaLocation, DlcDatasourceHouseAttachmentDatasourceConnectionConfigKafkaLocationArgs

    SubnetCidrBlock string
    Subnet IPv4 CIDR.
    SubnetId string
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    VpcCidrBlock string
    VPC IPv4 CIDR.
    VpcId string
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    SubnetCidrBlock string
    Subnet IPv4 CIDR.
    SubnetId string
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    VpcCidrBlock string
    VPC IPv4 CIDR.
    VpcId string
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnetCidrBlock String
    Subnet IPv4 CIDR.
    subnetId String
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpcCidrBlock String
    VPC IPv4 CIDR.
    vpcId String
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnetCidrBlock string
    Subnet IPv4 CIDR.
    subnetId string
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpcCidrBlock string
    VPC IPv4 CIDR.
    vpcId string
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnet_cidr_block str
    Subnet IPv4 CIDR.
    subnet_id str
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpc_cidr_block str
    VPC IPv4 CIDR.
    vpc_id str
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnetCidrBlock String
    Subnet IPv4 CIDR.
    subnetId String
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpcCidrBlock String
    VPC IPv4 CIDR.
    vpcId String
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.

    DlcDatasourceHouseAttachmentDatasourceConnectionConfigMysql, DlcDatasourceHouseAttachmentDatasourceConnectionConfigMysqlArgs

    Location DlcDatasourceHouseAttachmentDatasourceConnectionConfigMysqlLocation
    Network information for MySQL data source.
    DbName string
    Database name.
    InstanceId string
    Database instance ID, consistent with the database side.
    InstanceName string
    Database instance name, consistent with the database side.
    Location DlcDatasourceHouseAttachmentDatasourceConnectionConfigMysqlLocation
    Network information for MySQL data source.
    DbName string
    Database name.
    InstanceId string
    Database instance ID, consistent with the database side.
    InstanceName string
    Database instance name, consistent with the database side.
    location DlcDatasourceHouseAttachmentDatasourceConnectionConfigMysqlLocation
    Network information for MySQL data source.
    dbName String
    Database name.
    instanceId String
    Database instance ID, consistent with the database side.
    instanceName String
    Database instance name, consistent with the database side.
    location DlcDatasourceHouseAttachmentDatasourceConnectionConfigMysqlLocation
    Network information for MySQL data source.
    dbName string
    Database name.
    instanceId string
    Database instance ID, consistent with the database side.
    instanceName string
    Database instance name, consistent with the database side.
    location DlcDatasourceHouseAttachmentDatasourceConnectionConfigMysqlLocation
    Network information for MySQL data source.
    db_name str
    Database name.
    instance_id str
    Database instance ID, consistent with the database side.
    instance_name str
    Database instance name, consistent with the database side.
    location Property Map
    Network information for MySQL data source.
    dbName String
    Database name.
    instanceId String
    Database instance ID, consistent with the database side.
    instanceName String
    Database instance name, consistent with the database side.

    DlcDatasourceHouseAttachmentDatasourceConnectionConfigMysqlLocation, DlcDatasourceHouseAttachmentDatasourceConnectionConfigMysqlLocationArgs

    SubnetCidrBlock string
    Subnet IPv4 CIDR.
    SubnetId string
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    VpcCidrBlock string
    VPC IPv4 CIDR.
    VpcId string
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    SubnetCidrBlock string
    Subnet IPv4 CIDR.
    SubnetId string
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    VpcCidrBlock string
    VPC IPv4 CIDR.
    VpcId string
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnetCidrBlock String
    Subnet IPv4 CIDR.
    subnetId String
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpcCidrBlock String
    VPC IPv4 CIDR.
    vpcId String
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnetCidrBlock string
    Subnet IPv4 CIDR.
    subnetId string
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpcCidrBlock string
    VPC IPv4 CIDR.
    vpcId string
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnet_cidr_block str
    Subnet IPv4 CIDR.
    subnet_id str
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpc_cidr_block str
    VPC IPv4 CIDR.
    vpc_id str
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnetCidrBlock String
    Subnet IPv4 CIDR.
    subnetId String
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpcCidrBlock String
    VPC IPv4 CIDR.
    vpcId String
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.

    DlcDatasourceHouseAttachmentDatasourceConnectionConfigOtherDatasourceConnection, DlcDatasourceHouseAttachmentDatasourceConnectionConfigOtherDatasourceConnectionArgs

    location Property Map
    Network parameters.

    DlcDatasourceHouseAttachmentDatasourceConnectionConfigOtherDatasourceConnectionLocation, DlcDatasourceHouseAttachmentDatasourceConnectionConfigOtherDatasourceConnectionLocationArgs

    SubnetCidrBlock string
    Subnet IPv4 CIDR.
    SubnetId string
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    VpcCidrBlock string
    VPC IPv4 CIDR.
    VpcId string
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    SubnetCidrBlock string
    Subnet IPv4 CIDR.
    SubnetId string
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    VpcCidrBlock string
    VPC IPv4 CIDR.
    VpcId string
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnetCidrBlock String
    Subnet IPv4 CIDR.
    subnetId String
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpcCidrBlock String
    VPC IPv4 CIDR.
    vpcId String
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnetCidrBlock string
    Subnet IPv4 CIDR.
    subnetId string
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpcCidrBlock string
    VPC IPv4 CIDR.
    vpcId string
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnet_cidr_block str
    Subnet IPv4 CIDR.
    subnet_id str
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpc_cidr_block str
    VPC IPv4 CIDR.
    vpc_id str
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnetCidrBlock String
    Subnet IPv4 CIDR.
    subnetId String
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpcCidrBlock String
    VPC IPv4 CIDR.
    vpcId String
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.

    DlcDatasourceHouseAttachmentDatasourceConnectionConfigPostgreSql, DlcDatasourceHouseAttachmentDatasourceConnectionConfigPostgreSqlArgs

    DbName string
    Default database name.
    InstanceId string
    Unique ID of the data source instance.
    InstanceName string
    Name of the data source.
    Location DlcDatasourceHouseAttachmentDatasourceConnectionConfigPostgreSqlLocation
    VPC and subnet information for the data source.
    DbName string
    Default database name.
    InstanceId string
    Unique ID of the data source instance.
    InstanceName string
    Name of the data source.
    Location DlcDatasourceHouseAttachmentDatasourceConnectionConfigPostgreSqlLocation
    VPC and subnet information for the data source.
    dbName String
    Default database name.
    instanceId String
    Unique ID of the data source instance.
    instanceName String
    Name of the data source.
    location DlcDatasourceHouseAttachmentDatasourceConnectionConfigPostgreSqlLocation
    VPC and subnet information for the data source.
    dbName string
    Default database name.
    instanceId string
    Unique ID of the data source instance.
    instanceName string
    Name of the data source.
    location DlcDatasourceHouseAttachmentDatasourceConnectionConfigPostgreSqlLocation
    VPC and subnet information for the data source.
    db_name str
    Default database name.
    instance_id str
    Unique ID of the data source instance.
    instance_name str
    Name of the data source.
    location DlcDatasourceHouseAttachmentDatasourceConnectionConfigPostgreSqlLocation
    VPC and subnet information for the data source.
    dbName String
    Default database name.
    instanceId String
    Unique ID of the data source instance.
    instanceName String
    Name of the data source.
    location Property Map
    VPC and subnet information for the data source.

    DlcDatasourceHouseAttachmentDatasourceConnectionConfigPostgreSqlLocation, DlcDatasourceHouseAttachmentDatasourceConnectionConfigPostgreSqlLocationArgs

    SubnetCidrBlock string
    Subnet IPv4 CIDR.
    SubnetId string
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    VpcCidrBlock string
    VPC IPv4 CIDR.
    VpcId string
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    SubnetCidrBlock string
    Subnet IPv4 CIDR.
    SubnetId string
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    VpcCidrBlock string
    VPC IPv4 CIDR.
    VpcId string
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnetCidrBlock String
    Subnet IPv4 CIDR.
    subnetId String
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpcCidrBlock String
    VPC IPv4 CIDR.
    vpcId String
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnetCidrBlock string
    Subnet IPv4 CIDR.
    subnetId string
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpcCidrBlock string
    VPC IPv4 CIDR.
    vpcId string
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnet_cidr_block str
    Subnet IPv4 CIDR.
    subnet_id str
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpc_cidr_block str
    VPC IPv4 CIDR.
    vpc_id str
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnetCidrBlock String
    Subnet IPv4 CIDR.
    subnetId String
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpcCidrBlock String
    VPC IPv4 CIDR.
    vpcId String
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.

    DlcDatasourceHouseAttachmentDatasourceConnectionConfigSqlServer, DlcDatasourceHouseAttachmentDatasourceConnectionConfigSqlServerArgs

    DbName string
    Default database name.
    InstanceId string
    Unique ID of the data source instance.
    InstanceName string
    Name of the data source.
    Location DlcDatasourceHouseAttachmentDatasourceConnectionConfigSqlServerLocation
    VPC and subnet information for the data source.
    DbName string
    Default database name.
    InstanceId string
    Unique ID of the data source instance.
    InstanceName string
    Name of the data source.
    Location DlcDatasourceHouseAttachmentDatasourceConnectionConfigSqlServerLocation
    VPC and subnet information for the data source.
    dbName String
    Default database name.
    instanceId String
    Unique ID of the data source instance.
    instanceName String
    Name of the data source.
    location DlcDatasourceHouseAttachmentDatasourceConnectionConfigSqlServerLocation
    VPC and subnet information for the data source.
    dbName string
    Default database name.
    instanceId string
    Unique ID of the data source instance.
    instanceName string
    Name of the data source.
    location DlcDatasourceHouseAttachmentDatasourceConnectionConfigSqlServerLocation
    VPC and subnet information for the data source.
    db_name str
    Default database name.
    instance_id str
    Unique ID of the data source instance.
    instance_name str
    Name of the data source.
    location DlcDatasourceHouseAttachmentDatasourceConnectionConfigSqlServerLocation
    VPC and subnet information for the data source.
    dbName String
    Default database name.
    instanceId String
    Unique ID of the data source instance.
    instanceName String
    Name of the data source.
    location Property Map
    VPC and subnet information for the data source.

    DlcDatasourceHouseAttachmentDatasourceConnectionConfigSqlServerLocation, DlcDatasourceHouseAttachmentDatasourceConnectionConfigSqlServerLocationArgs

    SubnetCidrBlock string
    Subnet IPv4 CIDR.
    SubnetId string
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    VpcCidrBlock string
    VPC IPv4 CIDR.
    VpcId string
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    SubnetCidrBlock string
    Subnet IPv4 CIDR.
    SubnetId string
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    VpcCidrBlock string
    VPC IPv4 CIDR.
    VpcId string
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnetCidrBlock String
    Subnet IPv4 CIDR.
    subnetId String
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpcCidrBlock String
    VPC IPv4 CIDR.
    vpcId String
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnetCidrBlock string
    Subnet IPv4 CIDR.
    subnetId string
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpcCidrBlock string
    VPC IPv4 CIDR.
    vpcId string
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnet_cidr_block str
    Subnet IPv4 CIDR.
    subnet_id str
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpc_cidr_block str
    VPC IPv4 CIDR.
    vpc_id str
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnetCidrBlock String
    Subnet IPv4 CIDR.
    subnetId String
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpcCidrBlock String
    VPC IPv4 CIDR.
    vpcId String
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.

    DlcDatasourceHouseAttachmentDatasourceConnectionConfigTcHouseD, DlcDatasourceHouseAttachmentDatasourceConnectionConfigTcHouseDArgs

    AccessInfo string
    Access information.
    DbName string
    Default database name.
    InstanceId string
    Unique ID of the data source instance.
    InstanceName string
    Data source name.
    Location DlcDatasourceHouseAttachmentDatasourceConnectionConfigTcHouseDLocation
    VPC and subnet information for the data source.
    AccessInfo string
    Access information.
    DbName string
    Default database name.
    InstanceId string
    Unique ID of the data source instance.
    InstanceName string
    Data source name.
    Location DlcDatasourceHouseAttachmentDatasourceConnectionConfigTcHouseDLocation
    VPC and subnet information for the data source.
    accessInfo String
    Access information.
    dbName String
    Default database name.
    instanceId String
    Unique ID of the data source instance.
    instanceName String
    Data source name.
    location DlcDatasourceHouseAttachmentDatasourceConnectionConfigTcHouseDLocation
    VPC and subnet information for the data source.
    accessInfo string
    Access information.
    dbName string
    Default database name.
    instanceId string
    Unique ID of the data source instance.
    instanceName string
    Data source name.
    location DlcDatasourceHouseAttachmentDatasourceConnectionConfigTcHouseDLocation
    VPC and subnet information for the data source.
    access_info str
    Access information.
    db_name str
    Default database name.
    instance_id str
    Unique ID of the data source instance.
    instance_name str
    Data source name.
    location DlcDatasourceHouseAttachmentDatasourceConnectionConfigTcHouseDLocation
    VPC and subnet information for the data source.
    accessInfo String
    Access information.
    dbName String
    Default database name.
    instanceId String
    Unique ID of the data source instance.
    instanceName String
    Data source name.
    location Property Map
    VPC and subnet information for the data source.

    DlcDatasourceHouseAttachmentDatasourceConnectionConfigTcHouseDLocation, DlcDatasourceHouseAttachmentDatasourceConnectionConfigTcHouseDLocationArgs

    SubnetCidrBlock string
    Subnet IPv4 CIDR.
    SubnetId string
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    VpcCidrBlock string
    VPC IPv4 CIDR.
    VpcId string
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    SubnetCidrBlock string
    Subnet IPv4 CIDR.
    SubnetId string
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    VpcCidrBlock string
    VPC IPv4 CIDR.
    VpcId string
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnetCidrBlock String
    Subnet IPv4 CIDR.
    subnetId String
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpcCidrBlock String
    VPC IPv4 CIDR.
    vpcId String
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnetCidrBlock string
    Subnet IPv4 CIDR.
    subnetId string
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpcCidrBlock string
    VPC IPv4 CIDR.
    vpcId string
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnet_cidr_block str
    Subnet IPv4 CIDR.
    subnet_id str
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpc_cidr_block str
    VPC IPv4 CIDR.
    vpc_id str
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnetCidrBlock String
    Subnet IPv4 CIDR.
    subnetId String
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpcCidrBlock String
    VPC IPv4 CIDR.
    vpcId String
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.

    DlcDatasourceHouseAttachmentDatasourceConnectionConfigTccHive, DlcDatasourceHouseAttachmentDatasourceConnectionConfigTccHiveArgs

    EndpointServiceId string
    Endpoint service ID.
    HiveVersion string
    Hive version.
    HmsEndpointServiceId string
    HMS endpoint service ID.
    InstanceId string
    Instance ID.
    InstanceName string
    Instance name.
    MetaStoreUrl string
    Thrift connection address.
    TccConnection DlcDatasourceHouseAttachmentDatasourceConnectionConfigTccHiveTccConnection
    Network information.
    EndpointServiceId string
    Endpoint service ID.
    HiveVersion string
    Hive version.
    HmsEndpointServiceId string
    HMS endpoint service ID.
    InstanceId string
    Instance ID.
    InstanceName string
    Instance name.
    MetaStoreUrl string
    Thrift connection address.
    TccConnection DlcDatasourceHouseAttachmentDatasourceConnectionConfigTccHiveTccConnection
    Network information.
    endpointServiceId String
    Endpoint service ID.
    hiveVersion String
    Hive version.
    hmsEndpointServiceId String
    HMS endpoint service ID.
    instanceId String
    Instance ID.
    instanceName String
    Instance name.
    metaStoreUrl String
    Thrift connection address.
    tccConnection DlcDatasourceHouseAttachmentDatasourceConnectionConfigTccHiveTccConnection
    Network information.
    endpointServiceId string
    Endpoint service ID.
    hiveVersion string
    Hive version.
    hmsEndpointServiceId string
    HMS endpoint service ID.
    instanceId string
    Instance ID.
    instanceName string
    Instance name.
    metaStoreUrl string
    Thrift connection address.
    tccConnection DlcDatasourceHouseAttachmentDatasourceConnectionConfigTccHiveTccConnection
    Network information.
    endpoint_service_id str
    Endpoint service ID.
    hive_version str
    Hive version.
    hms_endpoint_service_id str
    HMS endpoint service ID.
    instance_id str
    Instance ID.
    instance_name str
    Instance name.
    meta_store_url str
    Thrift connection address.
    tcc_connection DlcDatasourceHouseAttachmentDatasourceConnectionConfigTccHiveTccConnection
    Network information.
    endpointServiceId String
    Endpoint service ID.
    hiveVersion String
    Hive version.
    hmsEndpointServiceId String
    HMS endpoint service ID.
    instanceId String
    Instance ID.
    instanceName String
    Instance name.
    metaStoreUrl String
    Thrift connection address.
    tccConnection Property Map
    Network information.

    DlcDatasourceHouseAttachmentDatasourceConnectionConfigTccHiveTccConnection, DlcDatasourceHouseAttachmentDatasourceConnectionConfigTccHiveTccConnectionArgs

    ClbIp string
    Service CLB IP.
    ClbPort string
    Service CLB port.
    SubnetCidrBlock string
    Subnet CIDR.
    SubnetId string
    Subnet instance ID.
    VpcCidrBlock string
    VPC CIDR.
    VpcId string
    VPC instance ID.
    ClbIp string
    Service CLB IP.
    ClbPort string
    Service CLB port.
    SubnetCidrBlock string
    Subnet CIDR.
    SubnetId string
    Subnet instance ID.
    VpcCidrBlock string
    VPC CIDR.
    VpcId string
    VPC instance ID.
    clbIp String
    Service CLB IP.
    clbPort String
    Service CLB port.
    subnetCidrBlock String
    Subnet CIDR.
    subnetId String
    Subnet instance ID.
    vpcCidrBlock String
    VPC CIDR.
    vpcId String
    VPC instance ID.
    clbIp string
    Service CLB IP.
    clbPort string
    Service CLB port.
    subnetCidrBlock string
    Subnet CIDR.
    subnetId string
    Subnet instance ID.
    vpcCidrBlock string
    VPC CIDR.
    vpcId string
    VPC instance ID.
    clb_ip str
    Service CLB IP.
    clb_port str
    Service CLB port.
    subnet_cidr_block str
    Subnet CIDR.
    subnet_id str
    Subnet instance ID.
    vpc_cidr_block str
    VPC CIDR.
    vpc_id str
    VPC instance ID.
    clbIp String
    Service CLB IP.
    clbPort String
    Service CLB port.
    subnetCidrBlock String
    Subnet CIDR.
    subnetId String
    Subnet instance ID.
    vpcCidrBlock String
    VPC CIDR.
    vpcId String
    VPC instance ID.

    DlcDatasourceHouseAttachmentDatasourceConnectionConfigTdsqlPostgreSql, DlcDatasourceHouseAttachmentDatasourceConnectionConfigTdsqlPostgreSqlArgs

    DbName string
    Default database name.
    InstanceId string
    Unique ID of the data source instance.
    InstanceName string
    Name of the data source.
    Location DlcDatasourceHouseAttachmentDatasourceConnectionConfigTdsqlPostgreSqlLocation
    VPC and subnet information for the data source.
    DbName string
    Default database name.
    InstanceId string
    Unique ID of the data source instance.
    InstanceName string
    Name of the data source.
    Location DlcDatasourceHouseAttachmentDatasourceConnectionConfigTdsqlPostgreSqlLocation
    VPC and subnet information for the data source.
    dbName String
    Default database name.
    instanceId String
    Unique ID of the data source instance.
    instanceName String
    Name of the data source.
    location DlcDatasourceHouseAttachmentDatasourceConnectionConfigTdsqlPostgreSqlLocation
    VPC and subnet information for the data source.
    dbName string
    Default database name.
    instanceId string
    Unique ID of the data source instance.
    instanceName string
    Name of the data source.
    location DlcDatasourceHouseAttachmentDatasourceConnectionConfigTdsqlPostgreSqlLocation
    VPC and subnet information for the data source.
    db_name str
    Default database name.
    instance_id str
    Unique ID of the data source instance.
    instance_name str
    Name of the data source.
    location DlcDatasourceHouseAttachmentDatasourceConnectionConfigTdsqlPostgreSqlLocation
    VPC and subnet information for the data source.
    dbName String
    Default database name.
    instanceId String
    Unique ID of the data source instance.
    instanceName String
    Name of the data source.
    location Property Map
    VPC and subnet information for the data source.

    DlcDatasourceHouseAttachmentDatasourceConnectionConfigTdsqlPostgreSqlLocation, DlcDatasourceHouseAttachmentDatasourceConnectionConfigTdsqlPostgreSqlLocationArgs

    SubnetCidrBlock string
    Subnet IPv4 CIDR.
    SubnetId string
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    VpcCidrBlock string
    VPC IPv4 CIDR.
    VpcId string
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    SubnetCidrBlock string
    Subnet IPv4 CIDR.
    SubnetId string
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    VpcCidrBlock string
    VPC IPv4 CIDR.
    VpcId string
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnetCidrBlock String
    Subnet IPv4 CIDR.
    subnetId String
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpcCidrBlock String
    VPC IPv4 CIDR.
    vpcId String
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnetCidrBlock string
    Subnet IPv4 CIDR.
    subnetId string
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpcCidrBlock string
    VPC IPv4 CIDR.
    vpcId string
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnet_cidr_block str
    Subnet IPv4 CIDR.
    subnet_id str
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpc_cidr_block str
    VPC IPv4 CIDR.
    vpc_id str
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
    subnetCidrBlock String
    Subnet IPv4 CIDR.
    subnetId String
    Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
    vpcCidrBlock String
    VPC IPv4 CIDR.
    vpcId String
    VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.

    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