tencentcloud.CkafkaConnectResource
Explore with Pulumi AI
Provides a resource to create a ckafka connect_resource
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const connectResource = new tencentcloud.CkafkaConnectResource("connectResource", {
description: "for terraform test",
mysqlConnectParam: {
password: "xxxxxxxxx",
port: 3306,
resource: "cdb-fitq5t9h",
selfBuilt: false,
serviceVip: "172.16.80.59",
uniqVpcId: "vpc-4owdpnwr",
userName: "root",
},
resourceName: "terraform-test",
type: "MYSQL",
});
import pulumi
import pulumi_tencentcloud as tencentcloud
connect_resource = tencentcloud.CkafkaConnectResource("connectResource",
description="for terraform test",
mysql_connect_param={
"password": "xxxxxxxxx",
"port": 3306,
"resource": "cdb-fitq5t9h",
"self_built": False,
"service_vip": "172.16.80.59",
"uniq_vpc_id": "vpc-4owdpnwr",
"user_name": "root",
},
resource_name_="terraform-test",
type="MYSQL")
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.NewCkafkaConnectResource(ctx, "connectResource", &tencentcloud.CkafkaConnectResourceArgs{
Description: pulumi.String("for terraform test"),
MysqlConnectParam: &tencentcloud.CkafkaConnectResourceMysqlConnectParamArgs{
Password: pulumi.String("xxxxxxxxx"),
Port: pulumi.Float64(3306),
Resource: pulumi.String("cdb-fitq5t9h"),
SelfBuilt: pulumi.Bool(false),
ServiceVip: pulumi.String("172.16.80.59"),
UniqVpcId: pulumi.String("vpc-4owdpnwr"),
UserName: pulumi.String("root"),
},
ResourceName: pulumi.String("terraform-test"),
Type: pulumi.String("MYSQL"),
})
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 connectResource = new Tencentcloud.CkafkaConnectResource("connectResource", new()
{
Description = "for terraform test",
MysqlConnectParam = new Tencentcloud.Inputs.CkafkaConnectResourceMysqlConnectParamArgs
{
Password = "xxxxxxxxx",
Port = 3306,
Resource = "cdb-fitq5t9h",
SelfBuilt = false,
ServiceVip = "172.16.80.59",
UniqVpcId = "vpc-4owdpnwr",
UserName = "root",
},
ResourceName = "terraform-test",
Type = "MYSQL",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.CkafkaConnectResource;
import com.pulumi.tencentcloud.CkafkaConnectResourceArgs;
import com.pulumi.tencentcloud.inputs.CkafkaConnectResourceMysqlConnectParamArgs;
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 connectResource = new CkafkaConnectResource("connectResource", CkafkaConnectResourceArgs.builder()
.description("for terraform test")
.mysqlConnectParam(CkafkaConnectResourceMysqlConnectParamArgs.builder()
.password("xxxxxxxxx")
.port(3306)
.resource("cdb-fitq5t9h")
.selfBuilt(false)
.serviceVip("172.16.80.59")
.uniqVpcId("vpc-4owdpnwr")
.userName("root")
.build())
.resourceName("terraform-test")
.type("MYSQL")
.build());
}
}
resources:
connectResource:
type: tencentcloud:CkafkaConnectResource
properties:
description: for terraform test
mysqlConnectParam:
password: xxxxxxxxx
port: 3306
resource: cdb-fitq5t9h
selfBuilt: false
serviceVip: 172.16.80.59
uniqVpcId: vpc-4owdpnwr
userName: root
resourceName: terraform-test
type: MYSQL
Create CkafkaConnectResource Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CkafkaConnectResource(name: string, args: CkafkaConnectResourceArgs, opts?: CustomResourceOptions);
@overload
def CkafkaConnectResource(resource_name: str,
args: CkafkaConnectResourceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def CkafkaConnectResource(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_name_: Optional[str] = None,
type: Optional[str] = None,
kafka_connect_param: Optional[CkafkaConnectResourceKafkaConnectParamArgs] = None,
doris_connect_param: Optional[CkafkaConnectResourceDorisConnectParamArgs] = None,
dts_connect_param: Optional[CkafkaConnectResourceDtsConnectParamArgs] = None,
es_connect_param: Optional[CkafkaConnectResourceEsConnectParamArgs] = None,
ckafka_connect_resource_id: Optional[str] = None,
mariadb_connect_param: Optional[CkafkaConnectResourceMariadbConnectParamArgs] = None,
mongodb_connect_param: Optional[CkafkaConnectResourceMongodbConnectParamArgs] = None,
mysql_connect_param: Optional[CkafkaConnectResourceMysqlConnectParamArgs] = None,
postgresql_connect_param: Optional[CkafkaConnectResourcePostgresqlConnectParamArgs] = None,
description: Optional[str] = None,
sqlserver_connect_param: Optional[CkafkaConnectResourceSqlserverConnectParamArgs] = None,
clickhouse_connect_param: Optional[CkafkaConnectResourceClickhouseConnectParamArgs] = None)
func NewCkafkaConnectResource(ctx *Context, name string, args CkafkaConnectResourceArgs, opts ...ResourceOption) (*CkafkaConnectResource, error)
public CkafkaConnectResource(string name, CkafkaConnectResourceArgs args, CustomResourceOptions? opts = null)
public CkafkaConnectResource(String name, CkafkaConnectResourceArgs args)
public CkafkaConnectResource(String name, CkafkaConnectResourceArgs args, CustomResourceOptions options)
type: tencentcloud:CkafkaConnectResource
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 CkafkaConnectResourceArgs
- 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 CkafkaConnectResourceArgs
- 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 CkafkaConnectResourceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CkafkaConnectResourceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CkafkaConnectResourceArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
CkafkaConnectResource 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 CkafkaConnectResource resource accepts the following input properties:
- Resource
Name string - connection source name.
- Type string
- connection source type.
- Ckafka
Connect stringResource Id - ID of the resource.
- Clickhouse
Connect CkafkaParam Connect Resource Clickhouse Connect Param - ClickHouse configuration, required when Type is CLICKHOUSE.
- Description string
- Connection source description.
- Doris
Connect CkafkaParam Connect Resource Doris Connect Param - Doris configuration, required when Type is DORIS.
- Dts
Connect CkafkaParam Connect Resource Dts Connect Param - Dts configuration, required when Type is DTS.
- Es
Connect CkafkaParam Connect Resource Es Connect Param - Es configuration, required when Type is ES.
- Kafka
Connect CkafkaParam Connect Resource Kafka Connect Param - Kafka configuration, required when Type is KAFKA.
- Mariadb
Connect CkafkaParam Connect Resource Mariadb Connect Param - Maria DB configuration, required when Type is MARIADB.
- Mongodb
Connect CkafkaParam Connect Resource Mongodb Connect Param - Mongo DB configuration, required when Type is MONGODB.
- Mysql
Connect CkafkaParam Connect Resource Mysql Connect Param - MySQL configuration, required when Type is MYSQL or TDSQL C_MYSQL.
- Postgresql
Connect CkafkaParam Connect Resource Postgresql Connect Param - Postgresql configuration, required when Type is POSTGRESQL or TDSQL C POSTGRESQL.
- Sqlserver
Connect CkafkaParam Connect Resource Sqlserver Connect Param - SQLServer configuration, required when Type is SQLSERVER.
- Resource
Name string - connection source name.
- Type string
- connection source type.
- Ckafka
Connect stringResource Id - ID of the resource.
- Clickhouse
Connect CkafkaParam Connect Resource Clickhouse Connect Param Args - ClickHouse configuration, required when Type is CLICKHOUSE.
- Description string
- Connection source description.
- Doris
Connect CkafkaParam Connect Resource Doris Connect Param Args - Doris configuration, required when Type is DORIS.
- Dts
Connect CkafkaParam Connect Resource Dts Connect Param Args - Dts configuration, required when Type is DTS.
- Es
Connect CkafkaParam Connect Resource Es Connect Param Args - Es configuration, required when Type is ES.
- Kafka
Connect CkafkaParam Connect Resource Kafka Connect Param Args - Kafka configuration, required when Type is KAFKA.
- Mariadb
Connect CkafkaParam Connect Resource Mariadb Connect Param Args - Maria DB configuration, required when Type is MARIADB.
- Mongodb
Connect CkafkaParam Connect Resource Mongodb Connect Param Args - Mongo DB configuration, required when Type is MONGODB.
- Mysql
Connect CkafkaParam Connect Resource Mysql Connect Param Args - MySQL configuration, required when Type is MYSQL or TDSQL C_MYSQL.
- Postgresql
Connect CkafkaParam Connect Resource Postgresql Connect Param Args - Postgresql configuration, required when Type is POSTGRESQL or TDSQL C POSTGRESQL.
- Sqlserver
Connect CkafkaParam Connect Resource Sqlserver Connect Param Args - SQLServer configuration, required when Type is SQLSERVER.
- resource
Name String - connection source name.
- type String
- connection source type.
- ckafka
Connect StringResource Id - ID of the resource.
- clickhouse
Connect CkafkaParam Connect Resource Clickhouse Connect Param - ClickHouse configuration, required when Type is CLICKHOUSE.
- description String
- Connection source description.
- doris
Connect CkafkaParam Connect Resource Doris Connect Param - Doris configuration, required when Type is DORIS.
- dts
Connect CkafkaParam Connect Resource Dts Connect Param - Dts configuration, required when Type is DTS.
- es
Connect CkafkaParam Connect Resource Es Connect Param - Es configuration, required when Type is ES.
- kafka
Connect CkafkaParam Connect Resource Kafka Connect Param - Kafka configuration, required when Type is KAFKA.
- mariadb
Connect CkafkaParam Connect Resource Mariadb Connect Param - Maria DB configuration, required when Type is MARIADB.
- mongodb
Connect CkafkaParam Connect Resource Mongodb Connect Param - Mongo DB configuration, required when Type is MONGODB.
- mysql
Connect CkafkaParam Connect Resource Mysql Connect Param - MySQL configuration, required when Type is MYSQL or TDSQL C_MYSQL.
- postgresql
Connect CkafkaParam Connect Resource Postgresql Connect Param - Postgresql configuration, required when Type is POSTGRESQL or TDSQL C POSTGRESQL.
- sqlserver
Connect CkafkaParam Connect Resource Sqlserver Connect Param - SQLServer configuration, required when Type is SQLSERVER.
- resource
Name string - connection source name.
- type string
- connection source type.
- ckafka
Connect stringResource Id - ID of the resource.
- clickhouse
Connect CkafkaParam Connect Resource Clickhouse Connect Param - ClickHouse configuration, required when Type is CLICKHOUSE.
- description string
- Connection source description.
- doris
Connect CkafkaParam Connect Resource Doris Connect Param - Doris configuration, required when Type is DORIS.
- dts
Connect CkafkaParam Connect Resource Dts Connect Param - Dts configuration, required when Type is DTS.
- es
Connect CkafkaParam Connect Resource Es Connect Param - Es configuration, required when Type is ES.
- kafka
Connect CkafkaParam Connect Resource Kafka Connect Param - Kafka configuration, required when Type is KAFKA.
- mariadb
Connect CkafkaParam Connect Resource Mariadb Connect Param - Maria DB configuration, required when Type is MARIADB.
- mongodb
Connect CkafkaParam Connect Resource Mongodb Connect Param - Mongo DB configuration, required when Type is MONGODB.
- mysql
Connect CkafkaParam Connect Resource Mysql Connect Param - MySQL configuration, required when Type is MYSQL or TDSQL C_MYSQL.
- postgresql
Connect CkafkaParam Connect Resource Postgresql Connect Param - Postgresql configuration, required when Type is POSTGRESQL or TDSQL C POSTGRESQL.
- sqlserver
Connect CkafkaParam Connect Resource Sqlserver Connect Param - SQLServer configuration, required when Type is SQLSERVER.
- resource_
name str - connection source name.
- type str
- connection source type.
- ckafka_
connect_ strresource_ id - ID of the resource.
- clickhouse_
connect_ Ckafkaparam Connect Resource Clickhouse Connect Param Args - ClickHouse configuration, required when Type is CLICKHOUSE.
- description str
- Connection source description.
- doris_
connect_ Ckafkaparam Connect Resource Doris Connect Param Args - Doris configuration, required when Type is DORIS.
- dts_
connect_ Ckafkaparam Connect Resource Dts Connect Param Args - Dts configuration, required when Type is DTS.
- es_
connect_ Ckafkaparam Connect Resource Es Connect Param Args - Es configuration, required when Type is ES.
- kafka_
connect_ Ckafkaparam Connect Resource Kafka Connect Param Args - Kafka configuration, required when Type is KAFKA.
- mariadb_
connect_ Ckafkaparam Connect Resource Mariadb Connect Param Args - Maria DB configuration, required when Type is MARIADB.
- mongodb_
connect_ Ckafkaparam Connect Resource Mongodb Connect Param Args - Mongo DB configuration, required when Type is MONGODB.
- mysql_
connect_ Ckafkaparam Connect Resource Mysql Connect Param Args - MySQL configuration, required when Type is MYSQL or TDSQL C_MYSQL.
- postgresql_
connect_ Ckafkaparam Connect Resource Postgresql Connect Param Args - Postgresql configuration, required when Type is POSTGRESQL or TDSQL C POSTGRESQL.
- sqlserver_
connect_ Ckafkaparam Connect Resource Sqlserver Connect Param Args - SQLServer configuration, required when Type is SQLSERVER.
- resource
Name String - connection source name.
- type String
- connection source type.
- ckafka
Connect StringResource Id - ID of the resource.
- clickhouse
Connect Property MapParam - ClickHouse configuration, required when Type is CLICKHOUSE.
- description String
- Connection source description.
- doris
Connect Property MapParam - Doris configuration, required when Type is DORIS.
- dts
Connect Property MapParam - Dts configuration, required when Type is DTS.
- es
Connect Property MapParam - Es configuration, required when Type is ES.
- kafka
Connect Property MapParam - Kafka configuration, required when Type is KAFKA.
- mariadb
Connect Property MapParam - Maria DB configuration, required when Type is MARIADB.
- mongodb
Connect Property MapParam - Mongo DB configuration, required when Type is MONGODB.
- mysql
Connect Property MapParam - MySQL configuration, required when Type is MYSQL or TDSQL C_MYSQL.
- postgresql
Connect Property MapParam - Postgresql configuration, required when Type is POSTGRESQL or TDSQL C POSTGRESQL.
- sqlserver
Connect Property MapParam - SQLServer configuration, required when Type is SQLSERVER.
Outputs
All input properties are implicitly available as output properties. Additionally, the CkafkaConnectResource 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 CkafkaConnectResource Resource
Get an existing CkafkaConnectResource 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?: CkafkaConnectResourceState, opts?: CustomResourceOptions): CkafkaConnectResource
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
ckafka_connect_resource_id: Optional[str] = None,
clickhouse_connect_param: Optional[CkafkaConnectResourceClickhouseConnectParamArgs] = None,
description: Optional[str] = None,
doris_connect_param: Optional[CkafkaConnectResourceDorisConnectParamArgs] = None,
dts_connect_param: Optional[CkafkaConnectResourceDtsConnectParamArgs] = None,
es_connect_param: Optional[CkafkaConnectResourceEsConnectParamArgs] = None,
kafka_connect_param: Optional[CkafkaConnectResourceKafkaConnectParamArgs] = None,
mariadb_connect_param: Optional[CkafkaConnectResourceMariadbConnectParamArgs] = None,
mongodb_connect_param: Optional[CkafkaConnectResourceMongodbConnectParamArgs] = None,
mysql_connect_param: Optional[CkafkaConnectResourceMysqlConnectParamArgs] = None,
postgresql_connect_param: Optional[CkafkaConnectResourcePostgresqlConnectParamArgs] = None,
resource_name: Optional[str] = None,
sqlserver_connect_param: Optional[CkafkaConnectResourceSqlserverConnectParamArgs] = None,
type: Optional[str] = None) -> CkafkaConnectResource
func GetCkafkaConnectResource(ctx *Context, name string, id IDInput, state *CkafkaConnectResourceState, opts ...ResourceOption) (*CkafkaConnectResource, error)
public static CkafkaConnectResource Get(string name, Input<string> id, CkafkaConnectResourceState? state, CustomResourceOptions? opts = null)
public static CkafkaConnectResource get(String name, Output<String> id, CkafkaConnectResourceState state, CustomResourceOptions options)
resources: _: type: tencentcloud:CkafkaConnectResource 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.
- Ckafka
Connect stringResource Id - ID of the resource.
- Clickhouse
Connect CkafkaParam Connect Resource Clickhouse Connect Param - ClickHouse configuration, required when Type is CLICKHOUSE.
- Description string
- Connection source description.
- Doris
Connect CkafkaParam Connect Resource Doris Connect Param - Doris configuration, required when Type is DORIS.
- Dts
Connect CkafkaParam Connect Resource Dts Connect Param - Dts configuration, required when Type is DTS.
- Es
Connect CkafkaParam Connect Resource Es Connect Param - Es configuration, required when Type is ES.
- Kafka
Connect CkafkaParam Connect Resource Kafka Connect Param - Kafka configuration, required when Type is KAFKA.
- Mariadb
Connect CkafkaParam Connect Resource Mariadb Connect Param - Maria DB configuration, required when Type is MARIADB.
- Mongodb
Connect CkafkaParam Connect Resource Mongodb Connect Param - Mongo DB configuration, required when Type is MONGODB.
- Mysql
Connect CkafkaParam Connect Resource Mysql Connect Param - MySQL configuration, required when Type is MYSQL or TDSQL C_MYSQL.
- Postgresql
Connect CkafkaParam Connect Resource Postgresql Connect Param - Postgresql configuration, required when Type is POSTGRESQL or TDSQL C POSTGRESQL.
- Resource
Name string - connection source name.
- Sqlserver
Connect CkafkaParam Connect Resource Sqlserver Connect Param - SQLServer configuration, required when Type is SQLSERVER.
- Type string
- connection source type.
- Ckafka
Connect stringResource Id - ID of the resource.
- Clickhouse
Connect CkafkaParam Connect Resource Clickhouse Connect Param Args - ClickHouse configuration, required when Type is CLICKHOUSE.
- Description string
- Connection source description.
- Doris
Connect CkafkaParam Connect Resource Doris Connect Param Args - Doris configuration, required when Type is DORIS.
- Dts
Connect CkafkaParam Connect Resource Dts Connect Param Args - Dts configuration, required when Type is DTS.
- Es
Connect CkafkaParam Connect Resource Es Connect Param Args - Es configuration, required when Type is ES.
- Kafka
Connect CkafkaParam Connect Resource Kafka Connect Param Args - Kafka configuration, required when Type is KAFKA.
- Mariadb
Connect CkafkaParam Connect Resource Mariadb Connect Param Args - Maria DB configuration, required when Type is MARIADB.
- Mongodb
Connect CkafkaParam Connect Resource Mongodb Connect Param Args - Mongo DB configuration, required when Type is MONGODB.
- Mysql
Connect CkafkaParam Connect Resource Mysql Connect Param Args - MySQL configuration, required when Type is MYSQL or TDSQL C_MYSQL.
- Postgresql
Connect CkafkaParam Connect Resource Postgresql Connect Param Args - Postgresql configuration, required when Type is POSTGRESQL or TDSQL C POSTGRESQL.
- Resource
Name string - connection source name.
- Sqlserver
Connect CkafkaParam Connect Resource Sqlserver Connect Param Args - SQLServer configuration, required when Type is SQLSERVER.
- Type string
- connection source type.
- ckafka
Connect StringResource Id - ID of the resource.
- clickhouse
Connect CkafkaParam Connect Resource Clickhouse Connect Param - ClickHouse configuration, required when Type is CLICKHOUSE.
- description String
- Connection source description.
- doris
Connect CkafkaParam Connect Resource Doris Connect Param - Doris configuration, required when Type is DORIS.
- dts
Connect CkafkaParam Connect Resource Dts Connect Param - Dts configuration, required when Type is DTS.
- es
Connect CkafkaParam Connect Resource Es Connect Param - Es configuration, required when Type is ES.
- kafka
Connect CkafkaParam Connect Resource Kafka Connect Param - Kafka configuration, required when Type is KAFKA.
- mariadb
Connect CkafkaParam Connect Resource Mariadb Connect Param - Maria DB configuration, required when Type is MARIADB.
- mongodb
Connect CkafkaParam Connect Resource Mongodb Connect Param - Mongo DB configuration, required when Type is MONGODB.
- mysql
Connect CkafkaParam Connect Resource Mysql Connect Param - MySQL configuration, required when Type is MYSQL or TDSQL C_MYSQL.
- postgresql
Connect CkafkaParam Connect Resource Postgresql Connect Param - Postgresql configuration, required when Type is POSTGRESQL or TDSQL C POSTGRESQL.
- resource
Name String - connection source name.
- sqlserver
Connect CkafkaParam Connect Resource Sqlserver Connect Param - SQLServer configuration, required when Type is SQLSERVER.
- type String
- connection source type.
- ckafka
Connect stringResource Id - ID of the resource.
- clickhouse
Connect CkafkaParam Connect Resource Clickhouse Connect Param - ClickHouse configuration, required when Type is CLICKHOUSE.
- description string
- Connection source description.
- doris
Connect CkafkaParam Connect Resource Doris Connect Param - Doris configuration, required when Type is DORIS.
- dts
Connect CkafkaParam Connect Resource Dts Connect Param - Dts configuration, required when Type is DTS.
- es
Connect CkafkaParam Connect Resource Es Connect Param - Es configuration, required when Type is ES.
- kafka
Connect CkafkaParam Connect Resource Kafka Connect Param - Kafka configuration, required when Type is KAFKA.
- mariadb
Connect CkafkaParam Connect Resource Mariadb Connect Param - Maria DB configuration, required when Type is MARIADB.
- mongodb
Connect CkafkaParam Connect Resource Mongodb Connect Param - Mongo DB configuration, required when Type is MONGODB.
- mysql
Connect CkafkaParam Connect Resource Mysql Connect Param - MySQL configuration, required when Type is MYSQL or TDSQL C_MYSQL.
- postgresql
Connect CkafkaParam Connect Resource Postgresql Connect Param - Postgresql configuration, required when Type is POSTGRESQL or TDSQL C POSTGRESQL.
- resource
Name string - connection source name.
- sqlserver
Connect CkafkaParam Connect Resource Sqlserver Connect Param - SQLServer configuration, required when Type is SQLSERVER.
- type string
- connection source type.
- ckafka_
connect_ strresource_ id - ID of the resource.
- clickhouse_
connect_ Ckafkaparam Connect Resource Clickhouse Connect Param Args - ClickHouse configuration, required when Type is CLICKHOUSE.
- description str
- Connection source description.
- doris_
connect_ Ckafkaparam Connect Resource Doris Connect Param Args - Doris configuration, required when Type is DORIS.
- dts_
connect_ Ckafkaparam Connect Resource Dts Connect Param Args - Dts configuration, required when Type is DTS.
- es_
connect_ Ckafkaparam Connect Resource Es Connect Param Args - Es configuration, required when Type is ES.
- kafka_
connect_ Ckafkaparam Connect Resource Kafka Connect Param Args - Kafka configuration, required when Type is KAFKA.
- mariadb_
connect_ Ckafkaparam Connect Resource Mariadb Connect Param Args - Maria DB configuration, required when Type is MARIADB.
- mongodb_
connect_ Ckafkaparam Connect Resource Mongodb Connect Param Args - Mongo DB configuration, required when Type is MONGODB.
- mysql_
connect_ Ckafkaparam Connect Resource Mysql Connect Param Args - MySQL configuration, required when Type is MYSQL or TDSQL C_MYSQL.
- postgresql_
connect_ Ckafkaparam Connect Resource Postgresql Connect Param Args - Postgresql configuration, required when Type is POSTGRESQL or TDSQL C POSTGRESQL.
- resource_
name str - connection source name.
- sqlserver_
connect_ Ckafkaparam Connect Resource Sqlserver Connect Param Args - SQLServer configuration, required when Type is SQLSERVER.
- type str
- connection source type.
- ckafka
Connect StringResource Id - ID of the resource.
- clickhouse
Connect Property MapParam - ClickHouse configuration, required when Type is CLICKHOUSE.
- description String
- Connection source description.
- doris
Connect Property MapParam - Doris configuration, required when Type is DORIS.
- dts
Connect Property MapParam - Dts configuration, required when Type is DTS.
- es
Connect Property MapParam - Es configuration, required when Type is ES.
- kafka
Connect Property MapParam - Kafka configuration, required when Type is KAFKA.
- mariadb
Connect Property MapParam - Maria DB configuration, required when Type is MARIADB.
- mongodb
Connect Property MapParam - Mongo DB configuration, required when Type is MONGODB.
- mysql
Connect Property MapParam - MySQL configuration, required when Type is MYSQL or TDSQL C_MYSQL.
- postgresql
Connect Property MapParam - Postgresql configuration, required when Type is POSTGRESQL or TDSQL C POSTGRESQL.
- resource
Name String - connection source name.
- sqlserver
Connect Property MapParam - SQLServer configuration, required when Type is SQLSERVER.
- type String
- connection source type.
Supporting Types
CkafkaConnectResourceClickhouseConnectParam, CkafkaConnectResourceClickhouseConnectParamArgs
- Password string
- Password for Clickhouse connection source.
- Port double
- Clickhouse connection port.
- Resource string
- Instance resources for Click House connection sources.
- Self
Built bool - Whether the Clickhouse connection source is a self-built cluster.
- User
Name string - The username of the clickhouse connection source.
- Is
Update bool - Whether to update to the associated Datahub task, default: false.
- Service
Vip string - Instance VIP of the ClickHouse connection source, when it is a Tencent Cloud instance, it is required.
- Uniq
Vpc stringId - The vpc Id of the source of the ClickHouse connection, when it is a Tencent Cloud instance, it is required.
- Password string
- Password for Clickhouse connection source.
- Port float64
- Clickhouse connection port.
- Resource string
- Instance resources for Click House connection sources.
- Self
Built bool - Whether the Clickhouse connection source is a self-built cluster.
- User
Name string - The username of the clickhouse connection source.
- Is
Update bool - Whether to update to the associated Datahub task, default: false.
- Service
Vip string - Instance VIP of the ClickHouse connection source, when it is a Tencent Cloud instance, it is required.
- Uniq
Vpc stringId - The vpc Id of the source of the ClickHouse connection, when it is a Tencent Cloud instance, it is required.
- password String
- Password for Clickhouse connection source.
- port Double
- Clickhouse connection port.
- resource String
- Instance resources for Click House connection sources.
- self
Built Boolean - Whether the Clickhouse connection source is a self-built cluster.
- user
Name String - The username of the clickhouse connection source.
- is
Update Boolean - Whether to update to the associated Datahub task, default: false.
- service
Vip String - Instance VIP of the ClickHouse connection source, when it is a Tencent Cloud instance, it is required.
- uniq
Vpc StringId - The vpc Id of the source of the ClickHouse connection, when it is a Tencent Cloud instance, it is required.
- password string
- Password for Clickhouse connection source.
- port number
- Clickhouse connection port.
- resource string
- Instance resources for Click House connection sources.
- self
Built boolean - Whether the Clickhouse connection source is a self-built cluster.
- user
Name string - The username of the clickhouse connection source.
- is
Update boolean - Whether to update to the associated Datahub task, default: false.
- service
Vip string - Instance VIP of the ClickHouse connection source, when it is a Tencent Cloud instance, it is required.
- uniq
Vpc stringId - The vpc Id of the source of the ClickHouse connection, when it is a Tencent Cloud instance, it is required.
- password str
- Password for Clickhouse connection source.
- port float
- Clickhouse connection port.
- resource str
- Instance resources for Click House connection sources.
- self_
built bool - Whether the Clickhouse connection source is a self-built cluster.
- user_
name str - The username of the clickhouse connection source.
- is_
update bool - Whether to update to the associated Datahub task, default: false.
- service_
vip str - Instance VIP of the ClickHouse connection source, when it is a Tencent Cloud instance, it is required.
- uniq_
vpc_ strid - The vpc Id of the source of the ClickHouse connection, when it is a Tencent Cloud instance, it is required.
- password String
- Password for Clickhouse connection source.
- port Number
- Clickhouse connection port.
- resource String
- Instance resources for Click House connection sources.
- self
Built Boolean - Whether the Clickhouse connection source is a self-built cluster.
- user
Name String - The username of the clickhouse connection source.
- is
Update Boolean - Whether to update to the associated Datahub task, default: false.
- service
Vip String - Instance VIP of the ClickHouse connection source, when it is a Tencent Cloud instance, it is required.
- uniq
Vpc StringId - The vpc Id of the source of the ClickHouse connection, when it is a Tencent Cloud instance, it is required.
CkafkaConnectResourceDorisConnectParam, CkafkaConnectResourceDorisConnectParamArgs
- Password string
- Doris password.
- Port double
- Doris jdbc CLB port, Usually mapped to port 9030 of fe.
- Resource string
- Doris instanceId.
- User
Name string - Doris The username of the connection source.
- Be
Port double - Doris http CLB port, Usually mapped to port 8040 of be.
- Is
Update bool - Whether to update to the associated Datahub task, default: false.
- Self
Built bool - Doris Whether the connection source is a self-built cluster, default: false.
- Service
Vip string - Doris vip, When it is a Tencent Cloud instance, it is required.
- Uniq
Vpc stringId - Doris vpcId, When it is a Tencent Cloud instance, it is required.
- Password string
- Doris password.
- Port float64
- Doris jdbc CLB port, Usually mapped to port 9030 of fe.
- Resource string
- Doris instanceId.
- User
Name string - Doris The username of the connection source.
- Be
Port float64 - Doris http CLB port, Usually mapped to port 8040 of be.
- Is
Update bool - Whether to update to the associated Datahub task, default: false.
- Self
Built bool - Doris Whether the connection source is a self-built cluster, default: false.
- Service
Vip string - Doris vip, When it is a Tencent Cloud instance, it is required.
- Uniq
Vpc stringId - Doris vpcId, When it is a Tencent Cloud instance, it is required.
- password String
- Doris password.
- port Double
- Doris jdbc CLB port, Usually mapped to port 9030 of fe.
- resource String
- Doris instanceId.
- user
Name String - Doris The username of the connection source.
- be
Port Double - Doris http CLB port, Usually mapped to port 8040 of be.
- is
Update Boolean - Whether to update to the associated Datahub task, default: false.
- self
Built Boolean - Doris Whether the connection source is a self-built cluster, default: false.
- service
Vip String - Doris vip, When it is a Tencent Cloud instance, it is required.
- uniq
Vpc StringId - Doris vpcId, When it is a Tencent Cloud instance, it is required.
- password string
- Doris password.
- port number
- Doris jdbc CLB port, Usually mapped to port 9030 of fe.
- resource string
- Doris instanceId.
- user
Name string - Doris The username of the connection source.
- be
Port number - Doris http CLB port, Usually mapped to port 8040 of be.
- is
Update boolean - Whether to update to the associated Datahub task, default: false.
- self
Built boolean - Doris Whether the connection source is a self-built cluster, default: false.
- service
Vip string - Doris vip, When it is a Tencent Cloud instance, it is required.
- uniq
Vpc stringId - Doris vpcId, When it is a Tencent Cloud instance, it is required.
- password str
- Doris password.
- port float
- Doris jdbc CLB port, Usually mapped to port 9030 of fe.
- resource str
- Doris instanceId.
- user_
name str - Doris The username of the connection source.
- be_
port float - Doris http CLB port, Usually mapped to port 8040 of be.
- is_
update bool - Whether to update to the associated Datahub task, default: false.
- self_
built bool - Doris Whether the connection source is a self-built cluster, default: false.
- service_
vip str - Doris vip, When it is a Tencent Cloud instance, it is required.
- uniq_
vpc_ strid - Doris vpcId, When it is a Tencent Cloud instance, it is required.
- password String
- Doris password.
- port Number
- Doris jdbc CLB port, Usually mapped to port 9030 of fe.
- resource String
- Doris instanceId.
- user
Name String - Doris The username of the connection source.
- be
Port Number - Doris http CLB port, Usually mapped to port 8040 of be.
- is
Update Boolean - Whether to update to the associated Datahub task, default: false.
- self
Built Boolean - Doris Whether the connection source is a self-built cluster, default: false.
- service
Vip String - Doris vip, When it is a Tencent Cloud instance, it is required.
- uniq
Vpc StringId - Doris vpcId, When it is a Tencent Cloud instance, it is required.
CkafkaConnectResourceDtsConnectParam, CkafkaConnectResourceDtsConnectParamArgs
- Group
Id string - Id of the Dts consumption group.
- Password string
- The password of the Dts consumption group.
- Port double
- Dts port.
- Resource string
- Dts instance Id.
- Topic string
- Topic subscribed by Dts.
- User
Name string - The account number of the Dts consumption group.
- Is
Update bool - Whether to update to the associated Datahub task, default: false.
- Group
Id string - Id of the Dts consumption group.
- Password string
- The password of the Dts consumption group.
- Port float64
- Dts port.
- Resource string
- Dts instance Id.
- Topic string
- Topic subscribed by Dts.
- User
Name string - The account number of the Dts consumption group.
- Is
Update bool - Whether to update to the associated Datahub task, default: false.
- group
Id String - Id of the Dts consumption group.
- password String
- The password of the Dts consumption group.
- port Double
- Dts port.
- resource String
- Dts instance Id.
- topic String
- Topic subscribed by Dts.
- user
Name String - The account number of the Dts consumption group.
- is
Update Boolean - Whether to update to the associated Datahub task, default: false.
- group
Id string - Id of the Dts consumption group.
- password string
- The password of the Dts consumption group.
- port number
- Dts port.
- resource string
- Dts instance Id.
- topic string
- Topic subscribed by Dts.
- user
Name string - The account number of the Dts consumption group.
- is
Update boolean - Whether to update to the associated Datahub task, default: false.
- group_
id str - Id of the Dts consumption group.
- password str
- The password of the Dts consumption group.
- port float
- Dts port.
- resource str
- Dts instance Id.
- topic str
- Topic subscribed by Dts.
- user_
name str - The account number of the Dts consumption group.
- is_
update bool - Whether to update to the associated Datahub task, default: false.
- group
Id String - Id of the Dts consumption group.
- password String
- The password of the Dts consumption group.
- port Number
- Dts port.
- resource String
- Dts instance Id.
- topic String
- Topic subscribed by Dts.
- user
Name String - The account number of the Dts consumption group.
- is
Update Boolean - Whether to update to the associated Datahub task, default: false.
CkafkaConnectResourceEsConnectParam, CkafkaConnectResourceEsConnectParamArgs
- Password string
- Es The password of the connection source.
- Port double
- Es port.
- Resource string
- Instance resource of Es connection source.
- Self
Built bool - Whether the Es connection source is a self-built cluster.
- User
Name string - Es The username of the connection source.
- Is
Update bool - Whether to update to the associated Datahub task, default: false.
- Service
Vip string - The instance vip of the Es connection source, when it is a Tencent Cloud instance, it is required.
- Uniq
Vpc stringId - The vpc Id of the Es connection source, when it is a Tencent Cloud instance, it is required.
- Password string
- Es The password of the connection source.
- Port float64
- Es port.
- Resource string
- Instance resource of Es connection source.
- Self
Built bool - Whether the Es connection source is a self-built cluster.
- User
Name string - Es The username of the connection source.
- Is
Update bool - Whether to update to the associated Datahub task, default: false.
- Service
Vip string - The instance vip of the Es connection source, when it is a Tencent Cloud instance, it is required.
- Uniq
Vpc stringId - The vpc Id of the Es connection source, when it is a Tencent Cloud instance, it is required.
- password String
- Es The password of the connection source.
- port Double
- Es port.
- resource String
- Instance resource of Es connection source.
- self
Built Boolean - Whether the Es connection source is a self-built cluster.
- user
Name String - Es The username of the connection source.
- is
Update Boolean - Whether to update to the associated Datahub task, default: false.
- service
Vip String - The instance vip of the Es connection source, when it is a Tencent Cloud instance, it is required.
- uniq
Vpc StringId - The vpc Id of the Es connection source, when it is a Tencent Cloud instance, it is required.
- password string
- Es The password of the connection source.
- port number
- Es port.
- resource string
- Instance resource of Es connection source.
- self
Built boolean - Whether the Es connection source is a self-built cluster.
- user
Name string - Es The username of the connection source.
- is
Update boolean - Whether to update to the associated Datahub task, default: false.
- service
Vip string - The instance vip of the Es connection source, when it is a Tencent Cloud instance, it is required.
- uniq
Vpc stringId - The vpc Id of the Es connection source, when it is a Tencent Cloud instance, it is required.
- password str
- Es The password of the connection source.
- port float
- Es port.
- resource str
- Instance resource of Es connection source.
- self_
built bool - Whether the Es connection source is a self-built cluster.
- user_
name str - Es The username of the connection source.
- is_
update bool - Whether to update to the associated Datahub task, default: false.
- service_
vip str - The instance vip of the Es connection source, when it is a Tencent Cloud instance, it is required.
- uniq_
vpc_ strid - The vpc Id of the Es connection source, when it is a Tencent Cloud instance, it is required.
- password String
- Es The password of the connection source.
- port Number
- Es port.
- resource String
- Instance resource of Es connection source.
- self
Built Boolean - Whether the Es connection source is a self-built cluster.
- user
Name String - Es The username of the connection source.
- is
Update Boolean - Whether to update to the associated Datahub task, default: false.
- service
Vip String - The instance vip of the Es connection source, when it is a Tencent Cloud instance, it is required.
- uniq
Vpc StringId - The vpc Id of the Es connection source, when it is a Tencent Cloud instance, it is required.
CkafkaConnectResourceKafkaConnectParam, CkafkaConnectResourceKafkaConnectParamArgs
- Broker
Address string - Kafka broker ip, Mandatory when self-built.
- Is
Update bool - Whether to update to the associated Dip task, default: false.
- Region string
- CKafka instanceId region, Required when crossing regions.
- Resource string
- Kafka instanceId, When it is a Tencent Cloud instance, it is required.
- Self
Built bool - Whether it is a self-built cluster, default: false.
- Broker
Address string - Kafka broker ip, Mandatory when self-built.
- Is
Update bool - Whether to update to the associated Dip task, default: false.
- Region string
- CKafka instanceId region, Required when crossing regions.
- Resource string
- Kafka instanceId, When it is a Tencent Cloud instance, it is required.
- Self
Built bool - Whether it is a self-built cluster, default: false.
- broker
Address String - Kafka broker ip, Mandatory when self-built.
- is
Update Boolean - Whether to update to the associated Dip task, default: false.
- region String
- CKafka instanceId region, Required when crossing regions.
- resource String
- Kafka instanceId, When it is a Tencent Cloud instance, it is required.
- self
Built Boolean - Whether it is a self-built cluster, default: false.
- broker
Address string - Kafka broker ip, Mandatory when self-built.
- is
Update boolean - Whether to update to the associated Dip task, default: false.
- region string
- CKafka instanceId region, Required when crossing regions.
- resource string
- Kafka instanceId, When it is a Tencent Cloud instance, it is required.
- self
Built boolean - Whether it is a self-built cluster, default: false.
- broker_
address str - Kafka broker ip, Mandatory when self-built.
- is_
update bool - Whether to update to the associated Dip task, default: false.
- region str
- CKafka instanceId region, Required when crossing regions.
- resource str
- Kafka instanceId, When it is a Tencent Cloud instance, it is required.
- self_
built bool - Whether it is a self-built cluster, default: false.
- broker
Address String - Kafka broker ip, Mandatory when self-built.
- is
Update Boolean - Whether to update to the associated Dip task, default: false.
- region String
- CKafka instanceId region, Required when crossing regions.
- resource String
- Kafka instanceId, When it is a Tencent Cloud instance, it is required.
- self
Built Boolean - Whether it is a self-built cluster, default: false.
CkafkaConnectResourceMariadbConnectParam, CkafkaConnectResourceMariadbConnectParamArgs
- Password string
- MariaDB password.
- Port double
- MariaDB port.
- Resource string
- MariaDB instanceId.
- User
Name string - MariaDB The username of the connection source.
- Is
Update bool - Whether to update to the associated Datahub task, default: false.
- Service
Vip string - The instance vip of the Maria DB connection source, when it is a Tencent Cloud instance, it is required.
- Uniq
Vpc stringId - MariaDB vpcId, When it is a Tencent Cloud instance, it is required.
- Password string
- MariaDB password.
- Port float64
- MariaDB port.
- Resource string
- MariaDB instanceId.
- User
Name string - MariaDB The username of the connection source.
- Is
Update bool - Whether to update to the associated Datahub task, default: false.
- Service
Vip string - The instance vip of the Maria DB connection source, when it is a Tencent Cloud instance, it is required.
- Uniq
Vpc stringId - MariaDB vpcId, When it is a Tencent Cloud instance, it is required.
- password String
- MariaDB password.
- port Double
- MariaDB port.
- resource String
- MariaDB instanceId.
- user
Name String - MariaDB The username of the connection source.
- is
Update Boolean - Whether to update to the associated Datahub task, default: false.
- service
Vip String - The instance vip of the Maria DB connection source, when it is a Tencent Cloud instance, it is required.
- uniq
Vpc StringId - MariaDB vpcId, When it is a Tencent Cloud instance, it is required.
- password string
- MariaDB password.
- port number
- MariaDB port.
- resource string
- MariaDB instanceId.
- user
Name string - MariaDB The username of the connection source.
- is
Update boolean - Whether to update to the associated Datahub task, default: false.
- service
Vip string - The instance vip of the Maria DB connection source, when it is a Tencent Cloud instance, it is required.
- uniq
Vpc stringId - MariaDB vpcId, When it is a Tencent Cloud instance, it is required.
- password str
- MariaDB password.
- port float
- MariaDB port.
- resource str
- MariaDB instanceId.
- user_
name str - MariaDB The username of the connection source.
- is_
update bool - Whether to update to the associated Datahub task, default: false.
- service_
vip str - The instance vip of the Maria DB connection source, when it is a Tencent Cloud instance, it is required.
- uniq_
vpc_ strid - MariaDB vpcId, When it is a Tencent Cloud instance, it is required.
- password String
- MariaDB password.
- port Number
- MariaDB port.
- resource String
- MariaDB instanceId.
- user
Name String - MariaDB The username of the connection source.
- is
Update Boolean - Whether to update to the associated Datahub task, default: false.
- service
Vip String - The instance vip of the Maria DB connection source, when it is a Tencent Cloud instance, it is required.
- uniq
Vpc StringId - MariaDB vpcId, When it is a Tencent Cloud instance, it is required.
CkafkaConnectResourceMongodbConnectParam, CkafkaConnectResourceMongodbConnectParamArgs
- Password string
- Password for the source of the Mongo DB connection.
- Port double
- MongoDB port.
- Resource string
- Instance resource of Mongo DB connection source.
- Self
Built bool - Whether the Mongo DB connection source is a self-built cluster.
- User
Name string - The username of the Mongo DB connection source.
- Is
Update bool - Whether to update to the associated Datahub task, default: false.
- Service
Vip string - The instance VIP of the Mongo DB connection source, when it is a Tencent Cloud instance, it is required.
- Uniq
Vpc stringId - The vpc Id of the Mongo DB connection source, which is required when it is a Tencent Cloud instance.
- Password string
- Password for the source of the Mongo DB connection.
- Port float64
- MongoDB port.
- Resource string
- Instance resource of Mongo DB connection source.
- Self
Built bool - Whether the Mongo DB connection source is a self-built cluster.
- User
Name string - The username of the Mongo DB connection source.
- Is
Update bool - Whether to update to the associated Datahub task, default: false.
- Service
Vip string - The instance VIP of the Mongo DB connection source, when it is a Tencent Cloud instance, it is required.
- Uniq
Vpc stringId - The vpc Id of the Mongo DB connection source, which is required when it is a Tencent Cloud instance.
- password String
- Password for the source of the Mongo DB connection.
- port Double
- MongoDB port.
- resource String
- Instance resource of Mongo DB connection source.
- self
Built Boolean - Whether the Mongo DB connection source is a self-built cluster.
- user
Name String - The username of the Mongo DB connection source.
- is
Update Boolean - Whether to update to the associated Datahub task, default: false.
- service
Vip String - The instance VIP of the Mongo DB connection source, when it is a Tencent Cloud instance, it is required.
- uniq
Vpc StringId - The vpc Id of the Mongo DB connection source, which is required when it is a Tencent Cloud instance.
- password string
- Password for the source of the Mongo DB connection.
- port number
- MongoDB port.
- resource string
- Instance resource of Mongo DB connection source.
- self
Built boolean - Whether the Mongo DB connection source is a self-built cluster.
- user
Name string - The username of the Mongo DB connection source.
- is
Update boolean - Whether to update to the associated Datahub task, default: false.
- service
Vip string - The instance VIP of the Mongo DB connection source, when it is a Tencent Cloud instance, it is required.
- uniq
Vpc stringId - The vpc Id of the Mongo DB connection source, which is required when it is a Tencent Cloud instance.
- password str
- Password for the source of the Mongo DB connection.
- port float
- MongoDB port.
- resource str
- Instance resource of Mongo DB connection source.
- self_
built bool - Whether the Mongo DB connection source is a self-built cluster.
- user_
name str - The username of the Mongo DB connection source.
- is_
update bool - Whether to update to the associated Datahub task, default: false.
- service_
vip str - The instance VIP of the Mongo DB connection source, when it is a Tencent Cloud instance, it is required.
- uniq_
vpc_ strid - The vpc Id of the Mongo DB connection source, which is required when it is a Tencent Cloud instance.
- password String
- Password for the source of the Mongo DB connection.
- port Number
- MongoDB port.
- resource String
- Instance resource of Mongo DB connection source.
- self
Built Boolean - Whether the Mongo DB connection source is a self-built cluster.
- user
Name String - The username of the Mongo DB connection source.
- is
Update Boolean - Whether to update to the associated Datahub task, default: false.
- service
Vip String - The instance VIP of the Mongo DB connection source, when it is a Tencent Cloud instance, it is required.
- uniq
Vpc StringId - The vpc Id of the Mongo DB connection source, which is required when it is a Tencent Cloud instance.
CkafkaConnectResourceMysqlConnectParam, CkafkaConnectResourceMysqlConnectParamArgs
- Password string
- Mysql connection source password.
- Port double
- MySQL port.
- Resource string
- Instance resource of My SQL connection source.
- User
Name string - Username of Mysql connection source.
- Cluster
Id string - Required when type is TDSQL C_MYSQL.
- Is
Update bool - Whether to update to the associated Datahub task, default: false.
- Self
Built bool - Mysql Whether the connection source is a self-built cluster, default: false.
- Service
Vip string - The instance vip of the MySQL connection source, when it is a Tencent Cloud instance, it is required.
- Uniq
Vpc stringId - The vpc Id of the My SQL connection source, when it is a Tencent Cloud instance, it is required.
- Password string
- Mysql connection source password.
- Port float64
- MySQL port.
- Resource string
- Instance resource of My SQL connection source.
- User
Name string - Username of Mysql connection source.
- Cluster
Id string - Required when type is TDSQL C_MYSQL.
- Is
Update bool - Whether to update to the associated Datahub task, default: false.
- Self
Built bool - Mysql Whether the connection source is a self-built cluster, default: false.
- Service
Vip string - The instance vip of the MySQL connection source, when it is a Tencent Cloud instance, it is required.
- Uniq
Vpc stringId - The vpc Id of the My SQL connection source, when it is a Tencent Cloud instance, it is required.
- password String
- Mysql connection source password.
- port Double
- MySQL port.
- resource String
- Instance resource of My SQL connection source.
- user
Name String - Username of Mysql connection source.
- cluster
Id String - Required when type is TDSQL C_MYSQL.
- is
Update Boolean - Whether to update to the associated Datahub task, default: false.
- self
Built Boolean - Mysql Whether the connection source is a self-built cluster, default: false.
- service
Vip String - The instance vip of the MySQL connection source, when it is a Tencent Cloud instance, it is required.
- uniq
Vpc StringId - The vpc Id of the My SQL connection source, when it is a Tencent Cloud instance, it is required.
- password string
- Mysql connection source password.
- port number
- MySQL port.
- resource string
- Instance resource of My SQL connection source.
- user
Name string - Username of Mysql connection source.
- cluster
Id string - Required when type is TDSQL C_MYSQL.
- is
Update boolean - Whether to update to the associated Datahub task, default: false.
- self
Built boolean - Mysql Whether the connection source is a self-built cluster, default: false.
- service
Vip string - The instance vip of the MySQL connection source, when it is a Tencent Cloud instance, it is required.
- uniq
Vpc stringId - The vpc Id of the My SQL connection source, when it is a Tencent Cloud instance, it is required.
- password str
- Mysql connection source password.
- port float
- MySQL port.
- resource str
- Instance resource of My SQL connection source.
- user_
name str - Username of Mysql connection source.
- cluster_
id str - Required when type is TDSQL C_MYSQL.
- is_
update bool - Whether to update to the associated Datahub task, default: false.
- self_
built bool - Mysql Whether the connection source is a self-built cluster, default: false.
- service_
vip str - The instance vip of the MySQL connection source, when it is a Tencent Cloud instance, it is required.
- uniq_
vpc_ strid - The vpc Id of the My SQL connection source, when it is a Tencent Cloud instance, it is required.
- password String
- Mysql connection source password.
- port Number
- MySQL port.
- resource String
- Instance resource of My SQL connection source.
- user
Name String - Username of Mysql connection source.
- cluster
Id String - Required when type is TDSQL C_MYSQL.
- is
Update Boolean - Whether to update to the associated Datahub task, default: false.
- self
Built Boolean - Mysql Whether the connection source is a self-built cluster, default: false.
- service
Vip String - The instance vip of the MySQL connection source, when it is a Tencent Cloud instance, it is required.
- uniq
Vpc StringId - The vpc Id of the My SQL connection source, when it is a Tencent Cloud instance, it is required.
CkafkaConnectResourcePostgresqlConnectParam, CkafkaConnectResourcePostgresqlConnectParamArgs
- Password string
- PostgreSQL password.
- Port double
- PostgreSQL port.
- Resource string
- PostgreSQL instanceId.
- User
Name string - PostgreSQL The username of the connection source.
- Cluster
Id string - Required when type is TDSQL C_POSTGRESQL.
- Is
Update bool - Whether to update to the associated Datahub task, default: false.
- Self
Built bool - PostgreSQL Whether the connection source is a self-built cluster, default: false.
- Service
Vip string - The instance VIP of the Postgresql connection source, when it is a Tencent Cloud instance, it is required.
- Uniq
Vpc stringId - The instance vpcId of the Postgresql connection source, when it is a Tencent Cloud instance, it is required.
- Password string
- PostgreSQL password.
- Port float64
- PostgreSQL port.
- Resource string
- PostgreSQL instanceId.
- User
Name string - PostgreSQL The username of the connection source.
- Cluster
Id string - Required when type is TDSQL C_POSTGRESQL.
- Is
Update bool - Whether to update to the associated Datahub task, default: false.
- Self
Built bool - PostgreSQL Whether the connection source is a self-built cluster, default: false.
- Service
Vip string - The instance VIP of the Postgresql connection source, when it is a Tencent Cloud instance, it is required.
- Uniq
Vpc stringId - The instance vpcId of the Postgresql connection source, when it is a Tencent Cloud instance, it is required.
- password String
- PostgreSQL password.
- port Double
- PostgreSQL port.
- resource String
- PostgreSQL instanceId.
- user
Name String - PostgreSQL The username of the connection source.
- cluster
Id String - Required when type is TDSQL C_POSTGRESQL.
- is
Update Boolean - Whether to update to the associated Datahub task, default: false.
- self
Built Boolean - PostgreSQL Whether the connection source is a self-built cluster, default: false.
- service
Vip String - The instance VIP of the Postgresql connection source, when it is a Tencent Cloud instance, it is required.
- uniq
Vpc StringId - The instance vpcId of the Postgresql connection source, when it is a Tencent Cloud instance, it is required.
- password string
- PostgreSQL password.
- port number
- PostgreSQL port.
- resource string
- PostgreSQL instanceId.
- user
Name string - PostgreSQL The username of the connection source.
- cluster
Id string - Required when type is TDSQL C_POSTGRESQL.
- is
Update boolean - Whether to update to the associated Datahub task, default: false.
- self
Built boolean - PostgreSQL Whether the connection source is a self-built cluster, default: false.
- service
Vip string - The instance VIP of the Postgresql connection source, when it is a Tencent Cloud instance, it is required.
- uniq
Vpc stringId - The instance vpcId of the Postgresql connection source, when it is a Tencent Cloud instance, it is required.
- password str
- PostgreSQL password.
- port float
- PostgreSQL port.
- resource str
- PostgreSQL instanceId.
- user_
name str - PostgreSQL The username of the connection source.
- cluster_
id str - Required when type is TDSQL C_POSTGRESQL.
- is_
update bool - Whether to update to the associated Datahub task, default: false.
- self_
built bool - PostgreSQL Whether the connection source is a self-built cluster, default: false.
- service_
vip str - The instance VIP of the Postgresql connection source, when it is a Tencent Cloud instance, it is required.
- uniq_
vpc_ strid - The instance vpcId of the Postgresql connection source, when it is a Tencent Cloud instance, it is required.
- password String
- PostgreSQL password.
- port Number
- PostgreSQL port.
- resource String
- PostgreSQL instanceId.
- user
Name String - PostgreSQL The username of the connection source.
- cluster
Id String - Required when type is TDSQL C_POSTGRESQL.
- is
Update Boolean - Whether to update to the associated Datahub task, default: false.
- self
Built Boolean - PostgreSQL Whether the connection source is a self-built cluster, default: false.
- service
Vip String - The instance VIP of the Postgresql connection source, when it is a Tencent Cloud instance, it is required.
- uniq
Vpc StringId - The instance vpcId of the Postgresql connection source, when it is a Tencent Cloud instance, it is required.
CkafkaConnectResourceSqlserverConnectParam, CkafkaConnectResourceSqlserverConnectParamArgs
- Password string
- SQLServer password.
- Port double
- SQLServer port.
- Resource string
- SQLServer instanceId.
- User
Name string - SQLServer The username of the connection source.
- Is
Update bool - Whether to update to the associated Dip task, default: false.
- Service
Vip string - SQLServer instance vip, When it is a Tencent Cloud instance, it is required.
- Uniq
Vpc stringId - SQLServer vpcId, When it is a Tencent Cloud instance, it is required.
- Password string
- SQLServer password.
- Port float64
- SQLServer port.
- Resource string
- SQLServer instanceId.
- User
Name string - SQLServer The username of the connection source.
- Is
Update bool - Whether to update to the associated Dip task, default: false.
- Service
Vip string - SQLServer instance vip, When it is a Tencent Cloud instance, it is required.
- Uniq
Vpc stringId - SQLServer vpcId, When it is a Tencent Cloud instance, it is required.
- password String
- SQLServer password.
- port Double
- SQLServer port.
- resource String
- SQLServer instanceId.
- user
Name String - SQLServer The username of the connection source.
- is
Update Boolean - Whether to update to the associated Dip task, default: false.
- service
Vip String - SQLServer instance vip, When it is a Tencent Cloud instance, it is required.
- uniq
Vpc StringId - SQLServer vpcId, When it is a Tencent Cloud instance, it is required.
- password string
- SQLServer password.
- port number
- SQLServer port.
- resource string
- SQLServer instanceId.
- user
Name string - SQLServer The username of the connection source.
- is
Update boolean - Whether to update to the associated Dip task, default: false.
- service
Vip string - SQLServer instance vip, When it is a Tencent Cloud instance, it is required.
- uniq
Vpc stringId - SQLServer vpcId, When it is a Tencent Cloud instance, it is required.
- password str
- SQLServer password.
- port float
- SQLServer port.
- resource str
- SQLServer instanceId.
- user_
name str - SQLServer The username of the connection source.
- is_
update bool - Whether to update to the associated Dip task, default: false.
- service_
vip str - SQLServer instance vip, When it is a Tencent Cloud instance, it is required.
- uniq_
vpc_ strid - SQLServer vpcId, When it is a Tencent Cloud instance, it is required.
- password String
- SQLServer password.
- port Number
- SQLServer port.
- resource String
- SQLServer instanceId.
- user
Name String - SQLServer The username of the connection source.
- is
Update Boolean - Whether to update to the associated Dip task, default: false.
- service
Vip String - SQLServer instance vip, When it is a Tencent Cloud instance, it is required.
- uniq
Vpc StringId - SQLServer vpcId, When it is a Tencent Cloud instance, it is required.
Import
ckafka connect_resource can be imported using the id, e.g.
$ pulumi import tencentcloud:index/ckafkaConnectResource:CkafkaConnectResource connect_resource connect_resource_id
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloud
Terraform Provider.