tencentcloud.DlcDatasourceHouseAttachment
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:
- Data
Engine List<string>Names - Engine name, only one engine can be bound.
- Datasource
Connection DlcConfig Datasource House Attachment Datasource Connection Config - Data source network configuration.
- Datasource
Connection stringName - Network configuration name.
- Datasource
Connection stringType - Data source type. Allow value: Mysql, HiveCos, HiveHdfs, HiveCHdfs, Kafka, OtherDatasourceConnection, PostgreSql, SqlServer, ClickHouse, Elasticsearch, TDSQLPostgreSql, TCHouseD, TccHive.
- Network
Connection doubleType - Network type, 2-cross-source type, 4-enhanced type.
- Dlc
Datasource stringHouse Attachment Id - ID of the resource.
- Network
Connection stringDesc - Network configuration description.
- Data
Engine []stringNames - Engine name, only one engine can be bound.
- Datasource
Connection DlcConfig Datasource House Attachment Datasource Connection Config Args - Data source network configuration.
- Datasource
Connection stringName - Network configuration name.
- Datasource
Connection stringType - Data source type. Allow value: Mysql, HiveCos, HiveHdfs, HiveCHdfs, Kafka, OtherDatasourceConnection, PostgreSql, SqlServer, ClickHouse, Elasticsearch, TDSQLPostgreSql, TCHouseD, TccHive.
- Network
Connection float64Type - Network type, 2-cross-source type, 4-enhanced type.
- Dlc
Datasource stringHouse Attachment Id - ID of the resource.
- Network
Connection stringDesc - Network configuration description.
- data
Engine List<String>Names - Engine name, only one engine can be bound.
- datasource
Connection DlcConfig Datasource House Attachment Datasource Connection Config - Data source network configuration.
- datasource
Connection StringName - Network configuration name.
- datasource
Connection StringType - Data source type. Allow value: Mysql, HiveCos, HiveHdfs, HiveCHdfs, Kafka, OtherDatasourceConnection, PostgreSql, SqlServer, ClickHouse, Elasticsearch, TDSQLPostgreSql, TCHouseD, TccHive.
- network
Connection DoubleType - Network type, 2-cross-source type, 4-enhanced type.
- dlc
Datasource StringHouse Attachment Id - ID of the resource.
- network
Connection StringDesc - Network configuration description.
- data
Engine string[]Names - Engine name, only one engine can be bound.
- datasource
Connection DlcConfig Datasource House Attachment Datasource Connection Config - Data source network configuration.
- datasource
Connection stringName - Network configuration name.
- datasource
Connection stringType - Data source type. Allow value: Mysql, HiveCos, HiveHdfs, HiveCHdfs, Kafka, OtherDatasourceConnection, PostgreSql, SqlServer, ClickHouse, Elasticsearch, TDSQLPostgreSql, TCHouseD, TccHive.
- network
Connection numberType - Network type, 2-cross-source type, 4-enhanced type.
- dlc
Datasource stringHouse Attachment Id - ID of the resource.
- network
Connection stringDesc - Network configuration description.
- data_
engine_ Sequence[str]names - Engine name, only one engine can be bound.
- datasource_
connection_ Dlcconfig Datasource House Attachment Datasource Connection Config Args - Data source network configuration.
- datasource_
connection_ strname - Network configuration name.
- datasource_
connection_ strtype - Data source type. Allow value: Mysql, HiveCos, HiveHdfs, HiveCHdfs, Kafka, OtherDatasourceConnection, PostgreSql, SqlServer, ClickHouse, Elasticsearch, TDSQLPostgreSql, TCHouseD, TccHive.
- network_
connection_ floattype - Network type, 2-cross-source type, 4-enhanced type.
- dlc_
datasource_ strhouse_ attachment_ id - ID of the resource.
- network_
connection_ strdesc - Network configuration description.
- data
Engine List<String>Names - Engine name, only one engine can be bound.
- datasource
Connection Property MapConfig - Data source network configuration.
- datasource
Connection StringName - Network configuration name.
- datasource
Connection StringType - Data source type. Allow value: Mysql, HiveCos, HiveHdfs, HiveCHdfs, Kafka, OtherDatasourceConnection, PostgreSql, SqlServer, ClickHouse, Elasticsearch, TDSQLPostgreSql, TCHouseD, TccHive.
- network
Connection NumberType - Network type, 2-cross-source type, 4-enhanced type.
- dlc
Datasource StringHouse Attachment Id - ID of the resource.
- network
Connection StringDesc - 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) -> DlcDatasourceHouseAttachmentfunc 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.
- Data
Engine List<string>Names - Engine name, only one engine can be bound.
- Datasource
Connection DlcConfig Datasource House Attachment Datasource Connection Config - Data source network configuration.
- Datasource
Connection stringName - Network configuration name.
- Datasource
Connection stringType - Data source type. Allow value: Mysql, HiveCos, HiveHdfs, HiveCHdfs, Kafka, OtherDatasourceConnection, PostgreSql, SqlServer, ClickHouse, Elasticsearch, TDSQLPostgreSql, TCHouseD, TccHive.
- Dlc
Datasource stringHouse Attachment Id - ID of the resource.
- Network
Connection stringDesc - Network configuration description.
- Network
Connection doubleType - Network type, 2-cross-source type, 4-enhanced type.
- Data
Engine []stringNames - Engine name, only one engine can be bound.
- Datasource
Connection DlcConfig Datasource House Attachment Datasource Connection Config Args - Data source network configuration.
- Datasource
Connection stringName - Network configuration name.
- Datasource
Connection stringType - Data source type. Allow value: Mysql, HiveCos, HiveHdfs, HiveCHdfs, Kafka, OtherDatasourceConnection, PostgreSql, SqlServer, ClickHouse, Elasticsearch, TDSQLPostgreSql, TCHouseD, TccHive.
- Dlc
Datasource stringHouse Attachment Id - ID of the resource.
- Network
Connection stringDesc - Network configuration description.
- Network
Connection float64Type - Network type, 2-cross-source type, 4-enhanced type.
- data
Engine List<String>Names - Engine name, only one engine can be bound.
- datasource
Connection DlcConfig Datasource House Attachment Datasource Connection Config - Data source network configuration.
- datasource
Connection StringName - Network configuration name.
- datasource
Connection StringType - Data source type. Allow value: Mysql, HiveCos, HiveHdfs, HiveCHdfs, Kafka, OtherDatasourceConnection, PostgreSql, SqlServer, ClickHouse, Elasticsearch, TDSQLPostgreSql, TCHouseD, TccHive.
- dlc
Datasource StringHouse Attachment Id - ID of the resource.
- network
Connection StringDesc - Network configuration description.
- network
Connection DoubleType - Network type, 2-cross-source type, 4-enhanced type.
- data
Engine string[]Names - Engine name, only one engine can be bound.
- datasource
Connection DlcConfig Datasource House Attachment Datasource Connection Config - Data source network configuration.
- datasource
Connection stringName - Network configuration name.
- datasource
Connection stringType - Data source type. Allow value: Mysql, HiveCos, HiveHdfs, HiveCHdfs, Kafka, OtherDatasourceConnection, PostgreSql, SqlServer, ClickHouse, Elasticsearch, TDSQLPostgreSql, TCHouseD, TccHive.
- dlc
Datasource stringHouse Attachment Id - ID of the resource.
- network
Connection stringDesc - Network configuration description.
- network
Connection numberType - Network type, 2-cross-source type, 4-enhanced type.
- data_
engine_ Sequence[str]names - Engine name, only one engine can be bound.
- datasource_
connection_ Dlcconfig Datasource House Attachment Datasource Connection Config Args - Data source network configuration.
- datasource_
connection_ strname - Network configuration name.
- datasource_
connection_ strtype - Data source type. Allow value: Mysql, HiveCos, HiveHdfs, HiveCHdfs, Kafka, OtherDatasourceConnection, PostgreSql, SqlServer, ClickHouse, Elasticsearch, TDSQLPostgreSql, TCHouseD, TccHive.
- dlc_
datasource_ strhouse_ attachment_ id - ID of the resource.
- network_
connection_ strdesc - Network configuration description.
- network_
connection_ floattype - Network type, 2-cross-source type, 4-enhanced type.
- data
Engine List<String>Names - Engine name, only one engine can be bound.
- datasource
Connection Property MapConfig - Data source network configuration.
- datasource
Connection StringName - Network configuration name.
- datasource
Connection StringType - Data source type. Allow value: Mysql, HiveCos, HiveHdfs, HiveCHdfs, Kafka, OtherDatasourceConnection, PostgreSql, SqlServer, ClickHouse, Elasticsearch, TDSQLPostgreSql, TCHouseD, TccHive.
- dlc
Datasource StringHouse Attachment Id - ID of the resource.
- network
Connection StringDesc - Network configuration description.
- network
Connection NumberType - Network type, 2-cross-source type, 4-enhanced type.
Supporting Types
DlcDatasourceHouseAttachmentDatasourceConnectionConfig, DlcDatasourceHouseAttachmentDatasourceConnectionConfigArgs
- Click
House DlcDatasource House Attachment Datasource Connection Config Click House - Properties of ClickHouse data source connection.
- Elasticsearch
Dlc
Datasource House Attachment Datasource Connection Config Elasticsearch - Properties of Elasticsearch data source connection.
- Hive
Dlc
Datasource House Attachment Datasource Connection Config Hive - Properties of Hive data source connection.
- Kafka
Dlc
Datasource House Attachment Datasource Connection Config Kafka - Properties of Kafka data source connection.
- Mysql
Dlc
Datasource House Attachment Datasource Connection Config Mysql - Metadata database information for Hive.
- Other
Datasource DlcConnection Datasource House Attachment Datasource Connection Config Other Datasource Connection - Properties of other data source connection.
- Postgre
Sql DlcDatasource House Attachment Datasource Connection Config Postgre Sql - Properties of PostgreSQL data source connection.
- Sql
Server DlcDatasource House Attachment Datasource Connection Config Sql Server - Properties of SQLServer data source connection.
- Tc
House DlcD Datasource House Attachment Datasource Connection Config Tc House D - Properties of Doris data source connection.
- Tcc
Hive DlcDatasource House Attachment Datasource Connection Config Tcc Hive - TccHive data catalog connection information.
- Tdsql
Postgre DlcSql Datasource House Attachment Datasource Connection Config Tdsql Postgre Sql - Properties of TDSQL-PostgreSQL data source connection.
- Click
House DlcDatasource House Attachment Datasource Connection Config Click House - Properties of ClickHouse data source connection.
- Elasticsearch
Dlc
Datasource House Attachment Datasource Connection Config Elasticsearch - Properties of Elasticsearch data source connection.
- Hive
Dlc
Datasource House Attachment Datasource Connection Config Hive - Properties of Hive data source connection.
- Kafka
Dlc
Datasource House Attachment Datasource Connection Config Kafka - Properties of Kafka data source connection.
- Mysql
Dlc
Datasource House Attachment Datasource Connection Config Mysql - Metadata database information for Hive.
- Other
Datasource DlcConnection Datasource House Attachment Datasource Connection Config Other Datasource Connection - Properties of other data source connection.
- Postgre
Sql DlcDatasource House Attachment Datasource Connection Config Postgre Sql - Properties of PostgreSQL data source connection.
- Sql
Server DlcDatasource House Attachment Datasource Connection Config Sql Server - Properties of SQLServer data source connection.
- Tc
House DlcD Datasource House Attachment Datasource Connection Config Tc House D - Properties of Doris data source connection.
- Tcc
Hive DlcDatasource House Attachment Datasource Connection Config Tcc Hive - TccHive data catalog connection information.
- Tdsql
Postgre DlcSql Datasource House Attachment Datasource Connection Config Tdsql Postgre Sql - Properties of TDSQL-PostgreSQL data source connection.
- click
House DlcDatasource House Attachment Datasource Connection Config Click House - Properties of ClickHouse data source connection.
- elasticsearch
Dlc
Datasource House Attachment Datasource Connection Config Elasticsearch - Properties of Elasticsearch data source connection.
- hive
Dlc
Datasource House Attachment Datasource Connection Config Hive - Properties of Hive data source connection.
- kafka
Dlc
Datasource House Attachment Datasource Connection Config Kafka - Properties of Kafka data source connection.
- mysql
Dlc
Datasource House Attachment Datasource Connection Config Mysql - Metadata database information for Hive.
- other
Datasource DlcConnection Datasource House Attachment Datasource Connection Config Other Datasource Connection - Properties of other data source connection.
- postgre
Sql DlcDatasource House Attachment Datasource Connection Config Postgre Sql - Properties of PostgreSQL data source connection.
- sql
Server DlcDatasource House Attachment Datasource Connection Config Sql Server - Properties of SQLServer data source connection.
- tc
House DlcD Datasource House Attachment Datasource Connection Config Tc House D - Properties of Doris data source connection.
- tcc
Hive DlcDatasource House Attachment Datasource Connection Config Tcc Hive - TccHive data catalog connection information.
- tdsql
Postgre DlcSql Datasource House Attachment Datasource Connection Config Tdsql Postgre Sql - Properties of TDSQL-PostgreSQL data source connection.
- click
House DlcDatasource House Attachment Datasource Connection Config Click House - Properties of ClickHouse data source connection.
- elasticsearch
Dlc
Datasource House Attachment Datasource Connection Config Elasticsearch - Properties of Elasticsearch data source connection.
- hive
Dlc
Datasource House Attachment Datasource Connection Config Hive - Properties of Hive data source connection.
- kafka
Dlc
Datasource House Attachment Datasource Connection Config Kafka - Properties of Kafka data source connection.
- mysql
Dlc
Datasource House Attachment Datasource Connection Config Mysql - Metadata database information for Hive.
- other
Datasource DlcConnection Datasource House Attachment Datasource Connection Config Other Datasource Connection - Properties of other data source connection.
- postgre
Sql DlcDatasource House Attachment Datasource Connection Config Postgre Sql - Properties of PostgreSQL data source connection.
- sql
Server DlcDatasource House Attachment Datasource Connection Config Sql Server - Properties of SQLServer data source connection.
- tc
House DlcD Datasource House Attachment Datasource Connection Config Tc House D - Properties of Doris data source connection.
- tcc
Hive DlcDatasource House Attachment Datasource Connection Config Tcc Hive - TccHive data catalog connection information.
- tdsql
Postgre DlcSql Datasource House Attachment Datasource Connection Config Tdsql Postgre Sql - Properties of TDSQL-PostgreSQL data source connection.
- click_
house DlcDatasource House Attachment Datasource Connection Config Click House - Properties of ClickHouse data source connection.
- elasticsearch
Dlc
Datasource House Attachment Datasource Connection Config Elasticsearch - Properties of Elasticsearch data source connection.
- hive
Dlc
Datasource House Attachment Datasource Connection Config Hive - Properties of Hive data source connection.
- kafka
Dlc
Datasource House Attachment Datasource Connection Config Kafka - Properties of Kafka data source connection.
- mysql
Dlc
Datasource House Attachment Datasource Connection Config Mysql - Metadata database information for Hive.
- other_
datasource_ Dlcconnection Datasource House Attachment Datasource Connection Config Other Datasource Connection - Properties of other data source connection.
- postgre_
sql DlcDatasource House Attachment Datasource Connection Config Postgre Sql - Properties of PostgreSQL data source connection.
- sql_
server DlcDatasource House Attachment Datasource Connection Config Sql Server - Properties of SQLServer data source connection.
- tc_
house_ Dlcd Datasource House Attachment Datasource Connection Config Tc House D - Properties of Doris data source connection.
- tcc_
hive DlcDatasource House Attachment Datasource Connection Config Tcc Hive - TccHive data catalog connection information.
- tdsql_
postgre_ Dlcsql Datasource House Attachment Datasource Connection Config Tdsql Postgre Sql - Properties of TDSQL-PostgreSQL data source connection.
- click
House 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.
- other
Datasource Property MapConnection - Properties of other data source connection.
- postgre
Sql Property Map - Properties of PostgreSQL data source connection.
- sql
Server Property Map - Properties of SQLServer data source connection.
- tc
House Property MapD - Properties of Doris data source connection.
- tcc
Hive Property Map - TccHive data catalog connection information.
- tdsql
Postgre Property MapSql - Properties of TDSQL-PostgreSQL data source connection.
DlcDatasourceHouseAttachmentDatasourceConnectionConfigClickHouse, DlcDatasourceHouseAttachmentDatasourceConnectionConfigClickHouseArgs
- Db
Name string - Default database name.
- Instance
Id string - Unique ID of the data source instance.
- Instance
Name string - Name of the data source.
- Location
Dlc
Datasource House Attachment Datasource Connection Config Click House Location - VPC and subnet information for the data source.
- Db
Name string - Default database name.
- Instance
Id string - Unique ID of the data source instance.
- Instance
Name string - Name of the data source.
- Location
Dlc
Datasource House Attachment Datasource Connection Config Click House Location - VPC and subnet information for the data source.
- db
Name String - Default database name.
- instance
Id String - Unique ID of the data source instance.
- instance
Name String - Name of the data source.
- location
Dlc
Datasource House Attachment Datasource Connection Config Click House Location - VPC and subnet information for the data source.
- db
Name string - Default database name.
- instance
Id string - Unique ID of the data source instance.
- instance
Name string - Name of the data source.
- location
Dlc
Datasource House Attachment Datasource Connection Config Click House Location - 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
Dlc
Datasource House Attachment Datasource Connection Config Click House Location - VPC and subnet information for the data source.
- db
Name String - Default database name.
- instance
Id String - Unique ID of the data source instance.
- instance
Name String - Name of the data source.
- location Property Map
- VPC and subnet information for the data source.
DlcDatasourceHouseAttachmentDatasourceConnectionConfigClickHouseLocation, DlcDatasourceHouseAttachmentDatasourceConnectionConfigClickHouseLocationArgs
- Subnet
Cidr stringBlock - Subnet IPv4 CIDR.
- Subnet
Id string - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- Vpc
Cidr stringBlock - VPC IPv4 CIDR.
- Vpc
Id string - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- Subnet
Cidr stringBlock - Subnet IPv4 CIDR.
- Subnet
Id string - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- Vpc
Cidr stringBlock - VPC IPv4 CIDR.
- Vpc
Id string - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet
Cidr StringBlock - Subnet IPv4 CIDR.
- subnet
Id String - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc
Cidr StringBlock - VPC IPv4 CIDR.
- vpc
Id String - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet
Cidr stringBlock - Subnet IPv4 CIDR.
- subnet
Id string - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc
Cidr stringBlock - VPC IPv4 CIDR.
- vpc
Id string - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet_
cidr_ strblock - Subnet IPv4 CIDR.
- subnet_
id str - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc_
cidr_ strblock - VPC IPv4 CIDR.
- vpc_
id str - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet
Cidr StringBlock - Subnet IPv4 CIDR.
- subnet
Id String - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc
Cidr StringBlock - VPC IPv4 CIDR.
- vpc
Id String - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
DlcDatasourceHouseAttachmentDatasourceConnectionConfigElasticsearch, DlcDatasourceHouseAttachmentDatasourceConnectionConfigElasticsearchArgs
- Db
Name string - Default database name.
- Instance
Id string - Data source ID.
- Instance
Name string - Data source name.
- Location
Dlc
Datasource House Attachment Datasource Connection Config Elasticsearch Location - VPC and subnet information for the data source.
- Service
Infos List<DlcDatasource House Attachment Datasource Connection Config Elasticsearch Service Info> - IP and port information for accessing Elasticsearch.
- Db
Name string - Default database name.
- Instance
Id string - Data source ID.
- Instance
Name string - Data source name.
- Location
Dlc
Datasource House Attachment Datasource Connection Config Elasticsearch Location - VPC and subnet information for the data source.
- Service
Infos []DlcDatasource House Attachment Datasource Connection Config Elasticsearch Service Info - IP and port information for accessing Elasticsearch.
- db
Name String - Default database name.
- instance
Id String - Data source ID.
- instance
Name String - Data source name.
- location
Dlc
Datasource House Attachment Datasource Connection Config Elasticsearch Location - VPC and subnet information for the data source.
- service
Infos List<DlcDatasource House Attachment Datasource Connection Config Elasticsearch Service Info> - IP and port information for accessing Elasticsearch.
- db
Name string - Default database name.
- instance
Id string - Data source ID.
- instance
Name string - Data source name.
- location
Dlc
Datasource House Attachment Datasource Connection Config Elasticsearch Location - VPC and subnet information for the data source.
- service
Infos DlcDatasource House Attachment Datasource Connection Config Elasticsearch Service Info[] - 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
Dlc
Datasource House Attachment Datasource Connection Config Elasticsearch Location - VPC and subnet information for the data source.
- service_
infos Sequence[DlcDatasource House Attachment Datasource Connection Config Elasticsearch Service Info] - IP and port information for accessing Elasticsearch.
- db
Name String - Default database name.
- instance
Id String - Data source ID.
- instance
Name String - Data source name.
- location Property Map
- VPC and subnet information for the data source.
- service
Infos List<Property Map> - IP and port information for accessing Elasticsearch.
DlcDatasourceHouseAttachmentDatasourceConnectionConfigElasticsearchLocation, DlcDatasourceHouseAttachmentDatasourceConnectionConfigElasticsearchLocationArgs
- Subnet
Cidr stringBlock - Subnet IPv4 CIDR.
- Subnet
Id string - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- Vpc
Cidr stringBlock - VPC IPv4 CIDR.
- Vpc
Id string - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- Subnet
Cidr stringBlock - Subnet IPv4 CIDR.
- Subnet
Id string - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- Vpc
Cidr stringBlock - VPC IPv4 CIDR.
- Vpc
Id string - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet
Cidr StringBlock - Subnet IPv4 CIDR.
- subnet
Id String - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc
Cidr StringBlock - VPC IPv4 CIDR.
- vpc
Id String - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet
Cidr stringBlock - Subnet IPv4 CIDR.
- subnet
Id string - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc
Cidr stringBlock - VPC IPv4 CIDR.
- vpc
Id string - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet_
cidr_ strblock - Subnet IPv4 CIDR.
- subnet_
id str - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc_
cidr_ strblock - VPC IPv4 CIDR.
- vpc_
id str - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet
Cidr StringBlock - Subnet IPv4 CIDR.
- subnet
Id String - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc
Cidr StringBlock - VPC IPv4 CIDR.
- vpc
Id String - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
DlcDatasourceHouseAttachmentDatasourceConnectionConfigElasticsearchServiceInfo, DlcDatasourceHouseAttachmentDatasourceConnectionConfigElasticsearchServiceInfoArgs
DlcDatasourceHouseAttachmentDatasourceConnectionConfigHive, DlcDatasourceHouseAttachmentDatasourceConnectionConfigHiveArgs
- Location
Dlc
Datasource House Attachment Datasource Connection Config Hive Location - Network information for MySQL data source.
- Meta
Store stringUrl - Address of Hive metastore.
- Type string
- Hive data source type, representing data storage location, COS or HDFS.
- Bucket
Url string - If the type is COS, COS bucket connection needs to be filled in.
- Hdfs
Properties string - 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 string - Version number of Hive component in EMR cluster.
- Instance
Id string - Database instance ID, consistent with the database side.
- Instance
Name string - Database instance name, consistent with the database side.
- Kerberos
Enable bool - Whether to enable Kerberos.
- Kerberos
Info DlcDatasource House Attachment Datasource Connection Config Hive Kerberos Info - Kerberos details.
- Mysql
Dlc
Datasource House Attachment Datasource Connection Config Hive Mysql - Metadata database information for Hive.
- Location
Dlc
Datasource House Attachment Datasource Connection Config Hive Location - Network information for MySQL data source.
- Meta
Store stringUrl - Address of Hive metastore.
- Type string
- Hive data source type, representing data storage location, COS or HDFS.
- Bucket
Url string - If the type is COS, COS bucket connection needs to be filled in.
- Hdfs
Properties string - 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 string - Version number of Hive component in EMR cluster.
- Instance
Id string - Database instance ID, consistent with the database side.
- Instance
Name string - Database instance name, consistent with the database side.
- Kerberos
Enable bool - Whether to enable Kerberos.
- Kerberos
Info DlcDatasource House Attachment Datasource Connection Config Hive Kerberos Info - Kerberos details.
- Mysql
Dlc
Datasource House Attachment Datasource Connection Config Hive Mysql - Metadata database information for Hive.
- location
Dlc
Datasource House Attachment Datasource Connection Config Hive Location - Network information for MySQL data source.
- meta
Store StringUrl - Address of Hive metastore.
- type String
- Hive data source type, representing data storage location, COS or HDFS.
- bucket
Url String - If the type is COS, COS bucket connection needs to be filled in.
- hdfs
Properties String - JSON string. If the type is HDFS, this field needs to be filled in.
- high
Availability Boolean - If the type is HDFS, high availability needs to be selected.
- hive
Version String - Version number of Hive component in EMR cluster.
- instance
Id String - Database instance ID, consistent with the database side.
- instance
Name String - Database instance name, consistent with the database side.
- kerberos
Enable Boolean - Whether to enable Kerberos.
- kerberos
Info DlcDatasource House Attachment Datasource Connection Config Hive Kerberos Info - Kerberos details.
- mysql
Dlc
Datasource House Attachment Datasource Connection Config Hive Mysql - Metadata database information for Hive.
- location
Dlc
Datasource House Attachment Datasource Connection Config Hive Location - Network information for MySQL data source.
- meta
Store stringUrl - Address of Hive metastore.
- type string
- Hive data source type, representing data storage location, COS or HDFS.
- bucket
Url string - If the type is COS, COS bucket connection needs to be filled in.
- hdfs
Properties string - JSON string. If the type is HDFS, this field needs to be filled in.
- high
Availability boolean - If the type is HDFS, high availability needs to be selected.
- hive
Version string - Version number of Hive component in EMR cluster.
- instance
Id string - Database instance ID, consistent with the database side.
- instance
Name string - Database instance name, consistent with the database side.
- kerberos
Enable boolean - Whether to enable Kerberos.
- kerberos
Info DlcDatasource House Attachment Datasource Connection Config Hive Kerberos Info - Kerberos details.
- mysql
Dlc
Datasource House Attachment Datasource Connection Config Hive Mysql - Metadata database information for Hive.
- location
Dlc
Datasource House Attachment Datasource Connection Config Hive Location - Network information for MySQL data source.
- meta_
store_ strurl - 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 DlcDatasource House Attachment Datasource Connection Config Hive Kerberos Info - Kerberos details.
- mysql
Dlc
Datasource House Attachment Datasource Connection Config Hive Mysql - Metadata database information for Hive.
- location Property Map
- Network information for MySQL data source.
- meta
Store StringUrl - Address of Hive metastore.
- type String
- Hive data source type, representing data storage location, COS or HDFS.
- bucket
Url String - If the type is COS, COS bucket connection needs to be filled in.
- hdfs
Properties String - JSON string. If the type is HDFS, this field needs to be filled in.
- high
Availability Boolean - If the type is HDFS, high availability needs to be selected.
- hive
Version String - Version number of Hive component in EMR cluster.
- instance
Id String - Database instance ID, consistent with the database side.
- instance
Name String - Database instance name, consistent with the database side.
- kerberos
Enable Boolean - Whether to enable Kerberos.
- kerberos
Info Property Map - Kerberos details.
- mysql Property Map
- Metadata database information for Hive.
DlcDatasourceHouseAttachmentDatasourceConnectionConfigHiveKerberosInfo, DlcDatasourceHouseAttachmentDatasourceConnectionConfigHiveKerberosInfoArgs
- Key
Tab string - KeyTab file value.
- Krb5Conf string
- Krb5Conf file value.
- Service
Principal string - Service principal.
- Key
Tab string - KeyTab file value.
- Krb5Conf string
- Krb5Conf file value.
- Service
Principal string - Service principal.
- key
Tab String - KeyTab file value.
- krb5Conf String
- Krb5Conf file value.
- service
Principal String - Service principal.
- key
Tab string - KeyTab file value.
- krb5Conf string
- Krb5Conf file value.
- service
Principal string - Service principal.
- key_
tab str - KeyTab file value.
- krb5_
conf str - Krb5Conf file value.
- service_
principal str - Service principal.
- key
Tab String - KeyTab file value.
- krb5Conf String
- Krb5Conf file value.
- service
Principal String - Service principal.
DlcDatasourceHouseAttachmentDatasourceConnectionConfigHiveLocation, DlcDatasourceHouseAttachmentDatasourceConnectionConfigHiveLocationArgs
- Subnet
Cidr stringBlock - Subnet IPv4 CIDR.
- Subnet
Id string - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- Vpc
Cidr stringBlock - VPC IPv4 CIDR.
- Vpc
Id string - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- Subnet
Cidr stringBlock - Subnet IPv4 CIDR.
- Subnet
Id string - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- Vpc
Cidr stringBlock - VPC IPv4 CIDR.
- Vpc
Id string - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet
Cidr StringBlock - Subnet IPv4 CIDR.
- subnet
Id String - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc
Cidr StringBlock - VPC IPv4 CIDR.
- vpc
Id String - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet
Cidr stringBlock - Subnet IPv4 CIDR.
- subnet
Id string - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc
Cidr stringBlock - VPC IPv4 CIDR.
- vpc
Id string - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet_
cidr_ strblock - Subnet IPv4 CIDR.
- subnet_
id str - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc_
cidr_ strblock - VPC IPv4 CIDR.
- vpc_
id str - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet
Cidr StringBlock - Subnet IPv4 CIDR.
- subnet
Id String - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc
Cidr StringBlock - VPC IPv4 CIDR.
- vpc
Id String - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
DlcDatasourceHouseAttachmentDatasourceConnectionConfigHiveMysql, DlcDatasourceHouseAttachmentDatasourceConnectionConfigHiveMysqlArgs
- Location
Dlc
Datasource House Attachment Datasource Connection Config Hive Mysql Location - Network information for MySQL data source.
- Db
Name string - Database name.
- Instance
Id string - Database instance ID, consistent with the database side.
- Instance
Name string - Database instance name, consistent with the database side.
- Location
Dlc
Datasource House Attachment Datasource Connection Config Hive Mysql Location - Network information for MySQL data source.
- Db
Name string - Database name.
- Instance
Id string - Database instance ID, consistent with the database side.
- Instance
Name string - Database instance name, consistent with the database side.
- location
Dlc
Datasource House Attachment Datasource Connection Config Hive Mysql Location - Network information for MySQL data source.
- db
Name String - Database name.
- instance
Id String - Database instance ID, consistent with the database side.
- instance
Name String - Database instance name, consistent with the database side.
- location
Dlc
Datasource House Attachment Datasource Connection Config Hive Mysql Location - Network information for MySQL data source.
- db
Name string - Database name.
- instance
Id string - Database instance ID, consistent with the database side.
- instance
Name string - Database instance name, consistent with the database side.
- location
Dlc
Datasource House Attachment Datasource Connection Config Hive Mysql Location - 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.
- db
Name String - Database name.
- instance
Id String - Database instance ID, consistent with the database side.
- instance
Name String - Database instance name, consistent with the database side.
DlcDatasourceHouseAttachmentDatasourceConnectionConfigHiveMysqlLocation, DlcDatasourceHouseAttachmentDatasourceConnectionConfigHiveMysqlLocationArgs
- Subnet
Cidr stringBlock - Subnet IPv4 CIDR.
- Subnet
Id string - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- Vpc
Cidr stringBlock - VPC IPv4 CIDR.
- Vpc
Id string - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- Subnet
Cidr stringBlock - Subnet IPv4 CIDR.
- Subnet
Id string - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- Vpc
Cidr stringBlock - VPC IPv4 CIDR.
- Vpc
Id string - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet
Cidr StringBlock - Subnet IPv4 CIDR.
- subnet
Id String - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc
Cidr StringBlock - VPC IPv4 CIDR.
- vpc
Id String - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet
Cidr stringBlock - Subnet IPv4 CIDR.
- subnet
Id string - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc
Cidr stringBlock - VPC IPv4 CIDR.
- vpc
Id string - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet_
cidr_ strblock - Subnet IPv4 CIDR.
- subnet_
id str - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc_
cidr_ strblock - VPC IPv4 CIDR.
- vpc_
id str - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet
Cidr StringBlock - Subnet IPv4 CIDR.
- subnet
Id String - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc
Cidr StringBlock - VPC IPv4 CIDR.
- vpc
Id String - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
DlcDatasourceHouseAttachmentDatasourceConnectionConfigKafka, DlcDatasourceHouseAttachmentDatasourceConnectionConfigKafkaArgs
- Instance
Id string - Kafka instance ID.
- Location
Dlc
Datasource House Attachment Datasource Connection Config Kafka Location - Network information for Kafka data source.
- Instance
Id string - Kafka instance ID.
- Location
Dlc
Datasource House Attachment Datasource Connection Config Kafka Location - Network information for Kafka data source.
- instance
Id String - Kafka instance ID.
- location
Dlc
Datasource House Attachment Datasource Connection Config Kafka Location - Network information for Kafka data source.
- instance
Id string - Kafka instance ID.
- location
Dlc
Datasource House Attachment Datasource Connection Config Kafka Location - Network information for Kafka data source.
- instance_
id str - Kafka instance ID.
- location
Dlc
Datasource House Attachment Datasource Connection Config Kafka Location - Network information for Kafka data source.
- instance
Id String - Kafka instance ID.
- location Property Map
- Network information for Kafka data source.
DlcDatasourceHouseAttachmentDatasourceConnectionConfigKafkaLocation, DlcDatasourceHouseAttachmentDatasourceConnectionConfigKafkaLocationArgs
- Subnet
Cidr stringBlock - Subnet IPv4 CIDR.
- Subnet
Id string - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- Vpc
Cidr stringBlock - VPC IPv4 CIDR.
- Vpc
Id string - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- Subnet
Cidr stringBlock - Subnet IPv4 CIDR.
- Subnet
Id string - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- Vpc
Cidr stringBlock - VPC IPv4 CIDR.
- Vpc
Id string - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet
Cidr StringBlock - Subnet IPv4 CIDR.
- subnet
Id String - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc
Cidr StringBlock - VPC IPv4 CIDR.
- vpc
Id String - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet
Cidr stringBlock - Subnet IPv4 CIDR.
- subnet
Id string - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc
Cidr stringBlock - VPC IPv4 CIDR.
- vpc
Id string - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet_
cidr_ strblock - Subnet IPv4 CIDR.
- subnet_
id str - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc_
cidr_ strblock - VPC IPv4 CIDR.
- vpc_
id str - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet
Cidr StringBlock - Subnet IPv4 CIDR.
- subnet
Id String - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc
Cidr StringBlock - VPC IPv4 CIDR.
- vpc
Id String - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
DlcDatasourceHouseAttachmentDatasourceConnectionConfigMysql, DlcDatasourceHouseAttachmentDatasourceConnectionConfigMysqlArgs
- Location
Dlc
Datasource House Attachment Datasource Connection Config Mysql Location - Network information for MySQL data source.
- Db
Name string - Database name.
- Instance
Id string - Database instance ID, consistent with the database side.
- Instance
Name string - Database instance name, consistent with the database side.
- Location
Dlc
Datasource House Attachment Datasource Connection Config Mysql Location - Network information for MySQL data source.
- Db
Name string - Database name.
- Instance
Id string - Database instance ID, consistent with the database side.
- Instance
Name string - Database instance name, consistent with the database side.
- location
Dlc
Datasource House Attachment Datasource Connection Config Mysql Location - Network information for MySQL data source.
- db
Name String - Database name.
- instance
Id String - Database instance ID, consistent with the database side.
- instance
Name String - Database instance name, consistent with the database side.
- location
Dlc
Datasource House Attachment Datasource Connection Config Mysql Location - Network information for MySQL data source.
- db
Name string - Database name.
- instance
Id string - Database instance ID, consistent with the database side.
- instance
Name string - Database instance name, consistent with the database side.
- location
Dlc
Datasource House Attachment Datasource Connection Config Mysql Location - 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.
- db
Name String - Database name.
- instance
Id String - Database instance ID, consistent with the database side.
- instance
Name String - Database instance name, consistent with the database side.
DlcDatasourceHouseAttachmentDatasourceConnectionConfigMysqlLocation, DlcDatasourceHouseAttachmentDatasourceConnectionConfigMysqlLocationArgs
- Subnet
Cidr stringBlock - Subnet IPv4 CIDR.
- Subnet
Id string - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- Vpc
Cidr stringBlock - VPC IPv4 CIDR.
- Vpc
Id string - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- Subnet
Cidr stringBlock - Subnet IPv4 CIDR.
- Subnet
Id string - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- Vpc
Cidr stringBlock - VPC IPv4 CIDR.
- Vpc
Id string - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet
Cidr StringBlock - Subnet IPv4 CIDR.
- subnet
Id String - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc
Cidr StringBlock - VPC IPv4 CIDR.
- vpc
Id String - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet
Cidr stringBlock - Subnet IPv4 CIDR.
- subnet
Id string - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc
Cidr stringBlock - VPC IPv4 CIDR.
- vpc
Id string - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet_
cidr_ strblock - Subnet IPv4 CIDR.
- subnet_
id str - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc_
cidr_ strblock - VPC IPv4 CIDR.
- vpc_
id str - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet
Cidr StringBlock - Subnet IPv4 CIDR.
- subnet
Id String - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc
Cidr StringBlock - VPC IPv4 CIDR.
- vpc
Id String - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
DlcDatasourceHouseAttachmentDatasourceConnectionConfigOtherDatasourceConnection, DlcDatasourceHouseAttachmentDatasourceConnectionConfigOtherDatasourceConnectionArgs
- location Property Map
- Network parameters.
DlcDatasourceHouseAttachmentDatasourceConnectionConfigOtherDatasourceConnectionLocation, DlcDatasourceHouseAttachmentDatasourceConnectionConfigOtherDatasourceConnectionLocationArgs
- Subnet
Cidr stringBlock - Subnet IPv4 CIDR.
- Subnet
Id string - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- Vpc
Cidr stringBlock - VPC IPv4 CIDR.
- Vpc
Id string - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- Subnet
Cidr stringBlock - Subnet IPv4 CIDR.
- Subnet
Id string - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- Vpc
Cidr stringBlock - VPC IPv4 CIDR.
- Vpc
Id string - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet
Cidr StringBlock - Subnet IPv4 CIDR.
- subnet
Id String - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc
Cidr StringBlock - VPC IPv4 CIDR.
- vpc
Id String - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet
Cidr stringBlock - Subnet IPv4 CIDR.
- subnet
Id string - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc
Cidr stringBlock - VPC IPv4 CIDR.
- vpc
Id string - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet_
cidr_ strblock - Subnet IPv4 CIDR.
- subnet_
id str - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc_
cidr_ strblock - VPC IPv4 CIDR.
- vpc_
id str - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet
Cidr StringBlock - Subnet IPv4 CIDR.
- subnet
Id String - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc
Cidr StringBlock - VPC IPv4 CIDR.
- vpc
Id String - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
DlcDatasourceHouseAttachmentDatasourceConnectionConfigPostgreSql, DlcDatasourceHouseAttachmentDatasourceConnectionConfigPostgreSqlArgs
- Db
Name string - Default database name.
- Instance
Id string - Unique ID of the data source instance.
- Instance
Name string - Name of the data source.
- Location
Dlc
Datasource House Attachment Datasource Connection Config Postgre Sql Location - VPC and subnet information for the data source.
- Db
Name string - Default database name.
- Instance
Id string - Unique ID of the data source instance.
- Instance
Name string - Name of the data source.
- Location
Dlc
Datasource House Attachment Datasource Connection Config Postgre Sql Location - VPC and subnet information for the data source.
- db
Name String - Default database name.
- instance
Id String - Unique ID of the data source instance.
- instance
Name String - Name of the data source.
- location
Dlc
Datasource House Attachment Datasource Connection Config Postgre Sql Location - VPC and subnet information for the data source.
- db
Name string - Default database name.
- instance
Id string - Unique ID of the data source instance.
- instance
Name string - Name of the data source.
- location
Dlc
Datasource House Attachment Datasource Connection Config Postgre Sql Location - 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
Dlc
Datasource House Attachment Datasource Connection Config Postgre Sql Location - VPC and subnet information for the data source.
- db
Name String - Default database name.
- instance
Id String - Unique ID of the data source instance.
- instance
Name String - Name of the data source.
- location Property Map
- VPC and subnet information for the data source.
DlcDatasourceHouseAttachmentDatasourceConnectionConfigPostgreSqlLocation, DlcDatasourceHouseAttachmentDatasourceConnectionConfigPostgreSqlLocationArgs
- Subnet
Cidr stringBlock - Subnet IPv4 CIDR.
- Subnet
Id string - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- Vpc
Cidr stringBlock - VPC IPv4 CIDR.
- Vpc
Id string - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- Subnet
Cidr stringBlock - Subnet IPv4 CIDR.
- Subnet
Id string - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- Vpc
Cidr stringBlock - VPC IPv4 CIDR.
- Vpc
Id string - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet
Cidr StringBlock - Subnet IPv4 CIDR.
- subnet
Id String - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc
Cidr StringBlock - VPC IPv4 CIDR.
- vpc
Id String - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet
Cidr stringBlock - Subnet IPv4 CIDR.
- subnet
Id string - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc
Cidr stringBlock - VPC IPv4 CIDR.
- vpc
Id string - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet_
cidr_ strblock - Subnet IPv4 CIDR.
- subnet_
id str - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc_
cidr_ strblock - VPC IPv4 CIDR.
- vpc_
id str - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet
Cidr StringBlock - Subnet IPv4 CIDR.
- subnet
Id String - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc
Cidr StringBlock - VPC IPv4 CIDR.
- vpc
Id String - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
DlcDatasourceHouseAttachmentDatasourceConnectionConfigSqlServer, DlcDatasourceHouseAttachmentDatasourceConnectionConfigSqlServerArgs
- Db
Name string - Default database name.
- Instance
Id string - Unique ID of the data source instance.
- Instance
Name string - Name of the data source.
- Location
Dlc
Datasource House Attachment Datasource Connection Config Sql Server Location - VPC and subnet information for the data source.
- Db
Name string - Default database name.
- Instance
Id string - Unique ID of the data source instance.
- Instance
Name string - Name of the data source.
- Location
Dlc
Datasource House Attachment Datasource Connection Config Sql Server Location - VPC and subnet information for the data source.
- db
Name String - Default database name.
- instance
Id String - Unique ID of the data source instance.
- instance
Name String - Name of the data source.
- location
Dlc
Datasource House Attachment Datasource Connection Config Sql Server Location - VPC and subnet information for the data source.
- db
Name string - Default database name.
- instance
Id string - Unique ID of the data source instance.
- instance
Name string - Name of the data source.
- location
Dlc
Datasource House Attachment Datasource Connection Config Sql Server Location - 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
Dlc
Datasource House Attachment Datasource Connection Config Sql Server Location - VPC and subnet information for the data source.
- db
Name String - Default database name.
- instance
Id String - Unique ID of the data source instance.
- instance
Name String - Name of the data source.
- location Property Map
- VPC and subnet information for the data source.
DlcDatasourceHouseAttachmentDatasourceConnectionConfigSqlServerLocation, DlcDatasourceHouseAttachmentDatasourceConnectionConfigSqlServerLocationArgs
- Subnet
Cidr stringBlock - Subnet IPv4 CIDR.
- Subnet
Id string - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- Vpc
Cidr stringBlock - VPC IPv4 CIDR.
- Vpc
Id string - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- Subnet
Cidr stringBlock - Subnet IPv4 CIDR.
- Subnet
Id string - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- Vpc
Cidr stringBlock - VPC IPv4 CIDR.
- Vpc
Id string - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet
Cidr StringBlock - Subnet IPv4 CIDR.
- subnet
Id String - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc
Cidr StringBlock - VPC IPv4 CIDR.
- vpc
Id String - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet
Cidr stringBlock - Subnet IPv4 CIDR.
- subnet
Id string - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc
Cidr stringBlock - VPC IPv4 CIDR.
- vpc
Id string - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet_
cidr_ strblock - Subnet IPv4 CIDR.
- subnet_
id str - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc_
cidr_ strblock - VPC IPv4 CIDR.
- vpc_
id str - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet
Cidr StringBlock - Subnet IPv4 CIDR.
- subnet
Id String - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc
Cidr StringBlock - VPC IPv4 CIDR.
- vpc
Id String - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
DlcDatasourceHouseAttachmentDatasourceConnectionConfigTcHouseD, DlcDatasourceHouseAttachmentDatasourceConnectionConfigTcHouseDArgs
- Access
Info string - Access information.
- Db
Name string - Default database name.
- Instance
Id string - Unique ID of the data source instance.
- Instance
Name string - Data source name.
- Location
Dlc
Datasource House Attachment Datasource Connection Config Tc House DLocation - VPC and subnet information for the data source.
- Access
Info string - Access information.
- Db
Name string - Default database name.
- Instance
Id string - Unique ID of the data source instance.
- Instance
Name string - Data source name.
- Location
Dlc
Datasource House Attachment Datasource Connection Config Tc House DLocation - VPC and subnet information for the data source.
- access
Info String - Access information.
- db
Name String - Default database name.
- instance
Id String - Unique ID of the data source instance.
- instance
Name String - Data source name.
- location
Dlc
Datasource House Attachment Datasource Connection Config Tc House DLocation - VPC and subnet information for the data source.
- access
Info string - Access information.
- db
Name string - Default database name.
- instance
Id string - Unique ID of the data source instance.
- instance
Name string - Data source name.
- location
Dlc
Datasource House Attachment Datasource Connection Config Tc House DLocation - 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
Dlc
Datasource House Attachment Datasource Connection Config Tc House DLocation - VPC and subnet information for the data source.
- access
Info String - Access information.
- db
Name String - Default database name.
- instance
Id String - Unique ID of the data source instance.
- instance
Name String - Data source name.
- location Property Map
- VPC and subnet information for the data source.
DlcDatasourceHouseAttachmentDatasourceConnectionConfigTcHouseDLocation, DlcDatasourceHouseAttachmentDatasourceConnectionConfigTcHouseDLocationArgs
- Subnet
Cidr stringBlock - Subnet IPv4 CIDR.
- Subnet
Id string - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- Vpc
Cidr stringBlock - VPC IPv4 CIDR.
- Vpc
Id string - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- Subnet
Cidr stringBlock - Subnet IPv4 CIDR.
- Subnet
Id string - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- Vpc
Cidr stringBlock - VPC IPv4 CIDR.
- Vpc
Id string - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet
Cidr StringBlock - Subnet IPv4 CIDR.
- subnet
Id String - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc
Cidr StringBlock - VPC IPv4 CIDR.
- vpc
Id String - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet
Cidr stringBlock - Subnet IPv4 CIDR.
- subnet
Id string - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc
Cidr stringBlock - VPC IPv4 CIDR.
- vpc
Id string - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet_
cidr_ strblock - Subnet IPv4 CIDR.
- subnet_
id str - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc_
cidr_ strblock - VPC IPv4 CIDR.
- vpc_
id str - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet
Cidr StringBlock - Subnet IPv4 CIDR.
- subnet
Id String - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc
Cidr StringBlock - VPC IPv4 CIDR.
- vpc
Id String - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
DlcDatasourceHouseAttachmentDatasourceConnectionConfigTccHive, DlcDatasourceHouseAttachmentDatasourceConnectionConfigTccHiveArgs
- Endpoint
Service stringId - Endpoint service ID.
- Hive
Version string - Hive version.
- Hms
Endpoint stringService Id - HMS endpoint service ID.
- Instance
Id string - Instance ID.
- Instance
Name string - Instance name.
- Meta
Store stringUrl - Thrift connection address.
- Tcc
Connection DlcDatasource House Attachment Datasource Connection Config Tcc Hive Tcc Connection - Network information.
- Endpoint
Service stringId - Endpoint service ID.
- Hive
Version string - Hive version.
- Hms
Endpoint stringService Id - HMS endpoint service ID.
- Instance
Id string - Instance ID.
- Instance
Name string - Instance name.
- Meta
Store stringUrl - Thrift connection address.
- Tcc
Connection DlcDatasource House Attachment Datasource Connection Config Tcc Hive Tcc Connection - Network information.
- endpoint
Service StringId - Endpoint service ID.
- hive
Version String - Hive version.
- hms
Endpoint StringService Id - HMS endpoint service ID.
- instance
Id String - Instance ID.
- instance
Name String - Instance name.
- meta
Store StringUrl - Thrift connection address.
- tcc
Connection DlcDatasource House Attachment Datasource Connection Config Tcc Hive Tcc Connection - Network information.
- endpoint
Service stringId - Endpoint service ID.
- hive
Version string - Hive version.
- hms
Endpoint stringService Id - HMS endpoint service ID.
- instance
Id string - Instance ID.
- instance
Name string - Instance name.
- meta
Store stringUrl - Thrift connection address.
- tcc
Connection DlcDatasource House Attachment Datasource Connection Config Tcc Hive Tcc Connection - Network information.
- endpoint_
service_ strid - Endpoint service ID.
- hive_
version str - Hive version.
- hms_
endpoint_ strservice_ id - HMS endpoint service ID.
- instance_
id str - Instance ID.
- instance_
name str - Instance name.
- meta_
store_ strurl - Thrift connection address.
- tcc_
connection DlcDatasource House Attachment Datasource Connection Config Tcc Hive Tcc Connection - Network information.
- endpoint
Service StringId - Endpoint service ID.
- hive
Version String - Hive version.
- hms
Endpoint StringService Id - HMS endpoint service ID.
- instance
Id String - Instance ID.
- instance
Name String - Instance name.
- meta
Store StringUrl - Thrift connection address.
- tcc
Connection Property Map - Network information.
DlcDatasourceHouseAttachmentDatasourceConnectionConfigTccHiveTccConnection, DlcDatasourceHouseAttachmentDatasourceConnectionConfigTccHiveTccConnectionArgs
- Clb
Ip string - Service CLB IP.
- Clb
Port string - Service CLB port.
- Subnet
Cidr stringBlock - Subnet CIDR.
- Subnet
Id string - Subnet instance ID.
- Vpc
Cidr stringBlock - VPC CIDR.
- Vpc
Id string - VPC instance ID.
- Clb
Ip string - Service CLB IP.
- Clb
Port string - Service CLB port.
- Subnet
Cidr stringBlock - Subnet CIDR.
- Subnet
Id string - Subnet instance ID.
- Vpc
Cidr stringBlock - VPC CIDR.
- Vpc
Id string - VPC instance ID.
- clb
Ip String - Service CLB IP.
- clb
Port String - Service CLB port.
- subnet
Cidr StringBlock - Subnet CIDR.
- subnet
Id String - Subnet instance ID.
- vpc
Cidr StringBlock - VPC CIDR.
- vpc
Id String - VPC instance ID.
- clb
Ip string - Service CLB IP.
- clb
Port string - Service CLB port.
- subnet
Cidr stringBlock - Subnet CIDR.
- subnet
Id string - Subnet instance ID.
- vpc
Cidr stringBlock - VPC CIDR.
- vpc
Id string - VPC instance ID.
- clb_
ip str - Service CLB IP.
- clb_
port str - Service CLB port.
- subnet_
cidr_ strblock - Subnet CIDR.
- subnet_
id str - Subnet instance ID.
- vpc_
cidr_ strblock - VPC CIDR.
- vpc_
id str - VPC instance ID.
- clb
Ip String - Service CLB IP.
- clb
Port String - Service CLB port.
- subnet
Cidr StringBlock - Subnet CIDR.
- subnet
Id String - Subnet instance ID.
- vpc
Cidr StringBlock - VPC CIDR.
- vpc
Id String - VPC instance ID.
DlcDatasourceHouseAttachmentDatasourceConnectionConfigTdsqlPostgreSql, DlcDatasourceHouseAttachmentDatasourceConnectionConfigTdsqlPostgreSqlArgs
- Db
Name string - Default database name.
- Instance
Id string - Unique ID of the data source instance.
- Instance
Name string - Name of the data source.
- Location
Dlc
Datasource House Attachment Datasource Connection Config Tdsql Postgre Sql Location - VPC and subnet information for the data source.
- Db
Name string - Default database name.
- Instance
Id string - Unique ID of the data source instance.
- Instance
Name string - Name of the data source.
- Location
Dlc
Datasource House Attachment Datasource Connection Config Tdsql Postgre Sql Location - VPC and subnet information for the data source.
- db
Name String - Default database name.
- instance
Id String - Unique ID of the data source instance.
- instance
Name String - Name of the data source.
- location
Dlc
Datasource House Attachment Datasource Connection Config Tdsql Postgre Sql Location - VPC and subnet information for the data source.
- db
Name string - Default database name.
- instance
Id string - Unique ID of the data source instance.
- instance
Name string - Name of the data source.
- location
Dlc
Datasource House Attachment Datasource Connection Config Tdsql Postgre Sql Location - 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
Dlc
Datasource House Attachment Datasource Connection Config Tdsql Postgre Sql Location - VPC and subnet information for the data source.
- db
Name String - Default database name.
- instance
Id String - Unique ID of the data source instance.
- instance
Name String - Name of the data source.
- location Property Map
- VPC and subnet information for the data source.
DlcDatasourceHouseAttachmentDatasourceConnectionConfigTdsqlPostgreSqlLocation, DlcDatasourceHouseAttachmentDatasourceConnectionConfigTdsqlPostgreSqlLocationArgs
- Subnet
Cidr stringBlock - Subnet IPv4 CIDR.
- Subnet
Id string - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- Vpc
Cidr stringBlock - VPC IPv4 CIDR.
- Vpc
Id string - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- Subnet
Cidr stringBlock - Subnet IPv4 CIDR.
- Subnet
Id string - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- Vpc
Cidr stringBlock - VPC IPv4 CIDR.
- Vpc
Id string - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet
Cidr StringBlock - Subnet IPv4 CIDR.
- subnet
Id String - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc
Cidr StringBlock - VPC IPv4 CIDR.
- vpc
Id String - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet
Cidr stringBlock - Subnet IPv4 CIDR.
- subnet
Id string - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc
Cidr stringBlock - VPC IPv4 CIDR.
- vpc
Id string - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet_
cidr_ strblock - Subnet IPv4 CIDR.
- subnet_
id str - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc_
cidr_ strblock - VPC IPv4 CIDR.
- vpc_
id str - VPC instance ID where the data connection is located, such as 'vpc-azd4dt1c'.
- subnet
Cidr StringBlock - Subnet IPv4 CIDR.
- subnet
Id String - Subnet instance ID where the data connection is located, such as 'subnet-bthucmmy'.
- vpc
Cidr StringBlock - VPC IPv4 CIDR.
- vpc
Id 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
tencentcloudTerraform Provider.
